]> git.donarmstrong.com Git - infobot.git/blobdiff - src/UserExtra.pl
re-order as ircCheck changes our nick
[infobot.git] / src / UserExtra.pl
index 7f07861657a72e639fd50932e9b635e9a98e74ed..d5ac5dcfaf0470882bc552ca33ab1275957d5886 100644 (file)
@@ -26,15 +26,10 @@ use vars qw(%channels %chanstats %cmdstats %count %ircstats %param
 &addCmdHook("main", 'help', ('CODEREF' => 'help',
        'Cmdstats' => 'Help', ) );
 &addCmdHook("main", 'karma', ('CODEREF' => 'karma', ) );
-&addCmdHook("main", 'i?spell', ('CODEREF' => 'ispell',
-       Help => 'spell', Identifier => 'spell', ) );
-&addCmdHook("main", 'd?nslookup', ('CODEREF' => 'DNS',
-       Help => 'nslookup', Identifier => 'allowDNS',
-       Forker => "NULL", ) );
 &addCmdHook("main", 'tell|explain', ('CODEREF' => 'tell',
        Help => 'tell', Identifier => 'allowTelling',
        Cmdstats => 'Tell') );
-&addCmdHook("main", 'news', ('CODEREF' => 'News::Parse',
+&addCmdHook("main", 'News', ('CODEREF' => 'News::Parse',
        Module => 'News', 'Cmdstats' => 'News' ) );
 &addCmdHook("main", 'countrystats', ('CODEREF' => 'countryStats',
 #      Forker => "NULL",
@@ -52,7 +47,7 @@ sub chaninfo {
 
     if ($chan eq "") {         # all channels.
        my $i           = keys %channels;
-       my $reply       = "i am on \002$i\002 ".&fixPlural("channel",$i);
+       my $reply       = "I'm on \002$i\002 ".&fixPlural("channel",$i);
        my $tucount     = 0;    # total user count.
        my $uucount     = 0;    # unique user count.
        my @array;
@@ -66,11 +61,10 @@ sub chaninfo {
            }
            next if (/^_default$/);
 
-           my $str = sprintf("%s (%d)", $_, scalar(keys %{ $channels{$_}{''} }));
+           my $str = sprintf("%s/%d", $_, scalar(keys %{ $channels{$_}{''} }));
            push(@array, $str);
        }
-       &pSReply($reply.": ".join(', ', @array));
-       &ircCheck();
+       &performStrictReply($reply.": ".join(', ', @array));
 
        ### total user count.
        foreach $chan (keys %channels) {
@@ -80,24 +74,27 @@ sub chaninfo {
        ### unique user count.
        my @nicks;
        foreach $chan (keys %channels) {
-           foreach (keys %{ $channels{$chan}{''} }) {
-               next if (grep /^\Q$_\E$/, @nicks);
+           my $nick = '';
+           foreach $nick (keys %{ $channels{$chan}{''} }) {
+               next if (grep /^\Q$nick\E$/, @nicks);
                $uucount++;
-               push(@nicks, $_);
+               push(@nicks, $nick);
            }
        }
+       #&::DEBUG(join ":", @nicks);
 
        if (scalar @nicks != $uucount) {
            &DEBUG("nicks != uucount...");
        }
 
        my $chans = scalar(keys %channels);
-       &pSReply(
+       &performStrictReply(
            "i've cached \002$tucount\002 ". &fixPlural("user",$tucount).
            ", \002$uucount\002 unique ". &fixPlural("user",$uucount).
            ", distributed over \002$chans\002 ".
            &fixPlural("channel", $chans)."."
        );
+       &ircCheck();
 
        return;
     }
@@ -171,7 +168,7 @@ sub chaninfo {
     if ($count) {
        $reply .= ".  \002$count\002 has said the most with a total of \002$new{$count}\002 messages";
     }
-    &pSReply("$reply.");
+    &performStrictReply("$reply.");
 }
 
 # Command statistics.
@@ -196,7 +193,7 @@ sub cmdstats {
            push(@array, "\002$int\002 of $_");
        }
     }
-    &pSReply("command usage include ". &IJoin(@array).".");
+    &performStrictReply("command usage include ". &IJoin(@array).".");
 }
 
 # Factoid extension info. xk++
@@ -220,7 +217,7 @@ sub factstats {
     my $type = shift(@_);
 
     &Forker("factoids", sub {
-       &pSReply( &CmdFactStats($type) );
+       &performStrictReply( &CmdFactStats($type) );
     } );
 }
 
@@ -230,73 +227,10 @@ sub karma {
        { nick => $target, type => "karma" }) || 0;
 
     if ($karma != 0) {
-       &pSReply("$target has karma of $karma");
+       &performStrictReply("$target has karma of $karma");
     } else {
-       &pSReply("$target has neutral karma");
-    }
-}
-
-sub ispell {
-    my $query = shift;
-    my $binary;
-    my @binaries = (
-       '/usr/bin/aspell',
-       '/usr/bin/ispell',
-       '/usr/bin/spell'
-    );
-
-    foreach (@binaries) {
-       if (-x $_) {
-           $binary=$_;
-           last;
-       }
-    }
-
-    if (!$binary) {
-       &msg($who, "no binary found.");
-       return;
-    }
-
-    if (!&validExec($query)) {
-       &msg($who,"argument appears to be fuzzy.");
-       return;
+       &performStrictReply("$target has neutral karma");
     }
-
-    my $reply = "I can't find alternate spellings for '$query'";
-
-    foreach (`/bin/echo '$query' | $binary -a -S`) {
-       chop;
-       last if !length;                # end of query.
-
-       if (/^\@/) {            # intro line.
-           next;
-       } elsif (/^\*/) {               # possibly correct.
-           $reply = "'$query' may be spelled correctly";
-           last;
-       } elsif (/^\&/) {               # possible correction(s).
-           s/^\& (\S+) \d+ \d+: //;
-           my @array = split(/,? /);
-
-           $reply = "possible spellings for $query: @array";
-           last;
-       } elsif (/^\+/) {
-           &DEBUG("spell: '+' found => '$_'.");
-           last;
-       } elsif (/^# (.*?) 0$/) {
-           # none found.
-           last;
-       } else {
-           &DEBUG("spell: unknown: '$_'.");
-       }
-    }
-
-    &pSReply($reply);
-}
-
-sub nslookup {
-    my $query = shift;
-    &status("DNS Lookup: $query");
-    &DNS($query);
 }
 
 sub tell {
@@ -409,45 +343,6 @@ sub tell {
     &msg($target, $reply);
 }
 
-sub DNS {
-    my $dns = shift;
-    my($match, $x, $y, $result);
-    my $pid;
-    $dns =~ s/^\s+|\s+$//g;
-
-    if (!defined $dns or $dns =~ /^\s*$/ or $dns =~ / /) {
-       &help("dns");
-       return;
-    }
-
-    if ($dns =~ /(\d+\.\d+\.\d+\.\d+)/) {
-       $match = $1;
-       &status("DNS query by IP address: $match");
-
-       $y = pack('C4', split(/\./, $match));
-       $x = (gethostbyaddr($y, &AF_INET));
-
-       if ($x !~ /^\s*$/) {
-           $result = $match." is ".$x unless ($x =~ /^\s*$/);
-       } else {
-           $result = "I can't seem to find that address in DNS";
-       }
-
-    } else {
-
-       &status("DNS query by name: $dns");
-       $x = join('.',unpack('C4',(gethostbyname($dns))[4]));
-
-       if ($x !~ /^\s*$/) {
-           $result = $dns." is ".$x;
-       } else {
-           $result = "I can\'t find that machine name";
-       }
-    }
-
-    &performReply($result);
-}
-
 sub countryStats {
     if (exists $cache{countryStats}) {
        &msg($who,"countrystats is already running!");
@@ -501,9 +396,9 @@ sub do_countrystats {
        push(@list, "$str ($_, $perc %)");
     }
 
-    # TODO: move this into a scheduler like nickometer
+    # TODO: move this into a scheduler
     $msgType   = "private";
-    &pSReply( &formListReply(0, "Country Stats ", @list) );
+    &performStrictReply( &formListReply(0, "Country Stats ", @list) );
 
     delete $cache{countryStats};
     delete $cache{on_who_Hack};
@@ -517,7 +412,7 @@ sub userCommands {
     # conversion: ascii.
     if ($message =~ /^(asci*|chr) (\d+)$/) {
        &DEBUG("ascii/chr called ...");
-       return unless (&hasParam("allowConv"));
+       return unless (&IsChanConfOrWarn("allowConv"));
 
        &DEBUG("ascii/chr called");
 
@@ -532,7 +427,7 @@ sub userCommands {
 
     # conversion: ord.
     if ($message =~ /^ord(\s+(.*))$/) {
-       return unless (&hasParam("allowConv"));
+       return unless (&IsChanConfOrWarn("allowConv"));
 
        $arg = $2;
 
@@ -556,7 +451,7 @@ sub userCommands {
 
     # hex.
     if ($message =~ /^hex(\s+(.*))?$/i) {
-       return unless (&hasParam("allowConv"));
+       return unless (&IsChanConfOrWarn("allowConv"));
        my $arg = $2;
 
        if (!defined $arg) {
@@ -574,7 +469,7 @@ sub userCommands {
            $retval .= sprintf(" %X", ord($_));
        }
 
-       &pSReply("$arg is$retval");
+       &performStrictReply("$arg is$retval");
 
        return;
     }
@@ -589,14 +484,15 @@ sub userCommands {
        }
 
        if (scalar @args == 2) {
-           if (length $args[0] != 2) {
-               &msg($who, "invalid format...");
-               return;
-           }
+# disable cause $1$ will use md5
+#          if (length $args[0] != 2) {
+#              &msg($who, "invalid format...");
+#              return;
+#          }
 
-           &pSReply( crypt($args[1], $args[0]) );
+           &performStrictReply( crypt($args[1], $args[0]) );
        } else {
-           &pSReply( &mkcrypt($args[0]) );
+           &performStrictReply( &mkcrypt($args[0]) );
        }
 
        return;
@@ -636,9 +532,9 @@ sub userCommands {
        return unless (&hasFlag("n"));
 
        &status("USER reload $who");
-       &pSReply("reloading...");
+       &performStrictReply("reloading...");
        my $modules = &reloadAllModules();
-       &pSReply("reloaded:$modules");
+       &performStrictReply("reloaded:$modules");
        return;
     }
 
@@ -704,7 +600,7 @@ sub userCommands {
        }
 
        $reply =~ y/A-Za-z/N-ZA-Mn-za-m/;
-       &pSReply($reply);
+       &performStrictReply($reply);
 
        return;
     }
@@ -750,7 +646,7 @@ sub userCommands {
        }
        $ratio  = sprintf("%.01f", 100*$perc/($perc+$perc2) );
 
-       &pSReply("Total CPU usage: \002$cpu_usage\002 s ... ".
+       &performStrictReply("Total CPU usage: \002$cpu_usage\002 s ... ".
                "Total used: \002$total\002 % ".
                "(parent/child ratio: $ratio %)"
        );
@@ -801,7 +697,7 @@ sub userCommands {
            $reply .= ".  I was last disconnected for '$reason'.";
        }
 
-       &pSReply($reply);
+       &performStrictReply($reply);
 
        return;
     }
@@ -822,7 +718,7 @@ sub userCommands {
            $count{'Commands'} += $cmdstats{$_};
        }
 
-       &pSReply(
+       &performStrictReply(
        "Since $startString, there have been".
          " \002$count{'Update'}\002 ".
                &fixPlural("modification", $count{'Update'}).