4
0

HTMLGenerator.pm 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088
  1. package Pisg::HTMLGenerator;
  2. # Copyright and license, as well as documentation(POD) for this module is
  3. # found at the end of the file.
  4. use strict;
  5. $^W = 1;
  6. sub new
  7. {
  8. my $type = shift;
  9. my %args = @_;
  10. my $self = {
  11. cfg => $args{cfg},
  12. stats => $args{stats},
  13. users => $args{users},
  14. tmps => $args{tmps},
  15. topactive => {},
  16. };
  17. # Import common functions in Pisg::Common
  18. require Pisg::Common;
  19. Pisg::Common->import();
  20. bless($self, $type);
  21. return $self;
  22. }
  23. sub create_html
  24. {
  25. # This subroutine calls all the subroutines which create their
  26. # individual stats. The name of the functions is somewhat saying - if
  27. # you don't understand it, most subs have a better explanation in the
  28. # sub itself.
  29. my $self = shift;
  30. $self->_topactive();
  31. print "Now generating HTML($self->{cfg}->{outputfile})...\n"
  32. unless ($self->{cfg}->{silent});
  33. open (OUTPUT, "> $self->{cfg}->{outputfile}") or
  34. die("$0: Unable to open outputfile($self->{cfg}->{outputfile}): $!\n");
  35. if ($self->{cfg}->{showtime}) {
  36. $self->{cfg}->{tablewidth} += 40;
  37. }
  38. if ($self->{cfg}->{showlinetime}) {
  39. $self->{cfg}->{tablewidth} += 100;
  40. }
  41. if ($self->{cfg}->{showwordtime}) {
  42. $self->{cfg}->{tablewidth} += 100;
  43. }
  44. if ($self->{cfg}->{showwords}) {
  45. $self->{cfg}->{tablewidth} += 40;
  46. }
  47. if ($self->{cfg}->{showwpl}) {
  48. $self->{cfg}->{tablewidth} += 40;
  49. }
  50. if ($self->{cfg}->{showcpl}) {
  51. $self->{cfg}->{tablewidth} += 40;
  52. }
  53. $self->{cfg}->{headwidth} = $self->{cfg}->{tablewidth} - 4;
  54. $self->_htmlheader();
  55. $self->_pageheader()
  56. if ($self->{cfg}->{pagehead} ne 'none');
  57. if ($self->{cfg}->{showactivetimes}) {
  58. $self->_activetimes();
  59. }
  60. $self->_activenicks();
  61. if ($self->{cfg}->{showmostactivebyhour}) {
  62. $self->_mostactivebyhour();
  63. }
  64. if ($self->{cfg}->{showbignumbers}) {
  65. $self->_headline($self->_template_text('bignumtopic'));
  66. _html("<table width=\"$self->{cfg}->{tablewidth}\">\n"); # Needed for sections
  67. $self->_questions();
  68. $self->_shoutpeople();
  69. $self->_capspeople();
  70. $self->_violent();
  71. $self->_mostsmiles();
  72. $self->_mostsad();
  73. $self->_linelengths();
  74. $self->_mostwords();
  75. $self->_mostwordsperline();
  76. _html("</table>"); # Needed for sections
  77. }
  78. if ($self->{cfg}->{showmostnicks}) {
  79. $self->_mostnicks();
  80. }
  81. if ($self->{cfg}->{showmuw}) {
  82. $self->_mostusedword();
  83. }
  84. if ($self->{cfg}->{showmrn}) {
  85. $self->_mostreferencednicks();
  86. }
  87. if ($self->{cfg}->{showmru}) {
  88. $self->_mosturls();
  89. }
  90. if ($self->{cfg}->{showbignumbers}) {
  91. $self->_headline($self->_template_text('othernumtopic'));
  92. _html("<table width=\"$self->{cfg}->{tablewidth}\">\n"); # Needed for sections
  93. $self->_gotkicks();
  94. $self->_mostkicks();
  95. $self->_mostop();
  96. $self->_mosthalfop() if $self->{cfg}->{showhalfops};
  97. $self->_mostvoice() if $self->{cfg}->{showvoices};
  98. $self->_mostactions();
  99. $self->_mostmonologues();
  100. $self->_mostjoins();
  101. $self->_mostfoul();
  102. _html("</table>"); # Needed for sections
  103. }
  104. if ($self->{cfg}->{showtopics}) {
  105. $self->_headline($self->_template_text('latesttopic'));
  106. _html("<table width=\"$self->{cfg}->{tablewidth}\">\n"); # Needed for sections
  107. $self->_lasttopics();
  108. _html("</table>"); # Needed for sections
  109. }
  110. my %hash = ( lines => $self->{stats}->{totallines} );
  111. _html($self->_template_text('totallines', %hash) . "<br /><br />");
  112. $self->_pagefooter()
  113. if ($self->{cfg}->{pagefoot} ne 'none');
  114. $self->_htmlfooter();
  115. close(OUTPUT);
  116. }
  117. sub _htmlheader
  118. {
  119. my $self = shift;
  120. my %hash = (
  121. network => $self->{cfg}->{network},
  122. maintainer => $self->{cfg}->{maintainer},
  123. days => $self->{stats}->{days},
  124. nicks => scalar keys %{ $self->{stats}->{lines} }
  125. );
  126. my $css_file = $self->{cfg}->{cssdir} . $self->{cfg}->{colorscheme} . ".css";
  127. # Get the chosen CSS file
  128. open(FILE, $css_file) or open (FILE, $self->{cfg}->{search_path} . "/$css_file") or die("$0: Unable to open stylesheet($css_file): $!\n");
  129. my @CSS = <FILE>;
  130. my $title = $self->_template_text('pagetitle1', %hash);
  131. print OUTPUT <<HTML;
  132. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  133. <html>
  134. <head>
  135. <meta http-equiv="Content-Type" content="text/html; charset=$self->{cfg}->{charset}" />
  136. <title>$title</title>
  137. <style type="text/css">
  138. @CSS
  139. </style></head>
  140. <body>
  141. <div align="center">
  142. HTML
  143. _html("<span class=\"title\">$title</span><br />");
  144. _html("<br />");
  145. _html($self->_template_text('pagetitle2', %hash) . " " . $self->get_time());
  146. _html("<br />" . $self->_template_text('pagetitle3', %hash) . "<br /><br />");
  147. }
  148. sub get_time
  149. {
  150. my $self = shift;
  151. my ($tday, %hash);
  152. my $month = $self->_template_text('month', %hash);
  153. my $day = $self->_template_text('day', %hash);
  154. my @month = split(" ", $month);
  155. my @day = split(" ", $day);
  156. # Get the Date from the users computer
  157. my $timezone = $self->{cfg}->{timeoffset} * 3600;
  158. my ($sec,$min,$hour,$mday,$mon,$year,$wday) = localtime(time+$timezone);
  159. $year += 1900; # Y2K Patch
  160. $min =~ s/^(.)$/0$1/; # Fixes the display of mins/secs below
  161. $sec =~ s/^(.)$/0$1/; # it displays 03 instead of 3
  162. if ($hour > '23') { # Checks to see if it Midnight
  163. $hour = 12; # Makes it display the hour 12
  164. $tday = "AM"; # Display AM
  165. } elsif($hour > '12') { # Get rid of the Military time and
  166. $hour -= 12; # put it into normal time
  167. $tday = "PM"; # If past Noon and before Midnight set
  168. } else {
  169. $tday = "AM"; # If it's past Midnight and before Noon
  170. } # set the time as AM
  171. # Use 24 hours pr. day
  172. if ($tday eq "PM" && $hour < '12') {
  173. $hour += 12;
  174. }
  175. return "$day[$wday] $mday $month[$mon] $year - $hour:$min:$sec";
  176. }
  177. sub _htmlfooter
  178. {
  179. my $self = shift;
  180. my %hash;
  181. my $pisg_hp = $self->_template_text('pisghomepage');
  182. $hash{pisg_url} = "<a href=\"http://pisg.sourceforge.net/\" title=\"$pisg_hp\" class=\"background\">pisg</a>";
  183. my $author_hp = $self->_template_text('authorhomepage');
  184. $hash{author_url} = "<a href=\"http://wtf.dk/hp/\" title=\"$author_hp\" class=\"background\">Morten Brix Pedersen</a>";
  185. $hash{version} = $self->{cfg}->{version};
  186. my $hours = $self->_template_text('hours');
  187. my $mins = $self->_template_text('minutes');
  188. my $secs = $self->_template_text('seconds');
  189. my $and = $self->_template_text('and');
  190. my $h = $self->{stats}->{processtime}{hours};
  191. my $m = $self->{stats}->{processtime}{mins};
  192. my $s = $self->{stats}->{processtime}{secs};
  193. $hash{time} = "$h $hours $m $mins $and $s $secs";
  194. my $stats_gen = $self->_template_text('stats_gen_by', %hash);
  195. my $author_text = $self->_template_text('author', %hash);
  196. my $stats_text = $self->_template_text('stats_gen_in', %hash);
  197. print OUTPUT <<HTML;
  198. <span class="small">
  199. $stats_gen<br />
  200. $author_text<br />
  201. $stats_text
  202. </span>
  203. </div>
  204. </body>
  205. </html>
  206. HTML
  207. }
  208. sub _headline
  209. {
  210. my $self = shift;
  211. my ($title) = (@_);
  212. print OUTPUT <<HTML;
  213. <br />
  214. <table width="$self->{cfg}->{headwidth}" cellpadding="1" cellspacing="0" border="0">
  215. <tr>
  216. <td class="headlinebg">
  217. <table width="100%" cellpadding="2" cellspacing="0" border="0">
  218. <tr>
  219. <td class="headtext">$title</td>
  220. </tr>
  221. </table>
  222. </td>
  223. </tr>
  224. </table>
  225. HTML
  226. }
  227. sub _pageheader
  228. {
  229. my $self = shift;
  230. open(PAGEHEAD, $self->{cfg}->{pagehead}) or die("$0: Unable to open $self->{cfg}->{pagehead} for reading: $!\n");
  231. while (<PAGEHEAD>) {
  232. _html($_);
  233. }
  234. close(PAGEHEAD);
  235. }
  236. sub _pagefooter
  237. {
  238. my $self = shift;
  239. open(PAGEFOOT, $self->{cfg}->{pagefoot}) or die("$0: Unable to open $self->{cfg}->{pagefoot} for reading: $!\n");
  240. while (<PAGEFOOT>) {
  241. _html($_);
  242. }
  243. close(PAGEFOOT);
  244. }
  245. sub _activetimes
  246. {
  247. # The most actives times on the channel
  248. my $self = shift;
  249. my (%output, $class);
  250. $self->_headline($self->_template_text('activetimestopic'));
  251. my @toptime = sort { $self->{stats}->{times}{$b} <=> $self->{stats}->{times}{$a} } keys %{ $self->{stats}->{times} };
  252. my $highest_value = $self->{stats}->{times}{$toptime[0]};
  253. my @now = localtime($self->{cfg}->{timestamp});
  254. my $image;
  255. for my $hour (sort keys %{ $self->{stats}->{times} }) {
  256. my $size = ($self->{stats}->{times}{$hour} / $highest_value) * 100;
  257. my $percent = ($self->{stats}->{times}{$hour} / $self->{stats}->{totallines}) * 100;
  258. $percent =~ s/(\.\d)\d+/$1/;
  259. if ($size < 1 && $size != 0) {
  260. # Opera doesn't understand '0.xxxx' in the height="xx" attr,
  261. # so we simply round up to 1.0 here.
  262. $size = 1.0;
  263. }
  264. $image = "pic_v_".(int($hour/6)*6);
  265. $image = $self->{cfg}->{$image};
  266. $output{$hour} = "<td align=\"center\" valign=\"bottom\" class=\"asmall\">$percent%<br /><img src=\"$self->{cfg}->{piclocation}/$image\" width=\"15\" height=\"$size\" alt=\"$percent\" /></td>\n";
  267. }
  268. _html("<table border=\"0\"><tr>\n");
  269. for ($b = 0; $b < 24; $b++) {
  270. $a = sprintf("%02d", $b);
  271. if (!defined($output{$a}) || $output{$a} eq "") {
  272. _html("<td align=\"center\" valign=\"bottom\" class=\"asmall\">0%</td>");
  273. } else {
  274. _html($output{$a});
  275. }
  276. }
  277. _html("</tr><tr>");
  278. # Remove leading zero
  279. $toptime[0] =~ s/0(\d)/$1/;
  280. for ($b = 0; $b < 24; $b++) {
  281. if ($toptime[0] == $b) {
  282. # Highlight the top time
  283. $class = 'hirankc10center';
  284. } else {
  285. $class = 'rankc10center';
  286. }
  287. _html("<td class=\"$class\" align=\"center\">$b</td>");
  288. }
  289. _html("</tr></table>");
  290. if($self->{cfg}->{showlegend} == 1) {
  291. $self->_legend();
  292. }
  293. }
  294. sub _activenicks
  295. {
  296. # The most active nicks (those who wrote most lines)
  297. my $self = shift;
  298. $self->_headline($self->_template_text('activenickstopic'));
  299. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  300. _html("<td>&nbsp;</td>"
  301. . "<td class=\"tdtop\"><b>" . $self->_template_text('nick') . "</b></td>"
  302. . "<td class=\"tdtop\"><b>" . $self->_template_text('numberlines') . "</b></td>"
  303. . ($self->{cfg}->{showtime} ? "<td class=\"tdtop\"><b>".$self->_template_text('show_time')."</b></td>" : "")
  304. . ($self->{cfg}->{showwords} ? "<td class=\"tdtop\"><b>".$self->_template_text('show_words')."</b></td>" : "")
  305. . ($self->{cfg}->{showwpl} ? "<td class=\"tdtop\"><b>".$self->_template_text('show_wpl')."</b></td>" : "")
  306. . ($self->{cfg}->{showcpl} ? "<td class=\"tdtop\"><b>".$self->_template_text('show_cpl')."</b></td>" : "")
  307. . ($self->{cfg}->{showlastseen} ? "<td class=\"tdtop\"><b>".$self->_template_text('show_lastseen')."</b></td>" : "")
  308. . ($self->{cfg}->{showrandquote} ? "<td class=\"tdtop\"><b>".$self->_template_text('randquote')."</b></td>" : "")
  309. );
  310. my @active;
  311. my $nicks;
  312. if ($self->{cfg}->{sortbywords}) {
  313. @active = sort { $self->{stats}->{words}{$b} <=> $self->{stats}->{words}{$a} } keys %{ $self->{stats}->{words} };
  314. $nicks = scalar keys %{ $self->{stats}->{words} };
  315. } else {
  316. @active = sort { $self->{stats}->{lines}{$b} <=> $self->{stats}->{lines}{$a} } keys %{ $self->{stats}->{lines} };
  317. $nicks = scalar keys %{ $self->{stats}->{lines} };
  318. }
  319. if ($self->{cfg}->{activenicks} > $nicks) { $self->{cfg}->{activenicks} = $nicks; }
  320. my $have_userpics;
  321. for (my $c = 0; $c < $self->{cfg}->{activenicks}; $c++) {
  322. my $nick = $active[$c];
  323. if ($self->{users}->{userpics}{$nick} && $self->{cfg}->{userpics} !~ /n/i) {
  324. $have_userpics = 1;
  325. _html("<td class=\"tdtop\"><b>" . $self->_template_text('userpic') ."</b></td>");
  326. last;
  327. }
  328. }
  329. _html("</tr>");
  330. for (my $i = 0; $i < $self->{cfg}->{activenicks}; $i++) {
  331. my $c = $i + 1;
  332. my $nick = $active[$i];
  333. my $visiblenick = $active[$i];
  334. my $randomline;
  335. if (not defined $self->{stats}->{sayings}{$nick}) {
  336. if ($self->{stats}->{actions}{$nick}) {
  337. $randomline = $self->_format_line($self->{stats}->{actionlines}{$nick});
  338. } else {
  339. $randomline = "";
  340. }
  341. } else {
  342. $randomline = $self->{stats}->{sayings}{$nick};
  343. }
  344. if ($randomline) {
  345. # Wrap longer than 40 chars words. It will break long HTML
  346. # links.
  347. # TODO: put <br> after 40 ! or ? marks - IE bug
  348. # TODO: respect long URLs (like merge spaces back in url?)
  349. # glen, 29/11/2002
  350. 1 while $randomline =~ s/(\S{40})(\S+)/$1 $2/m;
  351. $randomline = htmlentities($randomline);
  352. # Convert URLs and e-mail addys to links
  353. $randomline = $self->_replace_links($randomline);
  354. }
  355. # Add a link to the nick if there is any
  356. if ($self->{users}->{userlinks}{$nick}) {
  357. $visiblenick = $self->_replace_links($self->{users}->{userlinks}{$nick}, $nick);
  358. }
  359. my $color = $self->generate_colors($c);
  360. my $class = 'rankc';
  361. if ($c == 1) {
  362. $class = 'hirankc';
  363. }
  364. my $lastseen;
  365. if ($self->{cfg}->{showlastseen}) {
  366. $lastseen = $self->{stats}->{days} - $self->{stats}->{lastvisited}{$nick};
  367. if ($lastseen == 0) {
  368. $lastseen = $self->_template_text('today');
  369. } elsif ($lastseen == 1) {
  370. $lastseen = "$lastseen " .$self->_template_text('lastseen1');
  371. } else {
  372. $lastseen = "$lastseen " .$self->_template_text('lastseen2');
  373. }
  374. }
  375. _html("<tr><td class=\"$class\" align=\"left\">$c</td>");
  376. my $line = $self->{stats}->{lines}{$nick};
  377. my $w = $self->{stats}->{words}{$nick} ? $self->{stats}->{words}{$nick} : 0;
  378. my $ch = $self->{stats}->{lengths}{$nick};
  379. my $sex = $self->{users}->{sex}{$nick};
  380. _html("<td style=\"background-color: $color\""
  381. . ($sex ? ($sex eq 'm' ? " class=\"male\">"
  382. : ($sex eq 'f' ? " class=\"female\">" : " class=\"bot\">")) : ">")
  383. ."$visiblenick</td>"
  384. . ($self->{cfg}->{showlinetime} ?
  385. "<td style=\"background-color: $color\" nowrap=\"nowrap\">".$self->_user_linetimes($nick,$active[0])."</td>"
  386. : "<td style=\"background-color: $color\">$line</td>")
  387. . ($self->{cfg}->{showtime} ?
  388. "<td style=\"background-color: $color\">".$self->_user_times($nick)."</td>"
  389. : "")
  390. . ($self->{cfg}->{showwords} ?
  391. ($self->{cfg}->{showwordtime} ?
  392. "<td style=\"background-color: $color\" nowrap=\"nowrap\">".$self->_user_wordtimes($nick,$active[0])."</td>"
  393. : "<td style=\"background-color: $color\">$w</td>")
  394. : "")
  395. . ($self->{cfg}->{showwpl} ?
  396. "<td style=\"background-color: $color\">".sprintf("%.1f",$w/$line)."</td>"
  397. : "")
  398. . ($self->{cfg}->{showcpl} ?
  399. "<td style=\"background-color: $color\">".sprintf("%.1f",$ch/$line)."</td>"
  400. : "")
  401. . ($self->{cfg}->{showlastseen} ?
  402. "<td style=\"background-color: $color\">$lastseen</td>"
  403. : "")
  404. . ($self->{cfg}->{showrandquote} ?
  405. "<td style=\"background-color: $color\">\"$randomline\"</td>"
  406. : "")
  407. );
  408. my $height = $self->{cfg}->{picheight};
  409. my $width = $self->{cfg}->{picwidth};
  410. if ($self->{users}->{userpics}{$nick} && $self->{cfg}->{userpics} !~ /n/i) {
  411. _html("<td style=\"background-color: $color\" align=\"center\">");
  412. if (defined $self->{users}->{biguserpics}{$nick}) {
  413. if ($self->{users}->{biguserpics}{$nick} =~ /^http:\/\//i) {
  414. _html("<a href=\"$self->{users}->{biguserpics}{$nick}\">");
  415. } else {
  416. _html("<a href=\"$self->{cfg}->{imagepath}$self->{users}->{biguserpics}{$nick}\">");
  417. }
  418. }
  419. if ($width ne '') {
  420. if ($self->{users}->{userpics}{$nick} =~ /^http:\/\//i) {
  421. _html("<img valign=\"middle\" src=\"$self->{users}->{userpics}{$nick}\" width=\"$width\" height=\"$height\" alt=\"$nick\" />");
  422. } else {
  423. _html("<img valign=\"middle\" src=\"$self->{cfg}->{imagepath}$self->{users}->{userpics}{$nick}\" width=\"$width\" height=\"$height\" alt=\"$nick\" />");
  424. }
  425. } else {
  426. if ($self->{users}->{userpics}{$nick} =~ /^http:\/\//i) {
  427. _html("<img valign=\"middle\" src=\"$self->{users}->{userpics}{$nick}\" alt=\"$nick\" />");
  428. } else {
  429. _html("<img valign=\"middle\" src=\"$self->{cfg}->{imagepath}$self->{users}->{userpics}{$nick}\" alt=\"$nick\" />");
  430. }
  431. }
  432. if (defined $self->{users}->{biguserpics}{$nick}) {
  433. _html("</a>");
  434. }
  435. _html("</td>");
  436. } elsif ($self->{cfg}->{defaultpic} ne '' && $self->{cfg}->{userpics} !~ /n/i) {
  437. if ($self->{cfg}->{defaultpic} =~ /^http:\/\//i) {
  438. _html("<td style=\"background-color: $color\" align=\"center\"><img valign=\"middle\" src=\"$self->{cfg}->{defaultpic}\" alt=\"\" /></td>");
  439. } else {
  440. _html("<td style=\"background-color: $color\" align=\"center\"><img valign=\"middle\" src=\"$self->{cfg}->{imagepath}$self->{cfg}->{defaultpic}\" alt=\"\" /></td>");
  441. }
  442. }
  443. _html("</tr>");
  444. }
  445. _html("</table><br />");
  446. # Almost as active nicks ('These didn't make it to the top..')
  447. my $toshow = $self->{cfg}->{activenicks2} - $self->{cfg}->{activenicks};
  448. my $remain = $self->{cfg}->{activenicks} + $toshow;
  449. unless ($toshow > $nicks) {
  450. $remain = $self->{cfg}->{activenicks} + $self->{cfg}->{activenicks2};
  451. if ($remain > $nicks) {
  452. $remain = $nicks;
  453. }
  454. if ($self->{cfg}->{activenicks} < $remain) {
  455. _html("<br /><b><i>" . $self->_template_text('nottop') . "</i></b><table><tr>");
  456. for (my $i = $self->{cfg}->{activenicks}; $i < $remain; $i++) {
  457. unless ($i % 5) { if ($i != $self->{cfg}->{activenicks}) { _html("</tr><tr>"); } }
  458. my $items;
  459. if ($self->{cfg}->{sortbywords}) {
  460. $items = $self->{stats}->{words}{$active[$i]};
  461. } else {
  462. $items = $self->{stats}->{lines}{$active[$i]};
  463. }
  464. my $sex = $self->{users}->{sex}{$active[$i]};
  465. _html("<td class=\"rankc10\">"
  466. . ($sex ? ($sex eq 'm' ? "<span class=\"male\">"
  467. : ($sex eq 'f' ? "<span class=\"female\">" : "<span class=\"bot\">")) : "")
  468. ."$active[$i] ($items)"
  469. . ($sex ? "</span>" : "")
  470. ."</td>");
  471. }
  472. _html("</tr></table>");
  473. }
  474. }
  475. my %hash;
  476. $hash{totalnicks} = $nicks - $remain;
  477. if ($hash{totalnicks} > 0) {
  478. _html("<br /><b>" . $self->_template_text('totalnicks', %hash) . "</b><br />");
  479. }
  480. }
  481. sub generate_colors
  482. {
  483. my $self = shift;
  484. my $c = shift;
  485. my $h = $self->{cfg}->{hicell};
  486. $h =~ s/^#//;
  487. $h = hex $h;
  488. my $h2 = $self->{cfg}->{hicell2};
  489. $h2 =~ s/^#//;
  490. $h2 = hex $h2;
  491. my $f_b = $h & 0xff;
  492. my $f_g = ($h & 0xff00) >> 8;
  493. my $f_r = ($h & 0xff0000) >> 16;
  494. my $t_b = $h2 & 0xff;
  495. my $t_g = ($h2 & 0xff00) >> 8;
  496. my $t_r = ($h2 & 0xff0000) >> 16;
  497. my $blue = sprintf "%0.2x", abs int(((($t_b - $f_b) / $self->{cfg}->{activenicks}) * +$c) + $f_b);
  498. my $green = sprintf "%0.2x", abs int(((($t_g - $f_g) / $self->{cfg}->{activenicks}) * +$c) + $f_g);
  499. my $red = sprintf "%0.2x", abs int(((($t_r - $f_r) / $self->{cfg}->{activenicks}) * +$c) + $f_r);
  500. return "#$red$green$blue";
  501. }
  502. sub _html
  503. {
  504. my $html = shift;
  505. print OUTPUT "$html\n";
  506. }
  507. sub _questions
  508. {
  509. # Persons who asked the most questions
  510. my $self = shift;
  511. my %qpercent;
  512. foreach my $nick (sort keys %{ $self->{stats}->{questions} }) {
  513. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  514. if ($self->{stats}->{lines}{$nick} > 100) {
  515. $qpercent{$nick} = ($self->{stats}->{questions}{$nick} / $self->{stats}->{lines}{$nick}) * 100;
  516. $qpercent{$nick} =~ s/(\.\d)\d+/$1/;
  517. }
  518. }
  519. }
  520. my @question = sort { $qpercent{$b} <=> $qpercent{$a} } keys %qpercent;
  521. if (@question) {
  522. my %hash = (
  523. nick => $question[0],
  524. per => $qpercent{$question[0]}
  525. );
  526. my $text = $self->_template_text('question1', %hash);
  527. _html("<tr><td class=\"hicell\">$text");
  528. if (@question >= 2) {
  529. my %hash = (
  530. nick => $question[1],
  531. per => $qpercent{$question[1]}
  532. );
  533. my $text = $self->_template_text('question2', %hash);
  534. _html("<br /><span class=\"small\">$text</span>");
  535. }
  536. _html("</td></tr>");
  537. } else {
  538. _html("<tr><td class=\"hicell\">" . $self->_template_text('question3') . "</td></tr>");
  539. }
  540. }
  541. sub _shoutpeople
  542. {
  543. # The ones who speak with exclamation marks!
  544. my $self = shift;
  545. my %spercent;
  546. foreach my $nick (sort keys %{ $self->{stats}->{shouts} }) {
  547. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  548. if ($self->{stats}->{lines}{$nick} > 100) {
  549. $spercent{$nick} = ($self->{stats}->{shouts}{$nick} / $self->{stats}->{lines}{$nick}) * 100;
  550. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  551. }
  552. }
  553. }
  554. my @shout = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  555. if (@shout) {
  556. my %hash = (
  557. nick => $shout[0],
  558. per => $spercent{$shout[0]}
  559. );
  560. my $text = $self->_template_text('shout1', %hash);
  561. _html("<tr><td class=\"hicell\">$text");
  562. if (@shout >= 2) {
  563. my %hash = (
  564. nick => $shout[1],
  565. per => $spercent{$shout[1]}
  566. );
  567. my $text = $self->_template_text('shout2', %hash);
  568. _html("<br /><span class=\"small\">$text</span>");
  569. }
  570. _html("</td></tr>");
  571. } else {
  572. my $text = $self->_template_text('shout3');
  573. _html("<tr><td class=\"hicell\">$text</td></tr>");
  574. }
  575. }
  576. sub _capspeople
  577. {
  578. # The ones who speak ALL CAPS.
  579. my $self = shift;
  580. my %cpercent;
  581. foreach my $nick (sort keys %{ $self->{stats}->{allcaps} }) {
  582. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  583. if ($self->{stats}->{lines}{$nick} > 100) {
  584. $cpercent{$nick} = $self->{stats}->{allcaps}{$nick} / $self->{stats}->{lines}{$nick} * 100;
  585. $cpercent{$nick} =~ s/(\.\d)\d+/$1/;
  586. }
  587. }
  588. }
  589. my @caps = sort { $cpercent{$b} <=> $cpercent{$a} } keys %cpercent;
  590. if (@caps) {
  591. my %hash = (
  592. nick => $caps[0],
  593. per => $cpercent{$caps[0]},
  594. line => htmlentities($self->_format_line($self->{stats}->{allcaplines}{$caps[0]}))
  595. );
  596. my $text = $self->_template_text('allcaps1', %hash);
  597. if($self->{cfg}->{showshoutline}) {
  598. my $exttext = $self->_template_text('allcapstext', %hash);
  599. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  600. } else {
  601. _html("<tr><td class=\"hicell\">$text");
  602. }
  603. if (@caps >= 2) {
  604. my %hash = (
  605. nick => $caps[1],
  606. per => $cpercent{$caps[1]}
  607. );
  608. my $text = $self->_template_text('allcaps2', %hash);
  609. _html("<br /><span class=\"small\">$text</span>");
  610. }
  611. _html("</td></tr>");
  612. } else {
  613. my $text = $self->_template_text('allcaps3');
  614. _html("<tr><td class=\"hicell\">$text</td></tr>");
  615. }
  616. }
  617. sub _violent
  618. {
  619. # They attacked others (words defined by $self->{cfg}->{violent})
  620. my $self = shift;
  621. my @aggressors = sort { $self->{stats}->{violence}{$b} <=> $self->{stats}->{violence}{$a} }
  622. keys %{ $self->{stats}->{violence} };
  623. @aggressors = $self->_istoponly(@aggressors);
  624. if(@aggressors) {
  625. my %hash = (
  626. nick => $aggressors[0],
  627. attacks => $self->{stats}->{violence}{$aggressors[0]},
  628. line => htmlentities($self->_format_line($self->{stats}->{violencelines}{$aggressors[0]}))
  629. );
  630. my $text = $self->_template_text('violent1', %hash);
  631. if($self->{cfg}->{showviolentlines}) {
  632. my $exttext = $self->_template_text('violenttext', %hash);
  633. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  634. } else {
  635. _html("<tr><td class=\"hicell\">$text");
  636. }
  637. if (@aggressors >= 2) {
  638. my %hash = (
  639. nick => $aggressors[1],
  640. attacks => $self->{stats}->{violence}{$aggressors[1]}
  641. );
  642. my $text = $self->_template_text('violent2', %hash);
  643. _html("<br /><span class=\"small\">$text</span>");
  644. }
  645. _html("</td></tr>");
  646. } else {
  647. my $text = $self->_template_text('violent3');
  648. _html("<tr><td class=\"hicell\">$text</td></tr>");
  649. }
  650. # They got attacked
  651. my @victims = sort { $self->{stats}->{attacked}{$b} <=> $self->{stats}->{attacked}{$a} }
  652. keys %{ $self->{stats}->{attacked} };
  653. @victims = $self->_istoponly(@victims);
  654. if(@victims) {
  655. my %hash = (
  656. nick => $victims[0],
  657. attacks => $self->{stats}->{attacked}{$victims[0]},
  658. line => htmlentities($self->_format_line($self->{stats}->{attackedlines}{$victims[0]}))
  659. );
  660. my $text = $self->_template_text('attacked1', %hash);
  661. if($self->{cfg}->{showviolentlines}) {
  662. my $exttext = $self->_template_text('attackedtext', %hash);
  663. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  664. } else {
  665. _html("<tr><td class=\"hicell\">$text");
  666. }
  667. if (@victims >= 2) {
  668. my %hash = (
  669. nick => $victims[1],
  670. attacks => $self->{stats}->{attacked}{$victims[1]}
  671. );
  672. my $text = $self->_template_text('attacked2', %hash);
  673. _html("<br /><span class=\"small\">$text</span>");
  674. }
  675. _html("</td></tr>");
  676. }
  677. }
  678. sub _gotkicks
  679. {
  680. # The persons who got kicked the most
  681. my $self = shift;
  682. my @gotkick = sort { $self->{stats}->{gotkicked}{$b} <=> $self->{stats}->{gotkicked}{$a} }
  683. keys %{ $self->{stats}->{gotkicked} };
  684. @gotkick = $self->_istoponly(@gotkick);
  685. if (@gotkick) {
  686. my %hash = (
  687. nick => $gotkick[0],
  688. kicks => $self->{stats}->{gotkicked}{$gotkick[0]},
  689. line => $self->_format_line($self->{stats}->{kicklines}{$gotkick[0]})
  690. );
  691. my $text = $self->_template_text('gotkick1', %hash);
  692. if ($self->{cfg}->{showkickline}) {
  693. my $exttext = $self->_template_text('kicktext', %hash);
  694. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  695. } else {
  696. _html("<tr><td class=\"hicell\">$text");
  697. }
  698. if (@gotkick >= 2) {
  699. my %hash = (
  700. nick => $gotkick[1],
  701. kicks => $self->{stats}->{gotkicked}{$gotkick[1]}
  702. );
  703. my $text = $self->_template_text('gotkick2', %hash);
  704. _html("<br /><span class=\"small\">$text</span>");
  705. }
  706. _html("</td></tr>");
  707. }
  708. }
  709. sub _mostjoins
  710. {
  711. my $self = shift;
  712. my @joins = sort { $self->{stats}->{joins}{$b} <=> $self->{stats}->{joins}{$a} }
  713. keys %{ $self->{stats}->{joins} };
  714. @joins = $self->_istoponly(@joins);
  715. if (@joins) {
  716. my %hash = (
  717. nick => $joins[0],
  718. joins => $self->{stats}->{joins}{$joins[0]}
  719. );
  720. my $text = $self->_template_text('joins', %hash);
  721. _html("<tr><td class=\"hicell\">$text</td></tr>");
  722. }
  723. }
  724. sub _mostwords
  725. {
  726. # The person who got words the most
  727. my $self = shift;
  728. my @words = sort { $self->{stats}->{words}{$b} <=> $self->{stats}->{words}{$a} }
  729. keys %{ $self->{stats}->{words} };
  730. @words = $self->_istoponly(@words);
  731. if (@words) {
  732. my %hash = (
  733. nick => $words[0],
  734. words => $self->{stats}->{words}{$words[0]}
  735. );
  736. my $text = $self->_template_text('words1', %hash);
  737. _html("<tr><td class=\"hicell\">$text");
  738. if (@words >= 2) {
  739. my %hash = (
  740. oldnick => $words[0],
  741. nick => $words[1],
  742. words => $self->{stats}->{words}{$words[1]}
  743. );
  744. my $text = $self->_template_text('words2', %hash);
  745. _html("<br /><span class=\"small\">$text</span>");
  746. }
  747. _html("</td></tr>");
  748. } else {
  749. my $text = $self->_template_text('kick3');
  750. _html("<tr><td class=\"hicell\">$text</td></tr>");
  751. }
  752. }
  753. sub _mostkicks
  754. {
  755. # The person who kicked the most
  756. my $self = shift;
  757. my @kicked = sort { $self->{stats}->{kicked}{$b} <=> $self->{stats}->{kicked}{$a} }
  758. keys %{ $self->{stats}->{kicked} };
  759. @kicked = $self->_istoponly(@kicked);
  760. if (@kicked) {
  761. my %hash = (
  762. nick => $kicked[0],
  763. kicked => $self->{stats}->{kicked}{$kicked[0]}
  764. );
  765. my $text = $self->_template_text('kick1', %hash);
  766. _html("<tr><td class=\"hicell\">$text");
  767. if (@kicked >= 2) {
  768. my %hash = (
  769. oldnick => $kicked[0],
  770. nick => $kicked[1],
  771. kicked => $self->{stats}->{kicked}{$kicked[1]}
  772. );
  773. my $text = $self->_template_text('kick2', %hash);
  774. _html("<br /><span class=\"small\">$text</span>");
  775. }
  776. _html("</td></tr>");
  777. } else {
  778. my $text = $self->_template_text('kick3');
  779. _html("<tr><td class=\"hicell\">$text</td></tr>");
  780. }
  781. }
  782. sub _mostmonologues
  783. {
  784. # The person who had the most monologues (speaking to himself)
  785. my $self = shift;
  786. my @monologue = sort { $self->{stats}->{monologues}{$b} <=> $self->{stats}->{monologues}{$a} }
  787. keys %{ $self->{stats}->{monologues} };
  788. @monologue = $self->_istoponly(@monologue);
  789. if (@monologue) {
  790. my %hash = (
  791. nick => $monologue[0],
  792. monos => $self->{stats}->{monologues}{$monologue[0]}
  793. );
  794. my $text = $self->_template_text('mono1', %hash);
  795. _html("<tr><td class=\"hicell\">$text");
  796. if (@monologue >= 2) {
  797. my %hash = (
  798. nick => $monologue[1],
  799. monos => $self->{stats}->{monologues}{$monologue[1]}
  800. );
  801. my $text = $self->_template_text('mono2', %hash);
  802. _html("<br /><span class=\"small\">$text</span>");
  803. }
  804. _html("</td></tr>");
  805. }
  806. }
  807. sub _linelengths
  808. {
  809. # The person(s) who wrote the longest lines
  810. my $self = shift;
  811. my %len;
  812. foreach my $nick (sort keys %{ $self->{stats}->{lengths} }) {
  813. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  814. if ($self->{stats}->{lines}{$nick} > 100) {
  815. $len{$nick} = $self->{stats}->{lengths}{$nick} / $self->{stats}->{lines}{$nick};
  816. $len{$nick} =~ s/(\.\d)\d+/$1/;
  817. }
  818. }
  819. }
  820. my @len = sort { $len{$b} <=> $len{$a} } keys %len;
  821. my $all_lines = 0;
  822. my $totallength;
  823. foreach my $nick (keys %{ $self->{stats}->{lines} }) {
  824. $all_lines += $self->{stats}->{lines}{$nick};
  825. $totallength += $self->{stats}->{lengths}{$nick};
  826. }
  827. my $totalaverage;
  828. if ($all_lines > 0) {
  829. $totalaverage = $totallength / $all_lines;
  830. $totalaverage =~ s/(\.\d)\d+/$1/;
  831. }
  832. if (@len) {
  833. my %hash = (
  834. nick => $len[0],
  835. letters => $len{$len[0]}
  836. );
  837. my $text = $self->_template_text('long1', %hash);
  838. _html("<tr><td class=\"hicell\">$text<br />");
  839. if (@len >= 2) {
  840. %hash = (
  841. avg => $totalaverage
  842. );
  843. $text = $self->_template_text('long2', %hash);
  844. _html("<span class=\"small\">$text</span></td></tr>");
  845. }
  846. }
  847. # The person(s) who wrote the shortest lines
  848. if (@len) {
  849. my %hash = (
  850. nick => $len[$#len],
  851. letters => $len{$len[$#len]}
  852. );
  853. my $text = $self->_template_text('short1', %hash);
  854. _html("<tr><td class=\"hicell\">$text<br />");
  855. if (@len >= 2) {
  856. %hash = (
  857. nick => $len[$#len - 1],
  858. letters => $len{$len[$#len - 1]}
  859. );
  860. $text = $self->_template_text('short2', %hash);
  861. _html("<span class=\"small\">$text</span></td></tr>");
  862. }
  863. }
  864. }
  865. sub _mostfoul
  866. {
  867. my $self = shift;
  868. my %spercent;
  869. foreach my $nick (sort keys %{ $self->{stats}->{foul} }) {
  870. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  871. if ($self->{stats}->{lines}{$nick} > 15) {
  872. $spercent{$nick} = $self->{stats}->{foul}{$nick} / $self->{stats}->{words}{$nick} * 100;
  873. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  874. }
  875. }
  876. }
  877. my @foul = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  878. if (@foul) {
  879. my %hash = (
  880. nick => $foul[0],
  881. per => $spercent{$foul[0]},
  882. line => htmlentities($self->_format_line($self->{stats}{foullines}{$foul[0]})),
  883. );
  884. my $text = $self->_template_text('foul1', %hash);
  885. if($self->{cfg}->{showfoulline}) {
  886. my $exttext = $self->_template_text('foultext', %hash);
  887. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  888. } else {
  889. _html("<tr><td class=\"hicell\">$text");
  890. }
  891. if (@foul >= 2) {
  892. my %hash = (
  893. nick => $foul[1],
  894. per => $spercent{$foul[1]}
  895. );
  896. my $text = $self->_template_text('foul2', %hash);
  897. _html("<br /><span class=\"small\">$text</span>");
  898. }
  899. _html("</td></tr>");
  900. } else {
  901. my $text = $self->_template_text('foul3');
  902. _html("<tr><td class=\"hicell\">$text</td></tr>");
  903. }
  904. }
  905. sub _mostsad
  906. {
  907. my $self = shift;
  908. my %spercent;
  909. foreach my $nick (sort keys %{ $self->{stats}->{frowns} }) {
  910. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  911. if ($self->{stats}->{lines}{$nick} > 100) {
  912. $spercent{$nick} = $self->{stats}->{frowns}{$nick} / $self->{stats}->{lines}{$nick} * 100;
  913. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  914. }
  915. }
  916. }
  917. my @sadface = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  918. if (@sadface) {
  919. my %hash = (
  920. nick => $sadface[0],
  921. per => $spercent{$sadface[0]}
  922. );
  923. my $text = $self->_template_text('sad1', %hash);
  924. _html("<tr><td class=\"hicell\">$text");
  925. if (@sadface >= 2) {
  926. my %hash = (
  927. nick => $sadface[1],
  928. per => $spercent{$sadface[1]}
  929. );
  930. my $text = $self->_template_text('sad2', %hash);
  931. _html("<br /><span class=\"small\">$text</span>");
  932. }
  933. _html("</td></tr>");
  934. } else {
  935. my $text = $self->_template_text('sad3');
  936. _html("<tr><td class=\"hicell\">$text</td></tr>");
  937. }
  938. }
  939. sub _mostop
  940. {
  941. my $self = shift;
  942. my @ops = sort { $self->{stats}->{gaveops}{$b} <=> $self->{stats}->{gaveops}{$a} }
  943. keys %{ $self->{stats}->{gaveops} };
  944. @ops = $self->_istoponly(@ops);
  945. my @deops = sort { $self->{stats}->{tookops}{$b} <=> $self->{stats}->{tookops}{$a} }
  946. keys %{ $self->{stats}->{tookops} };
  947. @deops = $self->_istoponly(@deops);
  948. if (@ops) {
  949. my %hash = (
  950. nick => $ops[0],
  951. ops => $self->{stats}->{gaveops}{$ops[0]}
  952. );
  953. my $text = $self->_template_text('mostop1', %hash);
  954. _html("<tr><td class=\"hicell\">$text");
  955. if (@ops >= 2) {
  956. my %hash = (
  957. nick => $ops[1],
  958. ops => $self->{stats}->{gaveops}{$ops[1]}
  959. );
  960. my $text = $self->_template_text('mostop2', %hash);
  961. _html("<br /><span class=\"small\">$text</span>");
  962. }
  963. _html("</td></tr>");
  964. } else {
  965. my $text = $self->_template_text('mostop3');
  966. _html("<tr><td class=\"hicell\">$text</td></tr>");
  967. }
  968. if (@deops) {
  969. my %hash = (
  970. nick => $deops[0],
  971. deops => $self->{stats}->{tookops}{$deops[0]}
  972. );
  973. my $text = $self->_template_text('mostdeop1', %hash);
  974. _html("<tr><td class=\"hicell\">$text");
  975. if (@deops >= 2) {
  976. my %hash = (
  977. nick => $deops[1],
  978. deops => $self->{stats}->{tookops}{$deops[1]}
  979. );
  980. my $text = $self->_template_text('mostdeop2', %hash);
  981. _html("<br /><span class=\"small\">$text</span>");
  982. }
  983. _html("</td></tr>");
  984. } else {
  985. my $text = $self->_template_text('mostdeop3');
  986. _html("<tr><td class=\"hicell\">$text</td></tr>");
  987. }
  988. }
  989. sub _mostvoice
  990. {
  991. my $self = shift;
  992. my @voice = sort { $self->{stats}->{gavevoice}{$b} <=> $self->{stats}->{gavevoice}{$a} }
  993. keys %{ $self->{stats}->{gavevoice} };
  994. @voice = $self->_istoponly(@voice);
  995. my @devoice = sort { $self->{stats}->{tookvoice}{$b} <=> $self->{stats}->{tookvoice}{$a} }
  996. keys %{ $self->{stats}->{tookvoice} };
  997. @devoice = $self->_istoponly(@devoice);
  998. if (@voice) {
  999. my %hash = (
  1000. nick => $voice[0],
  1001. voices => $self->{stats}->{gavevoice}{$voice[0]}
  1002. );
  1003. my $text = $self->_template_text('mostvoice1', %hash);
  1004. _html("<tr><td class=\"hicell\">$text");
  1005. if (@voice >= 2) {
  1006. my %hash = (
  1007. nick => $voice[1],
  1008. voices => $self->{stats}->{gavevoice}{$voice[1]}
  1009. );
  1010. my $text = $self->_template_text('mostvoice2', %hash);
  1011. _html("<br /><span class=\"small\">$text</span>");
  1012. }
  1013. _html("</td></tr>");
  1014. } else {
  1015. my $text = $self->_template_text('mostvoice3');
  1016. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1017. }
  1018. if (@devoice) {
  1019. my %hash = (
  1020. nick => $devoice[0],
  1021. devoices => $self->{stats}->{tookvoice}{$devoice[0]}
  1022. );
  1023. my $text = $self->_template_text('mostdevoice1', %hash);
  1024. _html("<tr><td class=\"hicell\">$text");
  1025. if (@devoice >= 2) {
  1026. my %hash = (
  1027. nick => $devoice[1],
  1028. devoices => $self->{stats}->{tookvoice}{$devoice[1]}
  1029. );
  1030. my $text = $self->_template_text('mostdevoice2', %hash);
  1031. _html("<br /><span class=\"small\">$text</span>");
  1032. }
  1033. _html("</td></tr>");
  1034. } else {
  1035. my $text = $self->_template_text('mostdevoice3');
  1036. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1037. }
  1038. }
  1039. sub _mosthalfop
  1040. {
  1041. my $self = shift;
  1042. my @halfops = sort { $self->{stats}->{gavehalfops}{$b} <=> $self->{stats}->{gavehalfops}{$a} }
  1043. keys %{ $self->{stats}->{gavehalfops} };
  1044. @halfops = $self->_istoponly(@halfops);
  1045. my @dehalfops = sort { $self->{stats}->{tookhalfops}{$b} <=> $self->{stats}->{tookhalfops}{$a} }
  1046. keys %{ $self->{stats}->{tookhalfops} };
  1047. @dehalfops = $self->_istoponly(@dehalfops);
  1048. if (@halfops) {
  1049. my %hash = (
  1050. nick => $halfops[0],
  1051. halfops => $self->{stats}->{gavehalfops}{$halfops[0]}
  1052. );
  1053. my $text = $self->_template_text('mosthalfop1', %hash);
  1054. _html("<tr><td class=\"hicell\">$text");
  1055. if (@halfops >= 2) {
  1056. my %hash = (
  1057. nick => $halfops[1],
  1058. halfops => $self->{stats}->{gavehalfops}{$halfops[1]}
  1059. );
  1060. my $text = $self->_template_text('mosthalfop2', %hash);
  1061. _html("<br /><span class=\"small\">$text</span>");
  1062. }
  1063. _html("</td></tr>");
  1064. } else {
  1065. my $text = $self->_template_text('mosthalfop3');
  1066. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1067. }
  1068. if (@dehalfops) {
  1069. my %hash = (
  1070. nick => $dehalfops[0],
  1071. dehalfops => $self->{stats}->{tookhalfops}{$dehalfops[0]}
  1072. );
  1073. my $text = $self->_template_text('mostdehalfop1', %hash);
  1074. _html("<tr><td class=\"hicell\">$text");
  1075. if (@dehalfops >= 2) {
  1076. my %hash = (
  1077. nick => $dehalfops[1],
  1078. dehalfops => $self->{stats}->{tookhalfops}{$dehalfops[1]}
  1079. );
  1080. my $text = $self->_template_text('mostdehalfop2', %hash);
  1081. _html("<br /><span class=\"small\">$text</span>");
  1082. }
  1083. _html("</td></tr>");
  1084. } else {
  1085. my $text = $self->_template_text('mostdehalfop3');
  1086. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1087. }
  1088. }
  1089. sub _mostactions
  1090. {
  1091. # The person who did the most /me's
  1092. my $self = shift;
  1093. my @actions = sort { $self->{stats}->{actions}{$b} <=> $self->{stats}->{actions}{$a} }
  1094. keys %{ $self->{stats}->{actions} };
  1095. @actions = $self->_istoponly(@actions);
  1096. if (@actions) {
  1097. my %linehash =
  1098. my %hash = (
  1099. nick => $actions[0],
  1100. actions => $self->{stats}->{actions}{$actions[0]},
  1101. line => htmlentities($self->_format_line($self->{stats}->{actionlines}{$actions[0]}))
  1102. );
  1103. my $text = $self->_template_text('action1', %hash);
  1104. if($self->{cfg}->{showactionline}) {
  1105. my $exttext = $self->_template_text('actiontext', %hash);
  1106. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  1107. } else {
  1108. _html("<tr><td class=\"hicell\">$text");
  1109. }
  1110. if (@actions >= 2) {
  1111. my %hash = (
  1112. nick => $actions[1],
  1113. actions => $self->{stats}->{actions}{$actions[1]}
  1114. );
  1115. my $text = $self->_template_text('action2', %hash);
  1116. _html("<br /><span class=\"small\">$text</span>");
  1117. }
  1118. _html("</td></tr>");
  1119. } else {
  1120. my $text = $self->_template_text('action3');
  1121. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1122. }
  1123. }
  1124. sub _mostsmiles
  1125. {
  1126. # The person(s) who smiled the most :-)
  1127. my $self = shift;
  1128. my %spercent;
  1129. foreach my $nick (sort keys %{ $self->{stats}->{smiles} }) {
  1130. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  1131. if ($self->{stats}->{lines}{$nick} > 100) {
  1132. $spercent{$nick} = $self->{stats}->{smiles}{$nick} / $self->{stats}->{lines}{$nick} * 100;
  1133. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  1134. }
  1135. }
  1136. }
  1137. my @smiles = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  1138. if (@smiles) {
  1139. my %hash = (
  1140. nick => $smiles[0],
  1141. per => $spercent{$smiles[0]}
  1142. );
  1143. my $text = $self->_template_text('smiles1', %hash);
  1144. _html("<tr><td class=\"hicell\">$text");
  1145. if (@smiles >= 2) {
  1146. my %hash = (
  1147. nick => $smiles[1],
  1148. per => $spercent{$smiles[1]}
  1149. );
  1150. my $text = $self->_template_text('smiles2', %hash);
  1151. _html("<br /><span class=\"small\">$text</span>");
  1152. }
  1153. _html("</td></tr>");
  1154. } else {
  1155. my $text = $self->_template_text('smiles3');
  1156. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1157. }
  1158. }
  1159. sub _lasttopics
  1160. {
  1161. my $self = shift;
  1162. if ($self->{stats}->{topics}) {
  1163. my %topic_seen;
  1164. my %hash = (
  1165. total => scalar @{ $self->{stats}->{topics} }
  1166. );
  1167. my $ltopic = $#{ $self->{stats}->{topics} };
  1168. my $tlimit = 0;
  1169. $self->{cfg}->{topichistory} -= 1;
  1170. if ($ltopic > $self->{cfg}->{topichistory}) {
  1171. $tlimit = $ltopic - $self->{cfg}->{topichistory};
  1172. }
  1173. for (my $i = $ltopic; $i >= $tlimit; $i--) {
  1174. my $topic = htmlentities($self->{stats}->{topics}[$i]{topic});
  1175. # This code makes sure that we don't see the same topic twice
  1176. next if ($topic_seen{$topic});
  1177. $topic_seen{$topic} = 1;
  1178. $topic = $self->_replace_links($topic);
  1179. # Strip off the quotes (')
  1180. $topic =~ s/^\'(.*)\'$/$1/;
  1181. my $nick = $self->{stats}->{topics}[$i]{nick};
  1182. my $hour = $self->{stats}->{topics}[$i]{hour};
  1183. my $min = $self->{stats}->{topics}[$i]{min};
  1184. $hash{nick} = $nick;
  1185. $hash{time} = "$hour:$min";
  1186. _html("<tr><td class=\"hicell\"><i>$topic</i></td>");
  1187. _html("<td class=\"hicell\"><b>" . $self->_template_text('bylinetopic', %hash) ."</b></td></tr>");
  1188. }
  1189. _html("<tr><td align=\"center\" colspan=\"2\" class=\"asmall\">" . $self->_template_text('totaltopic', %hash) . "</td></tr>");
  1190. } else {
  1191. _html("<tr><td class=\"hicell\">" . $self->_template_text('notopic') ."</td></tr>");
  1192. }
  1193. }
  1194. sub _template_text
  1195. {
  1196. # This function is for the homemade template system. It receives a name
  1197. # of a template and a hash with the fields in the template to update to
  1198. # its corresponding value
  1199. my $self = shift;
  1200. my $template = shift;
  1201. my %hash = @_;
  1202. my $text;
  1203. unless ($text = $self->{tmps}->{lc($self->{cfg}->{lang})}{$template}) {
  1204. # Fall back to English if the language template doesn't exist
  1205. if ($text = $self->{tmps}->{en}{$template}) {
  1206. print "Note: No translation in '$self->{cfg}->{lang}' for '$template' - falling back to English..\n"
  1207. unless ($self->{cfg}->{silent});
  1208. } else {
  1209. die("No such template '$template' in language file.\n");
  1210. }
  1211. }
  1212. $hash{channel} = $self->{cfg}->{channel};
  1213. foreach my $key (sort keys %hash) {
  1214. $text =~ s/\[:$key\]/$hash{$key}/;
  1215. $text =~ s/ü/&uuml;/go;
  1216. $text =~ s/ö/&ouml;/go;
  1217. $text =~ s/ä/&auml;/go;
  1218. $text =~ s/ß/&szlig;/go;
  1219. $text =~ s/å/&aring;/go;
  1220. $text =~ s/æ/&aelig;/go;
  1221. $text =~ s/ø/&oslash;/go;
  1222. $text =~ s/Å/&Aring;/go;
  1223. $text =~ s/Æ/&AElig;/go;
  1224. $text =~ s/Ø/&Oslash;/go;
  1225. }
  1226. if ($text =~ /\[:[^:]*?:[^:]*?:[^:]*?:\]/o) {
  1227. $text =~ s/\[:([^:]*?):([^:]*?):([^:]*?):\]/$self->_get_subst($1,$2,$3,\%hash)/geo;
  1228. }
  1229. if ($text =~ /\[:[^:]*?:[^:]*?:]/o) {
  1230. $text =~ s/\[:([^:]*?):([^:]*?):]/$self->_get_subst($1,$2,undef,\%hash)/geo;
  1231. }
  1232. return $text;
  1233. }
  1234. sub _format_line
  1235. {
  1236. # This function formats a action/normal line to be more readable
  1237. my ($self,$line) = @_;
  1238. my $hashref;
  1239. if ($hashref = $self->{cfg}->{analyzer}->{parser}->normalline($line)) {
  1240. return '<' . $hashref->{nick} . '> ' . $hashref->{saying};
  1241. } elsif ($hashref = $self->{cfg}->{analyzer}->{parser}->actionline($line)) {
  1242. return '* ' . $hashref->{nick} . ' ' . $hashref->{saying};
  1243. } elsif ($hashref = $self->{cfg}->{analyzer}->{parser}->thirdline($line)) {
  1244. if (defined($hashref->{kicker})) {
  1245. $line = '*** ' . $hashref->{nick} . ' was kicked by ' . $hashref->{kicker};
  1246. $line .= ' (' . $hashref->{kicktext} . ')'
  1247. if (defined($hashref->{kicktext}));
  1248. } elsif (defined($hashref->{newtopic})) {
  1249. $line = '*** ' . $hashref->{nick} . ' changes topic to \'' . $hashref->{newtopic} . '\'';
  1250. } elsif (defined($hashref->{newmode})) {
  1251. $line = '*** ' . $hashref->{nick} . ' sets mode ' . $hashref->{newmode};
  1252. $line .= ' ' . $hashref->{modechanges}
  1253. if (defined($hashref->{kicktext}));
  1254. } elsif (defined($hashref->{newjoin})) {
  1255. $line = '*** Joins: ' . $hashref->{nick};
  1256. } elsif (defined($hashref->{newnick})) {
  1257. $line = '*** ' . $hashref->{nick} . ' is now known as ' . $hashref->{newnick};
  1258. }
  1259. return $line;
  1260. } else {
  1261. return $line;
  1262. }
  1263. }
  1264. sub _get_subst
  1265. {
  1266. # This function looks at the user definition and see if there is sex
  1267. # defined. If yes, return the appropriate value. If no, just return the
  1268. # default he/she value.
  1269. my $self = shift;
  1270. my ($m,$f,$d,$hash) = @_;
  1271. if ($hash->{nick} && $self->{users}->{sex}{$hash->{nick}}) {
  1272. if ($self->{users}->{sex}{$hash->{nick}} eq 'm') {
  1273. return $m;
  1274. } elsif ($self->{users}->{sex}{$hash->{nick}} eq 'f') {
  1275. return $f;
  1276. }
  1277. }
  1278. return defined($d) ? $d : "$m/$f";
  1279. }
  1280. sub _mostusedword
  1281. {
  1282. # Word usage statistics
  1283. my $self = shift;
  1284. my %usages;
  1285. foreach my $word (keys %{ $self->{stats}->{wordcounts} }) {
  1286. # Skip people's nicks.
  1287. next if is_nick($word);
  1288. next if (length($word) < $self->{cfg}->{wordlength});
  1289. $usages{$word} = $self->{stats}->{wordcounts}{$word};
  1290. }
  1291. my @popular = sort { $usages{$b} <=> $usages{$a} } keys %usages;
  1292. if (@popular) {
  1293. $self->_headline($self->_template_text('mostwordstopic'));
  1294. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1295. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>" . $self->_template_text('word') . "</b></td>");
  1296. _html("<td class=\"tdtop\"><b>" . $self->_template_text('numberuses') . "</b></td>");
  1297. _html("<td class=\"tdtop\"><b>" . $self->_template_text('lastused') . "</b></td></tr>");
  1298. my $count = 0;
  1299. for(my $i = 0; $count < $self->{cfg}->{wordhistory}; $i++) {
  1300. last unless $i < $#popular;
  1301. # Skip nicks. It's far more efficient to do this here than when
  1302. # @popular is created.
  1303. next if is_ignored($popular[$i]);
  1304. next if is_nick($popular[$i]);
  1305. my $a = $count + 1;
  1306. my $popular = htmlentities($popular[$i]);
  1307. my $wordcount = $self->{stats}->{wordcounts}{$popular[$i]};
  1308. my $lastused = htmlentities($self->{stats}->{wordnicks}{$popular[$i]});
  1309. my $class;
  1310. if ($a == 1) {
  1311. $class = 'hirankc';
  1312. } else {
  1313. $class = 'rankc';
  1314. }
  1315. _html("<tr><td class=\"$class\">$a</td>");
  1316. _html("<td class=\"hicell\">$popular</td>");
  1317. _html("<td class=\"hicell\">$wordcount</td>");
  1318. _html("<td class=\"hicell\">$lastused</td>");
  1319. _html("</tr>");
  1320. $count++;
  1321. }
  1322. _html("</table>");
  1323. }
  1324. }
  1325. sub _mostwordsperline
  1326. {
  1327. # The person who got the most words per line
  1328. my $self = shift;
  1329. my %wpl = ();
  1330. my $numlines = 0;
  1331. my ($avg, $numwords);
  1332. foreach my $nick (keys %{ $self->{stats}->{words} }) {
  1333. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  1334. $wpl{$nick} = sprintf("%.2f", $self->{stats}->{words}{$nick}/$self->{stats}->{lines}{$nick});
  1335. $numlines += $self->{stats}->{lines}{$nick};
  1336. $numwords += $self->{stats}->{words}{$nick};
  1337. }
  1338. }
  1339. if ($numlines > 0) {
  1340. $avg = sprintf("%.2f", $numwords/$numlines);
  1341. }
  1342. my @wpl = sort { $wpl{$b} <=> $wpl{$a} } keys %wpl;
  1343. if (@wpl) {
  1344. my %hash = (
  1345. nick => $wpl[0],
  1346. wpl => $wpl{$wpl[0]}
  1347. );
  1348. my $text = $self->_template_text('wpl1', %hash);
  1349. _html("<tr><td class=\"hicell\">$text");
  1350. $hash{avg} = $avg;
  1351. $text = $self->_template_text('wpl2', %hash);
  1352. _html("<br /><span class=\"small\">$text</span>");
  1353. _html("</td></tr>");
  1354. }
  1355. }
  1356. sub _mostreferencednicks
  1357. {
  1358. # List showing the most referenced nicks
  1359. my $self = shift;
  1360. my %usages;
  1361. foreach my $word (sort keys %{ $self->{stats}->{wordcounts} }) {
  1362. next if !exists $self->{stats}->{lines}{$word};
  1363. next if is_ignored($word);
  1364. $usages{$word} = $self->{stats}->{wordcounts}{$word};
  1365. }
  1366. my @popular = sort { $usages{$b} <=> $usages{$a} } keys %usages;
  1367. if (@popular) {
  1368. $self->_headline($self->_template_text('referencetopic'));
  1369. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1370. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>" . $self->_template_text('nick') . "</b></td>");
  1371. _html("<td class=\"tdtop\"><b>" . $self->_template_text('numberuses') . "</b></td>");
  1372. _html("<td class=\"tdtop\"><b>" . $self->_template_text('lastused') . "</b></td></tr>");
  1373. for(my $i = 0; $i < $self->{cfg}->{nickhistory}; $i++) {
  1374. last unless $i < $#popular;
  1375. my $a = $i + 1;
  1376. my $popular = $popular[$i];
  1377. my $wordcount = $self->{stats}->{wordcounts}{$popular[$i]};
  1378. my $lastused = $self->{stats}->{wordnicks}{$popular[$i]};
  1379. my $class;
  1380. if ($a == 1) {
  1381. $class = 'hirankc';
  1382. } else {
  1383. $class = 'rankc';
  1384. }
  1385. _html("<tr><td class=\"$class\">$a</td>");
  1386. _html("<td class=\"hicell\">$popular</td>");
  1387. _html("<td class=\"hicell\">$wordcount</td>");
  1388. _html("<td class=\"hicell\">$lastused</td>");
  1389. _html("</tr>");
  1390. }
  1391. _html("</table>");
  1392. }
  1393. }
  1394. sub _mosturls
  1395. {
  1396. # List showing the most referenced URLs
  1397. my $self = shift;
  1398. my @sorturls = sort { $self->{stats}->{urlcounts}{$b} <=> $self->{stats}->{urlcounts}{$a} }
  1399. keys %{ $self->{stats}->{urlcounts} };
  1400. if (@sorturls) {
  1401. $self->_headline($self->_template_text('urlstopic'));
  1402. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1403. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>" . $self->_template_text('url') . "</b></td>");
  1404. _html("<td class=\"tdtop\"><b>" . $self->_template_text('numberuses') . "</b></td>");
  1405. _html("<td class=\"tdtop\"><b>" . $self->_template_text('lastused') . "</b></td></tr>");
  1406. for(my $i = 0; $i < $self->{cfg}->{urlhistory}; $i++) {
  1407. last unless $i < @sorturls;
  1408. my $a = $i + 1;
  1409. my $sorturl = $sorturls[$i];
  1410. my $urlcount = $self->{stats}->{urlcounts}{$sorturls[$i]};
  1411. my $lastused = $self->{stats}->{urlnicks}{$sorturls[$i]};
  1412. if (length($sorturl) > 60) {
  1413. $sorturl = substr($sorturl, 0, 60);
  1414. }
  1415. my $class;
  1416. if ($a == 1) {
  1417. $class = 'hirankc';
  1418. } else {
  1419. $class = 'rankc';
  1420. }
  1421. _html("<tr><td class=\"$class\">$a</td>");
  1422. _html("<td class=\"hicell\"><a href=\"$sorturls[$i]\">$sorturl</a></td>");
  1423. _html("<td class=\"hicell\">$urlcount</td>");
  1424. _html("<td class=\"hicell\">$lastused</td>");
  1425. _html("</tr>");
  1426. }
  1427. _html("</table>");
  1428. }
  1429. }
  1430. sub _legend
  1431. {
  1432. # A legend showing the timebars and their associated time.
  1433. my $self = shift;
  1434. _html("<table align=\"center\" border=\"0\" width=\"520\"><tr>");
  1435. _html("<td align=\"center\" class=\"asmall\"><img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{pic_h_0}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"0-5\" /> = 0-5</td>");
  1436. _html("<td align=\"center\" class=\"asmall\"><img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{pic_h_6}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"6-11\" /> = 6-11</td>");
  1437. _html("<td align=\"center\" class=\"asmall\"><img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{pic_h_12}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"12-17\" /> = 12-17</td>");
  1438. _html("<td align=\"center\" class=\"asmall\"><img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{pic_h_18}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"18-23\" /> = 18-23</td>");
  1439. _html("</tr></table>\n");
  1440. }
  1441. sub _replace_links
  1442. {
  1443. # Sub to replace urls and e-mail addys to links
  1444. my $self = shift;
  1445. my $str = shift;
  1446. my $nick = shift;
  1447. # Regular expressions are taken from match_urls() and match_email() in
  1448. # Common.pm
  1449. my $texturl = $self->_template_text("newwindow");
  1450. my $textmail = $self->_template_text("mailto");
  1451. if ($nick) {
  1452. $str =~ s/(http|https|ftp|telnet|news)(:\/\/[-a-zA-Z0-9_\/~]+\.[-a-zA-Z0-9.,_~=:&amp;@%?#\/+]+)/<a href="$1$2" target="_blank" title="$texturl $1$2">$nick<\/a>/g;
  1453. $str =~ s/([-a-zA-Z0-9._]+@[-a-zA-Z0-9_]+\.[-a-zA-Z0-9._]+)/<a href="mailto:$1" title="$textmail $nick">$nick<\/a>/g;
  1454. } else {
  1455. $str =~ s/(http|https|ftp|telnet|news)(:\/\/[-a-zA-Z0-9_\/~]+\.[-a-zA-Z0-9.,_~=:&amp;@%?#\/+]+)/<a href="$1$2" target="_blank" title="$texturl $1$2">$1$2<\/a>/g;
  1456. $str =~ s/([-a-zA-Z0-9._]+@[-a-zA-Z0-9_]+\.[-a-zA-Z0-9._]+)/<a href="mailto:$1" title="$textmail $1">$1<\/a>/g;
  1457. }
  1458. return $str;
  1459. }
  1460. sub _user_linetimes
  1461. {
  1462. my $self = shift;
  1463. my $nick = shift;
  1464. my $top = shift;
  1465. my $bar = "";
  1466. my $len = ($self->{stats}->{lines}{$nick} / $self->{stats}->{lines}{$top}) * 100;
  1467. for (my $i = 0; $i <= 3; $i++) {
  1468. next if not defined $self->{stats}->{line_times}{$nick}[$i];
  1469. my $w = int(($self->{stats}->{line_times}{$nick}[$i] / $self->{stats}->{lines}{$nick}) * $len);
  1470. if ($w) {
  1471. my $pic = 'pic_h_'.(6*$i);
  1472. $bar .= "<img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" align=\"middle\" alt=\"\" />";
  1473. }
  1474. }
  1475. return "$bar&nbsp;$self->{stats}->{lines}{$nick}";
  1476. }
  1477. sub _user_wordtimes
  1478. {
  1479. my $self = shift;
  1480. my $nick = shift;
  1481. my $top = shift;
  1482. my $bar = "";
  1483. my $len = ($self->{stats}->{words}{$nick} / $self->{stats}->{words}{$top}) * 100;
  1484. for (my $i = 0; $i <= 3; $i++) {
  1485. next if not defined $self->{stats}->{word_times}{$nick}[$i];
  1486. my $w = int(($self->{stats}->{word_times}{$nick}[$i] / $self->{stats}->{words}{$nick}) * $len);
  1487. if ($w) {
  1488. my $pic = 'pic_h_'.(6*$i);
  1489. $bar .= "<img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" align=\"middle\" alt=\"\" />";
  1490. }
  1491. }
  1492. return "$bar&nbsp;$self->{stats}->{words}{$nick}";
  1493. }
  1494. sub _user_times
  1495. {
  1496. my $self = shift;
  1497. my ($nick) = @_;
  1498. my $bar = "";
  1499. my $itemstat = ($self->{cfg}->{sortbywords} ? 'words' : 'lines');
  1500. my $timestat = ($self->{cfg}->{sortbywords} ? 'word_times' : 'line_times');
  1501. for (my $i = 0; $i <= 3; $i++) {
  1502. next if not defined $self->{stats}->{$timestat}{$nick}[$i];
  1503. my $w = int(($self->{stats}->{$timestat}{$nick}[$i] / $self->{stats}->{$itemstat}{$nick}) * 40);
  1504. if ($w) {
  1505. my $pic = 'pic_h_'.(6*$i);
  1506. $bar .= "<img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" alt=\"\" />";
  1507. }
  1508. }
  1509. return $bar;
  1510. }
  1511. sub _mostnicks
  1512. {
  1513. # List showing the user with most used nicks
  1514. my $self = shift;
  1515. my @sortnicks = sort { keys %{ $self->{stats}->{nicks}->{$b} } <=> keys %{ $self->{stats}->{nicks}->{$a} } }
  1516. keys %{ $self->{stats}->{nicks} };
  1517. if (keys %{ $self->{stats}->{nicks}->{$sortnicks[0]} } > 1) {
  1518. $self->_headline($self->_template_text('mostnickstopic'));
  1519. my $names1 = $self->_template_text('names1');
  1520. my $names2 = $self->_template_text('names2');
  1521. my $nick_txt = $self->_template_text('nick');
  1522. my $names_txt = $self->_template_text('names');
  1523. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1524. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>$nick_txt</b></td>");
  1525. _html("<td class=\"tdtop\"><b>$names_txt</b></td></tr>");
  1526. for(my $i = 0; $i < $self->{cfg}->{mostnickshistory}; $i++) {
  1527. next if is_ignored($sortnicks[$i]);
  1528. last unless $i < @sortnicks;
  1529. my $nickcount = keys %{ $self->{stats}->{nicks}->{$sortnicks[$i]} };
  1530. my $nickused = join(", ", values %{ $self->{stats}->{nicks}->{$sortnicks[$i]} });
  1531. next unless ($nickcount > 1);
  1532. my $a = $i + 1;
  1533. my $class = $a == 1 ? 'hirankc' : 'rankc';
  1534. my $n = $nickcount > 1 ? $names1 : $names2;
  1535. _html("<tr><td class=\"$class\">$a</td>");
  1536. _html("<td class=\"hicell10\">$sortnicks[$i]<br />($nickcount $n)</td>");
  1537. _html("<td class=\"hicell10\" valign='top'>$nickused</td>");
  1538. _html("</tr>");
  1539. }
  1540. _html("</table>");
  1541. }
  1542. }
  1543. sub _mostactivebyhour
  1544. {
  1545. # Charts for most active nicks by hour (0-5, 6-11, 12-17, 18-23)
  1546. my $self = shift;
  1547. my $sortnicks;
  1548. my $lastline=-1;
  1549. my $maxlines=0;
  1550. foreach my $period (0,1,2,3) {
  1551. my @sortnicks =
  1552. sort
  1553. {
  1554. (defined $self->{stats}->{line_times}{$b}[$period]?$self->{stats}->{line_times}{$b}[$period]:0)
  1555. <=>
  1556. (defined $self->{stats}->{line_times}{$a}[$period]?$self->{stats}->{line_times}{$a}[$period]:0)
  1557. }
  1558. keys %{ $self->{stats}->{line_times} } ;
  1559. for(my $i = 0; $i < $self->{cfg}->{activenicksbyhour}; $i++) {
  1560. next if ! $sortnicks[$i];
  1561. next if is_ignored($sortnicks[$i]);
  1562. last unless $i < @sortnicks;
  1563. my $nick=$sortnicks[$i];
  1564. my $count=$self->{stats}->{line_times}{$nick}[$period] || 0;
  1565. last unless $nick;
  1566. last unless $count;
  1567. $sortnicks->[$period][$i]=$nick;
  1568. if ($lastline<$i) {
  1569. $lastline=$i;
  1570. }
  1571. if ($maxlines<$count) {
  1572. $maxlines=$count;
  1573. }
  1574. }
  1575. }
  1576. if ($lastline>=0) {
  1577. $self->_headline($self->_template_text('activenickbyhourtopic'));
  1578. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1579. _html("<td>&nbsp;</td>");
  1580. _html("<td class=\"tdtop\"><b>0-5</b></td>");
  1581. _html("<td class=\"tdtop\"><b>6-11</b></td>");
  1582. _html("<td class=\"tdtop\"><b>12-17</b></td>");
  1583. _html("<td class=\"tdtop\"><b>18-23</b></td>");
  1584. _html("</tr>");
  1585. for(my $i = 0; $i <= $lastline; $i++) {
  1586. my $a = $i + 1;
  1587. my $class = $a == 1 ? 'hirankc' : 'rankc';
  1588. _html("<tr><td class=\"$class\">$a</td>");
  1589. foreach my $period (0,1,2,3) {
  1590. my $nick=$sortnicks->[$period][$i];
  1591. if ($nick) {
  1592. my $count=$self->{stats}->{line_times}{$nick}[$period];
  1593. if ($count) {
  1594. _html("<td class=\"hicell\">".$nick." - ".$count);
  1595. if ($self->{cfg}->{showmostactivebyhourgraph}) {
  1596. my $pic = 'pic_h_'.(6*$period);
  1597. my $w = int(($count / $maxlines) * 100);
  1598. _html("<br /><img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" align=\"middle\" alt=\"\" />");
  1599. }
  1600. _html("</td>");
  1601. } else {
  1602. _html("<td class=\"hicell\">&nbsp;</td>");
  1603. }
  1604. } else {
  1605. _html("<td class=\"hicell\">&nbsp;</td>");
  1606. }
  1607. }
  1608. _html("</tr>");
  1609. }
  1610. _html("</table>");
  1611. }
  1612. }
  1613. sub _topactive {
  1614. my $self = shift;
  1615. my @top_active;
  1616. my $top_nicks;
  1617. if ($self->{cfg}->{sortbywords}) {
  1618. @top_active = sort { $self->{stats}->{words}{$b} <=> $self->{stats}->{words}{$a} }
  1619. keys %{ $self->{stats}->{words} };
  1620. $top_nicks = scalar keys %{ $self->{stats}->{words} };
  1621. } else {
  1622. @top_active = sort { $self->{stats}->{lines}{$b} <=> $self->{stats}->{lines}{$a} }
  1623. keys %{ $self->{stats}->{lines} };
  1624. $top_nicks = scalar keys %{ $self->{stats}->{lines} };
  1625. }
  1626. if ($self->{cfg}->{activenicks} > $top_nicks) {
  1627. $self->{cfg}->{activenicks} = $top_nicks;
  1628. }
  1629. if (($self->{cfg}->{activenicks}+$self->{cfg}->{activenicks2}) > $top_nicks) {
  1630. $self->{cfg}->{activenicks2} = $top_nicks-$self->{cfg}->{activenicks};
  1631. }
  1632. (@top_active) = @top_active[0..($self->{cfg}->{activenicks}+$self->{cfg}->{activenicks2}-1)];
  1633. foreach (@top_active) {
  1634. $self->{topactive}{$_} = 1;
  1635. }
  1636. }
  1637. sub _istoponly {
  1638. my $self = shift;
  1639. my (@nicks_tmp) = @_;
  1640. my @nicks;
  1641. my $cnt=0;
  1642. if ($self->{cfg}->{showonlytop}) {
  1643. foreach my $nick (@nicks_tmp) {
  1644. if ($self->{topactive}{$nick}) {
  1645. push(@nicks, $nick);
  1646. }
  1647. }
  1648. return(@nicks);
  1649. } else {
  1650. return(@nicks_tmp);
  1651. }
  1652. }
  1653. 1;
  1654. __END__
  1655. =head1 NAME
  1656. Pisg::HTMLGenerator - class to create a static HTML page out of data parsed
  1657. =head1 DESCRIPTION
  1658. C<Pisg::HTMLGenerator> uses the hash returned by Pisg::Parser::Logfile and turns it into a static HTML page.
  1659. =head1 SYNOPSIS
  1660. use Pisg::HTMLGenerator;
  1661. $generator = new Pisg::HTMLGenerator(
  1662. cfg => $cfg,
  1663. stats => $stats,
  1664. users => $users,
  1665. tmps => $tmps
  1666. );
  1667. =head1 CONSTRUCTOR
  1668. =over 4
  1669. =item new ( [ OPTIONS ] )
  1670. This is the constructor for a new Pisg::HTMLGenerator object. C<OPTIONS> are passed in a hash like fashion using key and value pairs.
  1671. Possible options are:
  1672. B<cfg> - hashref containing configuration variables, created by the Pisg module.
  1673. B<stats> - reference to the hash returned by Pisg::Parser::Logfile containing all stats.
  1674. B<users> - reference to a hash containg user information
  1675. B<tmps> - reference to a hash containing the language templates.
  1676. =back
  1677. =head1 AUTHOR
  1678. Morten Brix Pedersen <morten@wtf.dk>
  1679. =head1 COPYRIGHT
  1680. Copyright (C) 2001-2002 Morten Brix Pedersen. All rights reserved.
  1681. This program is free software; you can redistribute it and/or modify it
  1682. under the terms of the GPL, license is included with the distribution of
  1683. this file.
  1684. =cut