X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=src%2FCommandStubs.pl;h=d2d3ecf2fe267eb9c662d9ea176ff85e51f98746;hb=da11a8d9711396ad8c3ded06753d8f0cbf36bcb9;hp=d3c4e4d5f8b070ffe132eeadd23cbd5267f113fd;hpb=898e2a59373e43b86dff57b285aacad2a683f06b;p=infobot.git diff --git a/src/CommandStubs.pl b/src/CommandStubs.pl index d3c4e4d..d2d3ecf 100644 --- a/src/CommandStubs.pl +++ b/src/CommandStubs.pl @@ -182,17 +182,16 @@ sub Modules { return; } - # google searching. Simon++ - my $w3search_regex = 'google'; + # google searching -- thanks Brett Cave if ( $message =~ - /^(?:search\s+)?($w3search_regex)\s+(?:for\s+)?['"]?(.*?)["']?\s*\?*$/i + /^(\s+)?google\s+['"]?(.*?)["']?\s*\?*$/i ) { - return unless ( &IsChanConfOrWarn('W3Search') ); + return unless ( &IsChanConfOrWarn('Google') ); - &Forker( 'W3Search', sub { &W3Search::W3Search( $1, $2 ); } ); + &Forker( 'Google', sub { &Google::GoogleSearch( $2 ); } ); - $cmdstats{'W3Search'}++; + $cmdstats{'Google'}++; return; } @@ -591,8 +590,14 @@ sub do_verstats { return; } - &msg( $who, "Sending CTCP VERSION to $chan; results in 60s." ); - $conn->ctcp( 'VERSION', $chan ); + &msg( $who, "Sending CTCP VERSION to $chan; results in 60s." ); + &msg( $chan, "WARNING: $who has forced me to CTCP VERSION the channel!" ); + + # Workaround for bug in Net::Irc, provided by quin@freenode. Details at: + # http://rt.cpan.org/Public/Bug/Display.html?id=11421 + # $conn->ctcp( 'VERSION', $chan ); + $conn->sl("PRIVMSG $chan :\001VERSION\001"); + $cache{verstats}{chan} = $chan; $cache{verstats}{who} = $who; $cache{verstats}{msgType} = $msgType; @@ -618,7 +623,6 @@ sub do_verstats { my $vtotal = 0; my $c = lc $cache{verstats}{chan}; my $total = keys %{ $channels{$c}{''} }; - $chan = $c; $who = $cache{verstats}{who}; $msgType = $cache{verstats}{msgType}; delete $cache{verstats}; # sufficient? @@ -651,8 +655,7 @@ sub do_verstats { } # hack. this is one major downside to scheduling. - $chan = $c; - &performStrictReply( + &msg($c, &formListReply( 0, "IRC Client versions for $c ", @list ) ); # clean up not-needed data structures. @@ -669,7 +672,9 @@ sub verstats_flush { last unless ( scalar @vernicktodo ); my $n = shift(@vernicktodo); - $conn->ctcp( 'VERSION', $n ); + #$conn->ctcp( 'VERSION', $n ); + # See do_verstats $conn->sl for explantaion + $conn->sl("PRIVMSG $n :\001VERSION\001"); } return unless ( scalar @vernicktodo ); @@ -780,12 +785,13 @@ sub do_text_counters { ### ### START ADDING HOOKS. ### -&addCmdHook('(babel(fish)?|x|xlate|translate)', ('CODEREF' => 'babelfish::babelfish', 'Identifier' => 'babelfish', 'Cmdstats' => 'babelfish', 'Forker' => 1, 'Help' => 'babelfish', 'Module' => 'babelfish') ); +&addCmdHook('(x|xlate|translate)', ('CODEREF' => 'translate::translate', 'Identifier' => 'translate', 'Cmdstats' => 'translate', 'Forker' => 1, 'Help' => 'translate', 'Module' => 'translate') ); &addCmdHook('(botmail|message)', ('CODEREF' => 'botmail::parse', 'Identifier' => 'botmail', 'Cmdstats' => 'botmail') ); &addCmdHook('bzflist17', ('CODEREF' => 'BZFlag::list17', 'Identifier' => 'BZFlag', 'Cmdstats' => 'BZFlag', 'Forker' => 1, 'Module' => 'BZFlag') ); &addCmdHook('bzflist', ('CODEREF' => 'BZFlag::list', 'Identifier' => 'BZFlag', 'Cmdstats' => 'BZFlag', 'Forker' => 1, 'Module' => 'BZFlag') ); &addCmdHook('bzfquery', ('CODEREF' => 'BZFlag::query', 'Identifier' => 'BZFlag', 'Cmdstats' => 'BZFlag', 'Forker' => 1, 'Module' => 'BZFlag') ); &addCmdHook('chan(stats|info)', ('CODEREF' => 'chaninfo', ) ); +&addCmdHook('conn(stats|info)', ('CODEREF' => 'conninfo', ) ); &addCmdHook('cmd(stats|info)', ('CODEREF' => 'cmdstats', ) ); &addCmdHook('convert', ('CODEREF' => 'convert', 'Forker' => 1, 'Identifier' => 'Units', 'Help' => 'convert') ); &addCmdHook('(cookie|random)', ('CODEREF' => 'cookie', 'Forker' => 1, 'Identifier' => 'Factoids') ); @@ -837,7 +843,7 @@ sub do_text_counters { &addCmdHook('upsidedown', ('CODEREF' => 'upsidedown::upsidedown', 'Identifier' => 'upsidedown', 'Cmdstats' => 'upsidedown', 'Forker' => 1, 'Module' => 'upsidedown') ); &addCmdHook('Uptime', ('CODEREF' => 'uptime', 'Identifier' => 'Uptime', 'Cmdstats' => 'Uptime') ); &addCmdHook('u(ser)?info', ('CODEREF' => 'userinfo', 'Identifier' => 'UserInfo', 'Help' => 'userinfo', 'Module' => 'UserInfo') ); -&addCmdHook('verstats', ('CODEREF' => 'do_verstats' ) ); +&addCmdHook('verstats', ('CODEREF' => 'do_verstats', 'Identifier' => 'verstats', 'Help' => 'verstats', 'Cmdstats' => 'verstats') ); &addCmdHook('Weather', ('CODEREF' => 'Weather::Weather', 'Identifier' => 'Weather', 'Help' => 'weather', 'Cmdstats' => 'Weather', 'Forker' => 1, 'Module' => 'Weather') ); &addCmdHook('wiki(pedia)?', ('CODEREF' => 'wikipedia::wikipedia', 'Identifier' => 'wikipedia', 'Cmdstats' => 'wikipedia', 'Forker' => 1, 'Help' => 'wikipedia', 'Module' => 'wikipedia') ); &addCmdHook('wtf', ('CODEREF' => 'wtf::query', 'Identifier' => 'wtf', 'Cmdstats' => 'wtf', 'Forker' => 1, 'Help' => 'wtf', 'Module' => 'wtf') );