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