662e150ae02569d13752f0fcf0ed45c438f05791
[irssistats] / irssistats.c
1 /*
2  * irssistats version 0.61
3  *
4  * This tool generates IRC stats based on irssi logs.
5  * Usage: irssistats [/path/to/file.conf]
6  *
7  * Copyright (C) 2002-2004  Antoine Jacquet <royale@zerezo.com>
8  * http://royale.zerezo.com/irssistats/
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 */
24
25
26 #include <sys/types.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <time.h>
30 #include <string.h>
31 #include <regex.h>
32
33 /* Config */
34 #define BASEUSERS 1000
35 #define MAXNICKLENGTH 50
36 #define MAXLINELENGTH 2000
37 #define MAXQUOTELENGTH 100
38 #define NBUSERS 50
39 #define NBUSERSTIME 10
40 #define NBURLS 5
41 #define NBTOPICS 5
42 #define NBWORDS 20
43 #define MINWORDLENGTH 5
44
45 /* irssistats */
46 #define VERSION "0.61"
47 #define URL "http://royale.zerezo.com/irssistats/"
48
49 /* Counters */
50 #define D_SMILE     0
51 #define D_FROWN     1
52 #define D_EXCLAM    2
53 #define D_QUESTION  3
54 #define D_ME        4
55 #define D_TOPIC     5
56 #define D_MODE      6
57 #define D_KICK      7
58 #define D_KICKED    8
59 #define D_URL       9
60 #define D_JOIN      10
61 #define D_NICK      11
62 #define D_MONOLOGUE 12
63 #define NBCOUNTERS  13
64 char *counters[NBCOUNTERS]={"C_SMILE","C_FROWN","C_EXCLAM","C_QUESTION","C_ME","C_TOPIC","C_MODE","C_KICK","C_KICKED","C_URL","C_JOIN","C_NICK","C_MONOLOGUE"};
65
66 /* Languages */
67 #define NBLANGUAGES 10
68 #define NBKEYS 39
69 char *keys[NBLANGUAGES][NBKEYS+1][2]= /* first key used for language name and abbreviation */
70 {
71   { /* English language */
72     { "English",      "en" },
73     { "CHARSET",      "ISO-8859-1" },
74     { "HEADER",       "Statistics for %s by %s" },
75     { "LEGEND",       "Legend" },
76     { "LASTDAYS",     "Lastdays statistics" },
77     { "TOPHOURS",     "Hourly statistics" },
78     { "TOPUSERS",     "Most active people" },
79     { "OTHERS",       "There are %d left not ranked..." },
80     { "NBLINES",      "lines" },
81     { "NICK",         "nick" },
82     { "AVGLETTERS",   "letters/lines" },
83     { "HOURS",        "hours" },
84     { "QUOTE",        "random message" },
85     { "TOPUSERSTIME", "Most active people by time of day" },
86     { "RANDTOPICS",   "Some topics" },
87     { "CHANGEDBY",    "changed by" },
88     { "NEWTOPIC",     "new topic" },
89     { "RANDURLS",     "Some URLs" },
90     { "POSTEDBY",     "posted by" },
91     { "POSTEDURL",    "URL" },
92     { "TOPWORDS",     "Most used words" },
93     { "WORD",         "word" },
94     { "OCCURRENCES",  "occurrences" },
95     { "BIGNUMBERS",   "Some big numbers..." },
96     { "NUMBERS",      "numbers" },
97     { "TIME",         "%d lines (%d days) parsed in %d seconds" },
98     { "FOOTER",       "Statistics generated by" },
99     { "C_SMILE",      "is often happy :)" },
100     { "C_FROWN",      "is often sad :(" },
101     { "C_EXCLAM",     "yells a lot !" },
102     { "C_QUESTION",   "asks a lot of questions ?" },
103     { "C_ME",         "likes /me command" },
104     { "C_TOPIC",      "often changes the topic" },
105     { "C_MODE",       "often changes the modes" },
106     { "C_KICK",       "likes to /kick" },
107     { "C_KICKED",     "is often kicked" },
108     { "C_URL",        "posts many URLs" },
109     { "C_JOIN",       "doesn't know wether to stay or quit" },
110     { "C_NICK",       "often changes his nick" },
111     { "C_MONOLOGUE",  "speaks a lot of monologues" }
112   },
113   { /* French language */
114     { "French",       "fr" },
115     { "CHARSET",      "ISO-8859-1" },
116     { "HEADER",       "Statistiques de %s par %s" },
117     { "LEGEND",       "L&eacute;gende" },
118     { "LASTDAYS",     "Statistiques des derniers jours" },
119     { "TOPHOURS",     "Statistiques horaires" },
120     { "TOPUSERS",     "Personnes les plus actives" },
121     { "OTHERS",       "Il reste %d personnes non class&eacute;es..." },
122     { "NBLINES",      "lignes" },
123     { "NICK",         "nick" },
124     { "AVGLETTERS",   "lettres/lignes" },
125     { "HOURS",        "heures" },
126     { "QUOTE",        "message al&eacute;atoire" },
127     { "TOPUSERSTIME", "Personnes les plus actives par p&eacute;riode de la journ&eacute;e" },
128     { "RANDTOPICS",   "Quelques topics" },
129     { "CHANGEDBY",    "chang&eacute; par" },
130     { "NEWTOPIC",     "nouveau topic" },
131     { "RANDURLS",     "Quelques URLs" },
132     { "POSTEDBY",     "post&eacute;e par" },
133     { "POSTEDURL",    "URL" },
134     { "TOPWORDS",     "Mots les plus utilis&eacute;s" },
135     { "WORD",         "mot" },
136     { "OCCURRENCES",  "occurrences" },
137     { "BIGNUMBERS",   "Quelques grands nombres..." },
138     { "NUMBERS",      "nombres" },
139     { "TIME",         "%d lignes (%d jours) trait&eacute;es en %d secondes" },
140     { "FOOTER",       "Statistiques g&eacute;n&eacute;r&eacute;es par" },
141     { "C_SMILE",      "est souvent heureux :)" },
142     { "C_FROWN",      "est souvent triste :(" },
143     { "C_EXCLAM",     "hurle beaucoup !" },
144     { "C_QUESTION",   "pose beaucoup de questions ?" },
145     { "C_ME",         "aime la commande /me" },
146     { "C_TOPIC",      "change souvent le topic" },
147     { "C_MODE",       "change souvent les modes" },
148     { "C_KICK",       "aime la commande /kick" },
149     { "C_KICKED",     "est souvent kick&eacute;" },
150     { "C_URL",        "poste beaucoup d'URLs" },
151     { "C_JOIN",       "ne sait pas s'il doit rester ou partir" },
152     { "C_NICK",       "change souvent de nick" },
153     { "C_MONOLOGUE",  "parle beaucoup de monologues" }
154   },
155   { /* German language */
156     /* contributed by Valentin Gelhorn <valentin.gelhorn@web.de> */
157     { "German",       "de" },
158     { "CHARSET",      "ISO-8859-1" },
159     { "HEADER",       "Statistiken f&uuml;r %s von %s" },
160     { "LEGEND",       "Legende" },
161     { "LASTDAYS",     "Statistik der letzten Tage" },
162     { "TOPHOURS",     "St&uuml;ndliche Statistik" },
163     { "TOPUSERS",     "Die aktivsten Personen" },
164     { "OTHERS",       "Es bleiben noch %d uneingetragene" },
165     { "NBLINES",      "Zeilen" },
166     { "NICK",         "Nick" },
167     { "AVGLETTERS",   "Buchstaben/Zeile" },
168     { "HOURS",        "Stunden" },
169     { "QUOTE",        "Zuf&auml;llig ausgewaehlte Zitate" },
170     { "TOPUSERSTIME", "Die aktivsten Personen zur bestimmten Tageszeit" },
171     { "RANDTOPICS",   "Ein paar Topics" },
172     { "CHANGEDBY",    "Gesetzt von" },
173     { "NEWTOPIC",     "Neues topic" },
174     { "RANDURLS",     "Ein paar URLs" },
175     { "POSTEDBY",     "Geschrieben von" },
176     { "POSTEDURL",    "URL" },
177     { "TOPWORDS",     "Am h&auml;ufigsten benutze W&ouml;rter" },
178     { "WORD",         "Wort" },
179     { "OCCURRENCES",  "Vorkommen" },
180     { "BIGNUMBERS",   "Ein paar grosse Zahlen" },
181     { "NUMBERS",      "Zahlen" },
182     { "TIME",         "%d Zeilen (%d Tage) analysiert in %d Sekunden" },
183     { "FOOTER",       "Statistiken wurden erstellt von" },
184     { "C_SMILE",      "ist oft gl&uuml;klich :)" },
185     { "C_FROWN",      "ist oft traurig :(" },
186     { "C_EXCLAM",     "schreit oft !" },
187     { "C_QUESTION",   "stellt viele Fragen ?" },
188     { "C_ME",         "mag /me'en" },
189     { "C_TOPIC",      "aendert oft das Topico" },
190     { "C_MODE",       "aendert oft die Modes" },
191     { "C_KICK",       "mag /kick'en" },
192     { "C_KICKED",     "wird oft gekickt"},
193     { "C_URL",        "schreibt viele URLs"},
194     { "C_JOIN",       "kann sich nicht entscheiden ob er bleiben oder gehen soll" },
195     { "C_NICK",       "&auml;ndert oft seinen Nick" },
196     { "C_MONOLOGUE",  "spricht oft Monologe" }
197   },
198   { /* Spanish language */
199     /* contributed by Alex <ainaker@gmx.net> */
200     { "Spanish",      "es" },
201     { "CHARSET",      "ISO-8859-1" },
202     { "HEADER",       "Estad&iacute;sticas de %s por %s" },
203     { "LEGEND",       "Leyenda" },
204     { "LASTDAYS",     "Estad&iacute;sticas de los &uacute;ltimos d&iacute;as" },
205     { "TOPHOURS",     "Estad&iacute;sticas por horas" },
206     { "TOPUSERS",     "Los que m&aacute;s escriben" },
207     { "OTHERS",       "Hay %d m&aacute;s que no llegaron..." },
208     { "NBLINES",      "l&iacute;neas" },
209     { "NICK",         "nick" },
210     { "AVGLETTERS",   "letras por l&iacute;nea" },
211     { "HOURS",        "horas" },
212     { "QUOTE",        "Frase aleatoria" },
213     { "TOPUSERSTIME", "Los que m&aacute;s escriben seg&uacute;n la hora" },
214     { "RANDTOPICS",   "Algunos topics" },
215     { "CHANGEDBY",    "Puestos por" },
216     { "NEWTOPIC",     "topic" },
217     { "RANDURLS",     "Algunas URLs" },
218     { "POSTEDBY",     "puestas por" },
219     { "POSTEDURL",    "URL" },
220     { "TOPWORDS",     "Palabras m&aacute;s usadas" },
221     { "WORD",         "Palabra" },
222     { "OCCURRENCES",  "Frecuencia" },
223     { "BIGNUMBERS",   "Algunos datos..." },
224     { "NUMBERS",      "N&uacute;mero de veces" },
225     { "TIME",         "%d lineas (%d d&iacute;as) procesadas en %d segundos" },
226     { "FOOTER",       "Estad&iacute;sticas generadas por" },
227     { "C_SMILE",      "Suele estar fel&iacute;z :)" },
228     { "C_FROWN",      "Suele estar triste :(" },
229     { "C_EXCLAM",     "Grita mucho !" },
230     { "C_QUESTION",   "Hace muchas preguntas ?" },
231     { "C_ME",         "Abusa del comando /me" },
232     { "C_TOPIC",      "Suele cambiar el topic" },
233     { "C_MODE",       "Cambia a veces los modos del canal" },
234     { "C_KICK",       "Le gusta patear" },
235     { "C_KICKED",     "Es pateado con frecuencia" },
236     { "C_URL",        "Pone muchas URLs" },
237     { "C_JOIN",       "No sabe si irse o quedarse" },
238     { "C_NICK",       "Cambia mucho de nick" },
239     { "C_MONOLOGUE",  "Habla solo" }
240   },
241   { /* Polish language */
242     /* contributed by Jakub Jankowski <shasta@atn.pl> */
243     { "Polish",       "pl" },
244     { "CHARSET",      "ISO-8859-2" },
245     { "HEADER",       "Statystyki dla %s zebrane przez %s" },
246     { "LEGEND",       "Legenda" },
247     { "LASTDAYS",     "Statystyki z ostatnich dni" },
248     { "TOPHOURS",     "Statystyki godzinowe" },
249     { "TOPUSERS",     "Najaktywniejsi" },
250     { "OTHERS",       "Jest jeszcze %d nie sklasyfikowanych..." },
251     { "NBLINES",      "linii" },
252     { "NICK",         "nick" },
253     { "AVGLETTERS",   "liter/liniê" },
254     { "HOURS",        "godziny" },
255     { "QUOTE",        "losowa wypowied¼" },
256     { "TOPUSERSTIME", "Najaktywniejsi wed³ug pory dnia" },
257     { "RANDTOPICS",   "Kilka topików" },
258     { "CHANGEDBY",    "ustawiony przez" },
259     { "NEWTOPIC",     "topik" },
260     { "RANDURLS",     "Kilka URL-i" },
261     { "POSTEDBY",     "poda³(a)" },
262     { "POSTEDURL",    "URL" },
263     { "TOPWORDS",     "Najczê¶ciej wystêpuj±ce s³owa" },
264     { "WORD",         "s³owo" },
265     { "OCCURRENCES",  "wyst±pieñ" },
266     { "BIGNUMBERS",   "Kilka wielkopomnych liczb..." },
267     { "NUMBERS",      "kategorie" },
268     { "TIME",         "Dokonano analizy %d linii (obejmuj±cych %d dni) w czasie %d sekund" },
269     { "FOOTER",       "Statystyki wygenerowane przez" },
270     { "C_SMILE",      "jest czêsto szczesliwy(a) :)" },
271     { "C_FROWN",      "jest czêsto smutny(a) :(" },
272     { "C_EXCLAM",     "czêsto KRZYCZY!" },
273     { "C_QUESTION",   "zadaje du¿o pytañ?" },
274     { "C_ME",         "lubi u¿ywaæ /me" },
275     { "C_TOPIC",      "czêsto zmienia topik" },
276     { "C_MODE",       "czêsto zmienia tryby kana³u" },
277     { "C_KICK",       "lubi kopaæ" },
278     { "C_KICKED",     "czêsto wykopywany(a)" },
279     { "C_URL",        "podaje du¿o URL-i" },
280     { "C_JOIN",       "nie wie czy zostaæ, czy wyj¶æ" },
281     { "C_NICK",       "czêsto zmienia nick" },
282     { "C_MONOLOGUE",  "uwielbia monologi" }
283   },
284   { /* Polish language */
285     /* contributed by Piotr Jarmuz <coreupper@yahoo.com> */
286     { "Polish",       "pl-old" },
287     { "CHARSET",      "ISO-8859-1" },
288     { "HEADER",       "Statystyki dla %s przez %s" },
289     { "LEGEND",       "Legenda" },
290     { "LASTDAYS",     "Statystyki z ostatnich dni" },
291     { "TOPHOURS",     "Statystyki godzinne" },
292     { "TOPUSERS",     "Najaktywniejsi ludzie" },
293     { "OTHERS",       "Zostalo jeszcze %d nie sklasyfikowanych..." },
294     { "NBLINES",      "linie" },
295     { "NICK",         "nick" },
296     { "AVGLETTERS",   "litery/linie" },
297     { "HOURS",        "godziny" },
298     { "QUOTE",        "przypadkowa wiadomosc" },
299     { "TOPUSERSTIME", "Najaktywniejsi ludzie wedlug czasu dnia" },
300     { "RANDTOPICS",   "Pare tematow" },
301     { "CHANGEDBY",    "zmienione przez" },
302     { "NEWTOPIC",     "nowy temat" },
303     { "RANDURLS",     "Pare URL-i" },
304     { "POSTEDBY",     "wyslane przez" },
305     { "POSTEDURL",    "URL" },
306     { "TOPWORDS",     "Najczestsze slowa" },
307     { "WORD",         "slowo" },
308     { "OCCURRENCES",  "wystapienia" },
309     { "BIGNUMBERS",   "Pare wielkich liczb..." },
310     { "NUMBERS",      "liczby" },
311     { "TIME",         "%d linii (%d dni) sparsowanych w %d sekund" },
312     { "FOOTER",       "Statystyki wygenerowane przez" },
313     { "C_SMILE",      "jest czesto szczesliwy :)" },
314     { "C_FROWN",      "jest czesto smutny :(" },
315     { "C_EXCLAM",     "duzo krzyczy !" },
316     { "C_QUESTION",   "zadaje duzo pytan ?" },
317     { "C_ME",         "lubi /mnie polecenie" },
318     { "C_TOPIC",      "czesto zmienia temat" },
319     { "C_MODE",       "czesto zmienia tryb" },
320     { "C_KICK",       "lubi /kopac" },
321     { "C_KICKED",     "czesto go wykopuja" },
322     { "C_URL",        "wysyla duzo URL-i" },
323     { "C_JOIN",       "nie wie czy zostac czy wyjsc" },
324     { "C_NICK",       "czesto zmienia swojego nicka" },
325     { "C_MONOLOGUE",  "czesto mowi monologiem" }
326   },
327   { /* Finnish language */
328     /* contributed by Antti Huopana <ahuopana@ratol.fi> */
329     { "Finnish",      "fi" },
330     { "CHARSET",      "ISO-8859-1" },
331     { "HEADER",       "Kanavan %s tilastot - %s" },
332     { "LEGEND",       "Merkkien selitykset" },
333     { "LASTDAYS",     "Viime päivien tilastot" },
334     { "TOPHOURS",     "Tilastot tunneittain" },
335     { "TOPUSERS",     "Aktiivisimmat ihmiset" },
336     { "OTHERS",       "Jäljelle jäi %d joita ei listattu..." },
337     { "NBLINES",      "rivit" },
338     { "NICK",         "nikki" },
339     { "AVGLETTERS",   "kirjainta/rivi" },
340     { "HOURS",        "tunnit" },
341     { "QUOTE",        "satunnainen viesti" },
342     { "TOPUSERSTIME", "Vuorokauden ajan mukaan aktiivisimmat" },
343     { "RANDTOPICS",   "Joitakin aiheita" },
344     { "CHANGEDBY",    "vaihtaja" },
345     { "NEWTOPIC",     "aihe" },
346     { "RANDURLS",     "Joitakin URLeja" },
347     { "POSTEDBY",     "lähettäjä" },
348     { "POSTEDURL",    "URL" },
349     { "TOPWORDS",     "Eniten käytettyjä sanoja" },
350     { "WORD",         "sana" },
351     { "OCCURRENCES",  "käytetty" },
352     { "BIGNUMBERS",   "Joitakin isoja lukuja..." },
353     { "NUMBERS",      "luvut" },
354     { "TIME",         "%d riviä (%d päivää) parsittu %d sekunnissa" },
355     { "FOOTER",       "Tilastot on generoinut" },
356     { "C_SMILE",      "on usein iloinen :)" },
357     { "C_FROWN",      "on usein surullinen :(" },
358     { "C_EXCLAM",     "möykkää paljon !" },
359     { "C_QUESTION",   "kyselee liikaa ?" },
360     { "C_ME",         "pitää itsestään" },
361     { "C_TOPIC",      "vaihtaa usein aihetta" },
362     { "C_MODE",       "haluaa elää muuttuvassa maailmassa" },
363     { "C_KICK",       "pitää potkimisesta" },
364     { "C_KICKED",     "tykkää tulla potkituksi" },
365     { "C_URL",        "surffailee liikaa" },
366     { "C_JOIN",       "ei tiedä ollakko vai eikö olla" },
367     { "C_NICK",       "kärsii identiteettiongelmista" },
368     { "C_MONOLOGUE",  "höpöttää paljon itsekseen" }
369   },
370   { /* Italian language */
371     /* contributed by Coviello Giuseppe <giuseppecoviello@tin.it> <http://coviello.altervista.org> */
372     { "Italian",      "it" },
373     { "CHARSET",      "ISO-8859-1" },
374     { "HEADER",       "Statistiche per il canale %s di %s" },
375     { "LEGEND",       "Legenda" },
376     { "LASTDAYS",     "Statistiche degli ultimi giorni" },
377     { "TOPHOURS",     "Statistiche in ore" },
378     { "TOPUSERS",     "Utenti pi&ugrave; attivi" },
379     { "OTHERS",       "Ci sono %d utenti non classificati..." },
380     { "NBLINES",      "righe" },
381     { "NICK",         "nick" },
382     { "AVGLETTERS",   "lettere/righe" },
383     { "HOURS",        "ore" },
384     { "QUOTE",        "messaggio casuale" },
385     { "TOPUSERSTIME", "Utenti più attivi del giorno (divisi per fasce orarie)" },
386     { "RANDTOPICS",   "Alcuni topic" },
387     { "CHANGEDBY",    "cambiato da" },
388     { "NEWTOPIC",     "nuovo topic" },
389     { "RANDURLS",     "ALcuni URL" },
390     { "POSTEDBY",     "postato da" },
391     { "POSTEDURL",    "URL" },
392     { "TOPWORDS",     "Le parole più usate" },
393     { "WORD",         "parola" },
394     { "OCCURRENCES",  "usata" },
395     { "BIGNUMBERS",   "Alcuni numeri ..." },
396     { "NUMBERS",      "numeri" },
397     { "TIME",         "%d righe (%d giorni) esaminate in %d secondi" },
398     { "FOOTER",       "Statistiche generate da" },
399     { "C_SMILE",      "è spesso felice :)" },
400     { "C_FROWN",      "è spesso triste :(" },
401     { "C_EXCLAM",     "esclama molto !" },
402     { "C_QUESTION",   "fa molte domande ?" },
403     { "C_ME",         "ama il comando /me" },
404     { "C_TOPIC",      "cambia spesso il topic" },
405     { "C_MODE",       "cambia spesso i mode" },
406     { "C_KICK",       "ama /kick(are)" },
407     { "C_KICKED",     "è kickato spesso" },
408     { "C_URL",        "posta molti URL" },
409     { "C_JOIN",       "non sa se è ora di andare o restare" },
410     { "C_NICK",       "cambia spesso il nick" },
411     { "C_MONOLOGUE",  "fa molti monologhi" }
412   },
413   { /* Dutch language */
414     /* contributed by Jeroen Ubbink <crasp@blackbyte.nl> */
415     { "Dutch",        "nl" },
416     { "CHARSET",      "ISO-8859-1" },
417     { "HEADER",       "Statistieken voor %s door %s" },
418     { "LEGEND",       "Legenda" },
419     { "LASTDAYS",     "Statistieken van de laatste dagen" },
420     { "TOPHOURS",     "Statistieken per uur" },
421     { "TOPUSERS",     "Meest actieve mensen" },
422     { "OTHERS",       "Er zijn nog %d niet in de top..." },
423     { "NBLINES",      "regels" },
424     { "NICK",         "nick" },
425     { "AVGLETTERS",   "letters/lijn" },
426     { "HOURS",        "uren" },
427     { "QUOTE",        "Willekeurige regel" },
428     { "TOPUSERSTIME", "Meest actieve mensen per tijdstip per dag" },
429     { "RANDTOPICS",   "Enkele topics" },
430     { "CHANGEDBY",    "gewijzigd door" },
431     { "NEWTOPIC",     "nieuwe topic" },
432     { "RANDURLS",     "Enkele URLs" },
433     { "POSTEDBY",     "Geplaatst door" },
434     { "POSTEDURL",    "URL" },
435     { "TOPWORDS",     "Meest gebruikte woorden" },
436     { "WORD",         "woord" },
437     { "OCCURRENCES",  "aantal" },
438     { "BIGNUMBERS",   "Enkele grote aantallen..." },
439     { "NUMBERS",      "numbers" },
440     { "TIME",         "%d regels (%d dagen) verwerkt in %d seconden" },
441     { "FOOTER",       "Statistieken gegenereert door" },
442     { "C_SMILE",      "is vaak vrolijk :)" },
443     { "C_FROWN",      "is vaak droevig :(" },
444     { "C_EXCLAM",     "schreeuwt veel !" },
445     { "C_QUESTION",   "stelt veel vragen ?" },
446     { "C_ME",         "vindt /me een leuk commando" },
447     { "C_TOPIC",      "verandert vaak de topic" },
448     { "C_MODE",       "verandert vaak de modes" },
449     { "C_KICK",       "vindt /kick erg leuk" },
450     { "C_KICKED",     "wordt vaak gekickt" },
451     { "C_URL",        "plaatst veel URLs" },
452     { "C_JOIN",       "twijfelt tussen blijven of gaan" },
453     { "C_NICK",       "verandert vaak van nick" },
454     { "C_MONOLOGUE",  "spreekt veel monologen" }
455   }, 
456   { /* Russian language */
457     { "Russian",      "ru" },
458     { "CHARSET",      "KOI8-R" },
459     { "HEADER",       "óÔÁÔÉÓÔÉËÁ ÄÌÑ %s ÏÔ %s" },
460     { "LEGEND",       "ïÂÏÚÎÁÞÅÎÉÑ" },
461     { "LASTDAYS",     "óÔÁÔÉÓÔÉËÁ ÐÏÓÌÅÄÎÉÈ ÄÎÅÊ" },
462     { "TOPHOURS",     "ðÏÞÁÓÏ×ÁÑ ÓÔÁÔÉÓÔÉËÁ" },
463     { "TOPUSERS",     "áËÔÉ×ÎÅÊÛÉÅ ÌÀÄÉ" },
464     { "OTHERS",       "ïÓÔÁÌÏÓØ %d ÎÅÐÏÄÓÞÉÔÁÎÙÈ..." },
465     { "NBLINES",      "ÓÔÒÏËÉ" },
466     { "NICK",         "ÎÉË" },
467     { "AVGLETTERS",   "ÂÕË×Ù/ÓÔÒÏËÉ" },
468     { "HOURS",        "ÞÁÓÙ" },
469     { "QUOTE",        "ÓÌÕÞÁÊÎÏÅ ÓÏÏÂÝÅÎÉÅ" },
470     { "TOPUSERSTIME", "áËÔÉ×ÎÅÊÛÉÅ ÌÀÄÉ ÐÏ ×ÒÅÍÅÎÉ ÄÎÑ" },
471     { "RANDTOPICS",   "îÅÓËÏÌØËÏ ÔÏÐÉËÏ×" },
472     { "CHANGEDBY",    "ÉÚÍÅΣÎ" },
473     { "NEWTOPIC",     "ÎÏ×ÙÊ ÔÏÐÉË" },
474     { "RANDURLS",     "îÅÓËÏÌØËÏ URLÏ×" },
475     { "POSTEDBY",     "ÏÐÕÂÌÉËÏ×ÁÌ" },
476     { "POSTEDURL",    "URL" },
477     { "TOPWORDS",     "þÁÓÔÏ ÉÓÐÏÌØÚÕÅÍÙÅ ÓÌÏ×Á" },
478     { "WORD",         "ÓÌÏ×Ï" },
479     { "OCCURRENCES",  "ÐÒÏÉÛÅÓÔ×ÉÑ" },
480     { "BIGNUMBERS",   "îÅÓËÏÌØËÏ ÂÏÌØÛÉÈ ÞÉÓÅÌ..." },
481     { "NUMBERS",      "ÞÉÓÌÁ" },
482     { "TIME",         "%d ÓÔÒÏË (%d ÄÎÅÊ) ÏÂÒÁÂÏÔÁÎÏ ÚÁ %d ÓÅËÕÎÄ" },
483     { "FOOTER",       "óÔÁÔÉÓÔÉËÁ ÓÇÅÎÅÒÉÒÏ×ÁÎÁ" },
484     { "C_SMILE",      "ÞÁÓÔÏ ÓÞÁÓÌÉ× :)" },
485     { "C_FROWN",      "ÞÁÓÔÏ ÎÅÓÞÁÓÔÅΠ:(" },
486     { "C_EXCLAM",     "ÍÎÏÇÏ ×ÏÓËÌÉÃÁÅÔ !" },
487     { "C_QUESTION",   "ÚÁÄÁ£Ô ÍÎÏÇÏ ×ÏÐÒÏÓÏ× ?" },
488     { "C_ME",         "ÌÀÂÉÔ /me command" },
489     { "C_TOPIC",      "ÞÁÓÔÏ ÍÅÎÑÅÔ ÔÏÐÉË" },
490     { "C_MODE",       "ÞÁÓÔÏ ÍÅÎÑÅÔ ÒÅÖÉÍÙ" },
491     { "C_KICK",       "ÌÀÂÉÔ /kick" },
492     { "C_KICKED",     "ÞÁÓÔÏ ×ÙËÉÄÙ×ÁÀÔ" },
493     { "C_URL",        "ÐÕÂÌÉËÕÅÔ ÍÎÏÇÏ URLÏ×" },
494     { "C_JOIN",       "ÎÅ ÚÎÁÅÔ - ÏÓÔÁÔØÓÑ ÉÌÉ ÕÊÔÉ" },
495     { "C_NICK",       "ÞÁÓÔÏ ÍÅÎÑÅÔ Ó×ÏÊ ÎÉË" },
496     { "C_MONOLOGUE",  "éÓÐÏÌØÚÕÅÔ ÍÎÏÇÏ ÍÏÎÏÌÏÇÏ×" }
497   }
498 };
499
500 int language=0; /* default to english */
501
502 char *L(char *key)
503 {
504   int i;
505   for (i=1;i<=NBKEYS;i++) if (strcmp(key,keys[language][i][0])==0) return(keys[language][i][1]);
506   fprintf(stderr,"unknown language key: %s\n",key);
507   return("");
508 }
509
510 /* Variables */
511
512 int debug=1; /* 0 = none ; 1 = normal ; 2 = verbose */
513 char channel[MAXLINELENGTH]="set_channel_in_config_file";
514 char maintainer[MAXLINELENGTH]="set_maintainer_in_config_file";
515 char theme[MAXLINELENGTH]="default,blue,dark,grayscale,namour,pisg,zeduel,zerezo";
516 int refresh_time=0; /* 0 = disabled */
517 int w3c_link=1; /* 0 = disabled */
518 char header[MAXLINELENGTH]="none";
519 char footer[MAXLINELENGTH]="none";
520 int totallines=0;
521 time_t debut;
522 int top_words=1; /* 0 = disabled */
523 int ranking=0; /* 0 = lines ; 1 = words ; 2 = letters */
524 int quarter=0; /* 1 = enabled */
525
526 struct user
527 {
528   char nick[MAXNICKLENGTH];
529   int lines;
530   int words;
531   int letters;
532   int hours[4];
533   char quote[MAXQUOTELENGTH+1];
534   int counters[NBCOUNTERS];
535   int temp;
536 } *users;
537 int nbusers=0;
538 int maxusers=BASEUSERS;
539
540 struct
541 {
542   char nick[MAXNICKLENGTH];
543   char url[MAXLINELENGTH];
544   char shorturl[MAXQUOTELENGTH+1];
545 } urls[NBURLS];
546 int nburls=0;
547
548 struct
549
550   char nick[MAXNICKLENGTH];
551   char topic[MAXQUOTELENGTH+1];
552 } topics[NBTOPICS];
553 int nbtopics=0;
554
555 struct
556 {
557   int lines;
558   int hours[4];
559 } lastdays[31];
560 int days=0;
561
562 int hours[24*4];
563 int lines=0;
564
565 struct letter
566 {
567   int nb;
568   struct letter *next[26];
569 } words;
570
571 struct
572 {
573   int nb;
574   char word[MAXLINELENGTH];
575 } topwords[NBWORDS];
576
577 #define isletter(c) (((c>='a')&&(c<='z'))||((c>='A')&&(c<='Z')))
578 #define lowercase(c) (((c>='A')&&(c<='Z'))?c-'A'+'a':c)
579 int findwords(char *message)
580 {
581   int i,c,n=0;
582   struct letter *pos,*tmp;
583   for (;;)
584   {
585     while (!isletter(*message)) if (*message=='\0') return n; else message++;
586     pos=&words;
587     while (isletter(*message))
588     {
589       c=lowercase(*message)-'a';
590       if (pos->next[(int)c]==NULL)
591       {
592         tmp=malloc(sizeof(struct letter));
593         if (tmp==NULL)
594         {
595           fprintf(stderr, "findwords(): malloc failure\n");
596           exit(1);
597         }
598         tmp->nb=0;
599         for (i=0;i<26;i++) tmp->next[i]=NULL;
600         pos->next[(int)c]=tmp;
601       }
602       pos=pos->next[(int)c];
603       message++; 
604     }
605     pos->nb++;
606     n++;
607   }
608   return n;
609 }
610
611 char tempword[MAXLINELENGTH];
612 void bestwords(struct letter pos,int cur)
613 {
614   int i,j;
615   if ((cur>=MINWORDLENGTH)&&(pos.nb>topwords[NBWORDS-1].nb))
616   {
617     for (i=0;pos.nb<topwords[i].nb;i++);
618     for (j=NBWORDS-1;j>i;j--)
619     {
620       topwords[j].nb=topwords[j-1].nb;
621       strcpy(topwords[j].word,topwords[j-1].word);
622     }
623     topwords[i].nb=pos.nb;
624     strcpy(topwords[i].word,tempword);
625   }
626   for (i=0;i<26;i++) if (pos.next[i]!=NULL)
627   {
628     tempword[cur]='a'+i;
629     bestwords(*(pos.next[i]),cur+1);
630   }
631   tempword[cur]='\0';
632 }
633
634 void freewords(struct letter *pos)
635 {
636   int i;
637   for (i=0;i<26;i++) if (pos->next[i]!=NULL)
638   {
639     freewords(pos->next[i]);
640     free(pos->next[i]);
641     (*pos).next[i]=NULL;
642   }
643 }
644
645 void printhtml(FILE *fic,char *string) /* replace < and > by &lt; and &gt; */
646 {
647   while (*string!='\0')
648   {
649     switch (*string)
650     {
651       case '<':fprintf(fic,"&lt;"); break;
652       case '>':fprintf(fic,"&gt;"); break;
653       case '&':fprintf(fic,"&amp;"); break;
654       default:fprintf(fic,"%c",*string); break;
655     }
656     string++;
657   }
658   return;
659 }
660
661 int dichotomic(char *nick)
662 {
663   int i,j,start=0,end=nbusers-1,middle;
664   while (start<=end)
665   {
666     middle=(start+end)/2;
667     if (strcmp(nick,users[middle].nick)>0) start=middle+1; else end=middle-1;
668   }
669   if (strcmp(nick,users[start].nick)!=0)
670   {
671     nbusers++;
672     if (nbusers>=maxusers)
673     {
674       maxusers+=BASEUSERS;
675       if (debug==2) fprintf(stderr,"allocating more users : %d\n",maxusers);
676       if ((users=realloc(users,maxusers*sizeof(struct user)))==NULL) { fprintf(stderr,"too many users : unable to realloc memory\n"); exit(1); }
677     }
678     for (i=nbusers-1;i>start;i--)
679     {
680       strcpy(users[i].nick,users[i-1].nick);
681       users[i].lines=users[i-1].lines;
682       users[i].words=users[i-1].words;
683       users[i].letters=users[i-1].letters;
684       for (j=0;j<4;j++) users[i].hours[j]=users[i-1].hours[j];
685       strcpy(users[i].quote,users[i-1].quote);
686       for (j=0;j<NBCOUNTERS;j++) users[i].counters[j]=users[i-1].counters[j];
687       users[i].temp=users[i-1].temp;
688     }
689     strcpy(users[start].nick,nick);
690     users[start].lines=0;
691     users[start].words=0;
692     users[start].letters=0;
693     for (j=0;j<4;j++) users[start].hours[j]=0;
694     users[start].quote[0]='\0';
695     for (j=0;j<NBCOUNTERS;j++) users[start].counters[j]=0;
696     users[start].temp=0;
697   }
698   return(start);
699 }
700
701 void parse_log(char *logfile)
702 {
703   FILE *fic;
704   char line[MAXLINELENGTH];
705   int pos;
706   int i,j;
707   char *nick,*message;
708   int nickstart;
709   int mononick,monolines;
710   int temp,hour;
711
712   if ((fic=fopen(logfile,"rt"))==NULL) { fprintf(stderr,"can't open log file \"%s\"\n",logfile); exit(1); }
713   if (debug) printf("working on %s : ",channel);
714   while (fgets(line,MAXLINELENGTH,fic)!=NULL)
715   {
716     /* remove \n */
717     for (i=0;line[i]!=0;i++);
718     if (i>=MAXLINELENGTH-1) { fprintf(stderr,"line %d is too long\n",totallines); exit(1); }
719     line[i-1]='\0';
720     pos=0;
721     totallines++;
722     if (totallines%10000==0 && debug) { printf("."); fflush(stdout); }
723     if (strncmp("--- Day changed",line,15)==0) /* --- Day changed Wed May 01 2002 */
724     {
725       for (i=30;i>0;i--)
726       {
727         lastdays[i].lines=lastdays[i-1].lines;
728         for (j=0;j<4;j++) lastdays[i].hours[j]=lastdays[i-1].hours[j];
729       }
730       lastdays[0].lines=0;
731       for (j=0;j<4;j++) lastdays[0].hours[j]=0;
732       days++;
733     }
734     else if (strncmp("-!- mode/",&line[6],9)==0) /* 00:00 -!- mode/#channel [...] by (Nick, Nick2, )Nick3 */
735     {
736       for (i=strlen(line);line[i]!=' ';i--);
737       nick=&line[i+1];
738       users[dichotomic(nick)].counters[D_MODE]++;
739     }
740     else if (strncmp("-!-",&line[6],3)==0) /* 00:00 -!- Nick something... */
741     {
742       for (i=10;line[i]!=' ';i++);
743       line[i]='\0';
744       nick=&line[10];
745       message=&line[i+1];
746       if (strncmp("changed the topic of",message,20)==0) /* 00:00 -!- Nick changed the topic of #channel to: new topic */
747       {
748         users[dichotomic(nick)].counters[D_TOPIC]++;
749         for (i=21;message[i]!=':';i++);
750         message=&message[i+2];
751         nbtopics++;
752         if ((nbtopics<=NBTOPICS) || (rand()%(nbtopics/NBTOPICS)==0))
753         {
754           temp=nbtopics<=NBTOPICS?nbtopics-1:rand()%NBTOPICS;
755           strcpy(topics[temp].nick,nick);
756           strncpy(topics[temp].topic,message,MAXQUOTELENGTH);
757         }
758       }
759       else if (strncmp("was kicked from",message,15)==0) /* 00:00 -!- Nick was kicked from #channel by Nick [Reason] */
760       {
761         users[dichotomic(nick)].counters[D_KICKED]++;
762         for (i=16;message[i]!=' ';i++);
763         message=&message[i+4];
764         for (i=0;message[i]!=' ';i++);
765         message[i]='\0';
766         users[dichotomic(message)].counters[D_KICK]++;
767       }
768       else if (strncmp("is now known as",message,15)==0) /* 00:00 -!- Nick is now known as Nick */
769         users[dichotomic(nick)].counters[D_NICK]++;
770       else if (message[0]=='[') /* 00:00 -!- Nick [user@host] something... */
771       {
772         for (i=0;message[i]!=']';i++);
773         message=&message[i+2];
774         if (strncmp("has joined",message,10)==0) /* 00:00 -!- Nick [user@host] has joined #channel */
775           users[dichotomic(nick)].counters[D_JOIN]++;
776         else if (strncmp("has quit",message,8)==0); /* 00:00 -!- Nick [user@host] has quit [Reason] */
777         else if (strncmp("has left",message,8)==0); /* 00:00 -!- Nick [user@host] has left #channel [Reason] */
778         else;
779       }
780     }
781     else if ((line[6]=='<') || (line[7]=='*'))
782     {
783       line[2]='\0';
784       hour=atoi(line);
785       if (line[7]=='*') /* 00:00  * Nick the message */
786       {
787         for (i=9;line[i]!=' ';i++);
788         nick=&line[9];
789         message=&line[i+1];
790       }
791       else if (line[7]=='>') /* 00:00 <>>>?Nick<<<> the personal message */
792                              /* 00:00 <>>?Nick<<> the personal message */
793       {
794         for (i=10;line[i]!='<';i++);
795         nick=&line[10];
796         if (line[9]=='>') nick++;
797         message=&line[i+5];
798       }
799       else /* 00:00 <?Nick> the message */
800       {
801
802         /* 
803          * Irssi doesn't log channel mode with show_nickmode = OFF    
804          * the following covers op, half-op, voice and show_nickmode_empty                 
805          */
806         if (line[7]=='@' || line[7]=='%' || line[7]=='+' || line[7]==' ') {
807             nickstart = 8;
808         } else {
809             nickstart = 7;
810         }
811           
812         for (i=nickstart;line[i]!='>';i++);
813         nick=&line[nickstart];
814         message=&line[i+2];
815       }
816       line[i]='\0';
817       i=dichotomic(nick);
818       if (line[7]=='*') users[i].counters[D_ME]++;
819       if (i==mononick)
820       {
821         monolines++;
822         if (monolines==5) users[i].counters[D_MONOLOGUE]++;
823       }
824       else
825       {
826         mononick=i;
827         monolines=1;
828       }
829       j=strlen(message);
830       users[i].lines++;
831       if (top_words || ranking==1) users[i].words+=findwords(message);
832       users[i].letters+=j;
833       users[i].hours[hour/6]++;
834       lastdays[0].lines++;
835       lastdays[0].hours[hour/6]++;
836       lines++;
837       if (quarter)
838       {
839         line[5]='\0';
840         hour=hour*4+atoi(&line[3])/15;
841       }
842       hours[hour]++;
843       if (message[j-1]=='?') users[i].counters[D_QUESTION]++;
844       else if (message[j-1]=='!') users[i].counters[D_EXCLAM]++;
845       else if ((message[j-3]==' ')&&(message[j-2]==':'))
846       {
847         if (message[j-1]==')') users[i].counters[D_SMILE]++;
848         else if (message[j-1]=='(') users[i].counters[D_FROWN]++;
849       }
850       if (rand()%users[i].lines==0) strncpy(users[i].quote,message,MAXQUOTELENGTH);
851       if (strncmp("http://",message,7)==0)
852       {
853         users[i].counters[D_URL]++;
854         for (i=0;(message[i]!=' ') && (i<strlen(message));i++);
855         message[i]='\0';
856         nburls++;
857         if ((nburls<=NBURLS) || (rand()%(nburls/NBURLS)==0))
858         {
859           temp=nburls<=NBURLS?nburls-1:rand()%NBURLS;
860           strcpy(urls[temp].nick,nick);
861           strcpy(urls[temp].url,message);
862           strncpy(urls[temp].shorturl,message,MAXQUOTELENGTH);
863         }
864       }
865     }
866     pos=0;
867   }
868   fclose(fic);
869   if (debug) printf(" done\n");
870 }
871
872 void parse_nick(char *nickfile)
873 {
874   FILE *fic;
875   int i,j;
876   regex_t preg;
877   char line[MAXLINELENGTH];
878   int user;
879   
880   for (i=0;i<nbusers;i++) users[i].temp=users[i].lines;
881   if ((fic=fopen(nickfile,"rt"))==NULL) { fprintf(stderr,"can't open nick file \"%s\"\n",nickfile); exit(1); }
882   while (fscanf(fic,"%s",line)==1)
883   {
884     user=dichotomic(line);
885     fscanf(fic,"%s",line);
886     if (regcomp(&preg,line,0)!=0) { fprintf(stderr,"error in nick file"); exit(1); }
887     for (i=0;i<nbusers;i++) if ((i!=user) && (regexec(&preg,users[i].nick,0,0,0)==0) && (users[i].lines>=0))
888     {
889       if (users[i].temp>users[user].temp) /* for nick alias, keep the random quote of the most used nick */
890       {
891         strcpy(users[user].quote,users[i].quote);
892         users[user].temp=users[i].temp;
893       }
894       users[user].lines+=users[i].lines;
895       users[user].words+=users[i].words;
896       users[user].letters+=users[i].letters;
897       for (j=0;j<4;j++) users[user].hours[j]+=users[i].hours[j];
898       for (j=0;j<NBCOUNTERS;j++) users[user].counters[j]+=users[i].counters[j];
899       /* "remove" old user */
900       users[i].lines=-1;
901       users[i].words=-1;
902       users[i].letters=-1;
903       for (j=0;j<4;j++) users[i].hours[j]=-1;
904       for (j=0;j<NBCOUNTERS;j++) users[i].counters[j]=-1;
905     }
906     regfree(&preg);
907   }
908   fclose(fic);
909   /* "remove" the ignored nicks */
910   i=dichotomic("<NULL>");
911   users[i].lines=-1;
912   users[i].words=-1;
913   users[i].letters=-1;
914   for (j=0;j<4;j++) users[i].hours[j]=-1;
915   for (j=0;j<NBCOUNTERS;j++) users[i].counters[j]=-1;
916 }
917
918 void gen_xhtml(char *xhtmlfile)
919 {
920   FILE *fic;
921   FILE *sfic;
922   int i,j,k;
923   int user,max,temp;
924   char line[MAXLINELENGTH];
925   char *subtheme;
926   
927   if ((fic=fopen(xhtmlfile,"wt"))==NULL) { fprintf(stderr,"can't open xhtml file \"%s\"\n",xhtmlfile); exit(1); }
928   
929   /* header */
930   if (strcmp("none",header)==0)
931   {
932     fprintf(fic,"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n\n");
933     fprintf(fic,"<!-- Generated by irssistats %s : %s -->\n\n",VERSION,URL);
934     fprintf(fic,"<html>\n\n<head>\n<title>");
935     fprintf(fic,L("HEADER"),channel,maintainer);
936     fprintf(fic,"</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\" />\n",L("CHARSET"));
937     if (refresh_time)
938       fprintf(fic,"<meta http-equiv=\"Refresh\" content=\"%d\" />\n",refresh_time);
939     subtheme=strtok(theme,",");
940     fprintf(fic,"<link rel=\"stylesheet\" type=\"text/css\" href=\"%s.css\" title=\"%s\" />\n",subtheme,subtheme);
941     while ((subtheme=strtok(NULL,","))!=NULL)
942       fprintf(fic,"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"%s.css\" title=\"%s\" />\n",subtheme,subtheme);
943     fprintf(fic,"</head>\n\n");
944     fprintf(fic,"<body>\n\n");
945   }
946   else
947   {
948     if ((sfic=fopen(header,"rt"))==NULL) { fprintf(stderr,"can't open header file \"%s\"\n",header); exit(1); }
949     while ((temp=fread(line,1,MAXLINELENGTH,sfic))) fwrite(line,temp,1,fic);
950     fclose(sfic);
951   }
952   fprintf(fic,"<div id=\"irssistats\">\n\n<div id=\"irssistats_header\">\n<h1>");
953   fprintf(fic,L("HEADER"),channel,maintainer);
954   fprintf(fic,"</h1>\n<p>\n%s</p>\n</div>\n\n",ctime(&debut));
955
956   /* legend */
957   fprintf(fic,"<div id=\"irssistats_legend\">\n<h2>%s</h2>\n<table>\n<tr>\n",L("LEGEND"));
958   for (i=0;i<4;i++) fprintf(fic,"<td><div class=\"h%d\" style=\"width: 40px\"></div></td><td>%s %d-%d</td>\n",i+1,L("HOURS"),i*6,i*6+5);
959   fprintf(fic,"</tr>\n</table>\n</div>\n\n");
960   
961   /* last days */
962   fprintf(fic,"<div id=\"irssistats_lastdays\">\n<h2>%s</h2>\n<table>\n<tr>\n",L("LASTDAYS"));
963   max=-1;
964   for (i=30;i>=0;i--) if (lastdays[i].lines>max) max=lastdays[i].lines;
965   for (i=30;i>=0;i--)
966   {
967     fprintf(fic,"<td align=\"center\" valign=\"bottom\"><small>%d</small>",lastdays[i].lines);
968     for (j=0;j<4;j++) if (lastdays[i].hours[j]!=0) fprintf(fic,"<div class=\"v%d\" style=\"height:%dpx\"></div>",j+1,150*lastdays[i].hours[j]/max);
969     fprintf(fic,"</td>\n");
970   }
971   fprintf(fic,"</tr>\n<tr>\n");
972   for (i=30;i>=0;i--)
973     fprintf(fic,"<th>%d</th>\n",i);
974   fprintf(fic,"</tr>\n</table>\n</div>\n\n");
975   
976   /* top hours */
977   fprintf(fic,"<div id=\"irssistats_tophours\">\n<h2>%s</h2>\n<table>\n<tr>\n",L("TOPHOURS"));
978   max=-1;
979   for (i=0;i<24*4;i++) if (hours[i]>max) max=hours[i];
980   if (quarter) for (i=0;i<24*4;i++)
981   {
982     fprintf(fic,"<td align=\"center\" valign=\"bottom\">");
983     if (hours[i]!=0) fprintf(fic,"<div class=\"v%d\" style=\"width:4px;height:%dpx\"></div>",i/4/6+1,150*hours[i]/max);
984     fprintf(fic,"</td>\n");
985   }
986   else for (i=0;i<24;i++)
987   {
988     fprintf(fic,"<td align=\"center\" valign=\"bottom\"><small>%.1f%%</small>",lines!=0?(float)100*hours[i]/lines:0);
989     if (hours[i]!=0) fprintf(fic,"<div class=\"v%d\" style=\"height:%dpx\"></div>",i/6+1,150*hours[i]/max);
990     fprintf(fic,"</td>\n");
991   }
992   fprintf(fic,"</tr>\n<tr>\n");
993   for (i=0;i<24;i++)
994     if (quarter) fprintf(fic,"<th colspan=\"4\">%d</th>\n",i);
995     else fprintf(fic,"<th>%d</th>\n",i);
996   fprintf(fic,"</tr>\n</table>\n</div>\n\n");
997   
998   /* top users */
999   fprintf(fic,"<div id=\"irssistats_topusers\">\n<h2>%s</h2>\n",L("TOPUSERS"));
1000   switch (ranking)
1001   {
1002     case 0:
1003       fprintf(fic,"<table>\n<tr><th></th><th>%s</th><th>%s</th><th>%s</th><th colspan=\"2\">%s</th><th>%s</th></tr>\n",L("NICK"),L("NBLINES"),L("HOURS"),L("AVGLETTERS"),L("QUOTE"));
1004       break;
1005     default:
1006       /* "letters" and "words" ranking are not yet translated so we use the generic word "rank" ... */
1007       fprintf(fic,"<table>\n<tr><th></th><th>%s</th><th>%s</th><th>%s</th><th colspan=\"2\">%s</th><th>%s</th></tr>\n",L("NICK"),"rank",L("HOURS"),L("AVGLETTERS"),L("QUOTE"));
1008       break;
1009   }
1010   for (i=1;i<=NBUSERS;i++)
1011   {
1012     user=-1;
1013     max=0;
1014     switch (ranking)
1015     {
1016       case 0:
1017         for (j=0;j<nbusers;j++) if (users[j].lines>max) max=users[user=j].lines;
1018         break;
1019       case 1:
1020         for (j=0;j<nbusers;j++) if (users[j].words>max) max=users[user=j].words;
1021         break;
1022       case 2:
1023         for (j=0;j<nbusers;j++) if (users[j].letters>max) max=users[user=j].letters;
1024         break;
1025     }
1026     if (user!=-1)
1027     {
1028       switch (ranking)
1029       {
1030         case 0:
1031           fprintf(fic,"<tr><td>%d</td><td>%s</td><td>%d</td><td class=\"oneline\">",i,users[user].nick,users[user].lines);
1032           break;
1033         case 1:
1034           fprintf(fic,"<tr><td>%d</td><td>%s</td><td>%d</td><td class=\"oneline\">",i,users[user].nick,users[user].words);
1035           break;
1036         case 2:
1037           fprintf(fic,"<tr><td>%d</td><td>%s</td><td>%d</td><td class=\"oneline\">",i,users[user].nick,users[user].letters);
1038           break;
1039       }
1040       for (j=0;j<4;j++) if (users[user].hours[j]!=0) fprintf(fic,"<div class=\"h%d\" style=\"width:%dpx\"></div>",j+1,100*users[user].hours[j]/users[user].lines);
1041       fprintf(fic,"</td><td>%d</td><td><div class=\"hm\" style=\"width:%dpx\"></div></td><td>\"",users[user].lines!=0?users[user].letters/users[user].lines:0,users[user].lines!=0?users[user].letters/users[user].lines:0);
1042       printhtml(fic,users[user].quote);
1043       fprintf(fic,"\"</td></tr>\n");
1044       users[user].lines=-1;
1045       users[user].words=-1;
1046       users[user].letters=-1;
1047     }    
1048   }
1049   fprintf(fic,"</table>\n");
1050   temp=0;
1051   for (i=0;i<=nbusers;i++) if (users[i].lines>=0) temp++;
1052   if (temp>0)
1053   {
1054     fprintf(fic,"<p>");
1055     fprintf(fic,L("OTHERS"),temp);
1056     fprintf(fic,"</p>\n");
1057   }
1058   fprintf(fic,"</div>\n\n");
1059   
1060   /* top users by time */
1061   fprintf(fic,"<div id=\"irssistats_topuserstime\">\n<h2>%s</h2>\n",L("TOPUSERSTIME"));
1062   fprintf(fic,"<table>\n<tr><th></th>");
1063   for (i=0;i<4;i++) fprintf(fic,"<th colspan=\"2\">%s %d-%d</th>",L("HOURS"),i*6,i*6+5);
1064   fprintf(fic,"</tr>\n");
1065   for (i=1;i<=NBUSERSTIME;i++)
1066   {
1067     fprintf(fic,"<tr><td>%d</td>",i);
1068     for (j=0;j<4;j++)
1069     {
1070       user=-1;
1071       max=0;
1072       for (k=0;k<nbusers;k++) if (users[k].hours[j]>max) max=users[user=k].hours[j];
1073       if (user!=-1)
1074       {
1075         fprintf(fic,"<td>%s</td><td>%d</td>",users[user].nick,users[user].hours[j]);
1076         users[user].hours[j]=-1;
1077       }
1078       else fprintf(fic,"<td></td><td></td>");
1079     }
1080     fprintf(fic,"</tr>\n");
1081   }
1082   fprintf(fic,"</table>\n</div>\n\n");
1083
1084   /* random topics */
1085   fprintf(fic,"<div id=\"irssistats_randtopics\">\n<h2>%s</h2>\n",L("RANDTOPICS"));
1086   fprintf(fic,"<table>\n<tr><th>%s</th><th>%s</th></tr>\n",L("CHANGEDBY"),L("NEWTOPIC"));
1087   for (i=nbtopics<NBTOPICS?nbtopics-1:NBTOPICS-1;i>=0;i--)
1088   {
1089     fprintf(fic,"<tr><td>%s</td><td>\"",topics[i].nick);
1090     printhtml(fic,topics[i].topic);
1091     fprintf(fic,"\"</td></tr>\n");
1092   }
1093   fprintf(fic,"</table>\n</div>\n\n");
1094   
1095   /* random urls */
1096   fprintf(fic,"<div id=\"irssistats_randurls\">\n<h2>%s</h2>\n",L("RANDURLS"));
1097   fprintf(fic,"<table>\n<tr><th>%s</th><th>%s</th></tr>\n",L("POSTEDBY"),L("POSTEDURL"));
1098   for (i=nburls<NBURLS?nburls-1:NBURLS-1;i>=0;i--)
1099   {
1100     fprintf(fic,"<tr><td>%s</td><td>\"<a href=\"",urls[i].nick);
1101     printhtml(fic,urls[i].url);
1102     fprintf(fic,"\">");
1103     printhtml(fic,urls[i].shorturl);
1104     fprintf(fic,"</a>\"</td></tr>\n");
1105   }
1106   fprintf(fic,"</table>\n</div>\n\n");
1107   
1108   /* top words */
1109   if (top_words)
1110   {
1111     fprintf(fic,"<div id=\"irssistats_topwords\">\n<h2>%s</h2>\n",L("TOPWORDS"));
1112     fprintf(fic,"<table>\n<tr><th></th><th>%s</th><th>%s</th></tr>\n",L("WORD"),L("OCCURRENCES"));
1113     for (i=0;i<NBWORDS;i++)
1114       if (topwords[i].nb!=0) fprintf(fic,"<tr><td>%d</td><td>\"%s\"</td><td>%d</td></tr>\n",i+1,topwords[i].word,topwords[i].nb);
1115     fprintf(fic,"</table>\n</div>\n\n");
1116   }
1117   
1118   /* big numbers */
1119   fprintf(fic,"<div id=\"irssistats_bignumbers\">\n<h2>%s</h2>\n",L("BIGNUMBERS"));
1120   fprintf(fic,"<table>\n<tr><th>%s</th><th>%s</th><th>%s</th></tr>\n",L("NICK"),L("NUMBERS"),L("NBLINES"));
1121   for (i=0;i<NBCOUNTERS;i++)
1122   {
1123     user=-1;
1124     max=0;
1125     for (j=0;j<nbusers;j++) if (users[j].counters[i]>max) max=users[user=j].counters[i];
1126     if (user!=-1) fprintf(fic,"<tr><td>%s</td><td>%s</td><td>%d</td></tr>",users[user].nick,L(counters[i]),users[user].counters[i]);
1127   }
1128   fprintf(fic,"</table>\n</div>\n\n");
1129   
1130   /* footer */
1131   fprintf(fic,"<div id=\"irssistats_footer\">\n<p>");
1132   fprintf(fic,L("TIME"),totallines,days,(int)(time(NULL)-debut));
1133   fprintf(fic,"</p>\n<p>%s <a href=\"%s\">irssistats %s</a></p>\n",L("FOOTER"),URL,VERSION);
1134   if (w3c_link)
1135   {
1136     fprintf(fic,"<p>\n<a href=\"http://validator.w3.org/check/referer\"><img src=\"valid-xhtml10.png\" height=\"31\" width=\"88\" alt=\"Valid XHTML 1.0!\" /></a>\n");
1137     fprintf(fic,"<a href=\"http://jigsaw.w3.org/css-validator/check/referer\"><img src=\"valid-css.png\" height=\"31\" width=\"88\" alt=\"Valid CSS!\" /></a>\n</p>\n");
1138   }
1139   fprintf(fic,"</div>\n\n</div>");
1140   if (strcmp("none",header)==0)
1141   {
1142     fprintf(fic,"\n\n</body>\n\n</html>\n");
1143   }
1144   else
1145   {
1146     if ((sfic=fopen(footer,"rt"))==NULL) { fprintf(stderr,"can't open footer file \"%s\"\n",footer); exit(1); }
1147     while ((temp=fread(line,1,MAXLINELENGTH,sfic))) fwrite(line,temp,1,fic);
1148     fclose(sfic);
1149   }
1150   
1151   fclose(fic);
1152 }
1153
1154 void parse_config(char *configfile)
1155 {
1156   FILE *fic;
1157   char line[MAXLINELENGTH];
1158   char keyword[MAXLINELENGTH];
1159   char value[MAXLINELENGTH];
1160   int configlines=0;
1161   int i;
1162   
1163   if (configfile!=NULL)
1164   {
1165     if ((fic=fopen(configfile,"rt"))==NULL)
1166     {
1167       fprintf(stderr,"can't open config file : \"%s\"\n",configfile);
1168       exit(1);
1169     }
1170   }
1171   else
1172   {
1173     sprintf(line,"%s/.irssistats",getenv("HOME"));
1174     if ((fic=fopen(line,"rt"))==NULL)
1175       if ((fic=fopen("/etc/irssistats.conf","rt"))==NULL)
1176       {
1177         fprintf(stderr,"can't find config file : \"%s\" nor \"/etc/irssistats.conf\"\n",line);
1178         fprintf(stderr,"please give the path to the config file in argument\n");
1179         exit(1);
1180       }
1181   }
1182
1183   while (fgets(line,MAXLINELENGTH,fic))
1184   {
1185     configlines++;
1186     if (*line!=';' && *line!='#' && *line!='/' && *line!='-' && *line!='\n')
1187     {
1188       if ((sscanf(line,"%s : %s\n",(char *)&keyword,(char *)&value))!=2) { fprintf(stderr,"error in config file : each line must have the format \"keyword : value\" (line %d)\n",configlines); exit(1); }
1189       
1190       if (strcmp("debug",keyword)==0)
1191       {
1192         if (strcmp("none",value)==0) debug=0;
1193         else
1194         if (strcmp("normal",value)==0) debug=1;
1195         else
1196         if (strcmp("verbose",value)==0) { debug=2; fprintf(stderr,"switching to verbose output\n"); }
1197         else { fprintf(stderr,"unknown value for \"debug\" option, must be \"normal\", \"verbose\" or \"none\"\n"); exit(1); }
1198       }
1199       else
1200       
1201       if (strcmp("channel",keyword)==0)
1202       {
1203         if (debug==2) fprintf(stderr,"setting channel name to \"%s\"\n",value);
1204         strcpy(channel,value);
1205       }
1206       else
1207       
1208       if (strcmp("maintainer",keyword)==0)
1209       {
1210         if (debug==2) fprintf(stderr,"setting maintainer to \"%s\"\n",value);
1211         strcpy(maintainer,value);
1212       }
1213       else
1214       
1215       if (strcmp("language",keyword)==0)
1216       {
1217         if (debug==2) fprintf(stderr,"setting language to \"%s\"\n",value);
1218         for (i=0;i<NBLANGUAGES;i++) if (strcmp(value,keys[i][0][1])==0) { language=i; break; }
1219         if (i==NBLANGUAGES)
1220         {
1221           fprintf(stderr,"Invalid language : %s\n",value);
1222           fprintf(stderr,"Supported languages :\n");
1223           for (i=0;i<NBLANGUAGES;i++) fprintf(stderr,"%s = %s\n",keys[i][0][1],keys[i][0][0]);
1224           exit(1);
1225         }
1226       }
1227       else
1228       
1229       if (strcmp("theme",keyword)==0)
1230       {
1231         if (debug==2) fprintf(stderr,"setting theme to \"%s\"\n",value);
1232         strcpy(theme,value);
1233       }
1234       else
1235       
1236       if (strcmp("refresh_time",keyword)==0)
1237       {
1238         refresh_time=atoi(value);
1239         if (debug==2) fprintf(stderr,"setting refresh_time to \"%d\"\n",refresh_time);
1240       }
1241       else
1242       
1243       if (strcmp("w3c_link",keyword)==0)
1244       {
1245         if (debug==2) fprintf(stderr,"setting w3c_link to \"%s\"\n",value);
1246         if (strcmp("no",value)==0) w3c_link=0;
1247         else if (strcmp("yes",value)==0) w3c_link=1;
1248         else { fprintf(stderr,"unknown value for \"w3c_link\" option, must be \"yes\" or \"no\"\n"); exit(1); }
1249       }
1250       else
1251       
1252       if (strcmp("header",keyword)==0)
1253       {
1254         if (debug==2) fprintf(stderr,"setting header to \"%s\"\n",value);
1255         strcpy(header,value);
1256       }
1257       else
1258       
1259       if (strcmp("footer",keyword)==0)
1260       {
1261         if (debug==2) fprintf(stderr,"setting footer to \"%s\"\n",value);
1262         strcpy(footer,value);
1263       }
1264       else
1265       
1266       if (strcmp("input",keyword)==0)
1267       {
1268         if (debug==2) fprintf(stderr,"parsing log file \"%s\"\n",value);
1269         parse_log(value);
1270       }
1271       else
1272       
1273       if (strcmp("nickfile",keyword)==0)
1274       {
1275         if (debug==2) fprintf(stderr,"nick alias using file \"%s\"\n",value);
1276         parse_nick(value);
1277       }
1278       else
1279       
1280       if (strcmp("output",keyword)==0)
1281       {
1282         if (debug==2) fprintf(stderr,"generating xhtml file \"%s\"\n",value);
1283         bestwords(words,0);
1284         gen_xhtml(value);
1285         
1286         /* reset variables */
1287         nbusers=0;
1288         nburls=0;
1289         nbtopics=0;
1290         days=0;
1291         for (i=0;i<24*4;i++) hours[i]=0;
1292         lines=0;
1293         freewords(&words);
1294         for (i=0;i<NBWORDS;i++) topwords[i].nb=0;
1295         totallines=0;
1296         debut=time(NULL);
1297       }
1298       else
1299       
1300       if (strcmp("top_words",keyword)==0)
1301       {
1302         if (debug==2) fprintf(stderr,"setting top_words to \"%s\"\n",value);
1303         if (strcmp("no",value)==0) top_words=0;
1304         else if (strcmp("yes",value)==0) top_words=1;
1305         else { fprintf(stderr,"unknown value for \"top_words\" option, must be \"yes\" or \"no\"\n"); exit(1); }
1306       }
1307       else
1308       
1309       if (strcmp("ranking",keyword)==0)
1310       {
1311         if (strcmp("lines",value)==0) ranking=0;
1312         else
1313         if (strcmp("words",value)==0) ranking=1;
1314         else
1315         if (strcmp("letters",value)==0) ranking=2;
1316         else { fprintf(stderr,"unknown value for \"ranking\" option, must be \"lines\", \"words\" or \"letters\"\n"); exit(1); }
1317       }
1318       else
1319       
1320       if (strcmp("quarter",keyword)==0)
1321       {
1322         if (debug==2) fprintf(stderr,"setting quarter to \"%s\"\n",value);
1323         if (strcmp("no",value)==0) quarter=0;
1324         else if (strcmp("yes",value)==0) quarter=1;
1325         else { fprintf(stderr,"unknown value for \"quarter\" option, must be \"yes\" or \"no\"\n"); exit(1); }
1326       }
1327
1328       else { fprintf(stderr,"error in config file : \"%s\" is an unknown keyword (line %d)\n",keyword,configlines); exit(1); }        
1329     }
1330   }
1331   fclose(fic);
1332 }
1333
1334 int main(int argc,char *argv[])
1335 {
1336   if ((users=malloc(maxusers*sizeof(struct user)))==NULL) { fprintf(stderr,"unable to malloc memory\n"); exit(1); }
1337   srand(debut=time(NULL));
1338   if (argc==1) parse_config(NULL);
1339   else if (argc==2) parse_config(argv[1]);
1340   else
1341   {
1342     fprintf(stderr,"Usage : %s [/path/to/file.conf]\n",argv[0]);
1343     fprintf(stderr,"Version : irssistats %s\n",VERSION);
1344     exit(1);
1345   }
1346   return(0);
1347 }