]> git.donarmstrong.com Git - infobot.git/blob - src/CommandStubs.pl
- half-assed attempt to move over to new sql functions
[infobot.git] / src / CommandStubs.pl
1 #
2 # User Command Extension Stubs
3 # WARN: this file does not reload on HUP.
4 #
5
6 # use strict;   # TODO
7
8 use vars qw($who $msgType $conn $chan $message $ident $talkchannel
9         $bot_version $babel_lang_regex $bot_data_dir);
10 use vars qw(@vernick @vernicktodo);
11 use vars qw(%channels %cache %mask %userstats %myModules %cmdstats
12         %hooks_extra %lang %ver);
13 # FIX THE FOLLOWING:
14 use vars qw($total $x $type $i $good);
15
16 $babel_lang_regex = "fr|sp|es|po|pt|it|ge|de|gr|en|zh|ja|jp|ko|kr|ru";
17
18 ### COMMAND HOOK IMPLEMENTATION.
19 # addCmdHook("SECTION", 'TEXT_HOOK',
20 #       (CODEREF        => 'Blah', 
21 #       Forker          => 1,
22 #       CheckModule     => 1,                   # ???
23 #       Module          => 'blah.pl'            # preload module.
24 #       Identifier      => 'config_label',      # change to Config?
25 #       Help            => 'help_label',
26 #       Cmdstats        => 'text_label',)
27 #}
28 ###
29
30 sub addCmdHook {
31     my ($hashname, $ident, %hash) = @_;
32
33     if (exists ${"hooks_$hashname"}{$ident}) {
34 ###     &WARN("aCH: cmd hooks \%$hashname{$ident} already exists.");
35         return;
36     }
37
38     &VERB("aCH: added $ident",2);       # use $hash{'Identifier'}?
39     ### hrm... prevent warnings?
40     ${"hooks_$hashname"}{$ident} = \%hash;
41 }
42
43 # RUN IF ADDRESSED.
44 sub parseCmdHook {
45     my ($hashname, $line) = @_;
46     $line =~ /^(\S+)( (.*))?$/;
47     my $cmd     = $1;   # command name is whitespaceless.
48     my $flatarg = $3;
49     my @args    = split(/\s+/, $flatarg || '');
50     my $done    = 0;
51
52     &shmFlush();
53
54     if (!defined %{"hooks_$hashname"}) {
55         &WARN("cmd hooks \%$hashname does not exist.");
56         return 0;
57     }
58
59     if (!defined $cmd) {
60         &WARN("cstubs: cmd == NULL.");
61         return 0;
62     }
63
64     foreach (keys %{"hooks_$hashname"}) {
65         # rename to something else! like $id or $label?
66         my $ident = $_;
67
68         next unless ($cmd =~ /^$ident$/i);
69
70         if ($done) {
71             &WARN("pCH: Multiple hook match: $ident");
72             next;
73         }
74
75         &status("hooks($hashname): $cmd matched '$ident'");
76         my %hash = %{ ${"hooks_$hashname"}{$ident} };
77
78         if (!scalar keys %hash) {
79             &WARN("CmdHook: hash is NULL?");
80             return 1;
81         }
82
83         if ($hash{NoArgs} and $flatarg) {
84             &DEBUG("cmd $ident does not take args ('$flatarg'); skipping.");
85             next;
86         }
87
88         if (!exists $hash{CODEREF}) {
89             &ERROR("CODEREF undefined for $cmd or $ident.");
90             return 1;
91         }
92
93         ### DEBUG.
94         foreach (keys %hash) {
95             &VERB(" $cmd->$_ => '$hash{$_}'.",2);
96         }
97
98         ### HELP.
99         if (exists $hash{'Help'} and !scalar(@args)) {
100             &help( $hash{'Help'} );
101             return 1;
102         }
103
104         ### IDENTIFIER.
105         if (exists $hash{'Identifier'}) {
106             return 1 unless (&hasParam($hash{'Identifier'}));
107         }
108
109         ### USER FLAGS.
110         if (exists $hash{'UserFlag'}) {
111             return 1 unless (&hasFlag($hash{'UserFlag'}));
112         }
113
114         ### FORKER,IDENTIFIER,CODEREF.
115         if (exists $hash{'Forker'}) {
116             $hash{'Identifier'} .= "-" if ($hash{'Forker'} eq "NULL");
117
118             if (exists $hash{'ArrayArgs'}) {
119                 &Forker($hash{'Identifier'}, sub { \&{ $hash{'CODEREF'} }(@args) } );
120             } else {
121                 &Forker($hash{'Identifier'}, sub { \&{ $hash{'CODEREF'} }($flatarg) } );
122             }
123
124         } else {
125             if (exists $hash{'Module'}) {
126                 &loadMyModule($myModules{ $hash{'Module'} });
127             }
128
129             # check if CODEREF exists.
130             if (!defined &{ $hash{'CODEREF'} }) {
131                 &WARN("coderef $hash{'CODEREF'} does not exist.");
132                 if (defined $who) {
133                     &msg($who, "coderef does not exist for $ident.");
134                 }
135
136                 return 1;
137             }
138
139             if (exists $hash{'ArrayArgs'}) {
140                 &{ $hash{'CODEREF'} }(@args);
141             } else {
142                 &{ $hash{'CODEREF'} }($flatarg);
143             }
144         }
145
146         ### CMDSTATS.
147         if (exists $hash{'Cmdstats'}) {
148             $cmdstats{ $hash{'Cmdstats'} }++;
149         }
150
151         &VERB("hooks: End of command.",2);
152
153         $done = 1;
154     }
155
156     return 1 if ($done);
157     return 0;
158 }
159
160 ###
161 ### START ADDING HOOKS.
162 ###
163 &addCmdHook("extra", 'd?bugs', ('CODEREF' => 'DBugs::Parse',
164         'Forker' => 1, 'Identifier' => 'debianExtra',
165         'Cmdstats' => 'Debian Bugs') );
166 &addCmdHook("extra", 'dauthor', ('CODEREF' => 'Debian::searchAuthor',
167         'Forker' => 1, 'Identifier' => 'debian',
168         'Cmdstats' => 'Debian Author Search', 'Help' => "dauthor" ) );
169 &addCmdHook("extra", '(d|search)desc', ('CODEREF' => 'Debian::searchDescFE',
170         'Forker' => 1, 'Identifier' => 'debian',
171         'Cmdstats' => 'Debian Desc Search', 'Help' => "ddesc" ) );
172 &addCmdHook("extra", 'dnew', ('CODEREF' => 'DebianNew',
173         'Identifier' => 'debian' ) );
174 &addCmdHook("extra", 'dincoming', ('CODEREF' => 'Debian::generateIncoming',
175         'Forker' => 1, 'Identifier' => 'debian' ) );
176 &addCmdHook("extra", 'dstats', ('CODEREF' => 'Debian::infoStats',
177         'Forker' => 1, 'Identifier' => 'debian',
178         'Cmdstats' => 'Debian Statistics' ) );
179 &addCmdHook("extra", 'd?contents', ('CODEREF' => 'Debian::searchContents',
180         'Forker' => 1, 'Identifier' => 'debian',
181         'Cmdstats' => 'Debian Contents Search', 'Help' => "contents" ) );
182 &addCmdHook("extra", 'd?find', ('CODEREF' => 'Debian::DebianFind',
183         'Forker' => 1, 'Identifier' => 'debian',
184         'Cmdstats' => 'Debian Search', 'Help' => "find" ) );
185 &addCmdHook("extra", 'insult', ('CODEREF' => 'Insult::Insult',
186         'Forker' => 1, 'Identifier' => 'insult', 'Help' => "insult" ) );
187 &addCmdHook("extra", 'kernel', ('CODEREF' => 'Kernel::Kernel',
188         'Forker' => 1, 'Identifier' => 'kernel',
189         'Cmdstats' => 'Kernel', 'NoArgs' => 1) );
190 &addCmdHook("extra", 'listauth', ('CODEREF' => 'CmdListAuth',
191         'Identifier' => 'search', Module => 'factoids', 
192         'Help' => 'listauth') );
193 &addCmdHook("extra", 'quote', ('CODEREF' => 'Quote::Quote',
194         'Forker' => 1, 'Identifier' => 'quote',
195         'Help' => 'quote', 'Cmdstats' => 'Quote') );
196 &addCmdHook("extra", 'countdown', ('CODEREF' => 'Countdown',
197         'Module' => 'countdown', 'Identifier' => 'countdown',
198         'Cmdstats' => 'Countdown') );
199 &addCmdHook("extra", 'lart', ('CODEREF' => 'lart',
200         'Identifier' => 'lart', 'Help' => 'lart') );
201 &addCmdHook("extra", 'convert', ('CODEREF' => 'convert',
202         'Forker' => 1, 'Identifier' => 'units',
203         'Help' => 'convert') );
204 &addCmdHook("extra", '(cookie|random)', ('CODEREF' => 'cookie',
205         'Forker' => 1, 'Identifier' => 'factoids') );
206 &addCmdHook("extra", 'u(ser)?info', ('CODEREF' => 'userinfo',
207         'Identifier' => 'userinfo', 'Help' => 'userinfo',
208         'Module' => 'userinfo') );
209 &addCmdHook("extra", 'rootWarn', ('CODEREF' => 'CmdrootWarn',
210         'Identifier' => 'rootWarn', 'Module' => 'rootwarn') );
211 &addCmdHook("extra", 'seen', ('CODEREF' => 'seen', 'Identifier' =>
212         'seen') );
213 &addCmdHook("extra", 'dict', ('CODEREF' => 'Dict::Dict',
214         'Identifier' => 'dict', 'Help' => 'dict',
215         'Forker' => 1, 'Cmdstats' => 'Dict') );
216 &addCmdHook("extra", 'slashdot', ('CODEREF' => 'Slashdot::Slashdot',
217         'Identifier' => 'slashdot', 'Forker' => 1,
218         'Cmdstats' => 'Slashdot') );
219 &addCmdHook("extra", 'plug', ('CODEREF' => 'Plug::Plug',
220         'Identifier' => 'plug', 'Forker' => 1,
221         'Cmdstats' => 'Plug') );
222 &addCmdHook("extra", 'uptime', ('CODEREF' => 'uptime', 'Identifier' => 'uptime',
223         'Cmdstats' => 'Uptime') );
224 &addCmdHook("extra", 'nullski', ('CODEREF' => 'nullski', ) );
225 &addCmdHook("extra", '(fm|freshmeat)', ('CODEREF' => 'Freshmeat::Freshmeat',
226         'Identifier' => 'freshmeat', 'Cmdstats' => 'Freshmeat',
227         'Forker' => 1, 'Help' => 'freshmeat') );
228 &addCmdHook("extra", 'verstats', ('CODEREF' => 'do_verstats' ) );
229 &addCmdHook("extra", 'weather', ('CODEREF' => 'Weather::Weather',
230         'Identifier' => 'weather', 'Help' => 'weather',
231         'Cmdstats' => 'weather', 'Forker' => 1) );
232 &addCmdHook("extra", 'bzflist', ('CODEREF' => 'BZFlag::list',
233         'Identifier' => 'bzflag', 'Cmdstats' => 'BZFlag',
234         'Forker' => 1) );
235 &addCmdHook("extra", 'bzfquery', ('CODEREF' => 'BZFlag::query',
236         'Identifier' => 'bzflag', 'Cmdstats' => 'BZFlag',
237         'Forker' => 1, 'Help' => 'bzflag') );
238 &addCmdHook("extra", 'zfi', ('CODEREF' => 'zfi::query',
239         'Identifier' => 'zfi', 'Cmdstats' => 'zfi',
240         'Forker' => 1) );
241 &addCmdHook("extra", '(zippy|yow)', ('CODEREF' => 'zippy::get',
242         'Identifier' => 'zippy', 'Cmdstats' => 'zippy',
243         'Forker' => 1) );
244 &addCmdHook("extra", 'zsi', ('CODEREF' => 'zsi::query',
245         'Identifier' => 'zsi', 'Cmdstats' => 'zsi',
246         'Forker' => 1) );
247 &addCmdHook("extra", '(ex)?change', ('CODEREF' => 'Exchange::query',
248         'Identifier' => 'exchange', 'Cmdstats' => 'exchange',
249         'Forker' => 1) );
250 &addCmdHook("extra", 'botmail', ('CODEREF' => 'botmail::parse',
251         'Identifier' => 'botmail', 'Cmdstats' => 'botmail') );
252
253 ###
254 ### END OF ADDING HOOKS.
255 ###
256 &status("CMD: loaded ".scalar(keys %hooks_extra)." EXTRA command hooks.");
257
258 sub Modules {
259     if (!defined $message) {
260         &WARN("Modules: message is undefined. should never happen.");
261         return;
262     }
263
264     # babel bot: Jonathan Feinberg++
265     if ($message =~ m{
266                 ^\s*
267                 (?:babel(?:fish)?|x|xlate|translate)
268                 \s+
269                 ($babel_lang_regex)\w*  # from language?
270                 \s+
271                 ($babel_lang_regex)\w*  # to language?
272                 \s*
273                 (.+)                    # The phrase to be translated
274     }xoi) {
275         return unless (&hasParam("babelfish"));
276
277         &Forker("babelfish", sub { &babel::babelfish(lc $1, lc $2, $3); } );
278
279         $cmdstats{'BabelFish'}++;
280         return;
281     }
282
283     my $debiancmd        = 'conflicts?|depends?|desc|file|info|provides?';
284     $debiancmd          .= '|recommends?|suggests?|maint|maintainer';
285
286     if ($message =~ /^($debiancmd)(\s+(.*))?$/i) {
287         return unless (&hasParam("debian"));
288         my $package = lc $3;
289
290         if (defined $package) {
291             &Forker("debian", sub { &Debian::infoPackages($1, $package); } );
292         } else {
293             &help($1);
294         }
295
296         return;
297     }
298
299     # google searching. Simon++
300     if ($message =~ /^(?:search\s+)?(\S+)\s+for\s+['"]?(.*?)["']?\s*\?*$/i) {
301         return unless (&hasParam("wwwsearch"));
302
303         &Forker("wwwsearch", sub { &W3Search::W3Search($1,$2); } );
304
305         $cmdstats{'WWWSearch'}++;
306         return;
307     }
308
309     # text counters. (eg: hehstats)
310     my $itc;
311     $itc = &getChanConf("ircTextCounters");
312     $itc = &findChanConf("ircTextCounters") unless ($itc);
313     if ($itc) {
314         $itc =~ s/([^\w\s])/\\$1/g;
315         my $z = join '|', split ' ', $itc;
316
317         if ($msgType eq "privmsg" and $message =~ / ($mask{chan})$/) {
318             &DEBUG("ircTC: privmsg detected; chan = $1");
319             $chan = $1;
320         }
321
322         if ($message =~ /^_stats(\s+(\S+))$/i) {
323             &textstats_main($2);
324             return;
325         }
326
327         if ($message =~ /^($z)stats(\s+(\S+))?$/i) {
328             my $type    = $1;
329             my $arg     = $3;
330
331             # even more uglier with channel/time arguments.
332             my $c       = $chan;
333 #           my $c       = $chan || "PRIVATE";
334             my $where   = "type=".&sqlQuote($type);
335             $where      .= " AND channel=".&sqlQuote($c) if (defined $c);
336             &DEBUG("not using chan arg") if (!defined $c);
337             my $sum = (&sqlRawReturn("SELECT SUM(counter) FROM stats"
338                         ." WHERE ".$where ))[0];
339
340             if (!defined $arg or $arg =~ /^\s*$/) {
341                 # this is way fucking ugly.
342
343                 my %hash = &sqlSelectColHash("stats", "nick,counter",
344                         undef,
345                         $where." ORDER BY counter DESC LIMIT 3", 1
346                 );
347                 my $i;
348                 my @top;
349
350                 # unfortunately we have to sort it again!
351                 # todo: make dbGetCol return hash and array? too much effort.
352                 my $tp = 0;
353                 foreach $i (sort { $b <=> $a } keys %hash) {
354                     foreach (keys %{ $hash{$i} }) {
355                         my $p   = sprintf("%.01f", 100*$i/$sum);
356                         $tp     += $p;
357                         push(@top, "\002$_\002 -- $i ($p%)");
358                     }
359                 }
360                 my $topstr = "";
361                 &DEBUG("*stats: tp => $tp");
362                 if (scalar @top) {
363                     $topstr = ".  Top ".scalar(@top).": ".join(', ', @top);
364                 }
365
366                 if (defined $sum) {
367                     &pSReply("total count of \037$type\037 on \002$c\002: $sum$topstr");
368                 } else {
369                     &pSReply("zero counter for \037$type\037.");
370                 }
371             } else {
372                 my $x = (&sqlRawReturn("SELECT SUM(counter) FROM stats".
373                         " WHERE $where AND nick=".&sqlQuote($arg) ))[0];
374
375                 if (!defined $x) {      # !defined.
376                     &pSReply("$arg has not said $type yet.");
377                     return;
378                 }
379
380                 # defined.
381                 my @array = &sqlSelect("stats", "nick", undef,
382                         $where." ORDER BY counter", 1
383                 );
384                 my $good = 0;
385                 my $i = 0;
386                 for($i=0; $i<scalar @array; $i++) {
387                     next unless ($array[0] =~ /^\Q$who\E$/);
388                     $good++;
389                     last;
390                 }
391                 $i++;
392
393                 my $total = scalar(@array);
394                 my $xtra = "";
395                 if ($total and $good) {
396                     my $pct = sprintf("%.01f", 100*(1+$total-$i)/$total);
397                     $xtra = ", ranked $i\002/\002$total (percentile: \002$pct\002 %)";
398                 }
399
400                 my $pct1 = sprintf("%.01f", 100*$x/$sum);
401                 &pSReply("\002$arg\002 has said \037$type\037 \002$x\002 times (\002$pct1\002 %)$xtra");
402             }
403
404             return;
405         }
406
407         if ($@) {
408             &DEBUG("regex failed: $@");
409             return;
410         }
411     }
412
413     # list{keys|values}. xk++. Idea taken from #linuxwarez@EFNET
414     if ($message =~ /^list(\S+)(\s+(.*))?$/i) {
415         return unless (&hasParam("search"));
416
417         my $thiscmd     = lc $1;
418         my $args        = $3 || "";
419
420         $thiscmd        =~ s/^vals$/values/;
421         return if ($thiscmd ne "keys" && $thiscmd ne "values");
422
423         # Usage:
424         if (!defined $args or $args =~ /^\s*$/) {
425             &help("list". $thiscmd);
426             return;
427         }
428
429         # suggested by asuffield and \broken.
430         if ($args =~ /^["']/ and $args =~ /["']$/) {
431             &DEBUG("list*: removed quotes.");
432             $args       =~ s/^["']|["']$//g;
433         }
434
435         if (length $args == 1) {
436             &msg($who,"search string is too short.");
437             return;
438         }
439
440         &Forker("search", sub { &Search::Search($thiscmd, $args); } );
441
442         $cmdstats{'Factoid Search'}++;
443         return;
444     }
445
446     # Nickometer. Adam Spiers++
447     if ($message =~ /^(?:lame|nick)ometer(?: for)? (\S+)/i) {
448         return unless (&hasParam("nickometer"));
449
450         my $term = (lc $1 eq 'me') ? $who : $1;
451
452         &loadMyModule($myModules{'nickometer'});
453
454         if ($term =~ /^$mask{chan}$/) {
455             &status("Doing nickometer for chan $term.");
456
457             if (!&validChan($term)) {
458                 &msg($who, "error: channel is invalid.");
459                 return;
460             }
461
462             # step 1.
463             my %nickometer;
464             foreach (keys %{ $channels{lc $term}{''} }) {
465                 my $str   = $_;
466                 if (!defined $str) {
467                     &WARN("nickometer: nick in chan $term undefined?");
468                     next;
469                 }
470
471                 my $value = &nickometer($str);
472                 $nickometer{$value}{$str} = 1;
473             }
474
475             # step 2.
476             ### TODO: compact with map?
477             my @list;
478             foreach (sort {$b <=> $a} keys %nickometer) {
479                 my $str = join(", ", sort keys %{ $nickometer{$_} });
480                 push(@list, "$str ($_%)");
481             }
482
483             &pSReply( &formListReply(0, "Nickometer list for $term ", @list) );
484             &DEBUG("test.");
485
486             return;
487         }
488
489         my $percentage = &nickometer($term);
490
491         if ($percentage =~ /NaN/) {
492             $percentage = "off the scale";
493         } else {
494             $percentage = sprintf("%0.4f", $percentage);
495             $percentage =~ s/(\.\d+)0+$/$1/;
496             $percentage .= '%';
497         }
498
499         if ($msgType eq 'public') {
500             &say("'$term' is $percentage lame, $who");
501         } else {
502             &msg($who, "the 'lame nick-o-meter' reading for $term is $percentage, $who");
503         }
504
505         return;
506     }
507
508     # Topic management. xk++
509     # may want to add a userflags for topic. -xk
510     if ($message =~ /^topic(\s+(.*))?$/i) {
511         return unless (&hasParam("topic"));
512
513         my $chan        = $talkchannel;
514         my @args        = split / /, $2 || "";
515
516         if (!scalar @args) {
517             &msg($who,"Try 'help topic'");
518             return;
519         }
520
521         $chan           = lc(shift @args) if ($msgType eq 'private');
522         my $thiscmd     = shift @args;
523
524         # topic over public:
525         if ($msgType eq 'public' && $thiscmd =~ /^#/) {
526             &msg($who, "error: channel argument is not required.");
527             &msg($who, "\002Usage\002: topic <CMD>");
528             return;
529         }
530
531         # topic over private:
532         if ($msgType eq 'private' && $chan !~ /^#/) {
533             &msg($who, "error: channel argument is required.");
534             &msg($who, "\002Usage\002: topic #channel <CMD>");
535             return;
536         }
537
538         if (&validChan($chan) == 0) {
539             &msg($who,"error: invalid channel \002$chan\002");
540             return;
541         }
542
543         # for semi-outsiders.
544         if (!&IsNickInChan($who,$chan)) {
545             &msg($who, "Failed. You ($who) are not in $chan, hey?");
546             return;
547         }
548
549         # now lets do it.
550         &loadMyModule($myModules{'topic'});
551         &Topic($chan, $thiscmd, join(' ', @args));
552         $cmdstats{'Topic'}++;
553         return;
554     }
555
556     # wingate.
557     if ($message =~ /^wingate$/i) {
558         return unless (&hasParam("wingate"));
559
560         my $reply = "Wingate statistics: scanned \002"
561                         .scalar(keys %wingate)."\002 hosts";
562         my $queue = scalar(keys %wingateToDo);
563         if ($queue) {
564             $reply .= ".  I have \002$queue\002 hosts in the queue";
565             $reply .= ".  Started the scan ".&Time2String(time() - $wingaterun)." ago";
566         }
567
568         &pSReply("$reply.");
569
570         return;
571     }
572
573     # do nothing and let the other routines have a go
574     return "CONTINUE";
575 }
576
577 # Freshmeat. xk++
578 sub freshmeat {
579     my ($query) = @_;
580
581     if (!defined $query) {
582         &help("freshmeat");
583         &msg($who, "I have \002".&countKeys("freshmeat")."\002 entries.");
584         return;
585     }
586
587     &Freshmeat::Freshmeat($query);
588 }
589
590 # Uptime. xk++
591 sub uptime {
592     my $count = 1;
593     &msg($who, "- Uptime for $ident -");
594     &msg($who, "Now: ". &Time2String(&uptimeNow()) ." running $bot_version");
595
596     foreach (&uptimeGetInfo()) {
597         /^(\d+)\.\d+ (.*)/;
598         my $time = &Time2String($1);
599         my $info = $2;
600
601         &msg($who, "$count: $time $2");
602         $count++;
603     }
604 }
605
606 # seen.
607 sub seen {
608     my($person) = lc shift;
609     $person =~ s/\?*$//;
610
611     if (!defined $person or $person =~ /^$/) {
612         &help("seen");
613
614         my $i = &countKeys("seen");
615         &msg($who,"there ". &fixPlural("is",$i) ." \002$i\002 ".
616                 "seen ". &fixPlural("entry",$i) ." that I know of.");
617
618         return;
619     }
620
621     my @seen;
622
623     &seenFlush();       # very evil hack. oh well, better safe than sorry.
624
625     # TODO: convert to &sqlSelectRowHash();
626     my $select = "nick,time,channel,host,message";
627     if ($person eq "random") {
628         @seen = &randKey("seen", $select);
629     } else {
630         @seen = &sqlSelect("seen", $select, { nick => $person } );
631     }
632
633     if (scalar @seen < 2) {
634         foreach (@seen) {
635             &DEBUG("seen: _ => '$_'.");
636         }
637         &performReply("i haven't seen '$person'");
638         return;
639     }
640
641     # valid seen.
642     my $reply;
643     ### TODO: multi channel support. may require &IsNick() to return
644     ### all channels or something.
645     my @chans = &getNickInChans($seen[0]);
646     if (scalar @chans) {
647         $reply = "$seen[0] is currently on";
648
649         foreach (@chans) {
650             $reply .= " ".$_;
651             next unless (exists $userstats{lc $seen[0]}{'Join'});
652             $reply .= " (".&Time2String(time() - $userstats{lc $seen[0]}{'Join'}).")";
653         }
654
655         if (&IsParam("seenStats")) {
656             my $i;
657             $i = $userstats{lc $seen[0]}{'Count'};
658             $reply .= ".  Has said a total of \002$i\002 messages" if (defined $i);
659             $i = $userstats{lc $seen[0]}{'Time'};
660             $reply .= ".  Is idling for ".&Time2String(time() - $i) if (defined $i);
661         }
662     } else {
663         my $howlong = &Time2String(time() - $seen[1]);
664         $reply = "$seen[0] <$seen[3]> was last seen on IRC ".
665                  "in channel $seen[2], $howlong ago, ".
666                  "saying\002:\002 '$seen[4]'.";
667     }
668
669     &pSReply($reply);
670     return;
671 }
672
673 # User Information Services. requested by Flugh.
674 sub userinfo {
675     my ($arg) = join(' ',@_);
676
677     if ($arg =~ /^set(\s+(.*))?$/i) {
678         $arg = $2;
679         if (!defined $arg) {
680             &help("userinfo set");
681             return;
682         }
683
684         &UserInfoSet(split /\s+/, $arg, 2);
685     } elsif ($arg =~ /^unset(\s+(.*))?$/i) {
686         $arg = $2;
687         if (!defined $arg) {
688             &help("userinfo unset");
689             return;
690         }
691
692         &UserInfoSet($arg, "");
693     } else {
694         &UserInfoGet($arg);
695     }
696 }
697
698 # cookie (random). xk++
699 sub cookie {
700     my ($arg) = @_;
701
702     # lets find that secret cookie.
703     my $target          = ($msgType ne 'public') ? $who : $talkchannel;
704     my $cookiemsg       = &getRandom(keys %{ $lang{'cookie'} });
705     my ($key,$value);
706
707     ### WILL CHEW TONS OF MEM.
708     ### TODO: convert this to a Forker function!
709     if ($arg) {
710         my @list = &searchTable("factoids", "factoid_key", "factoid_value", $arg);
711         $key    = &getRandom(@list);
712         $value  = &getFactInfo($key, "factoid_value");
713     } else {
714         ($key,$value) = &randKey("factoids","factoid_key,factoid_value");
715     }
716
717     for ($cookiemsg) {
718         s/##KEY/\002$key\002/;
719         s/##VALUE/$value/;
720         s/##WHO/$who/;
721         s/\$who/$who/;  # cheap fix.
722         s/(\S+)?\s*<\S+>/$1 /;
723         s/\s+/ /g;
724     }
725
726     if ($cookiemsg =~ s/^ACTION //i) {
727         &action($target, $cookiemsg);
728     } else {
729         &msg($target, $cookiemsg);
730     }
731 }
732
733 sub convert {
734     my $arg = join(' ',@_);
735     my ($from,$to) = ('','');
736
737     ($from,$to) = ($1,$2) if ($arg =~ /^(.*?) to (.*)$/i);
738     ($from,$to) = ($2,$1) if ($arg =~ /^(.*?) from (.*)$/i);
739
740     if (!$to or !$from) {
741         &msg($who, "Invalid format!");
742         &help("convert");
743         return;
744     }
745
746     &Units::convertUnits($from, $to);
747
748     return;
749 }
750
751 sub lart {
752     my ($target) = &fixString($_[0]);
753     my $extra   = 0;
754     my $chan    = $talkchannel;
755
756     if ($msgType eq 'private') {
757         if ($target =~ /^($mask{chan})\s+(.*)$/) {
758             $chan       = $1;
759             $target     = $2;
760             $extra      = 1;
761         } else {
762             &msg($who, "error: invalid format or missing arguments.");
763             &help("lart");
764             return;
765         }
766     }
767
768     my $line = &getRandomLineFromFile($bot_data_dir. "/blootbot.lart");
769     if (defined $line) {
770         if ($target =~ /^(me|you|itself|\Q$ident\E)$/i) {
771             $line =~ s/WHO/$who/g;
772         } else {
773             $line =~ s/WHO/$target/g;
774         }
775         $line .= ", courtesy of $who" if ($extra);
776
777         &action($chan, $line);
778     } else {
779         &status("lart: error reading file?");
780     }
781 }
782
783 sub DebianNew {
784     my $idx   = "debian/Packages-sid.idx";
785     my $error = 0;
786     my %pkg;
787     my @new;
788
789     $error++ unless ( -e $idx);
790     $error++ unless ( -e "$idx-old");
791
792     if ($error) {
793         $error = "no sid/sid-old index file found.";
794         &ERROR("Debian: $error");
795         &msg($who, $error);
796         return;
797     }
798
799     open(IDX1, $idx);
800     open(IDX2, "$idx-old");
801
802     while (<IDX2>) {
803         chop;
804         next if (/^\*/);
805
806         $pkg{$_} = 1;
807     }
808     close IDX2;
809
810     open(IDX1,$idx);
811     while (<IDX1>) {
812         chop;
813         next if (/^\*/);
814         next if (exists $pkg{$_});
815
816         push(@new, $_);
817     }
818     close IDX1;
819
820     &::pSReply( &::formListReply(0, "New debian packages:", @new) );
821 }
822
823 sub do_verstats {
824     my ($chan)  = @_;
825
826     if (!defined $chan) {
827         &help("verstats");
828         return;
829     }
830
831     if (!&validChan($chan)) {
832         &msg($who, "chan $chan is invalid.");
833         return;
834     }
835
836     if (scalar @vernick > scalar(keys %{ $channels{lc $chan}{''} })/4) {
837         &msg($who, "verstats already in progress for someone else.");
838         return;
839     }
840
841     &msg($who, "Sending CTCP VERSION to $chan; results in 60s.");
842     $conn->ctcp("VERSION", $chan);
843     $cache{verstats}{chan}      = $chan;
844     $cache{verstats}{who}       = $who;
845     $cache{verstats}{msgType}   = $msgType;
846
847     $conn->schedule(30, sub {
848         my $c           = lc $cache{verstats}{chan};
849         @vernicktodo    = ();
850
851         foreach (keys %{ $channels{$c}{''} } ) {
852             next if (grep /^\Q$_\E$/i, @vernick);
853             push(@vernicktodo, $_);
854         }
855
856         &verstats_flush();
857     } );
858
859     $conn->schedule(60, sub {
860         my $vtotal      = 0;
861         my $c           = lc $cache{verstats}{chan};
862         my $total       = keys %{ $channels{$c}{''} };
863         $chan           = $c;
864         $who            = $cache{verstats}{who};
865         $msgType        = $cache{verstats}{msgType};
866         delete $cache{verstats};        # sufficient?
867
868         foreach (keys %ver) {
869             $vtotal     += scalar keys %{ $ver{$_} };
870         }
871
872         my %sorted;
873         my $unknown     = $total - $vtotal;
874         my $perc        = sprintf("%.1f", $unknown * 100 / $total);
875         $perc           =~ s/.0$//;
876         $sorted{$perc}{"unknown/cloak"} = "$unknown ($perc%)" if ($unknown);
877
878         foreach (keys %ver) {
879             my $count   = scalar keys %{ $ver{$_} };
880             $perc       = sprintf("%.01f", $count * 100 / $total);
881             $perc       =~ s/.0$//;     # lame compression.
882
883             $sorted{$perc}{$_} = "$count ($perc%)";
884         }
885
886         ### can be compressed to a map?
887         my @list;
888         foreach ( sort { $b <=> $a } keys %sorted ) {
889             my $perc = $_;
890             foreach (sort keys %{ $sorted{$perc} }) {
891                 push(@list, "$_ - $sorted{$perc}{$_}");
892             }
893         }
894
895         # hack. this is one major downside to scheduling.
896         $chan = $c;
897         &pSReply( &formListReply(0, "IRC Client versions for $c ", @list) );
898
899         # clean up not-needed data structures.
900         undef %ver;
901         undef @vernick;
902     } );
903
904     return;
905 }
906
907 sub verstats_flush {
908     for (1..5) {
909         last unless (scalar @vernicktodo);
910
911         my $n = shift(@vernicktodo);
912         $conn->ctcp("VERSION", $n);
913     }
914
915     return unless (scalar @vernicktodo);
916
917     $conn->schedule(3, \&verstats_flush() );
918 }
919
920 sub textstats_main {
921     my($arg) = @_;
922
923     # even more uglier with channel/time arguments.
924     my $c       = $chan;
925 #    my $c      = $chan || "PRIVATE";
926     &DEBUG("not using chan arg") if (!defined $c);
927
928     # example of converting from RawReturn to sqlSelect.
929     my $where_href = (defined $c) ? { channel => $c } : "";
930     my $sum = &sqlSelect("stats", "SUM(counter)", $where_href);
931
932     if (!defined $arg or $arg =~ /^\s*$/) {
933         # this is way fucking ugly.
934         &DEBUG("_stats: !arg");
935
936         my %hash = &sqlSelectColHash("stats", "nick,counter",
937                 $where_href,
938                 " ORDER BY counter DESC LIMIT 3", 1
939         );
940         my $i;
941         my @top;
942
943         # unfortunately we have to sort it again!
944         # todo: make dbGetCol return hash and array? too much effort.
945         my $tp = 0;
946         foreach $i (sort { $b <=> $a } keys %hash) {
947             foreach (keys %{ $hash{$i} }) {
948                 my $p   = sprintf("%.01f", 100*$i/$sum);
949                 $tp     += $p;
950                 push(@top, "\002$_\002 -- $i ($p%)");
951             }
952         }
953
954         my $topstr = "";
955         &DEBUG("*stats: tp => $tp");
956         if (scalar @top) {
957             $topstr = ".  Top ".scalar(@top).": ".join(', ', @top);
958         }
959
960         if (defined $sum) {
961             &pSReply("total count of \037$type\037 on \002$c\002: $sum$topstr");
962         } else {
963             &pSReply("zero counter for \037$type\037.");
964         }
965     } else {
966         my %hash = &sqlSelectColHash("stats", "type,counter",
967                 $where_href, " AND nick=".&sqlQuote($arg)
968         );
969         # this is totally fucked... needs to be fixed... and cleaned up.
970         my $total;
971         my $good;
972         my $ii;
973         my $x;
974
975         foreach (keys %hash) {
976             &DEBUG("_stats: hash{$_} => $hash{$_}");
977             # ranking.
978             my @array = &sqlSelect("stats", "nick", undef,
979                 $where." ORDER BY counter", 1);
980             $good = 0;
981             $ii = 0;
982             for(my $i=0; $i<scalar @array; $i++) {
983                 next unless ($array[0] =~ /^\Q$who\E$/);
984                 $good++;
985                 last;
986             }
987             $ii++;
988
989             $total = scalar(@array);
990             &DEBUG("   i => $i, good => $good, total => $total");
991             $x .= " ".$total."blah blah";
992         }
993
994         return;
995
996         if (!defined $x) {      # !defined.
997             &pSReply("$arg has not said $type yet.");
998             return;
999         }
1000
1001         my $xtra = "";
1002         if ($total and $good) {
1003             my $pct = sprintf("%.01f", 100*(1+$total-$ii)/$total);
1004             $xtra = ", ranked $ii\002/\002$total (percentile: \002$pct\002 %)";
1005         }
1006
1007         my $pct1 = sprintf("%.01f", 100*$x/$sum);
1008         &pSReply("\002$arg\002 has said \037$type\037 \002$x\002 times (\002$pct1\002 %)$xtra");
1009     }
1010 }
1011
1012 sub nullski { my ($arg) = @_; return unless (defined $arg);
1013         foreach (`$arg`) { &msg($who,$_); } }
1014
1015 1;