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