HTMLGenerator.pm 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106
  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}->{parsedlines} );
  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://mbrix.dk/\" 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}->{parsedlines}) * 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->{stats}->{actionlines}{$nick};
  338. } else {
  339. $randomline = "";
  340. }
  341. } else {
  342. $randomline = $self->{stats}->{sayings}{$nick};
  343. }
  344. if ($randomline) {
  345. $randomline = $self->_format_line($randomline);
  346. }
  347. # Add a link to the nick if there is any
  348. if ($self->{users}->{userlinks}{$nick}) {
  349. $visiblenick = $self->_replace_links($self->{users}->{userlinks}{$nick}, $nick);
  350. }
  351. my $color = $self->generate_colors($c);
  352. my $class = 'rankc';
  353. if ($c == 1) {
  354. $class = 'hirankc';
  355. }
  356. my $lastseen;
  357. if ($self->{cfg}->{showlastseen}) {
  358. $lastseen = $self->{stats}->{days} - $self->{stats}->{lastvisited}{$nick};
  359. if ($lastseen == 0) {
  360. $lastseen = $self->_template_text('today');
  361. } elsif ($lastseen == 1) {
  362. $lastseen = "$lastseen " .$self->_template_text('lastseen1');
  363. } else {
  364. $lastseen = "$lastseen " .$self->_template_text('lastseen2');
  365. }
  366. }
  367. _html("<tr><td class=\"$class\" align=\"left\">$c</td>");
  368. my $line = $self->{stats}->{lines}{$nick};
  369. my $w = $self->{stats}->{words}{$nick} ? $self->{stats}->{words}{$nick} : 0;
  370. my $ch = $self->{stats}->{lengths}{$nick};
  371. my $sex = $self->{users}->{sex}{$nick};
  372. _html("<td style=\"background-color: $color\""
  373. . ($sex ? ($sex eq 'm' ? " class=\"male\">"
  374. : ($sex eq 'f' ? " class=\"female\">" : " class=\"bot\">")) : ">")
  375. ."$visiblenick</td>"
  376. . ($self->{cfg}->{showlinetime} ?
  377. "<td style=\"background-color: $color\" nowrap=\"nowrap\">".$self->_user_linetimes($nick,$active[0])."</td>"
  378. : "<td style=\"background-color: $color\">$line</td>")
  379. . ($self->{cfg}->{showtime} ?
  380. "<td style=\"background-color: $color\">".$self->_user_times($nick)."</td>"
  381. : "")
  382. . ($self->{cfg}->{showwords} ?
  383. ($self->{cfg}->{showwordtime} ?
  384. "<td style=\"background-color: $color\" nowrap=\"nowrap\">".$self->_user_wordtimes($nick,$active[0])."</td>"
  385. : "<td style=\"background-color: $color\">$w</td>")
  386. : "")
  387. . ($self->{cfg}->{showwpl} ?
  388. "<td style=\"background-color: $color\">".sprintf("%.1f",$w/$line)."</td>"
  389. : "")
  390. . ($self->{cfg}->{showcpl} ?
  391. "<td style=\"background-color: $color\">".sprintf("%.1f",$ch/$line)."</td>"
  392. : "")
  393. . ($self->{cfg}->{showlastseen} ?
  394. "<td style=\"background-color: $color\">$lastseen</td>"
  395. : "")
  396. . ($self->{cfg}->{showrandquote} ?
  397. "<td style=\"background-color: $color\">\"$randomline\"</td>"
  398. : "")
  399. );
  400. my $height = $self->{cfg}->{picheight};
  401. my $width = $self->{cfg}->{picwidth};
  402. if ($self->{users}->{userpics}{$nick} && $self->{cfg}->{userpics} !~ /n/i) {
  403. _html("<td style=\"background-color: $color\" align=\"center\" valign=\"middle\">");
  404. if (defined $self->{users}->{biguserpics}{$nick}) {
  405. if ($self->{users}->{biguserpics}{$nick} =~ /^http:\/\//i) {
  406. _html("<a href=\"$self->{users}->{biguserpics}{$nick}\">");
  407. } else {
  408. _html("<a href=\"$self->{cfg}->{imagepath}$self->{users}->{biguserpics}{$nick}\">");
  409. }
  410. }
  411. if ($width ne '') {
  412. if ($self->{users}->{userpics}{$nick} =~ /^http:\/\//i) {
  413. _html("<img src=\"$self->{users}->{userpics}{$nick}\" width=\"$width\" height=\"$height\" alt=\"$nick\" />");
  414. } else {
  415. _html("<img src=\"$self->{cfg}->{imagepath}$self->{users}->{userpics}{$nick}\" width=\"$width\" height=\"$height\" alt=\"$nick\" />");
  416. }
  417. } else {
  418. if ($self->{users}->{userpics}{$nick} =~ /^http:\/\//i) {
  419. _html("<img src=\"$self->{users}->{userpics}{$nick}\" alt=\"$nick\" />");
  420. } else {
  421. _html("<img src=\"$self->{cfg}->{imagepath}$self->{users}->{userpics}{$nick}\" alt=\"$nick\" />");
  422. }
  423. }
  424. if (defined $self->{users}->{biguserpics}{$nick}) {
  425. _html("</a>");
  426. }
  427. _html("</td>");
  428. } elsif ($self->{cfg}->{defaultpic} ne '' && $self->{cfg}->{userpics} !~ /n/i) {
  429. if ($self->{cfg}->{defaultpic} =~ /^http:\/\//i) {
  430. _html("<td style=\"background-color: $color\" align=\"center\" valign=\"middle\"><img src=\"$self->{cfg}->{defaultpic}\" alt=\"\" /></td>");
  431. } else {
  432. _html("<td style=\"background-color: $color\" align=\"center\" valign=\"middle\"><img src=\"$self->{cfg}->{imagepath}$self->{cfg}->{defaultpic}\" alt=\"\" /></td>");
  433. }
  434. }
  435. _html("</tr>");
  436. }
  437. _html("</table><br />");
  438. # Almost as active nicks ('These didn't make it to the top..')
  439. my $toshow = $self->{cfg}->{activenicks2} - $self->{cfg}->{activenicks};
  440. my $remain = $self->{cfg}->{activenicks} + $toshow;
  441. unless ($toshow > $nicks) {
  442. $remain = $self->{cfg}->{activenicks} + $self->{cfg}->{activenicks2};
  443. if ($remain > $nicks) {
  444. $remain = $nicks;
  445. }
  446. if ($self->{cfg}->{activenicks} < $remain) {
  447. _html("<br /><b><i>" . $self->_template_text('nottop') . "</i></b><table><tr>");
  448. for (my $i = $self->{cfg}->{activenicks}; $i < $remain; $i++) {
  449. unless ($i % 5) { if ($i != $self->{cfg}->{activenicks}) { _html("</tr><tr>"); } }
  450. my $items;
  451. if ($self->{cfg}->{sortbywords}) {
  452. $items = $self->{stats}->{words}{$active[$i]};
  453. } else {
  454. $items = $self->{stats}->{lines}{$active[$i]};
  455. }
  456. my $sex = $self->{users}->{sex}{$active[$i]};
  457. _html("<td class=\"rankc10\">"
  458. . ($sex ? ($sex eq 'm' ? "<span class=\"male\">"
  459. : ($sex eq 'f' ? "<span class=\"female\">" : "<span class=\"bot\">")) : "")
  460. ."$active[$i] ($items)"
  461. . ($sex ? "</span>" : "")
  462. ."</td>");
  463. }
  464. _html("</tr></table>");
  465. }
  466. }
  467. my %hash;
  468. $hash{totalnicks} = $nicks - $remain;
  469. if ($hash{totalnicks} > 0) {
  470. _html("<br /><b>" . $self->_template_text('totalnicks', %hash) . "</b><br />");
  471. }
  472. }
  473. sub generate_colors
  474. {
  475. my $self = shift;
  476. my $c = shift;
  477. my $h = $self->{cfg}->{hicell};
  478. $h =~ s/^#//;
  479. $h = hex $h;
  480. my $h2 = $self->{cfg}->{hicell2};
  481. $h2 =~ s/^#//;
  482. $h2 = hex $h2;
  483. my $f_b = $h & 0xff;
  484. my $f_g = ($h & 0xff00) >> 8;
  485. my $f_r = ($h & 0xff0000) >> 16;
  486. my $t_b = $h2 & 0xff;
  487. my $t_g = ($h2 & 0xff00) >> 8;
  488. my $t_r = ($h2 & 0xff0000) >> 16;
  489. my $blue = sprintf "%0.2x", abs int(((($t_b - $f_b) / $self->{cfg}->{activenicks}) * +$c) + $f_b);
  490. my $green = sprintf "%0.2x", abs int(((($t_g - $f_g) / $self->{cfg}->{activenicks}) * +$c) + $f_g);
  491. my $red = sprintf "%0.2x", abs int(((($t_r - $f_r) / $self->{cfg}->{activenicks}) * +$c) + $f_r);
  492. return "#$red$green$blue";
  493. }
  494. sub _html
  495. {
  496. my $html = shift;
  497. print OUTPUT "$html\n";
  498. }
  499. sub _questions
  500. {
  501. # Persons who asked the most questions
  502. my $self = shift;
  503. my %qpercent;
  504. foreach my $nick (sort keys %{ $self->{stats}->{questions} }) {
  505. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  506. if ($self->{stats}->{lines}{$nick} > 100) {
  507. $qpercent{$nick} = ($self->{stats}->{questions}{$nick} / $self->{stats}->{lines}{$nick}) * 100;
  508. $qpercent{$nick} =~ s/(\.\d)\d+/$1/;
  509. }
  510. }
  511. }
  512. my @question = sort { $qpercent{$b} <=> $qpercent{$a} } keys %qpercent;
  513. if (@question) {
  514. my %hash = (
  515. nick => $question[0],
  516. per => $qpercent{$question[0]}
  517. );
  518. my $text = $self->_template_text('question1', %hash);
  519. _html("<tr><td class=\"hicell\">$text");
  520. if (@question >= 2) {
  521. my %hash = (
  522. nick => $question[1],
  523. per => $qpercent{$question[1]}
  524. );
  525. my $text = $self->_template_text('question2', %hash);
  526. _html("<br /><span class=\"small\">$text</span>");
  527. }
  528. _html("</td></tr>");
  529. } else {
  530. _html("<tr><td class=\"hicell\">" . $self->_template_text('question3') . "</td></tr>");
  531. }
  532. }
  533. sub _shoutpeople
  534. {
  535. # The ones who speak with exclamation marks!
  536. my $self = shift;
  537. my %spercent;
  538. foreach my $nick (sort keys %{ $self->{stats}->{shouts} }) {
  539. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  540. if ($self->{stats}->{lines}{$nick} > 100) {
  541. $spercent{$nick} = ($self->{stats}->{shouts}{$nick} / $self->{stats}->{lines}{$nick}) * 100;
  542. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  543. }
  544. }
  545. }
  546. my @shout = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  547. if (@shout) {
  548. my %hash = (
  549. nick => $shout[0],
  550. per => $spercent{$shout[0]}
  551. );
  552. my $text = $self->_template_text('shout1', %hash);
  553. _html("<tr><td class=\"hicell\">$text");
  554. if (@shout >= 2) {
  555. my %hash = (
  556. nick => $shout[1],
  557. per => $spercent{$shout[1]}
  558. );
  559. my $text = $self->_template_text('shout2', %hash);
  560. _html("<br /><span class=\"small\">$text</span>");
  561. }
  562. _html("</td></tr>");
  563. } else {
  564. my $text = $self->_template_text('shout3');
  565. _html("<tr><td class=\"hicell\">$text</td></tr>");
  566. }
  567. }
  568. sub _capspeople
  569. {
  570. # The ones who speak ALL CAPS.
  571. my $self = shift;
  572. my %cpercent;
  573. foreach my $nick (sort keys %{ $self->{stats}->{allcaps} }) {
  574. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  575. if ($self->{stats}->{lines}{$nick} > 100) {
  576. $cpercent{$nick} = $self->{stats}->{allcaps}{$nick} / $self->{stats}->{lines}{$nick} * 100;
  577. $cpercent{$nick} =~ s/(\.\d)\d+/$1/;
  578. }
  579. }
  580. }
  581. my @caps = sort { $cpercent{$b} <=> $cpercent{$a} } keys %cpercent;
  582. if (@caps) {
  583. my %hash = (
  584. nick => $caps[0],
  585. per => $cpercent{$caps[0]},
  586. line => $self->_format_line($self->{stats}->{allcaplines}{$caps[0]})
  587. );
  588. my $text = $self->_template_text('allcaps1', %hash);
  589. if($self->{cfg}->{showshoutline}) {
  590. my $exttext = $self->_template_text('allcapstext', %hash);
  591. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  592. } else {
  593. _html("<tr><td class=\"hicell\">$text");
  594. }
  595. if (@caps >= 2) {
  596. my %hash = (
  597. nick => $caps[1],
  598. per => $cpercent{$caps[1]}
  599. );
  600. my $text = $self->_template_text('allcaps2', %hash);
  601. _html("<br /><span class=\"small\">$text</span>");
  602. }
  603. _html("</td></tr>");
  604. } else {
  605. my $text = $self->_template_text('allcaps3');
  606. _html("<tr><td class=\"hicell\">$text</td></tr>");
  607. }
  608. }
  609. sub _violent
  610. {
  611. # They attacked others (words defined by $self->{cfg}->{violent})
  612. my $self = shift;
  613. my @aggressors = sort { $self->{stats}->{violence}{$b} <=> $self->{stats}->{violence}{$a} }
  614. keys %{ $self->{stats}->{violence} };
  615. @aggressors = $self->_istoponly(@aggressors);
  616. if(@aggressors) {
  617. my %hash = (
  618. nick => $aggressors[0],
  619. attacks => $self->{stats}->{violence}{$aggressors[0]},
  620. line => $self->_format_line($self->{stats}->{violencelines}{$aggressors[0]})
  621. );
  622. my $text = $self->_template_text('violent1', %hash);
  623. if($self->{cfg}->{showviolentlines}) {
  624. my $exttext = $self->_template_text('violenttext', %hash);
  625. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  626. } else {
  627. _html("<tr><td class=\"hicell\">$text");
  628. }
  629. if (@aggressors >= 2) {
  630. my %hash = (
  631. nick => $aggressors[1],
  632. attacks => $self->{stats}->{violence}{$aggressors[1]}
  633. );
  634. my $text = $self->_template_text('violent2', %hash);
  635. _html("<br /><span class=\"small\">$text</span>");
  636. }
  637. _html("</td></tr>");
  638. } else {
  639. my $text = $self->_template_text('violent3');
  640. _html("<tr><td class=\"hicell\">$text</td></tr>");
  641. }
  642. # They got attacked
  643. my @victims = sort { $self->{stats}->{attacked}{$b} <=> $self->{stats}->{attacked}{$a} }
  644. keys %{ $self->{stats}->{attacked} };
  645. @victims = $self->_istoponly(@victims);
  646. if(@victims) {
  647. my %hash = (
  648. nick => $victims[0],
  649. attacks => $self->{stats}->{attacked}{$victims[0]},
  650. line => $self->_format_line($self->{stats}->{attackedlines}{$victims[0]})
  651. );
  652. my $text = $self->_template_text('attacked1', %hash);
  653. if($self->{cfg}->{showviolentlines}) {
  654. my $exttext = $self->_template_text('attackedtext', %hash);
  655. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  656. } else {
  657. _html("<tr><td class=\"hicell\">$text");
  658. }
  659. if (@victims >= 2) {
  660. my %hash = (
  661. nick => $victims[1],
  662. attacks => $self->{stats}->{attacked}{$victims[1]}
  663. );
  664. my $text = $self->_template_text('attacked2', %hash);
  665. _html("<br /><span class=\"small\">$text</span>");
  666. }
  667. _html("</td></tr>");
  668. }
  669. }
  670. sub _gotkicks
  671. {
  672. # The persons who got kicked the most
  673. my $self = shift;
  674. my @gotkick = sort { $self->{stats}->{gotkicked}{$b} <=> $self->{stats}->{gotkicked}{$a} }
  675. keys %{ $self->{stats}->{gotkicked} };
  676. @gotkick = $self->_istoponly(@gotkick);
  677. if (@gotkick) {
  678. my %hash = (
  679. nick => $gotkick[0],
  680. kicks => $self->{stats}->{gotkicked}{$gotkick[0]},
  681. line => $self->_format_line($self->{stats}->{kicklines}{$gotkick[0]})
  682. );
  683. my $text = $self->_template_text('gotkick1', %hash);
  684. if ($self->{cfg}->{showkickline}) {
  685. my $exttext = $self->_template_text('kicktext', %hash);
  686. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  687. } else {
  688. _html("<tr><td class=\"hicell\">$text");
  689. }
  690. if (@gotkick >= 2) {
  691. my %hash = (
  692. nick => $gotkick[1],
  693. kicks => $self->{stats}->{gotkicked}{$gotkick[1]}
  694. );
  695. my $text = $self->_template_text('gotkick2', %hash);
  696. _html("<br /><span class=\"small\">$text</span>");
  697. }
  698. _html("</td></tr>");
  699. }
  700. }
  701. sub _mostjoins
  702. {
  703. my $self = shift;
  704. my @joins = sort { $self->{stats}->{joins}{$b} <=> $self->{stats}->{joins}{$a} }
  705. keys %{ $self->{stats}->{joins} };
  706. @joins = $self->_istoponly(@joins);
  707. if (@joins) {
  708. my %hash = (
  709. nick => $joins[0],
  710. joins => $self->{stats}->{joins}{$joins[0]}
  711. );
  712. my $text = $self->_template_text('joins', %hash);
  713. _html("<tr><td class=\"hicell\">$text</td></tr>");
  714. }
  715. }
  716. sub _mostwords
  717. {
  718. # The person who got words the most
  719. my $self = shift;
  720. my @words = sort { $self->{stats}->{words}{$b} <=> $self->{stats}->{words}{$a} }
  721. keys %{ $self->{stats}->{words} };
  722. @words = $self->_istoponly(@words);
  723. if (@words) {
  724. my %hash = (
  725. nick => $words[0],
  726. words => $self->{stats}->{words}{$words[0]}
  727. );
  728. my $text = $self->_template_text('words1', %hash);
  729. _html("<tr><td class=\"hicell\">$text");
  730. if (@words >= 2) {
  731. my %hash = (
  732. oldnick => $words[0],
  733. nick => $words[1],
  734. words => $self->{stats}->{words}{$words[1]}
  735. );
  736. my $text = $self->_template_text('words2', %hash);
  737. _html("<br /><span class=\"small\">$text</span>");
  738. }
  739. _html("</td></tr>");
  740. } else {
  741. my $text = $self->_template_text('kick3');
  742. _html("<tr><td class=\"hicell\">$text</td></tr>");
  743. }
  744. }
  745. sub _mostkicks
  746. {
  747. # The person who kicked the most
  748. my $self = shift;
  749. my @kicked = sort { $self->{stats}->{kicked}{$b} <=> $self->{stats}->{kicked}{$a} }
  750. keys %{ $self->{stats}->{kicked} };
  751. @kicked = $self->_istoponly(@kicked);
  752. if (@kicked) {
  753. my %hash = (
  754. nick => $kicked[0],
  755. kicked => $self->{stats}->{kicked}{$kicked[0]}
  756. );
  757. my $text = $self->_template_text('kick1', %hash);
  758. _html("<tr><td class=\"hicell\">$text");
  759. if (@kicked >= 2) {
  760. my %hash = (
  761. oldnick => $kicked[0],
  762. nick => $kicked[1],
  763. kicked => $self->{stats}->{kicked}{$kicked[1]}
  764. );
  765. my $text = $self->_template_text('kick2', %hash);
  766. _html("<br /><span class=\"small\">$text</span>");
  767. }
  768. _html("</td></tr>");
  769. } else {
  770. my $text = $self->_template_text('kick3');
  771. _html("<tr><td class=\"hicell\">$text</td></tr>");
  772. }
  773. }
  774. sub _mostmonologues
  775. {
  776. # The person who had the most monologues (speaking to himself)
  777. my $self = shift;
  778. my @monologue = sort { $self->{stats}->{monologues}{$b} <=> $self->{stats}->{monologues}{$a} }
  779. keys %{ $self->{stats}->{monologues} };
  780. @monologue = $self->_istoponly(@monologue);
  781. if (@monologue) {
  782. my %hash = (
  783. nick => $monologue[0],
  784. monos => $self->{stats}->{monologues}{$monologue[0]}
  785. );
  786. my $text = $self->_template_text('mono1', %hash);
  787. _html("<tr><td class=\"hicell\">$text");
  788. if (@monologue >= 2) {
  789. my %hash = (
  790. nick => $monologue[1],
  791. monos => $self->{stats}->{monologues}{$monologue[1]}
  792. );
  793. my $text = $self->_template_text('mono2', %hash);
  794. _html("<br /><span class=\"small\">$text</span>");
  795. }
  796. _html("</td></tr>");
  797. }
  798. }
  799. sub _linelengths
  800. {
  801. # The person(s) who wrote the longest lines
  802. my $self = shift;
  803. my %len;
  804. foreach my $nick (sort keys %{ $self->{stats}->{lengths} }) {
  805. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  806. if ($self->{stats}->{lines}{$nick} > 100) {
  807. $len{$nick} = $self->{stats}->{lengths}{$nick} / $self->{stats}->{lines}{$nick};
  808. $len{$nick} =~ s/(\.\d)\d+/$1/;
  809. }
  810. }
  811. }
  812. my @len = sort { $len{$b} <=> $len{$a} } keys %len;
  813. my $all_lines = 0;
  814. my $totallength;
  815. foreach my $nick (keys %{ $self->{stats}->{lines} }) {
  816. $all_lines += $self->{stats}->{lines}{$nick};
  817. $totallength += $self->{stats}->{lengths}{$nick};
  818. }
  819. my $totalaverage;
  820. if ($all_lines > 0) {
  821. $totalaverage = $totallength / $all_lines;
  822. $totalaverage =~ s/(\.\d)\d+/$1/;
  823. }
  824. if (@len) {
  825. my %hash = (
  826. nick => $len[0],
  827. letters => $len{$len[0]}
  828. );
  829. my $text = $self->_template_text('long1', %hash);
  830. _html("<tr><td class=\"hicell\">$text<br />");
  831. if (@len >= 2) {
  832. %hash = (
  833. avg => $totalaverage
  834. );
  835. $text = $self->_template_text('long2', %hash);
  836. _html("<span class=\"small\">$text</span></td></tr>");
  837. }
  838. }
  839. # The person(s) who wrote the shortest lines
  840. if (@len) {
  841. my %hash = (
  842. nick => $len[$#len],
  843. letters => $len{$len[$#len]}
  844. );
  845. my $text = $self->_template_text('short1', %hash);
  846. _html("<tr><td class=\"hicell\">$text<br />");
  847. if (@len >= 2) {
  848. %hash = (
  849. nick => $len[$#len - 1],
  850. letters => $len{$len[$#len - 1]}
  851. );
  852. $text = $self->_template_text('short2', %hash);
  853. _html("<span class=\"small\">$text</span></td></tr>");
  854. }
  855. }
  856. }
  857. sub _mostfoul
  858. {
  859. my $self = shift;
  860. my %spercent;
  861. foreach my $nick (sort keys %{ $self->{stats}->{foul} }) {
  862. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  863. if ($self->{stats}->{lines}{$nick} > 15) {
  864. $spercent{$nick} = $self->{stats}->{foul}{$nick} / $self->{stats}->{words}{$nick} * 100;
  865. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  866. }
  867. }
  868. }
  869. my @foul = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  870. if (@foul) {
  871. my %hash = (
  872. nick => $foul[0],
  873. per => $spercent{$foul[0]},
  874. line => $self->_format_line($self->{stats}{foullines}{$foul[0]}),
  875. );
  876. my $text = $self->_template_text('foul1', %hash);
  877. if($self->{cfg}->{showfoulline}) {
  878. my $exttext = $self->_template_text('foultext', %hash);
  879. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  880. } else {
  881. _html("<tr><td class=\"hicell\">$text");
  882. }
  883. if (@foul >= 2) {
  884. my %hash = (
  885. nick => $foul[1],
  886. per => $spercent{$foul[1]}
  887. );
  888. my $text = $self->_template_text('foul2', %hash);
  889. _html("<br /><span class=\"small\">$text</span>");
  890. }
  891. _html("</td></tr>");
  892. } else {
  893. my $text = $self->_template_text('foul3');
  894. _html("<tr><td class=\"hicell\">$text</td></tr>");
  895. }
  896. }
  897. sub _mostsad
  898. {
  899. my $self = shift;
  900. my %spercent;
  901. foreach my $nick (sort keys %{ $self->{stats}->{frowns} }) {
  902. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  903. if ($self->{stats}->{lines}{$nick} > 100) {
  904. $spercent{$nick} = $self->{stats}->{frowns}{$nick} / $self->{stats}->{lines}{$nick} * 100;
  905. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  906. }
  907. }
  908. }
  909. my @sadface = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  910. if (@sadface) {
  911. my %hash = (
  912. nick => $sadface[0],
  913. per => $spercent{$sadface[0]}
  914. );
  915. my $text = $self->_template_text('sad1', %hash);
  916. _html("<tr><td class=\"hicell\">$text");
  917. if (@sadface >= 2) {
  918. my %hash = (
  919. nick => $sadface[1],
  920. per => $spercent{$sadface[1]}
  921. );
  922. my $text = $self->_template_text('sad2', %hash);
  923. _html("<br /><span class=\"small\">$text</span>");
  924. }
  925. _html("</td></tr>");
  926. } else {
  927. my $text = $self->_template_text('sad3');
  928. _html("<tr><td class=\"hicell\">$text</td></tr>");
  929. }
  930. }
  931. sub _mostop
  932. {
  933. my $self = shift;
  934. my @ops = sort { $self->{stats}->{gaveops}{$b} <=> $self->{stats}->{gaveops}{$a} }
  935. keys %{ $self->{stats}->{gaveops} };
  936. @ops = $self->_istoponly(@ops);
  937. my @deops = sort { $self->{stats}->{tookops}{$b} <=> $self->{stats}->{tookops}{$a} }
  938. keys %{ $self->{stats}->{tookops} };
  939. @deops = $self->_istoponly(@deops);
  940. if (@ops) {
  941. my %hash = (
  942. nick => $ops[0],
  943. ops => $self->{stats}->{gaveops}{$ops[0]}
  944. );
  945. my $text = $self->_template_text('mostop1', %hash);
  946. _html("<tr><td class=\"hicell\">$text");
  947. if (@ops >= 2) {
  948. my %hash = (
  949. nick => $ops[1],
  950. ops => $self->{stats}->{gaveops}{$ops[1]}
  951. );
  952. my $text = $self->_template_text('mostop2', %hash);
  953. _html("<br /><span class=\"small\">$text</span>");
  954. }
  955. _html("</td></tr>");
  956. } else {
  957. my $text = $self->_template_text('mostop3');
  958. _html("<tr><td class=\"hicell\">$text</td></tr>");
  959. }
  960. if (@deops) {
  961. my %hash = (
  962. nick => $deops[0],
  963. deops => $self->{stats}->{tookops}{$deops[0]}
  964. );
  965. my $text = $self->_template_text('mostdeop1', %hash);
  966. _html("<tr><td class=\"hicell\">$text");
  967. if (@deops >= 2) {
  968. my %hash = (
  969. nick => $deops[1],
  970. deops => $self->{stats}->{tookops}{$deops[1]}
  971. );
  972. my $text = $self->_template_text('mostdeop2', %hash);
  973. _html("<br /><span class=\"small\">$text</span>");
  974. }
  975. _html("</td></tr>");
  976. } else {
  977. my $text = $self->_template_text('mostdeop3');
  978. _html("<tr><td class=\"hicell\">$text</td></tr>");
  979. }
  980. }
  981. sub _mostvoice
  982. {
  983. my $self = shift;
  984. my @voice = sort { $self->{stats}->{gavevoice}{$b} <=> $self->{stats}->{gavevoice}{$a} }
  985. keys %{ $self->{stats}->{gavevoice} };
  986. @voice = $self->_istoponly(@voice);
  987. my @devoice = sort { $self->{stats}->{tookvoice}{$b} <=> $self->{stats}->{tookvoice}{$a} }
  988. keys %{ $self->{stats}->{tookvoice} };
  989. @devoice = $self->_istoponly(@devoice);
  990. if (@voice) {
  991. my %hash = (
  992. nick => $voice[0],
  993. voices => $self->{stats}->{gavevoice}{$voice[0]}
  994. );
  995. my $text = $self->_template_text('mostvoice1', %hash);
  996. _html("<tr><td class=\"hicell\">$text");
  997. if (@voice >= 2) {
  998. my %hash = (
  999. nick => $voice[1],
  1000. voices => $self->{stats}->{gavevoice}{$voice[1]}
  1001. );
  1002. my $text = $self->_template_text('mostvoice2', %hash);
  1003. _html("<br /><span class=\"small\">$text</span>");
  1004. }
  1005. _html("</td></tr>");
  1006. } else {
  1007. my $text = $self->_template_text('mostvoice3');
  1008. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1009. }
  1010. if (@devoice) {
  1011. my %hash = (
  1012. nick => $devoice[0],
  1013. devoices => $self->{stats}->{tookvoice}{$devoice[0]}
  1014. );
  1015. my $text = $self->_template_text('mostdevoice1', %hash);
  1016. _html("<tr><td class=\"hicell\">$text");
  1017. if (@devoice >= 2) {
  1018. my %hash = (
  1019. nick => $devoice[1],
  1020. devoices => $self->{stats}->{tookvoice}{$devoice[1]}
  1021. );
  1022. my $text = $self->_template_text('mostdevoice2', %hash);
  1023. _html("<br /><span class=\"small\">$text</span>");
  1024. }
  1025. _html("</td></tr>");
  1026. } else {
  1027. my $text = $self->_template_text('mostdevoice3');
  1028. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1029. }
  1030. }
  1031. sub _mosthalfop
  1032. {
  1033. my $self = shift;
  1034. my @halfops = sort { $self->{stats}->{gavehalfops}{$b} <=> $self->{stats}->{gavehalfops}{$a} }
  1035. keys %{ $self->{stats}->{gavehalfops} };
  1036. @halfops = $self->_istoponly(@halfops);
  1037. my @dehalfops = sort { $self->{stats}->{tookhalfops}{$b} <=> $self->{stats}->{tookhalfops}{$a} }
  1038. keys %{ $self->{stats}->{tookhalfops} };
  1039. @dehalfops = $self->_istoponly(@dehalfops);
  1040. if (@halfops) {
  1041. my %hash = (
  1042. nick => $halfops[0],
  1043. halfops => $self->{stats}->{gavehalfops}{$halfops[0]}
  1044. );
  1045. my $text = $self->_template_text('mosthalfop1', %hash);
  1046. _html("<tr><td class=\"hicell\">$text");
  1047. if (@halfops >= 2) {
  1048. my %hash = (
  1049. nick => $halfops[1],
  1050. halfops => $self->{stats}->{gavehalfops}{$halfops[1]}
  1051. );
  1052. my $text = $self->_template_text('mosthalfop2', %hash);
  1053. _html("<br /><span class=\"small\">$text</span>");
  1054. }
  1055. _html("</td></tr>");
  1056. } else {
  1057. my $text = $self->_template_text('mosthalfop3');
  1058. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1059. }
  1060. if (@dehalfops) {
  1061. my %hash = (
  1062. nick => $dehalfops[0],
  1063. dehalfops => $self->{stats}->{tookhalfops}{$dehalfops[0]}
  1064. );
  1065. my $text = $self->_template_text('mostdehalfop1', %hash);
  1066. _html("<tr><td class=\"hicell\">$text");
  1067. if (@dehalfops >= 2) {
  1068. my %hash = (
  1069. nick => $dehalfops[1],
  1070. dehalfops => $self->{stats}->{tookhalfops}{$dehalfops[1]}
  1071. );
  1072. my $text = $self->_template_text('mostdehalfop2', %hash);
  1073. _html("<br /><span class=\"small\">$text</span>");
  1074. }
  1075. _html("</td></tr>");
  1076. } else {
  1077. my $text = $self->_template_text('mostdehalfop3');
  1078. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1079. }
  1080. }
  1081. sub _mostactions
  1082. {
  1083. # The person who did the most /me's
  1084. my $self = shift;
  1085. my @actions = sort { $self->{stats}->{actions}{$b} <=> $self->{stats}->{actions}{$a} }
  1086. keys %{ $self->{stats}->{actions} };
  1087. @actions = $self->_istoponly(@actions);
  1088. if (@actions) {
  1089. my %linehash =
  1090. my %hash = (
  1091. nick => $actions[0],
  1092. actions => $self->{stats}->{actions}{$actions[0]},
  1093. line => $self->_format_line($self->{stats}->{actionlines}{$actions[0]})
  1094. );
  1095. my $text = $self->_template_text('action1', %hash);
  1096. if($self->{cfg}->{showactionline}) {
  1097. my $exttext = $self->_template_text('actiontext', %hash);
  1098. _html("<tr><td class=\"hicell\">$text<br /><span class=\"small\">$exttext</span><br />");
  1099. } else {
  1100. _html("<tr><td class=\"hicell\">$text");
  1101. }
  1102. if (@actions >= 2) {
  1103. my %hash = (
  1104. nick => $actions[1],
  1105. actions => $self->{stats}->{actions}{$actions[1]}
  1106. );
  1107. my $text = $self->_template_text('action2', %hash);
  1108. _html("<br /><span class=\"small\">$text</span>");
  1109. }
  1110. _html("</td></tr>");
  1111. } else {
  1112. my $text = $self->_template_text('action3');
  1113. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1114. }
  1115. }
  1116. sub _mostsmiles
  1117. {
  1118. # The person(s) who smiled the most :-)
  1119. my $self = shift;
  1120. my %spercent;
  1121. foreach my $nick (sort keys %{ $self->{stats}->{smiles} }) {
  1122. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  1123. if ($self->{stats}->{lines}{$nick} > 100) {
  1124. $spercent{$nick} = $self->{stats}->{smiles}{$nick} / $self->{stats}->{lines}{$nick} * 100;
  1125. $spercent{$nick} =~ s/(\.\d)\d+/$1/;
  1126. }
  1127. }
  1128. }
  1129. my @smiles = sort { $spercent{$b} <=> $spercent{$a} } keys %spercent;
  1130. if (@smiles) {
  1131. my %hash = (
  1132. nick => $smiles[0],
  1133. per => $spercent{$smiles[0]}
  1134. );
  1135. my $text = $self->_template_text('smiles1', %hash);
  1136. _html("<tr><td class=\"hicell\">$text");
  1137. if (@smiles >= 2) {
  1138. my %hash = (
  1139. nick => $smiles[1],
  1140. per => $spercent{$smiles[1]}
  1141. );
  1142. my $text = $self->_template_text('smiles2', %hash);
  1143. _html("<br /><span class=\"small\">$text</span>");
  1144. }
  1145. _html("</td></tr>");
  1146. } else {
  1147. my $text = $self->_template_text('smiles3');
  1148. _html("<tr><td class=\"hicell\">$text</td></tr>");
  1149. }
  1150. }
  1151. sub _lasttopics
  1152. {
  1153. my $self = shift;
  1154. if ($self->{stats}->{topics}) {
  1155. my %topic_seen;
  1156. my %hash = (
  1157. total => scalar @{ $self->{stats}->{topics} }
  1158. );
  1159. my $ltopic = $#{ $self->{stats}->{topics} };
  1160. my $tlimit = 0;
  1161. $self->{cfg}->{topichistory} -= 1;
  1162. if ($ltopic > $self->{cfg}->{topichistory}) {
  1163. $tlimit = $ltopic - $self->{cfg}->{topichistory};
  1164. }
  1165. for (my $i = $ltopic; $i >= $tlimit; $i--) {
  1166. my $topic = $self->{stats}->{topics}[$i]{topic};
  1167. # This code makes sure that we don't see the same topic twice
  1168. next if ($topic_seen{$topic});
  1169. $topic_seen{$topic} = 1;
  1170. # Strip off the quotes (')
  1171. $topic =~ s/^\'(.*)\'$/$1/;
  1172. my $nick = $self->{stats}->{topics}[$i]{nick};
  1173. my $hour = $self->{stats}->{topics}[$i]{hour};
  1174. my $min = $self->{stats}->{topics}[$i]{min};
  1175. $hash{nick} = $self->_format_word($nick);
  1176. $hash{time} = "$hour:$min";
  1177. _html('<tr><td class="hicell"><i>' . $self->_format_line($topic) . '</i></td>');
  1178. _html('<td class="hicell"><b>' . $self->_template_text('bylinetopic', %hash) . '</b></td></tr>');
  1179. }
  1180. _html("<tr><td align=\"center\" colspan=\"2\" class=\"asmall\">" . $self->_template_text('totaltopic', %hash) . "</td></tr>");
  1181. } else {
  1182. _html("<tr><td class=\"hicell\">" . $self->_template_text('notopic') ."</td></tr>");
  1183. }
  1184. }
  1185. sub _template_text
  1186. {
  1187. # This function is for the homemade template system. It receives a name
  1188. # of a template and a hash with the fields in the template to update to
  1189. # its corresponding value
  1190. my $self = shift;
  1191. my $template = shift;
  1192. my %hash = @_;
  1193. my $text;
  1194. unless ($text = $self->{tmps}->{lc($self->{cfg}->{lang})}{$template}) {
  1195. # Fall back to English if the language template doesn't exist
  1196. if ($text = $self->{tmps}->{en}{$template}) {
  1197. print "Note: No translation in '$self->{cfg}->{lang}' for '$template' - falling back to English..\n"
  1198. unless ($self->{cfg}->{silent});
  1199. } else {
  1200. die("No such template '$template' in language file.\n");
  1201. }
  1202. }
  1203. $hash{channel} = $self->{cfg}->{channel};
  1204. foreach my $key (sort keys %hash) {
  1205. $text =~ s/\[:$key\]/$hash{$key}/;
  1206. if ($self->{cfg}->{charset} =~ /iso-8859-1/i) {
  1207. $text =~ s/ü/&uuml;/go;
  1208. $text =~ s/ö/&ouml;/go;
  1209. $text =~ s/ä/&auml;/go;
  1210. $text =~ s/ß/&szlig;/go;
  1211. $text =~ s/å/&aring;/go;
  1212. $text =~ s/æ/&aelig;/go;
  1213. $text =~ s/ø/&oslash;/go;
  1214. $text =~ s/Å/&Aring;/go;
  1215. $text =~ s/Æ/&AElig;/go;
  1216. $text =~ s/Ø/&Oslash;/go;
  1217. }
  1218. }
  1219. if ($text =~ /\[:[^:]*?:[^:]*?:[^:]*?:\]/o) {
  1220. $text =~ s/\[:([^:]*?):([^:]*?):([^:]*?):\]/$self->_get_subst($1,$2,$3,\%hash)/geo;
  1221. }
  1222. if ($text =~ /\[:[^:]*?:[^:]*?:]/o) {
  1223. $text =~ s/\[:([^:]*?):([^:]*?):]/$self->_get_subst($1,$2,undef,\%hash)/geo;
  1224. }
  1225. return $text;
  1226. }
  1227. sub _format_word
  1228. {
  1229. # This function formats a word -- should ONLY be called on words used alone (EG: not whole line printed)
  1230. my ($self, $word) = @_;
  1231. $word = htmlentities($word, $self->{cfg}->{charset});
  1232. $word = $self->_replace_links($word);
  1233. return $word;
  1234. }
  1235. sub _format_line
  1236. {
  1237. # This function formats a action/normal line to be more readable, and calls any other function
  1238. # that should be executed on every line.
  1239. my ($self, $line) = @_;
  1240. my $hashref;
  1241. if ($hashref = $self->{cfg}->{analyzer}->{parser}->normalline($line)) {
  1242. $line = '<' . $hashref->{nick} . '> ' . $hashref->{saying};
  1243. } elsif ($hashref = $self->{cfg}->{analyzer}->{parser}->actionline($line)) {
  1244. $line = '* ' . $hashref->{nick} . ' ' . $hashref->{saying};
  1245. } elsif ($hashref = $self->{cfg}->{analyzer}->{parser}->thirdline($line)) {
  1246. if (defined($hashref->{kicker})) {
  1247. $line = '*** ' . $hashref->{nick} . ' was kicked by ' . $hashref->{kicker};
  1248. $line .= ' (' . $hashref->{kicktext} . ')'
  1249. if (defined($hashref->{kicktext}));
  1250. } elsif (defined($hashref->{newtopic})) {
  1251. $line = '*** ' . $hashref->{nick} . ' changes topic to \'' . $hashref->{newtopic} . '\'';
  1252. } elsif (defined($hashref->{newmode})) {
  1253. $line = '*** ' . $hashref->{nick} . ' sets mode ' . $hashref->{newmode};
  1254. $line .= ' ' . $hashref->{modechanges}
  1255. if (defined($hashref->{kicktext}));
  1256. } elsif (defined($hashref->{newjoin})) {
  1257. $line = '*** Joins: ' . $hashref->{nick};
  1258. } elsif (defined($hashref->{newnick})) {
  1259. $line = '*** ' . $hashref->{nick} . ' is now known as ' . $hashref->{newnick};
  1260. } elsif (defined($hashref->{newtopic})) {
  1261. $line = '*** ' . $hashref->{nick} . ' changes topic to: ' . $hashref->{newtopic};
  1262. }
  1263. }
  1264. $line = htmlentities($line, $self->{cfg}->{charset});
  1265. $line = $self->_replace_links($line);
  1266. return $line;
  1267. }
  1268. sub _get_subst
  1269. {
  1270. # This function looks at the user definition and see if there is sex
  1271. # defined. If yes, return the appropriate value. If no, just return the
  1272. # default he/she value.
  1273. my $self = shift;
  1274. my ($m,$f,$d,$hash) = @_;
  1275. if ($hash->{nick} && $self->{users}->{sex}{$hash->{nick}}) {
  1276. if ($self->{users}->{sex}{$hash->{nick}} eq 'm') {
  1277. return $m;
  1278. } elsif ($self->{users}->{sex}{$hash->{nick}} eq 'f') {
  1279. return $f;
  1280. }
  1281. }
  1282. return defined($d) ? $d : "$m/$f";
  1283. }
  1284. sub _mostusedword
  1285. {
  1286. # Word usage statistics
  1287. my $self = shift;
  1288. my %usages;
  1289. foreach my $word (keys %{ $self->{stats}->{wordcounts} }) {
  1290. # Skip people's nicks.
  1291. next if is_nick($word);
  1292. next if (length($word) < $self->{cfg}->{wordlength});
  1293. $usages{$word} = $self->{stats}->{wordcounts}{$word};
  1294. }
  1295. my @popular = sort { $usages{$b} <=> $usages{$a} } keys %usages;
  1296. if (@popular) {
  1297. $self->_headline($self->_template_text('mostwordstopic'));
  1298. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1299. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>" . $self->_template_text('word') . "</b></td>");
  1300. _html("<td class=\"tdtop\"><b>" . $self->_template_text('numberuses') . "</b></td>");
  1301. _html("<td class=\"tdtop\"><b>" . $self->_template_text('lastused') . "</b></td></tr>");
  1302. my $count = 0;
  1303. for(my $i = 0; $count < $self->{cfg}->{wordhistory}; $i++) {
  1304. last unless $i < $#popular;
  1305. # Skip nicks. It's far more efficient to do this here than when
  1306. # @popular is created.
  1307. next if is_ignored($popular[$i]);
  1308. my $a = $count + 1;
  1309. my $popular = $self->_format_word($popular[$i]);
  1310. my $wordcount = $self->{stats}->{wordcounts}{$popular[$i]};
  1311. my $lastused = $self->_format_word($self->{stats}->{wordnicks}{$popular[$i]});
  1312. my $class;
  1313. if ($a == 1) {
  1314. $class = 'hirankc';
  1315. } else {
  1316. $class = 'rankc';
  1317. }
  1318. _html("<tr><td class=\"$class\">$a</td>");
  1319. _html("<td class=\"hicell\">$popular</td>");
  1320. _html("<td class=\"hicell\">$wordcount</td>");
  1321. _html("<td class=\"hicell\">$lastused</td>");
  1322. _html("</tr>");
  1323. $count++;
  1324. }
  1325. _html("</table>");
  1326. }
  1327. }
  1328. sub _mostwordsperline
  1329. {
  1330. # The person who got the most words per line
  1331. my $self = shift;
  1332. my %wpl = ();
  1333. my $numlines = 0;
  1334. my ($avg, $numwords);
  1335. foreach my $nick (keys %{ $self->{stats}->{words} }) {
  1336. if ($self->{topactive}{$nick} || !$self->{cfg}->{showonlytop}) {
  1337. $wpl{$nick} = sprintf("%.2f", $self->{stats}->{words}{$nick}/$self->{stats}->{lines}{$nick});
  1338. $numlines += $self->{stats}->{lines}{$nick};
  1339. $numwords += $self->{stats}->{words}{$nick};
  1340. }
  1341. }
  1342. if ($numlines > 0) {
  1343. $avg = sprintf("%.2f", $numwords/$numlines);
  1344. }
  1345. my @wpl = sort { $wpl{$b} <=> $wpl{$a} } keys %wpl;
  1346. if (@wpl) {
  1347. my %hash = (
  1348. nick => $wpl[0],
  1349. wpl => $wpl{$wpl[0]}
  1350. );
  1351. my $text = $self->_template_text('wpl1', %hash);
  1352. _html("<tr><td class=\"hicell\">$text");
  1353. $hash{avg} = $avg;
  1354. $text = $self->_template_text('wpl2', %hash);
  1355. _html("<br /><span class=\"small\">$text</span>");
  1356. _html("</td></tr>");
  1357. }
  1358. }
  1359. sub _mostreferencednicks
  1360. {
  1361. # List showing the most referenced nicks
  1362. my $self = shift;
  1363. my %usages;
  1364. foreach my $word (sort keys %{ $self->{stats}->{wordcounts} }) {
  1365. next if !exists $self->{stats}->{lines}{$word};
  1366. next if is_ignored($word);
  1367. $usages{$word} = $self->{stats}->{wordcounts}{$word};
  1368. }
  1369. my @popular = sort { $usages{$b} <=> $usages{$a} } keys %usages;
  1370. if (@popular) {
  1371. $self->_headline($self->_template_text('referencetopic'));
  1372. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1373. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>" . $self->_template_text('nick') . "</b></td>");
  1374. _html("<td class=\"tdtop\"><b>" . $self->_template_text('numberuses') . "</b></td>");
  1375. _html("<td class=\"tdtop\"><b>" . $self->_template_text('lastused') . "</b></td></tr>");
  1376. for(my $i = 0; $i < $self->{cfg}->{nickhistory}; $i++) {
  1377. last unless $i < $#popular;
  1378. my $a = $i + 1;
  1379. my $popular = $popular[$i];
  1380. my $wordcount = $self->{stats}->{wordcounts}{$popular[$i]};
  1381. my $lastused = $self->{stats}->{wordnicks}{$popular[$i]};
  1382. my $class;
  1383. if ($a == 1) {
  1384. $class = 'hirankc';
  1385. } else {
  1386. $class = 'rankc';
  1387. }
  1388. _html("<tr><td class=\"$class\">$a</td>");
  1389. _html("<td class=\"hicell\">$popular</td>");
  1390. _html("<td class=\"hicell\">$wordcount</td>");
  1391. _html("<td class=\"hicell\">$lastused</td>");
  1392. _html("</tr>");
  1393. }
  1394. _html("</table>");
  1395. }
  1396. }
  1397. sub _mosturls
  1398. {
  1399. # List showing the most referenced URLs
  1400. my $self = shift;
  1401. my @sorturls = sort { $self->{stats}->{urlcounts}{$b} <=> $self->{stats}->{urlcounts}{$a} }
  1402. keys %{ $self->{stats}->{urlcounts} };
  1403. if (@sorturls) {
  1404. $self->_headline($self->_template_text('urlstopic'));
  1405. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1406. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>" . $self->_template_text('url') . "</b></td>");
  1407. _html("<td class=\"tdtop\"><b>" . $self->_template_text('numberuses') . "</b></td>");
  1408. _html("<td class=\"tdtop\"><b>" . $self->_template_text('lastused') . "</b></td></tr>");
  1409. for(my $i = 0; $i < $self->{cfg}->{urlhistory}; $i++) {
  1410. last unless $i < @sorturls;
  1411. my $a = $i + 1;
  1412. my $sorturl = $sorturls[$i];
  1413. my $urlcount = $self->{stats}->{urlcounts}{$sorturls[$i]};
  1414. my $lastused = $self->{stats}->{urlnicks}{$sorturls[$i]};
  1415. if (length($sorturl) > 60) {
  1416. $sorturl = substr($sorturl, 0, 60);
  1417. }
  1418. my $class;
  1419. if ($a == 1) {
  1420. $class = 'hirankc';
  1421. } else {
  1422. $class = 'rankc';
  1423. }
  1424. _html("<tr><td class=\"$class\">$a</td>");
  1425. _html("<td class=\"hicell\"><a href=\"$sorturls[$i]\">$sorturl</a></td>");
  1426. _html("<td class=\"hicell\">$urlcount</td>");
  1427. _html("<td class=\"hicell\">$lastused</td>");
  1428. _html("</tr>");
  1429. }
  1430. _html("</table>");
  1431. }
  1432. }
  1433. sub _legend
  1434. {
  1435. # A legend showing the timebars and their associated time.
  1436. my $self = shift;
  1437. _html("<table align=\"center\" border=\"0\" width=\"520\"><tr>");
  1438. _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>");
  1439. _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>");
  1440. _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>");
  1441. _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>");
  1442. _html("</tr></table>\n");
  1443. }
  1444. sub _replace_links
  1445. {
  1446. # Sub to replace urls and e-mail addys to links
  1447. my ($self, $str, $nick) = @_;
  1448. # Regular expressions are taken from match_urls() and match_email() in
  1449. # Common.pm
  1450. my $texturl = $self->_template_text("newwindow");
  1451. my $textmail = $self->_template_text("mailto");
  1452. my (@str) = split(/ /,$str);
  1453. foreach (@str) {
  1454. if (m/(http|https|ftp|telnet|news)(:\/\/[-a-zA-Z0-9_\/~:@]+\.[-a-zA-Z0-9.,_~=:&amp;@%?#\/+]+)/o) {
  1455. my $nick = $nick || $1 . $2;
  1456. $_ = "<a href=\"$1$2\" target=\"_blank\" title=\"$texturl $1$2\">" . $self->_split_long_text($nick) . '</a>';
  1457. } elsif (m/(^|[^:])\b([-a-zA-Z0-9._]+@[-a-zA-Z0-9_]+\.[-a-zA-Z0-9._]+)/o) {
  1458. my $nick = $nick || $1 . $2;
  1459. $_ = "$1<a href=\"mailto:$2\" title=\"$textmail $nick\">" . $self->_split_long_text($nick) . "<\/a>";
  1460. } else {
  1461. $_ = $self->_split_long_text($_);
  1462. }
  1463. }
  1464. return join(' ', @str);
  1465. }
  1466. sub _split_long_text
  1467. {
  1468. my ($self, $str) = @_;
  1469. $str =~ s/(\S{$self->{cfg}->{quotewidth}})(?!\s)/$1-<br \/>/og;
  1470. return($str);
  1471. }
  1472. sub _user_linetimes
  1473. {
  1474. my $self = shift;
  1475. my $nick = shift;
  1476. my $top = shift;
  1477. my $bar = "";
  1478. my $len = ($self->{stats}->{lines}{$nick} / $self->{stats}->{lines}{$top}) * 100;
  1479. for (my $i = 0; $i <= 3; $i++) {
  1480. next if not defined $self->{stats}->{line_times}{$nick}[$i];
  1481. my $w = int(($self->{stats}->{line_times}{$nick}[$i] / $self->{stats}->{lines}{$nick}) * $len);
  1482. if ($w) {
  1483. my $pic = 'pic_h_'.(6*$i);
  1484. $bar .= "<img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" align=\"middle\" alt=\"\" />";
  1485. }
  1486. }
  1487. return "$bar&nbsp;$self->{stats}->{lines}{$nick}";
  1488. }
  1489. sub _user_wordtimes
  1490. {
  1491. my $self = shift;
  1492. my $nick = shift;
  1493. my $top = shift;
  1494. my $bar = "";
  1495. my $len = ($self->{stats}->{words}{$nick} / $self->{stats}->{words}{$top}) * 100;
  1496. for (my $i = 0; $i <= 3; $i++) {
  1497. next if not defined $self->{stats}->{word_times}{$nick}[$i];
  1498. my $w = int(($self->{stats}->{word_times}{$nick}[$i] / $self->{stats}->{words}{$nick}) * $len);
  1499. if ($w) {
  1500. my $pic = 'pic_h_'.(6*$i);
  1501. $bar .= "<img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" align=\"middle\" alt=\"\" />";
  1502. }
  1503. }
  1504. return "$bar&nbsp;$self->{stats}->{words}{$nick}";
  1505. }
  1506. sub _user_times
  1507. {
  1508. my $self = shift;
  1509. my ($nick) = @_;
  1510. my $bar = "";
  1511. my $itemstat = ($self->{cfg}->{sortbywords} ? 'words' : 'lines');
  1512. my $timestat = ($self->{cfg}->{sortbywords} ? 'word_times' : 'line_times');
  1513. for (my $i = 0; $i <= 3; $i++) {
  1514. next if not defined $self->{stats}->{$timestat}{$nick}[$i];
  1515. my $w = int(($self->{stats}->{$timestat}{$nick}[$i] / $self->{stats}->{$itemstat}{$nick}) * 40);
  1516. if ($w) {
  1517. my $pic = 'pic_h_'.(6*$i);
  1518. $bar .= "<img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" alt=\"\" />";
  1519. }
  1520. }
  1521. return $bar;
  1522. }
  1523. sub _mostnicks
  1524. {
  1525. # List showing the user with most used nicks
  1526. my $self = shift;
  1527. my @sortnicks = sort { keys %{ $self->{stats}->{nicks}->{$b} } <=> keys %{ $self->{stats}->{nicks}->{$a} } }
  1528. keys %{ $self->{stats}->{nicks} };
  1529. if (keys %{ $self->{stats}->{nicks}->{$sortnicks[0]} } > 1) {
  1530. $self->_headline($self->_template_text('mostnickstopic'));
  1531. my $names1 = $self->_template_text('names1');
  1532. my $names2 = $self->_template_text('names2');
  1533. my $nick_txt = $self->_template_text('nick');
  1534. my $names_txt = $self->_template_text('names');
  1535. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1536. _html("<td>&nbsp;</td><td class=\"tdtop\"><b>$nick_txt</b></td>");
  1537. _html("<td class=\"tdtop\"><b>$names_txt</b></td></tr>");
  1538. for(my $i = 0; $i < $self->{cfg}->{mostnickshistory}; $i++) {
  1539. next if is_ignored($sortnicks[$i]);
  1540. last unless $i < @sortnicks;
  1541. my $nickcount = keys %{ $self->{stats}->{nicks}->{$sortnicks[$i]} };
  1542. my $nickused = join(", ", values %{ $self->{stats}->{nicks}->{$sortnicks[$i]} });
  1543. next unless ($nickcount > 1);
  1544. my $a = $i + 1;
  1545. my $class = $a == 1 ? 'hirankc' : 'rankc';
  1546. my $n = $nickcount > 1 ? $names1 : $names2;
  1547. _html("<tr><td class=\"$class\">$a</td>");
  1548. _html("<td class=\"hicell10\">$sortnicks[$i]<br />($nickcount $n)</td>");
  1549. _html("<td class=\"hicell10\" valign='top'>$nickused</td>");
  1550. _html("</tr>");
  1551. }
  1552. _html("</table>");
  1553. }
  1554. }
  1555. sub _mostactivebyhour
  1556. {
  1557. # Charts for most active nicks by hour (0-5, 6-11, 12-17, 18-23)
  1558. my $self = shift;
  1559. my $sortnicks;
  1560. my $lastline=-1;
  1561. my $maxlines=0;
  1562. foreach my $period (0,1,2,3) {
  1563. my @sortnicks =
  1564. sort
  1565. {
  1566. (defined $self->{stats}->{line_times}{$b}[$period]?$self->{stats}->{line_times}{$b}[$period]:0)
  1567. <=>
  1568. (defined $self->{stats}->{line_times}{$a}[$period]?$self->{stats}->{line_times}{$a}[$period]:0)
  1569. }
  1570. keys %{ $self->{stats}->{line_times} } ;
  1571. for(my $i = 0; $i < $self->{cfg}->{activenicksbyhour}; $i++) {
  1572. next if ! $sortnicks[$i];
  1573. next if is_ignored($sortnicks[$i]);
  1574. last unless $i < @sortnicks;
  1575. my $nick=$sortnicks[$i];
  1576. my $count=$self->{stats}->{line_times}{$nick}[$period] || 0;
  1577. last unless $nick;
  1578. last unless $count;
  1579. $sortnicks->[$period][$i]=$nick;
  1580. if ($lastline<$i) {
  1581. $lastline=$i;
  1582. }
  1583. if ($maxlines<$count) {
  1584. $maxlines=$count;
  1585. }
  1586. }
  1587. }
  1588. if ($lastline>=0) {
  1589. $self->_headline($self->_template_text('activenickbyhourtopic'));
  1590. _html("<table border=\"0\" width=\"$self->{cfg}->{tablewidth}\"><tr>");
  1591. _html("<td>&nbsp;</td>");
  1592. _html("<td class=\"tdtop\"><b>0-5</b></td>");
  1593. _html("<td class=\"tdtop\"><b>6-11</b></td>");
  1594. _html("<td class=\"tdtop\"><b>12-17</b></td>");
  1595. _html("<td class=\"tdtop\"><b>18-23</b></td>");
  1596. _html("</tr>");
  1597. for(my $i = 0; $i <= $lastline; $i++) {
  1598. my $a = $i + 1;
  1599. my $class = $a == 1 ? 'hirankc' : 'rankc';
  1600. _html("<tr><td class=\"$class\">$a</td>");
  1601. foreach my $period (0,1,2,3) {
  1602. my $nick=$sortnicks->[$period][$i];
  1603. if ($nick) {
  1604. my $count=$self->{stats}->{line_times}{$nick}[$period];
  1605. if ($count) {
  1606. _html("<td class=\"hicell\">".$nick." - ".$count);
  1607. if ($self->{cfg}->{showmostactivebyhourgraph}) {
  1608. my $pic = 'pic_h_'.(6*$period);
  1609. my $w = int(($count / $maxlines) * 100);
  1610. _html("<br /><img src=\"$self->{cfg}->{piclocation}/$self->{cfg}->{$pic}\" border=\"0\" width=\"$w\" height=\"15\" align=\"middle\" alt=\"\" />");
  1611. }
  1612. _html("</td>");
  1613. } else {
  1614. _html("<td class=\"hicell\">&nbsp;</td>");
  1615. }
  1616. } else {
  1617. _html("<td class=\"hicell\">&nbsp;</td>");
  1618. }
  1619. }
  1620. _html("</tr>");
  1621. }
  1622. _html("</table>");
  1623. }
  1624. }
  1625. sub _topactive {
  1626. my $self = shift;
  1627. my @top_active;
  1628. my $top_nicks;
  1629. if ($self->{cfg}->{sortbywords}) {
  1630. @top_active = sort { $self->{stats}->{words}{$b} <=> $self->{stats}->{words}{$a} }
  1631. keys %{ $self->{stats}->{words} };
  1632. $top_nicks = scalar keys %{ $self->{stats}->{words} };
  1633. } else {
  1634. @top_active = sort { $self->{stats}->{lines}{$b} <=> $self->{stats}->{lines}{$a} }
  1635. keys %{ $self->{stats}->{lines} };
  1636. $top_nicks = scalar keys %{ $self->{stats}->{lines} };
  1637. }
  1638. if ($self->{cfg}->{activenicks} > $top_nicks) {
  1639. $self->{cfg}->{activenicks} = $top_nicks;
  1640. }
  1641. if (($self->{cfg}->{activenicks}+$self->{cfg}->{activenicks2}) > $top_nicks) {
  1642. $self->{cfg}->{activenicks2} = $top_nicks-$self->{cfg}->{activenicks};
  1643. }
  1644. (@top_active) = @top_active[0..($self->{cfg}->{activenicks}+$self->{cfg}->{activenicks2}-1)];
  1645. foreach (@top_active) {
  1646. $self->{topactive}{$_} = 1;
  1647. }
  1648. }
  1649. sub _istoponly {
  1650. my $self = shift;
  1651. my (@nicks_tmp) = @_;
  1652. my @nicks;
  1653. my $cnt=0;
  1654. if ($self->{cfg}->{showonlytop}) {
  1655. foreach my $nick (@nicks_tmp) {
  1656. if ($self->{topactive}{$nick}) {
  1657. push(@nicks, $nick);
  1658. }
  1659. }
  1660. return(@nicks);
  1661. } else {
  1662. return(@nicks_tmp);
  1663. }
  1664. }
  1665. 1;
  1666. __END__
  1667. =head1 NAME
  1668. Pisg::HTMLGenerator - class to create a static HTML page out of data parsed
  1669. =head1 DESCRIPTION
  1670. C<Pisg::HTMLGenerator> uses the hash returned by Pisg::Parser::Logfile and turns it into a static HTML page.
  1671. =head1 SYNOPSIS
  1672. use Pisg::HTMLGenerator;
  1673. $generator = new Pisg::HTMLGenerator(
  1674. cfg => $cfg,
  1675. stats => $stats,
  1676. users => $users,
  1677. tmps => $tmps
  1678. );
  1679. =head1 CONSTRUCTOR
  1680. =over 4
  1681. =item new ( [ OPTIONS ] )
  1682. This is the constructor for a new Pisg::HTMLGenerator object. C<OPTIONS> are passed in a hash like fashion using key and value pairs.
  1683. Possible options are:
  1684. B<cfg> - hashref containing configuration variables, created by the Pisg module.
  1685. B<stats> - reference to the hash returned by Pisg::Parser::Logfile containing all stats.
  1686. B<users> - reference to a hash containg user information
  1687. B<tmps> - reference to a hash containing the language templates.
  1688. =back
  1689. =head1 AUTHOR
  1690. Morten Brix Pedersen <morten@wtf.dk>
  1691. =head1 COPYRIGHT
  1692. Copyright (C) 2001-2002 Morten Brix Pedersen. All rights reserved.
  1693. This program is free software; you can redistribute it and/or modify it
  1694. under the terms of the GPL, license is included with the distribution of
  1695. this file.
  1696. =cut