]> git.donarmstrong.com Git - infobot.git/blob - src/CommandStubs.pl
dbm -> sql
[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                         { },
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                 my $tp = 0;
352                 foreach $i (sort { $b <=> $a } keys %hash) {
353                     foreach (keys %{ $hash{$i} }) {
354                         my $p   = sprintf("%.01f", 100*$i/$sum);
355                         $tp     += $p;
356                         push(@top, "\002$_\002 -- $i ($p%)");
357                     }
358                 }
359                 my $topstr = "";
360                 &DEBUG("*stats: tp => $tp");
361                 if (scalar @top) {
362                     $topstr = ".  Top ".scalar(@top).": ".join(', ', @top);
363                 }
364
365                 if (defined $sum) {
366                     &pSReply("total count of \037$type\037 on \002$c\002: $sum$topstr");
367                 } else {
368                     &pSReply("zero counter for \037$type\037.");
369                 }
370             } else {
371                 my $x = (&sqlRawReturn("SELECT SUM(counter) FROM stats".
372                         " WHERE $where AND nick=".&sqlQuote($arg) ))[0];
373
374                 if (!defined $x) {      # !defined.
375                     &pSReply("$arg has not said $type yet.");
376                     return;
377                 }
378
379                 # defined.
380                 my @array = &sqlSelect("stats", "nick", undef,
381                         $where." ORDER BY counter", 1
382                 );
383                 my $good = 0;
384                 my $i = 0;
385                 for($i=0; $i<scalar @array; $i++) {
386                     next unless ($array[0] =~ /^\Q$who\E$/);
387                     $good++;
388                     last;
389                 }
390                 $i++;
391
392                 my $total = scalar(@array);
393                 my $xtra = "";
394                 if ($total and $good) {
395                     my $pct = sprintf("%.01f", 100*(1+$total-$i)/$total);
396                     $xtra = ", ranked $i\002/\002$total (percentile: \002$pct\002 %)";
397                 }
398
399                 my $pct1 = sprintf("%.01f", 100*$x/$sum);
400                 &pSReply("\002$arg\002 has said \037$type\037 \002$x\002 times (\002$pct1\002 %)$xtra");
401             }
402
403             return;
404         }
405
406         if ($@) {
407             &DEBUG("regex failed: $@");
408             return;
409         }
410     }
411
412     # list{keys|values}. xk++. Idea taken from #linuxwarez@EFNET
413     if ($message =~ /^list(\S+)(\s+(.*))?$/i) {
414         return unless (&hasParam("search"));
415
416         my $thiscmd     = lc $1;
417         my $args        = $3 || "";
418
419         $thiscmd        =~ s/^vals$/values/;
420         return if ($thiscmd ne "keys" && $thiscmd ne "values");
421
422         # Usage:
423         if (!defined $args or $args =~ /^\s*$/) {
424             &help("list". $thiscmd);
425             return;
426         }
427
428         # suggested by asuffield and \broken.
429         if ($args =~ /^["']/ and $args =~ /["']$/) {
430             &DEBUG("list*: removed quotes.");
431             $args       =~ s/^["']|["']$//g;
432         }
433
434         if (length $args == 1) {
435             &msg($who,"search string is too short.");
436             return;
437         }
438
439         &Forker("search", sub { &Search::Search($thiscmd, $args); } );
440
441         $cmdstats{'Factoid Search'}++;
442         return;
443     }
444
445     # Nickometer. Adam Spiers++
446     if ($message =~ /^(?:lame|nick)ometer(?: for)? (\S+)/i) {
447         return unless (&hasParam("nickometer"));
448
449         my $term = (lc $1 eq 'me') ? $who : $1;
450
451         &loadMyModule($myModules{'nickometer'});
452
453         if ($term =~ /^$mask{chan}$/) {
454             &status("Doing nickometer for chan $term.");
455
456             if (!&validChan($term)) {
457                 &msg($who, "error: channel is invalid.");
458                 return;
459             }
460
461             # step 1.
462             my %nickometer;
463             foreach (keys %{ $channels{lc $term}{''} }) {
464                 my $str   = $_;
465                 if (!defined $str) {
466                     &WARN("nickometer: nick in chan $term undefined?");
467                     next;
468                 }
469
470                 my $value = &nickometer($str);
471                 $nickometer{$value}{$str} = 1;
472             }
473
474             # step 2.
475             ### TODO: compact with map?
476             my @list;
477             foreach (sort {$b <=> $a} keys %nickometer) {
478                 my $str = join(", ", sort keys %{ $nickometer{$_} });
479                 push(@list, "$str ($_%)");
480             }
481
482             &pSReply( &formListReply(0, "Nickometer list for $term ", @list) );
483             &DEBUG("test.");
484
485             return;
486         }
487
488         my $percentage = &nickometer($term);
489
490         if ($percentage =~ /NaN/) {
491             $percentage = "off the scale";
492         } else {
493             $percentage = sprintf("%0.4f", $percentage);
494             $percentage =~ s/(\.\d+)0+$/$1/;
495             $percentage .= '%';
496         }
497
498         if ($msgType eq 'public') {
499             &say("'$term' is $percentage lame, $who");
500         } else {
501             &msg($who, "the 'lame nick-o-meter' reading for $term is $percentage, $who");
502         }
503
504         return;
505     }
506
507     # Topic management. xk++
508     # may want to add a userflags for topic. -xk
509     if ($message =~ /^topic(\s+(.*))?$/i) {
510         return unless (&hasParam("topic"));
511
512         my $chan        = $talkchannel;
513         my @args        = split / /, $2 || "";
514
515         if (!scalar @args) {
516             &msg($who,"Try 'help topic'");
517             return;
518         }
519
520         $chan           = lc(shift @args) if ($msgType eq 'private');
521         my $thiscmd     = shift @args;
522
523         # topic over public:
524         if ($msgType eq 'public' && $thiscmd =~ /^#/) {
525             &msg($who, "error: channel argument is not required.");
526             &msg($who, "\002Usage\002: topic <CMD>");
527             return;
528         }
529
530         # topic over private:
531         if ($msgType eq 'private' && $chan !~ /^#/) {
532             &msg($who, "error: channel argument is required.");
533             &msg($who, "\002Usage\002: topic #channel <CMD>");
534             return;
535         }
536
537         if (&validChan($chan) == 0) {
538             &msg($who,"error: invalid channel \002$chan\002");
539             return;
540         }
541
542         # for semi-outsiders.
543         if (!&IsNickInChan($who,$chan)) {
544             &msg($who, "Failed. You ($who) are not in $chan, hey?");
545             return;
546         }
547
548         # now lets do it.
549         &loadMyModule($myModules{'topic'});
550         &Topic($chan, $thiscmd, join(' ', @args));
551         $cmdstats{'Topic'}++;
552         return;
553     }
554
555     # wingate.
556     if ($message =~ /^wingate$/i) {
557         return unless (&hasParam("wingate"));
558
559         my $reply = "Wingate statistics: scanned \002"
560                         .scalar(keys %wingate)."\002 hosts";
561         my $queue = scalar(keys %wingateToDo);
562         if ($queue) {
563             $reply .= ".  I have \002$queue\002 hosts in the queue";
564             $reply .= ".  Started the scan ".&Time2String(time() - $wingaterun)." ago";
565         }
566
567         &pSReply("$reply.");
568
569         return;
570     }
571
572     # do nothing and let the other routines have a go
573     return "CONTINUE";
574 }
575
576 # Freshmeat. xk++
577 sub freshmeat {
578     my ($query) = @_;
579
580     if (!defined $query) {
581         &help("freshmeat");
582         &msg($who, "I have \002".&countKeys("freshmeat")."\002 entries.");
583         return;
584     }
585
586     &Freshmeat::Freshmeat($query);
587 }
588
589 # Uptime. xk++
590 sub uptime {
591     my $count = 1;
592     &msg($who, "- Uptime for $ident -");
593     &msg($who, "Now: ". &Time2String(&uptimeNow()) ." running $bot_version");
594
595     foreach (&uptimeGetInfo()) {
596         /^(\d+)\.\d+ (.*)/;
597         my $time = &Time2String($1);
598         my $info = $2;
599
600         &msg($who, "$count: $time $2");
601         $count++;
602     }
603 }
604
605 # seen.
606 sub seen {
607     my($person) = lc shift;
608     $person =~ s/\?*$//;
609
610     if (!defined $person or $person =~ /^$/) {
611         &help("seen");
612
613         my $i = &countKeys("seen");
614         &msg($who,"there ". &fixPlural("is",$i) ." \002$i\002 ".
615                 "seen ". &fixPlural("entry",$i) ." that I know of.");
616
617         return;
618     }
619
620     my @seen;
621
622     &seenFlush();       # very evil hack. oh well, better safe than sorry.
623
624     # TODO: convert to &sqlSelectRowHash();
625     my $select = "nick,time,channel,host,message";
626     if ($person eq "random") {
627         @seen = &randKey("seen", $select);
628     } else {
629         @seen = &sqlSelect("seen", $select, { nick => $person } );
630     }
631
632     if (scalar @seen < 2) {
633         foreach (@seen) {
634             &DEBUG("seen: _ => '$_'.");
635         }
636         &performReply("i haven't seen '$person'");
637         return;
638     }
639
640     # valid seen.
641     my $reply;
642     ### TODO: multi channel support. may require &IsNick() to return
643     ### all channels or something.
644     my @chans = &getNickInChans($seen[0]);
645     if (scalar @chans) {
646         $reply = "$seen[0] is currently on";
647
648         foreach (@chans) {
649             $reply .= " ".$_;
650             next unless (exists $userstats{lc $seen[0]}{'Join'});
651             $reply .= " (".&Time2String(time() - $userstats{lc $seen[0]}{'Join'}).")";
652         }
653
654         if (&IsParam("seenStats")) {
655             my $i;
656             $i = $userstats{lc $seen[0]}{'Count'};
657             $reply .= ".  Has said a total of \002$i\002 messages" if (defined $i);
658             $i = $userstats{lc $seen[0]}{'Time'};
659             $reply .= ".  Is idling for ".&Time2String(time() - $i) if (defined $i);
660         }
661     } else {
662         my $howlong = &Time2String(time() - $seen[1]);
663         $reply = "$seen[0] <$seen[3]> was last seen on IRC ".
664                  "in channel $seen[2], $howlong ago, ".
665                  "saying\002:\002 '$seen[4]'.";
666     }
667
668     &pSReply($reply);
669     return;
670 }
671
672 # User Information Services. requested by Flugh.
673 sub userinfo {
674     my ($arg) = join(' ',@_);
675
676     if ($arg =~ /^set(\s+(.*))?$/i) {
677         $arg = $2;
678         if (!defined $arg) {
679             &help("userinfo set");
680             return;
681         }
682
683         &UserInfoSet(split /\s+/, $arg, 2);
684     } elsif ($arg =~ /^unset(\s+(.*))?$/i) {
685         $arg = $2;
686         if (!defined $arg) {
687             &help("userinfo unset");
688             return;
689         }
690
691         &UserInfoSet($arg, "");
692     } else {
693         &UserInfoGet($arg);
694     }
695 }
696
697 # cookie (random). xk++
698 sub cookie {
699     my ($arg) = @_;
700
701     # lets find that secret cookie.
702     my $target          = ($msgType ne 'public') ? $who : $talkchannel;
703     my $cookiemsg       = &getRandom(keys %{ $lang{'cookie'} });
704     my ($key,$value);
705
706     ### WILL CHEW TONS OF MEM.
707     ### TODO: convert this to a Forker function!
708     if ($arg) {
709         my @list = &searchTable("factoids", "factoid_key", "factoid_value", $arg);
710         $key    = &getRandom(@list);
711         $value  = &getFactInfo($key, "factoid_value");
712     } else {
713         ($key,$value) = &randKey("factoids","factoid_key,factoid_value");
714     }
715
716     for ($cookiemsg) {
717         s/##KEY/\002$key\002/;
718         s/##VALUE/$value/;
719         s/##WHO/$who/;
720         s/\$who/$who/;  # cheap fix.
721         s/(\S+)?\s*<\S+>/$1 /;
722         s/\s+/ /g;
723     }
724
725     if ($cookiemsg =~ s/^ACTION //i) {
726         &action($target, $cookiemsg);
727     } else {
728         &msg($target, $cookiemsg);
729     }
730 }
731
732 sub convert {
733     my $arg = join(' ',@_);
734     my ($from,$to) = ('','');
735
736     ($from,$to) = ($1,$2) if ($arg =~ /^(.*?) to (.*)$/i);
737     ($from,$to) = ($2,$1) if ($arg =~ /^(.*?) from (.*)$/i);
738
739     if (!$to or !$from) {
740         &msg($who, "Invalid format!");
741         &help("convert");
742         return;
743     }
744
745     &Units::convertUnits($from, $to);
746
747     return;
748 }
749
750 sub lart {
751     my ($target) = &fixString($_[0]);
752     my $extra   = 0;
753     my $chan    = $talkchannel;
754
755     if ($msgType eq 'private') {
756         if ($target =~ /^($mask{chan})\s+(.*)$/) {
757             $chan       = $1;
758             $target     = $2;
759             $extra      = 1;
760         } else {
761             &msg($who, "error: invalid format or missing arguments.");
762             &help("lart");
763             return;
764         }
765     }
766
767     my $line = &getRandomLineFromFile($bot_data_dir. "/blootbot.lart");
768     if (defined $line) {
769         if ($target =~ /^(me|you|itself|\Q$ident\E)$/i) {
770             $line =~ s/WHO/$who/g;
771         } else {
772             $line =~ s/WHO/$target/g;
773         }
774         $line .= ", courtesy of $who" if ($extra);
775
776         &action($chan, $line);
777     } else {
778         &status("lart: error reading file?");
779     }
780 }
781
782 sub DebianNew {
783     my $idx   = "debian/Packages-sid.idx";
784     my $error = 0;
785     my %pkg;
786     my @new;
787
788     $error++ unless ( -e $idx);
789     $error++ unless ( -e "$idx-old");
790
791     if ($error) {
792         $error = "no sid/sid-old index file found.";
793         &ERROR("Debian: $error");
794         &msg($who, $error);
795         return;
796     }
797
798     open(IDX1, $idx);
799     open(IDX2, "$idx-old");
800
801     while (<IDX2>) {
802         chop;
803         next if (/^\*/);
804
805         $pkg{$_} = 1;
806     }
807     close IDX2;
808
809     open(IDX1,$idx);
810     while (<IDX1>) {
811         chop;
812         next if (/^\*/);
813         next if (exists $pkg{$_});
814
815         push(@new, $_);
816     }
817     close IDX1;
818
819     &::pSReply( &::formListReply(0, "New debian packages:", @new) );
820 }
821
822 sub do_verstats {
823     my ($chan)  = @_;
824
825     if (!defined $chan) {
826         &help("verstats");
827         return;
828     }
829
830     if (!&validChan($chan)) {
831         &msg($who, "chan $chan is invalid.");
832         return;
833     }
834
835     if (scalar @vernick > scalar(keys %{ $channels{lc $chan}{''} })/4) {
836         &msg($who, "verstats already in progress for someone else.");
837         return;
838     }
839
840     &msg($who, "Sending CTCP VERSION to $chan; results in 60s.");
841     $conn->ctcp("VERSION", $chan);
842     $cache{verstats}{chan}      = $chan;
843     $cache{verstats}{who}       = $who;
844     $cache{verstats}{msgType}   = $msgType;
845
846     $conn->schedule(30, sub {
847         my $c           = lc $cache{verstats}{chan};
848         @vernicktodo    = ();
849
850         foreach (keys %{ $channels{$c}{''} } ) {
851             next if (grep /^\Q$_\E$/i, @vernick);
852             push(@vernicktodo, $_);
853         }
854
855         &verstats_flush();
856     } );
857
858     $conn->schedule(60, sub {
859         my $vtotal      = 0;
860         my $c           = lc $cache{verstats}{chan};
861         my $total       = keys %{ $channels{$c}{''} };
862         $chan           = $c;
863         $who            = $cache{verstats}{who};
864         $msgType        = $cache{verstats}{msgType};
865         delete $cache{verstats};        # sufficient?
866
867         foreach (keys %ver) {
868             $vtotal     += scalar keys %{ $ver{$_} };
869         }
870
871         my %sorted;
872         my $unknown     = $total - $vtotal;
873         my $perc        = sprintf("%.1f", $unknown * 100 / $total);
874         $perc           =~ s/.0$//;
875         $sorted{$perc}{"unknown/cloak"} = "$unknown ($perc%)" if ($unknown);
876
877         foreach (keys %ver) {
878             my $count   = scalar keys %{ $ver{$_} };
879             $perc       = sprintf("%.01f", $count * 100 / $total);
880             $perc       =~ s/.0$//;     # lame compression.
881
882             $sorted{$perc}{$_} = "$count ($perc%)";
883         }
884
885         ### can be compressed to a map?
886         my @list;
887         foreach ( sort { $b <=> $a } keys %sorted ) {
888             my $perc = $_;
889             foreach (sort keys %{ $sorted{$perc} }) {
890                 push(@list, "$_ - $sorted{$perc}{$_}");
891             }
892         }
893
894         # hack. this is one major downside to scheduling.
895         $chan = $c;
896         &pSReply( &formListReply(0, "IRC Client versions for $c ", @list) );
897
898         # clean up not-needed data structures.
899         undef %ver;
900         undef @vernick;
901     } );
902
903     return;
904 }
905
906 sub verstats_flush {
907     for (1..5) {
908         last unless (scalar @vernicktodo);
909
910         my $n = shift(@vernicktodo);
911         $conn->ctcp("VERSION", $n);
912     }
913
914     return unless (scalar @vernicktodo);
915
916     $conn->schedule(3, \&verstats_flush() );
917 }
918
919 sub textstats_main {
920     my($arg) = @_;
921
922     # even more uglier with channel/time arguments.
923     my $c       = $chan;
924 #    my $c      = $chan || "PRIVATE";
925     &DEBUG("not using chan arg") if (!defined $c);
926
927     # example of converting from RawReturn to sqlSelect.
928     my $where_href = (defined $c) ? { channel => $c } : "";
929     my $sum = &sqlSelect("stats", "SUM(counter)", $where_href);
930
931     if (!defined $arg or $arg =~ /^\s*$/) {
932         # this is way fucking ugly.
933         &DEBUG("_stats: !arg");
934
935         my %hash = &sqlSelectColHash("stats", "nick,counter",
936                 $where_href,
937                 " ORDER BY counter DESC LIMIT 3", 1
938         );
939         my $i;
940         my @top;
941
942         # unfortunately we have to sort it again!
943         my $tp = 0;
944         foreach $i (sort { $b <=> $a } keys %hash) {
945             foreach (keys %{ $hash{$i} }) {
946                 my $p   = sprintf("%.01f", 100*$i/$sum);
947                 $tp     += $p;
948                 push(@top, "\002$_\002 -- $i ($p%)");
949             }
950         }
951
952         my $topstr = "";
953         &DEBUG("*stats: tp => $tp");
954         if (scalar @top) {
955             $topstr = ".  Top ".scalar(@top).": ".join(', ', @top);
956         }
957
958         if (defined $sum) {
959             &pSReply("total count of \037$type\037 on \002$c\002: $sum$topstr");
960         } else {
961             &pSReply("zero counter for \037$type\037.");
962         }
963     } else {
964         my %hash = &sqlSelectColHash("stats", "type,counter",
965                 $where_href, " AND nick=".&sqlQuote($arg)
966         );
967         # this is totally fucked... needs to be fixed... and cleaned up.
968         my $total;
969         my $good;
970         my $ii;
971         my $x;
972
973         foreach (keys %hash) {
974             &DEBUG("_stats: hash{$_} => $hash{$_}");
975             # ranking.
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
1010 sub nullski { my ($arg) = @_; return unless (defined $arg);
1011         foreach (`$arg`) { &msg($who,$_); } }
1012
1013 1;