]> git.donarmstrong.com Git - infobot.git/blobdiff - src/UserExtra.pl
reload users and channels too
[infobot.git] / src / UserExtra.pl
index 30df109f4d516f68af8602e1401a2988982d88de..5215bb0942735bee10458069e6daf94cd87ff08b 100644 (file)
 #
 # UserExtra.pl: User Commands, Public.
 #       Author: dms
-#      Version: v0.2b (20000707)
-#      Created: 20000107
 #
 
-if (&IsParam("useStrict")) { use strict; }
+use strict;
+use vars qw($message $arg $qWord $verb $lobotomized $who $result $chan
+  $conn $msgType $query $talkchannel $ident $memusage);
+use vars qw(%channels %chanstats %cmdstats %count %forked %ircstats %param
+  %cache %mask %userstats);
+
+### hooks get added in CommandHooks.pl.
+
+###
+### Start of commands for hooks.
+###
+
+sub chaninfo {
+    my $chan = lc shift(@_);
+    my $mode;
+
+    if ( $chan eq '' ) {    # all channels.
+        my $i = keys %channels;
+        my $reply = "I'm on \002$i\002 " . &fixPlural( 'channel', $i );
+        my $tucount = 0;    # total user count.
+        my $uucount = 0;    # unique user count.
+        my %chans;
+        my @array;
+
+        ### line 1.
+        foreach ( keys %channels ) {
+            if ( /^\s*$/ or / / ) {
+                &status('chanstats: fe channels: chan == NULL.');
+
+                #&ircCheck();
+                next;
+            }
+            next if (/^_default$/);
+
+            $chans{$_} = scalar( keys %{ $channels{$_}{''} } );
+        }
+        foreach $chan ( sort { $chans{$b} <=> $chans{$a} } keys %chans ) {
+            push( @array, "$chan/" . $chans{$chan} );
+        }
+        &performStrictReply( $reply . ': ' . join( ', ', @array ) );
 
-use vars qw($message $arg $qWord $verb $lobotomized);
-use vars qw(%channels %chanstats %cmdstats);
+        ### total user count.
+        foreach $chan ( keys %channels ) {
+            $tucount += scalar( keys %{ $channels{$chan}{''} } );
+        }
 
-sub userCommands {
-    return '' unless ($addressed);
-
-    # chaninfo. xk++.
-    if ($message =~ /^chan(stats|info)(\s+(\S+))?$/i) {
-       my $chan = lc $3;
-       my $mode;
-
-       if ($chan eq "") {              # all channels.
-           my $count = 0;
-           my $i = keys %channels;
-
-           &performStrictReply(
-               "i am on \002$i\002 ". &fixPlural("channel",$i).
-               ": ". join(' ', sort keys %channels)
-           );
-
-           foreach $chan (keys %channels) {
-               # crappy debugging...
-               if ($chan =~ / /) {
-                   &ERROR("bad channel: chan => '$chan'.");
-               }
-               $count += scalar(keys %{$channels{$chan}{''}});
-           }
-           &performStrictReply(
-               "i've cached \002$count\002 ".&fixPlural("user",$count).
-               " distributed over \002".scalar(keys %channels)."\002 ".
-               &fixPlural("channel",scalar(keys %channels))."."
-           );
-
-           return 'NOREPLY';
-       }
-
-       # channel specific.
-
-       if (&validChan($chan) == 0) {
-           &msg($who,"error: invalid channel \002$chan\002");
-           return 'NOREPLY';
-       }
-
-       # Step 1:
-       my @array;
-       foreach (sort keys %{$chanstats{$chan}}) {
-           my $int = $chanstats{$chan}{$_};
-           next unless ($int);
-
-           push(@array, "\002$int\002 ". &fixPlural($_,$int));
-       }
-       my $reply = "On \002$chan\002, there ".
-               &fixPlural("has",scalar(@array)). " been ".
-               &IJoin(@array);
-
-       # Step 1b: check channel inconstencies.
-       $chanstats{$chan}{'Join'}       ||= 0;
-       $chanstats{$chan}{'SignOff'}    ||= 0;
-       $chanstats{$chan}{'Part'}       ||= 0;
-
-       my $delta_stats = $chanstats{$chan}{'Join'}
-               - $chanstats{$chan}{'SignOff'}
-               - $chanstats{$chan}{'Part'};
-
-       if ($delta_stats) {
-           my $total = scalar(keys %{$channels{$chan}{''}});
-           &status("chaninfo: join ~= signoff + part (drift of $delta_stats < $total).");
-
-           if ($delta_stats > $total) {
-               &ERROR("chaninfo: delta_stats exceeds total users.");
-           }
-       }
-
-       # Step 2:
-       undef @array;
-       my $type;
-       foreach ("v","o","") {
-           my $int = scalar(keys %{$channels{$chan}{$_}});
-           next unless ($int);
-
-           $type = "Voice" if ($_ eq "v");
-           $type = "Opped" if ($_ eq "o");
-           $type = "Total" if ($_ eq "");
-
-           push(@array,"\002$int\002 $type");
-       }
-       $reply .= ".  At the moment, ". &IJoin(@array);
-
-       # Step 3:
-       ### TODO: what's wrong with the following?
-       my %new = map { $userstats{$_}{'Count'} => $_ } keys %userstats;
-       my($count) = (sort { $b <=> $a } keys %new)[0];
-       if ($count) {
-           $reply .= ".  \002$new{$count}\002 has said the most with a total of \002$count\002 messages";
-       }
-       &performStrictReply("$reply.");
-
-       return 'NOREPLY';
-    }
-
-    # Command statistics.
-    if ($message =~ /^cmdstats$/i) {
-       my @array;
-
-       if (!scalar(keys %cmdstats)) {
-           &performReply("no-one has run any commands yet");
-           return 'NOREPLY';
-       }
-
-       my %countstats;
-       foreach (keys %cmdstats) {
-           $countstats{$cmdstats{$_}}{$_} = 1;
-       }
-
-       foreach (sort {$b <=> $a} keys %countstats) {
-           my $int = $_;
-           next unless ($int);
-
-           foreach (keys %{$countstats{$int}}) {
-               push(@array, "\002$int\002 of $_");
-           }
-       }
-       &performStrictReply("command usage include ". &IJoin(@array).".");
-
-       return 'NOREPLY';
+        ### unique user count.
+        my %nicks = ();
+        foreach $chan ( keys %channels ) {
+            my $nick;
+            foreach $nick ( keys %{ $channels{$chan}{''} } ) {
+                $nicks{$nick}++;
+            }
+        }
+        $uucount = scalar( keys %nicks );
+
+        my $chans = scalar( keys %channels );
+        &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;
     }
 
-    # conversion: ascii.
-    if ($message =~ /^(asci*|chr) (\d+)$/) {
-       return '' unless (&IsParam("allowConv"));
+    # channel specific.
+
+    if ( &validChan($chan) == 0 ) {
+        &msg( $who, "error: invalid channel \002$chan\002" );
+        return;
+    }
 
-       $arg = $2;
-       if ($arg < 32) {
-           $arg += 64;
-           $result = "^".chr($arg);
-       } else {
-           $result = chr($2);
-       }
-       $result = "NULL"        if ($arg == 0);
+    # Step 1:
+    my @array;
+    foreach ( sort keys %{ $chanstats{$chan} } ) {
+        my $int = $chanstats{$chan}{$_};
+        next unless ($int);
 
-       &performReply( sprintf("ascii %s is '%s'", $arg, $result) );
-       return 'NOREPLY';
+        push( @array, "\002$int\002 " . &fixPlural( $_, $int ) );
+    }
+    my $reply =
+        "On \002$chan\002, there "
+      . &fixPlural( 'has', scalar(@array) )
+      . ' been '
+      . &IJoin(@array);
+
+    # Step 1b: check channel inconstencies.
+    $chanstats{$chan}{'Join'}    ||= 0;
+    $chanstats{$chan}{'SignOff'} ||= 0;
+    $chanstats{$chan}{'Part'}    ||= 0;
+
+    my $delta_stats = $chanstats{$chan}{'Join'} - $chanstats{$chan}{'SignOff'} -
+      $chanstats{$chan}{'Part'};
+
+    if ($delta_stats) {
+        my $total = scalar( keys %{ $channels{$chan}{''} } );
+        &status(
+            "chaninfo: join ~= signoff + part (drift of $delta_stats < $total)."
+        );
+
+        if ( $delta_stats > $total ) {
+            &ERROR('chaninfo: delta_stats exceeds total users.');
+        }
     }
 
-    # conversion: ord.
-    if ($message =~ /^ord (.)$/) {
-       return '' unless (&IsParam("allowConv"));
+    # Step 2:
+    undef @array;
+    my $type;
+    foreach ( 'v', 'o', '' ) {
+        my $int = scalar( keys %{ $channels{$chan}{$_} } );
+        next unless ($int);
 
-       $arg = $1;
-       if (ord($arg) < 32) {
-           $arg = chr(ord($arg) + 64);
-           if ($arg eq chr(64)) {
-               $arg = 'NULL';
-           } else {
-               $arg = '^'.$arg;
-           }
-       }
+        $type = 'Voice' if ( $_ eq 'v' );
+        $type = 'Opped' if ( $_ eq 'o' );
+        $type = 'Total' if ( $_ eq '' );
 
-       &performReply( sprintf("'%s' is ascii %s", $arg, ord $1) );
-       return 'NOREPLY';
+        push( @array, "\002$int\002 $type" );
     }
+    $reply .= '.  At the moment, ' . &IJoin(@array);
+
+    # Step 3:
+    my %new;
+    foreach ( keys %userstats ) {
+        next unless ( exists $userstats{$_}{'Count'} );
+        if ( $userstats{$_}{'Count'} =~ /^\D+$/ ) {
+            &WARN("userstats{$_}{Count} is non-digit.");
+            next;
+        }
 
-    # hex.
-    if ($message =~ /^hex(\s+(.*))?$/i) {
-       my $arg = $2;
+        $new{$_} = $userstats{$_}{'Count'};
+    }
 
-       if (!defined $arg) {
-           &help("hex");
-           return 'NOREPLY';
-       }
+    # TODO: show top 3 with percentages?
+    my ($count) = ( sort { $new{$b} <=> $new{$a} } keys %new )[0];
+    if ($count) {
+        $reply .=
+".  \002$count\002 has said the most with a total of \002$new{$count}\002 messages";
+    }
+    &performStrictReply("$reply.");
+}
+
+# Command statistics.
+sub cmdstats {
+    my @array;
 
-       if (length $arg > 80) {
-           &msg($who, "Too long.");
-           return 'NOREPLY';
-       }
+    if ( !scalar( keys %cmdstats ) ) {
+        &performReply('no-one has run any commands yet');
+        return;
+    }
 
-       my $retval;
-       foreach (split //, $arg) {
-           $retval .= sprintf(" %X", ord($_));
-       }
+    my %countstats;
+    foreach ( keys %cmdstats ) {
+        $countstats{ $cmdstats{$_} }{$_} = 1;
+    }
 
-       &performStrictReply("$arg is$retval");
+    foreach ( sort { $b <=> $a } keys %countstats ) {
+        my $int = $_;
+        next unless ($int);
 
-       return 'NOREPLY';
+        foreach ( keys %{ $countstats{$int} } ) {
+            push( @array, "\002$int\002 of $_" );
+        }
     }
+    &performStrictReply( 'command usage includes ' . &IJoin(@array) . '.' );
+}
 
-    # crypt.
-    if ($message =~ /^crypt\s+(\S+)\s*(?:,| )\s*(\S+)/) {
-       # word salt.
-       &performStrictReply(crypt($1, $2));
-       return 'NOREPLY';
+# Command statistics.
+sub conninfo {
+    my $reply = 'conninfo:';
+    my $key;
+    foreach $key ( sort keys %::conns ) {
+        my $myconn = $::conns{$key};
+       $reply .= " $key/";
+       next if (!defined $myconn);
+        my $mynick = $myconn->nick();
+       $reply .= "$mynick";
     }
+    &performStrictReply( "conninfo: $reply.");
+}
+
+# Factoid extension info. xk++
+sub factinfo {
+    my $faqtoid = lc shift(@_);
+    my $query   = '';
+
+    if ( $faqtoid =~ /^\-(\S+)(\s+(.*))$/ ) {
+        &msg( $who,
+            'error: individual factoid info queries not supported as yet.' );
+        &msg( $who,
+            "it's possible that the factoid mistakenly begins with '-'." );
+        return;
+
+        $query   = lc $1;
+        $faqtoid = lc $3;
+    }
+
+    &CmdFactInfo( $faqtoid, $query );
+}
 
-    # Factoid extension info. xk++
-    if ($message =~ /^(factinfo)(\s+(.*))?$/i) {
-       my $query   = "";
-       my $faqtoid = lc $3;
+sub factstats {
+    my $type = shift(@_);
 
-       if ($faqtoid =~ /^\-(\S+)(\s+(.*))$/) {
-           &msg($who,"error: individual factoid info queries not supported as yet.");
-           &msg($who,"it's possible that the factoid mistakenly begins with '-'.");
-           return 'NOREPLY';
+    &Forker(
+        'Factoids',
+        sub {
+            &performStrictReply( &CmdFactStats($type) );
+        }
+    );
+}
 
-           $query   = lc $1;
-           $faqtoid = lc $3;
-       }
+sub karma {
+    my $target = lc( shift || $who );
+    my $karma =
+      &sqlSelect( 'stats', 'counter', { nick => $target, type => 'karma' } )
+      || 0;
 
-       &loadMyModule($myModules{'factoids'});
-       &CmdFactInfo($faqtoid, $query);
-       
-       $cmdstats{'Factoid Info'}++;
-       return 'NOREPLY';
+    if ( $karma != 0 ) {
+        &performStrictReply("$target has karma of $karma");
     }
+    else {
+        &performStrictReply("$target has neutral karma");
+    }
+}
 
-    # Factoid extension statistics. xk++
-    if ($message =~ /^(factstats?)(\s+(\S+))?$/i) {
-       my $type        = $3;
+sub tell {
+    my $args = shift;
+    my ( $target, $tell_obj ) = ( '', '' );
+    my $dont_tell_me = 0;
+    my $reply;
 
-       if (!defined $type) {
-           &help("factstats");
-           return 'NOREPLY';
-       }
+    ### is this fixed elsewhere?
+    $args =~ s/\s+/ /g;         # fix up spaces.
+    $args =~ s/^\s+|\s+$//g;    # again.
 
-       &Forker("factoids", sub {
-               &performStrictReply( &CmdFactStats($type) );
-       } );
-       $cmdstats{'Factoid Statistics'}++;
-       return 'NOREPLY';
-    }
+    # this one catches most of them
+    if ( $args =~ /^(\S+) (-?)about (.*)$/i ) {
+        $target       = $1;
+        $tell_obj     = $3;
+        $dont_tell_me = ($2) ? 1 : 0;
 
-    # help.
-    if ($message =~ /^help(\s+(.*))?$/i) {
-       $cmdstats{'Help'}++;
-
-       &help($2);
-
-       return 'NOREPLY';
-    }
-
-    # karma.
-    if ($message =~ /^karma(\s+(\S+))?\??$/i) {
-       return '' unless (&IsParam("karma"));
-
-       my $target = lc $2 || lc $who;
+        $tell_obj = $who if ( $tell_obj =~ /^(me|myself)$/i );
+        $query = $tell_obj;
+    }
+    elsif ( $args =~ /^(\S+) where (\S+) can (\S+) (.*)$/i ) {
+
+        # i'm sure this could all be nicely collapsed
+        $target   = $1;
+        $tell_obj = $4;
+        $query    = $tell_obj;
 
-       my $karma = &dbGet("karma", "nick",$target,"karma") || 0;
-       if ($karma != 0) {
-           &performStrictReply("$target has karma of $karma");
-       } else {
-           &performStrictReply("$target has neutral karma");
-       }
-
-       return 'NOREPLY';
     }
+    elsif ( $args =~ /^(\S+) (what|where) (.*?) (is|are)[.?!]*$/i ) {
+        $target   = $1;
+        $qWord    = $2;
+        $tell_obj = $3;
+        $verb     = $4;
+        $query    = "$qWord $verb $tell_obj";
 
-    # ignorelist.
-    if ($message =~ /^ignorelist$/i) {
-       &status("$who asked for the ignore list");
-
-       my $time = time();
-       my $count = scalar(keys %ignoreList);
-       my $counter = 0;
-       my @array;
-
-       if ($count == 0) {
-           &performStrictReply("no one in the ignore list!!!");
-           return 'NOREPLY';
-       }
+    }
+    elsif ( $args =~ /^(.*?) to (\S+)$/i ) {
+        $target   = $3;
+        $tell_obj = $2;
+        $query    = $tell_obj;
+    }
 
-       foreach (sort keys %ignoreList) {
-           my $str;
+    # check target type. Deny channel targets.
+    if ( $target !~ /^$mask{nick}$/ or $target =~ /^$mask{chan}$/ ) {
+        &msg( $who, "No, $who, I won't. (target invalid?)" );
+        return;
+    }
+
+    $target = $talkchannel if ( $target =~ /^us$/i );
+    $target = $who         if ( $target =~ /^(me|myself)$/i );
+
+    &status("tell: target = $target, query = $query");
+
+    # 'intrusive'.
+    #    if ($target !~ /^$mask{chan}$/ and !&IsNickInAnyChan($target)) {
+    #  &msg($who, "No, $target is not in any of my chans.");
+    #  return;
+    #    }
+
+    # self.
+    if ( $target =~ /^\Q$ident\E$/i ) {
+        &msg( $who, "Isn't that a bit silly?" );
+        return;
+    }
+
+    my $oldwho   = $who;
+    my $oldmtype = $msgType;
+    $who = $target;
+    my $result = &doQuestion($tell_obj);
+
+    # ^ returns '0' if nothing was found.
+    $who = $oldwho;
+
+    # no such factoid.
+    if ( !defined $result || $result =~ /^0?$/ ) {
+        $who     = $target;
+        $msgType = 'private';
+
+        # support command redirection.
+        # recursive cmdHooks aswell :)
+        my $done = 0;
+        $done++ if &parseCmdHook($tell_obj);
+        $message = $tell_obj;
+        $done++ unless ( &Modules() );
+
+        &VERB( 'tell: setting old values of who and msgType.', 2 );
+        $who     = $oldwho;
+        $msgType = $oldmtype;
+
+        if ($done) {
+            &msg( $who, "told $target about CMD '$tell_obj'" );
+        }
+        else {
+            &msg( $who, "i dunno what is '$tell_obj'." );
+        }
+
+        return;
+    }
+
+    # success.
+    &status("tell: <$who> telling $target about $tell_obj.");
+    if ( $who ne $target ) {
+        if ($dont_tell_me) {
+            &msg( $who, "told $target about $tell_obj." );
+        }
+        else {
+            &msg( $who, "told $target about $tell_obj ($result)" );
+        }
 
-           if ($ignoreList{$_} != 1) { # temporary ignore.
-               my $expire = $ignoreList{$_} - $time;
-               if (defined $expire and $expire < 0) {
-                   &status("ignorelist: deleting $_.");
-                   delete $ignoreList{$_};
-               } else {
-                   $str = "$_ (". &Time2String($expire) .")";
-               }
-           } else {
-               $str = $_;
-           }
+        $reply = "$who wants you to know: $result";
+    }
+    else {
+        $reply = "telling yourself: $result";
+    }
 
-           push(@array,$str);
-           $counter++;
-           if (scalar @array >= 8 or $counter == $count) {
-               &msg($who, &formListReply(0, "Ignore list ", @array) );
-               @array = ();
-           }
-       }
+    &msg( $target, $reply );
+}
 
-       return 'NOREPLY';
+sub countryStats {
+    if ( exists $cache{countryStats} ) {
+        &msg( $who, 'countrystats is already running!' );
+        return;
     }
 
-    # ispell.
-    if ($message =~ /^spell(\s+(.*))?$/) {
-       return '' unless (&IsParam("spell"));
-       my $query = $2;
+    if ( $chan eq '' ) {
+        $chan = $_[0];
+    }
 
-       if ($query eq "") {
-           &help("spell");
-           return 'NOREPLY';
-       }
+    if ( $chan eq '' ) {
+        &help('countrystats');
+        return;
+    }
 
-       if (! -x "/usr/bin/spell") {
-           &msg($who, "no binary found.");
-           return 'NOREPLY';
-       }
+    $conn->who($chan);
+    $cache{countryStats}{chan}  = $chan;
+    $cache{countryStats}{mtype} = $msgType;
+    $cache{countryStats}{who}   = $who;
+    $cache{on_who_Hack}         = 1;
+}
 
-       if (!&validExec($query)) {
-           &msg($who,"argument appears to be fuzzy.");
-           return 'NOREPLY';
-       }
+sub do_countrystats {
+    $chan    = $cache{countryStats}{chan};
+    $msgType = $cache{countryStats}{mtype};
+    $who     = $cache{countryStats}{who};
 
-       my $reply = "I can't find alternate spellings for '$query'";
+    my $total = 0;
+    my %cstats;
+    foreach ( keys %{ $cache{nuhInfo} } ) {
+        my $h = $cache{nuhInfo}{$_}{Host};
 
-       foreach (`echo '$query' | ispell -a -S`) {
-           chop;
-           last if !length;            # end of query.
+        if ( $h =~ /^.*\.(\D+)$/ ) {    # host
+            $cstats{$1}++;
+        }
+        else {                          # ip
+            $cstats{unresolve}++;
+        }
+        $total++;
+    }
+    my %count;
+    foreach ( keys %cstats ) {
+        $count{ $cstats{$_} }{$_} = 1;
+    }
 
-           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(/,? /);
+    my @list;
+    foreach ( sort { $b <=> $a } keys %count ) {
+        my $str = join( ', ', sort keys %{ $count{$_} } );
 
-               $reply = "possible spellings for $query: @array";
-               last;
-           } elsif (/^\+/) {
-               &DEBUG("spell: '+' found => '$_'.");
-               last;
-           } else {
-               &DEBUG("spell: unknown: '$_'.");
-           }
-       }
-
-       &performStrictReply($reply);
-
-       return 'NOREPLY';
-    }
-
-    # nslookup.
-    if ($message =~ /^(dns|nslookup)(\s+(\S+))?$/i) {
-       return '' unless (&IsParam("allowDNS"));
-
-       if ($3 eq "") {
-           &help("nslookup");
-           return 'NOREPLY';
-       }
-
-       &status("DNS Lookup: $3");
-       &loadMyModule($myModules{'allowDNS'});
-       &DNS($3);
-       return 'NOREPLY';
+        #      push(@list, "$str ($_)");
+        my $perc = sprintf( '%.01f', 100 * $_ / $total );
+        $perc =~ s/\.0+$//;
+        push( @list, "$str ($_, $perc %)" );
+    }
+
+    # TODO: move this into a scheduler
+    $msgType = 'private';
+    &performStrictReply( &formListReply( 0, 'Country Stats ', @list ) );
+
+    delete $cache{countryStats};
+    delete $cache{on_who_Hack};
+}
+
+###
+### amalgamated commands.
+###
+
+sub userCommands {
+
+    # conversion: ascii.
+    if ( $message =~ /^(asci*|chr) (\d+)$/ ) {
+        &DEBUG('ascii/chr called ...');
+        return unless ( &IsChanConfOrWarn('allowConv') );
+
+        &DEBUG('ascii/chr called');
+
+        $arg    = $2;
+        $result = chr($arg);
+        $result = 'NULL' if ( $arg == 0 );
+
+        &performReply( sprintf( "ascii %s is '%s'", $arg, $result ) );
+
+        return;
+    }
+
+    # conversion: ord.
+    if ( $message =~ /^ord(\s+(.*))$/ ) {
+        return unless ( &IsChanConfOrWarn('allowConv') );
+
+        $arg = $2;
+
+        if ( !defined $arg or length $arg != 1 ) {
+            &help('ord');
+            return;
+        }
+
+        if ( ord($arg) < 32 ) {
+            $arg = chr( ord($arg) + 64 );
+            if ( $arg eq chr(64) ) {
+                $arg = 'NULL';
+            }
+            else {
+                $arg = '^' . $arg;
+            }
+        }
+
+        &performReply( sprintf( "'%s' is ascii %s", $arg, ord $arg ) );
+        return;
+    }
+
+    # hex.
+    if ( $message =~ /^hex(\s+(.*))?$/i ) {
+        return unless ( &IsChanConfOrWarn('allowConv') );
+        my $arg = $2;
+
+        if ( !defined $arg ) {
+            &help('hex');
+            return;
+        }
+
+        if ( length $arg > 80 ) {
+            &msg( $who, 'Too long.' );
+            return;
+        }
+
+        my $retval;
+        foreach ( split //, $arg ) {
+            $retval .= sprintf( ' %X', ord($_) );
+        }
+
+        &performStrictReply("$arg is$retval");
+
+        return;
+    }
+
+    # crypt.
+    if ( $message =~ /^crypt\s+(\S*)?\s*(.*)?$/i ) {
+        &status("crypt: $1:$2:$3");
+        if ( "$2" ne '' ) {
+            &performStrictReply( crypt( $2, $1 ) );
+        }
+        else {
+            &performStrictReply( &mkcrypt($1) );
+        }
+        return;
     }
 
     # cycle.
-    if ($message =~ /^(cycle)(\s+(\S+))?$/i) {
-       return 'NOREPLY' unless (&hasFlag("o"));
-       my $chan = lc $3;
+    if ( $message =~ /^(cycle)(\s+(\S+))?$/i ) {
+        return unless ( &hasFlag('o') );
+        my $chan = lc $3;
+
+        if ( $chan eq '' ) {
+            if ( $msgType =~ /public/ ) {
+                $chan = $talkchannel;
+                &DEBUG("cycle: setting chan to '$chan'.");
+            }
+            else {
+                &help('cycle');
+                return;
+            }
+        }
 
-       if ($chan eq "") {
-           if ($msgType =~ /public/) {
-               $chan = $talkchannel;
-               &DEBUG("cycle: setting chan to '$chan'.");
-           } else {
-               &help("cycle");
-               return 'NOREPLY';
-           }
-       }
+        if ( &validChan($chan) == 0 ) {
+            &msg( $who, "error: invalid channel \002$chan\002" );
+            return;
+        }
 
-       if (&validChan($chan) == 0) {
-           &msg($who,"error: invalid channel \002$chan\002");
-           return 'NOREPLY';
-       }
+        &msg( $chan, "I'm coming back. (courtesy of $who)" );
+        &part($chan);
+###    &ScheduleThis(5, 'getNickInUse') if (@_);
+        &status("Schedule rejoin in 5secs to $chan by $who.");
+        $conn->schedule( 5, sub { &joinchan($chan); } );
 
-       &msg($chan, "I'm coming back. (courtesy of $who)");
-       &part($chan);
-       sleep 3;
-       &joinchan($chan);
+        return;
+    }
 
-       return 'NOREPLY';
+    # reload.
+    if ( $message =~ /^reload$/i ) {
+        return unless ( &hasFlag('n') );
+
+        &status("USER reload $who");
+        &performStrictReply('reloading...');
+        &readUserFile();
+        &readChanFile();
+        my $modules = &reloadAllModules();
+        &performStrictReply("reloaded:$modules");
+        return;
     }
 
     # redir.
-    if ($message =~ /^redir(\s+(.*))?/i) {
-       return 'NOREPLY' unless (&hasFlag("o"));
-       my $factoid = $2;
-
-       if (!defined $factoid) {
-           &help("redir");
-           return 'NOREPLY';
-       }
-
-       my $val  = &getFactInfo($factoid, "factoid_value");
-       if (!defined $val or $val eq "") {
-           &msg($who, "error: '$factoid' does not exist.");
-           return 'NOREPLY';
-       }
-       &DEBUG("val => '$val'.");
-       my @list = &searchTable("factoids", "factoid_key",
-                                       "factoid_value", "^$val\$");
-
-       if (scalar @list == 1) {
-           &msg($who, "hrm... '$factoid' is unique.");
-           return 'NOREPLY';
-       }
-       if (scalar @list > 5) {
-           &msg($who, "A bit too many factoids to be redirected, hey?");
-           return 'NOREPLY';
-       }
-
-       my @redir;
-       &status("Redirect '$factoid' (". ($#list) .")...");
-       for (@list) {
-           next if (/^\Q$factoid\E$/i);
-
-           &status("  Redirecting '$_'.");
-           my $was = &getFactoid($_);
-           &DEBUG("  was '$was'.");
-           push(@redir,$_);
-           &setFactInfo($_, "factoid_value", "<REPLY> see $factoid");
-       }
-       &status("Done.");
-
-       &msg($who, &formListReply(0, "'$factoid' is redirected to by '", @redir));
-
-       return 'NOREPLY';
+    if ( $message =~ /^redir(\s+(.*))?/i ) {
+        return unless ( &hasFlag('o') );
+        my $factoid = $2;
+
+        if ( !defined $factoid ) {
+            &help('redir');
+            return;
+        }
+
+        my $val = &getFactInfo( $factoid, 'factoid_value' );
+        if ( !defined $val or $val eq '' ) {
+            &msg( $who, "error: '$factoid' does not exist." );
+            return;
+        }
+        &DEBUG("val => '$val'.");
+        my @list =
+          &searchTable( 'factoids', 'factoid_key', 'factoid_value', "^$val\$" );
+
+        if ( scalar @list == 1 ) {
+            &msg( $who, "hrm... '$factoid' is unique." );
+            return;
+        }
+        if ( scalar @list > 5 ) {
+            &msg( $who, 'A bit too many factoids to be redirected, hey?' );
+            return;
+        }
+
+        my @redir;
+        &status( "Redirect '$factoid' (" . ($#list) . ')...' );
+        for (@list) {
+            my $x = $_;
+            next if (/^\Q$factoid\E$/i);
+
+            &status("  Redirecting '$_'.");
+            my $was = &getFactoid($_);
+            if ( $was =~ /<REPLY> see/i ) {
+                &status('warn: not redirecting a redirection.');
+                next;
+            }
+
+            &DEBUG("  was '$was'.");
+            push( @redir, $x );
+            &setFactInfo( $x, 'factoid_value', "<REPLY> see $factoid" );
+        }
+        &status('Done.');
+
+        &msg( $who,
+            &formListReply( 0, "'$factoid' is redirected to by '", @redir ) );
+
+        return;
     }
 
     # rot13 it.
-    if ($message =~ /^rot13(\s+(.*))?/i) {
-       my $reply = $2;
+    if ( $message =~ /^rot([0-9]*)(\s+(.*))?/i ) {
+        my $reply = $3;
 
-       if ($reply eq "") {
-           &help("rot13");
-           return 'NOREPLY';
-       }
+        if ( !defined $reply ) {
+            &help('rot13');
+            return;
+        }
+        my $num   = $1 % 26;
+        my $upper = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
+        my $lower = 'abcdefghijklmnopqrstuvwxyz';
+        my $to =
+            substr( $upper, $num )
+          . substr( $upper, 0, $num )
+          . substr( $lower, $num )
+          . substr( $lower, 0, $num );
+        eval "\$reply =~ tr/$upper$lower/$to/;";
+
+        #$reply =~ y/A-Za-z/N-ZA-Mn-za-m/;
+        &performStrictReply($reply);
+
+        return;
+    }
 
-       $reply =~ y/A-Za-z/N-ZA-Mn-za-m/;
-       &performStrictReply($reply);
+    # cpustats.
+    if ( $message =~ /^cpustats$/i ) {
+        if ( $^O !~ /linux/ ) {
+            &ERROR('cpustats: your OS is not supported yet.');
+            return;
+        }
 
-       return 'NOREPLY';
+        ### poor method to get info out of file, please fix.
+        open( STAT, "/proc/$$/stat" );
+        my $line = <STAT>;
+        chop $line;
+        my @data = split( / /, $line );
+        close STAT;
+
+        # utime(13) + stime(14).
+        my $cpu_usage = sprintf( '%.01f', ( $data[13] + $data[14] ) / 100 );
+
+        # cutime(15) + cstime (16).
+        my $cpu_usage2 = sprintf( '%.01f', ( $data[15] + $data[16] ) / 100 );
+        my $time       = time() - $^T;
+        my $raw_perc   = $cpu_usage * 100 / $time;
+        my $raw_perc2  = $cpu_usage2 * 100 / $time;
+        my $perc;
+        my $perc2;
+        my $total;
+        my $ratio;
+
+        if ( $raw_perc > 1 ) {
+            $perc  = sprintf( '%.01f', $raw_perc );
+            $perc2 = sprintf( '%.01f', $raw_perc2 );
+            $total = sprintf( '%.01f', $raw_perc + $raw_perc2 );
+        }
+        elsif ( $raw_perc > 0.1 ) {
+            $perc  = sprintf( '%.02f', $raw_perc );
+            $perc2 = sprintf( '%.02f', $raw_perc2 );
+            $total = sprintf( '%.02f', $raw_perc + $raw_perc2 );
+        }
+        else {    # <=0.1
+            $perc  = sprintf( '%.03f', $raw_perc );
+            $perc2 = sprintf( '%.03f', $raw_perc2 );
+            $total = sprintf( '%.03f', $raw_perc + $raw_perc2 );
+        }
+        $ratio = sprintf( '%.01f', 100 * $perc / ( $perc + $perc2 ) );
+
+        &performStrictReply( "Total CPU usage: \002$cpu_usage\002 s ... "
+              . "Total used: \002$total\002 % "
+              . "(parent/child ratio: $ratio %)" );
+
+        return;
     }
 
     # ircstats.
-    if ($message =~ /^ircstats$/i) {
-       my $count       = $ircstats{'ConnectCount'};
-       my $format_time = &Time2String(time() - $ircstats{'ConnectTime'});
-       my $reply;
-
-       ### RECONNECT COUNT.
-       if ($count == 1) {      # good.
-           $reply = "I'm connected to $ircstats{'Server'} and have been so".
-               " for $format_time";
-       } else {
-           $reply = "Currently I'm hooked up to $ircstats{'Server'} but only".
-               " for $format_time.  ".
-               "I had to reconnect \002$count\002 times.";
-       }
-
-       ### REASON.
-       my $reason = $ircstats{'DisconnectReason'};
-       if (defined $reason) {
-           $reply .= "  I was last disconnected for '$reason'.";
-       }
-
-       &performStrictReply($reply);
-               
-       return 'NOREPLY';
+    if ( $message =~ /^ircstats?$/i ) {
+        $ircstats{'TotalTime'} ||= 0;
+        $ircstats{'OffTime'}   ||= 0;
+
+        my $count       = $ircstats{'ConnectCount'};
+        my $format_time = &Time2String( time() - $ircstats{'ConnectTime'} );
+        my $total_time =
+          time() - $ircstats{'ConnectTime'} + $ircstats{'TotalTime'};
+        my $reply;
+
+        my $connectivity =
+          100 * ( $total_time - $ircstats{'OffTime'} ) / $total_time;
+        my $p = sprintf( '%.03f', $connectivity );
+        $p =~ s/(\.\d*)0+$/$1/;
+        if ( $p =~ s/\.0$// ) {
+
+            # this should not happen... but why...
+        }
+        else {
+            $p =~ s/\.$//;
+        }
+
+        if ( $total_time != ( time() - $ircstats{'ConnectTime'} ) ) {
+            my $tt_format = &Time2String($total_time);
+            &DEBUG("tt_format => $tt_format");
+        }
+
+        ### RECONNECT COUNT.
+        if ( $count == 1 ) {    # good.
+            $reply =
+                "I'm connected to $ircstats{'Server'} and have been so"
+              . " for $format_time";
+        }
+        else {
+            $reply =
+                "Currently I'm hooked up to $ircstats{'Server'} but only"
+              . " for $format_time.  "
+              . "I had to reconnect \002$count\002 times."
+              . "   Connectivity: $p %";
+        }
+
+        ### REASON.
+        my $reason = $ircstats{'DisconnectReason'};
+        if ( defined $reason ) {
+            $reply .= ".  I was last disconnected for '$reason'.";
+        }
+
+        &performStrictReply($reply);
+
+        return;
     }
 
     # status.
-    if ($message =~ /^statu?s$/i) {
-       my $startString = scalar(localtime $^T);
-       my $upString    = &Time2String(time() - $^T);
-       my $count       = &countKeys("factoids");
-
-       &performStrictReply(
-       "Since $startString, there have been".
-         " \002$count{'Update'}\002 ".
-               &fixPlural("modification", $count{'Update'}).
-         " and \002$count{'Question'}\002 ".
-               &fixPlural("question",$count{'Question'}).
-         " and \002$count{'Dunno'}\002 ".
-               &fixPlural("dunno",$count{'Dunno'}).
-         ".  I have been awake for $upString this session, and ".
-         "currently reference \002$count\002 factoids.  ".
-         "I'm using about \002$memusage\002 ".
-         "kB of memory."
-       );
-
-       return 'NOREPLY';
-    }
-
-    # tell.
-    if ($message =~ /^(tell|explain)(\s+(.*))?$/) {
-       return '' unless (&IsParam("allowTelling"));
-
-       my $args = $3;
-       if (!defined $args) {
-           &help("tell");
-           return 'NOREPLY';
-       }
-
-       my ($target, $tell_obj) = ('','');
-       my $reply;
-
-       # this one catches most of them
-       if ($message =~ /^tell\s+(\S+)\s+about\s+(.*)/i) {
-           $target     = lc $1;
-           $tell_obj   = $2;
-
-           # required for privmsg if excessive size.(??)
-           if ($target =~ /^us$/i) {
-               $target = $talkchannel;
-           } elsif ($target =~ /^(me|myself)$/i) {
-               $target = $who;
-           }
-
-           $tell_obj   = $who  if ($tell_obj =~ /^(me|myself)$/i);
-           $query      = $tell_obj;
-        } elsif ($message =~ /tell\s+(\S+)\s+where\s+(\S+)\s+can\s+(\S+)\s+(.*)/i) {
-           # i'm sure this could all be nicely collapsed
-           $target     = lc $1;
-           $tell_obj   = $4;
-           $query      = $tell_obj;
-
-           $target     = ""    if ($target =~ /^us$/i);
-        } elsif ($message =~ /tell\s+(\S+)\s+(what|where)\s+(.*?)\s+(is|are)[.?!]*$/i) {
-           $target     = lc $1;
-           $qWord      = $2;
-           $tell_obj   = $3;
-           $verb       = $4;
-           $query      = "$qWord $verb $tell_obj";
-
-           $target     = ""    if ($target =~ /^us$/i);
-       } elsif ($message =~ /^(explain|tell)\s+(\S+)\s+to\s+(.*)$/i) {
-           $target     = lc $3;
-           $tell_obj   = $2;
-           $query      = $tell_obj;
-           $target     = ""    if ($target =~ /^us$/i);
-        }
-       &status("target: $target query: $query");  
-
-       # check target type. Deny channel targets.
-       if ($target !~ /^$mask{nick}$/ or $target =~ /^$mask{chan}$/) {
-           &msg($who,"No, $who, I won't.");
-           return 'NOREPLY';
-       }
-
-       # "intrusive".
-       if (!&IsNickInAnyChan($target)) {
-           &msg($who, "No, $target is not in any of my chans.");
-           return 'NOREPLY';
-       }
-
-       ### TODO: don't "tell" if sender is not in target's channel.
-
-       # self.
-       if ($target eq $ident) {
-           &msg($who, "Isn't that a bit silly?");
-           return 'NOREPLY';
-       }
-
-       # ...
-       my $result = &doQuestion($tell_obj);
-       return 'NOREPLY' if ($result eq "NOREPLY");
-
-       # no such factoid.
-       if ($result eq "") {
-           &msg($who, "i dunno what is '$tell_obj'.");
-           return 'NOREPLY';
-       }
-
-       # success.
-       &status("tell: <$who> telling $target about $tell_obj.");
-       if ($who ne $target) {
-           &msg($who, "told $target about $tell_obj ($result)");
-           $reply = "$who wants you to know: $result";
-       } else {
-           $reply = "telling yourself: $result";
-       }
-
-       &msg($target, $reply);
-
-       return 'NOREPLY';
+    if ( $message =~ /^statu?s$/i ) {
+        my $startString = scalar( gmtime $^T );
+        my $upString    = &Time2String( time() - $^T );
+        my ( $puser, $psystem, $cuser, $csystem ) = times;
+        my $factoids = &countKeys('factoids');
+        my $forks    = 0;
+        foreach ( keys %forked ) {
+            $forks += scalar keys %{ $forked{$_} };
+        }
+        $forks /= 2;
+        $count{'Commands'} = 0;
+        foreach ( keys %cmdstats ) {
+            $count{'Commands'} += $cmdstats{$_};
+        }
+
+        &performStrictReply( "Since $startString, there have been"
+              . " \002$count{'Update'}\002 "
+              . &fixPlural( 'modification', $count{'Update'} )
+              . ", \002$count{'Question'}\002 "
+              . &fixPlural( 'question', $count{'Question'} )
+              . ", \002$count{'Dunno'}\002 "
+              . &fixPlural( 'dunno', $count{'Dunno'} )
+              . ", \002$count{'Moron'}\002 "
+              . &fixPlural( 'moron', $count{'Moron'} )
+              . " and \002$count{'Commands'}\002 "
+              . &fixPlural( 'command', $count{'Commands'} )
+              . ".  I have been awake for $upString this session, and "
+              . "currently reference \002$factoids\002 factoids.  "
+              . "I'm using about \002$memusage\002 "
+              . "kB of memory. With \002$forks\002 active "
+              . &fixPlural( 'fork', $forks )
+              . ". Process time user/system $puser/$psystem child $cuser/$csystem"
+        );
+
+        return;
     }
 
     # wantNick. xk++
-    if ($message =~ /^wantNick$/i) {
-       if ($param{'ircNick'} eq $ident) {
-           &msg($who, "no need to get my nick back since i have it ;)");
-           return 'NOREPLY';
-       }
+    # FIXME does not try to get nick 'back', just switches nicks
+    if ( $message =~ /^wantNick\s(.*)?$/i ) {
+        return unless ( &hasFlag('o') );
+        my $wantnick = lc $1;
+        my $mynick   = $conn->nick();
+
+        if ( $mynick eq $wantnick ) {
+            &msg( $who,
+"I hope you're right. I'll try anyway (mynick=$mynick, wantnick=$wantnick)."
+            );
+        }
 
-       my $str = "attempting to change nick to $param{'ircNick'}";
-       &status($str);
-       &msg($who, $str);
+        # fallback check, I guess.  needed?
+        if ( !&IsNickInAnyChan($wantnick) ) {
+            my $str = "attempting to change nick from $mynick to $wantnick";
+            &status($str);
+            &msg( $who, $str );
+            &nick($wantnick);
+            return;
+        }
+
+        # idea from dondelecarlo :)
+        # TODO: use cache{nickserv}
+        if ( $param{'nickServ_pass'} ) {
+            my $str = "someone is using nick $wantnick; GHOSTing";
+            &status($str);
+            &msg( $who, $str );
+            &msg( 'NickServ', "GHOST $wantnick $param{'nickServ_pass'}" );
+
+            $conn->schedule(
+                5,
+                sub {
+                    &status(
+"going to change nick from $mynick to $wantnick after GHOST."
+                    );
+                    &nick($wantnick);
+                }
+            );
+
+            return;
+        }
 
-       &nick($param{'ircNick'});
-       return 'NOREPLY';
+        return;
     }
 
-    # what else...
+    return 'CONTINUE';
 }
 
 1;
+
+# vim:ts=4:sw=4:expandtab:tw=80