]> git.donarmstrong.com Git - infobot.git/blobdiff - src/Process.pl
IRC/IrcHooks.pl
[infobot.git] / src / Process.pl
index 616cac1230fc2e52a8f54890679eef2b5bb8be2f..259fcdb422db7b75d064ab825a3ec5c2ebc89c56 100644 (file)
@@ -12,6 +12,7 @@ sub process {
     $learnok   = 0;    # Able to learn?
     $talkok    = 0;    # Able to yap?
     $force_public_reply = 0;
+    $literal   = 0;
 
     return 'X'                 if $who eq $ident;      # self-message.
     return 'addressedother set' if ($addressedother);
@@ -24,7 +25,9 @@ sub process {
     # check if we have our head intact.
     if ($lobotomized) {
        if ($addressed and IsFlag("o") eq "o") {
-           &msg($who, "give me an unlobotomy.");
+           my $delta_time      = time() - ($cache{lobotomy}{$who} || 0);
+           &msg($who, "give me an unlobotomy.") if ($delta_time > 60*60);
+           $cache{lobotomy}{$who} = time();
        }
        return 'LOBOTOMY';
     }
@@ -39,18 +42,13 @@ sub process {
        }
     }
 
-    # ignore.
-    if ($ignore) {
-       return 'IGNORE';
-    }
-
     # join, must be done before outsider checking.
     if ($message =~ /^join(\s+(.*))?\s*$/i) {
        return 'join: not addr' unless ($addressed);
 
        $2 =~ /^($mask{chan})(,(\S+))?/;
        my($thischan, $key) = (lc $1, $3);
-       my $chankey     = $thischan;
+       my $chankey     = lc $thischan;
        $chankey        .= " $key"      if (defined $key);
 
        if ($thischan eq "") {
@@ -58,20 +56,18 @@ sub process {
            return;
        }
 
-       # Thanks to Eden Li (tile) for the channel key patch
-       my @chans = split(/[\s\t]+/, $param{'join_channels'});
-       if (!grep /^$thischan$/i, @chans) {
-           if (&IsFlag("o") ne "o") {
+       if (&IsFlag("o") ne "o") {
+           if (!exists $chanconf{$thischan}) {
                &msg($who, "I am not allowed to join $thischan.");
                return;
            }
-       }
 
-       if (&validChan($thischan) and &IsFlag("o") ne "o") {
-           &msg($who,"I'm already on $thischan...");
-           return;
+           if (&validChan($thischan)) {
+               &msg($who,"I'm already on $thischan...");
+               return;
+           }
        }
-       $joinverb{$thischan} = $who;    # used for on_join self.
+       $cache{join}{$thischan} = $who; # used for on_join self.
 
        &joinchan($chankey);
        &status("JOIN $chankey <$who>");
@@ -80,35 +76,8 @@ sub process {
        return;
     }
 
-    # allowOutsiders.
-    if (&IsParam("disallowOutsiders") and $msgType =~ /private/i) {
-       my $found = 0;
-
-       foreach (keys %channels) {
-           next unless (&IsNickInChan($who,$_));
-
-           $found++;
-           last;
-       }
-
-       if (!$found and scalar(keys %channels)) {
-           &status("OUTSIDER <$who> $message");
-           return 'OUTSIDER';
-       }
-    }
-
-    # User Processing, for all users.
-    if ($addressed) {
-       my $retval;
-       return 'returned from pCH'   if &parseCmdHook("main",$message);
-
-       $retval = &userCommands();
-       return unless (defined $retval);
-       return if ($retval eq $noreply);
-    }
-
     # 'identify'
-    if ($msgType =~ /private/ and $message =~ s/^identify//) {
+    if ($msgType =~ /private/ and $message =~ s/^identify//i) {
        $message =~ s/^\s+|\s+$//g;
        my @array = split / /, $message;
 
@@ -135,7 +104,7 @@ sub process {
            return;
        }
 
-       if (!&ckpass($array[0], $crypt)) {
+       if (!&ckpasswd($array[0], $crypt)) {
            &pSReply("invalid passwd for $do_nick.");
            return;
        }
@@ -149,12 +118,99 @@ sub process {
        return;
     }
 
+    # 'pass'
+    if ($msgType =~ /private/ and $message =~ s/^pass//i) {
+       $message =~ s/^\s+|\s+$//g;
+       my @array = split / /, $message;
+
+       if ($who =~ /^_default$/i) {
+           &pSReply("you are too eleet.");
+           return;
+       }
+
+       if (scalar @array != 1) {
+           &help("pass");
+           return;
+       }
+
+       # todo: use &getUser()?
+       my $first       = (scalar keys %users) ? 1 : 0;
+       if (!exists $users{$who} and !$first) {
+           &pSReply("nick $who is not in user list.");
+           return;
+       }
+
+       if ($first) {
+           &pSReply("first time user... adding you as master.");
+           $users{$who}{FLAGS} = "mrsteon";
+       }
+
+       my $crypt = $users{$who}{PASS};
+       if (defined $crypt) {
+           &pSReply("user $who already has pass set.");
+           return;
+       }
+
+       if (!defined $host) {
+           &WARN("pass: host == NULL.");
+           return;
+       }
+
+       if (!scalar keys %{ $users{$who}{HOSTS} }) {
+           my $mask = "*!$user@".&makeHostMask($host);
+           &pSReply("added mask $mask to $who.");
+           $users{$who}{HOSTS}{$mask}  = 1;
+       }
+
+       $crypt                  = &mkcrypt($array[0]);
+       $users{$who}{PASS}      = $crypt;
+       &pSReply("new pass for $who, crypt $crypt.");
+
+       return;
+    }
+
+    # allowOutsiders.
+    if (&IsParam("disallowOutsiders") and $msgType =~ /private/i) {
+       my $found = 0;
+
+       foreach (keys %channels) {
+           next unless (&IsNickInChan($who,$_));
+
+           $found++;
+           last;
+       }
+
+       if (!$found and scalar(keys %channels)) {
+           &status("OUTSIDER <$who> $message");
+           return 'OUTSIDER';
+       }
+    }
+
+    # override msgType.
+    if ($msgType =~ /public/ and $message =~ s/^\+//) {
+       &status("found '+' flag; setting msgType to public.");
+       $force_public_reply++;
+       $msgType = 'public';
+       $who     = $chan;       # major hack to fix &msg().
+       &DEBUG("addressed => $addressed.");
+    }
+
+    # User Processing, for all users.
+    if ($addressed) {
+       my $retval;
+       return 'returned from pCH'   if &parseCmdHook("main",$message);
+
+       $retval = &userCommands();
+       return unless (defined $retval);
+       return if ($retval eq $noreply);
+    }
+
     ###
     # once useless messages have been parsed out, we match them.
     ###
 
     # confused? is this for infobot communications?
-    foreach (keys %{$lang{'confused'}}) {
+    foreach (keys %{ $lang{'confused'} }) {
        my $y = $_;
 
        next unless ($message =~ /^\Q$y\E\s*/);
@@ -176,14 +232,14 @@ sub process {
 
        # customized random message.
        my $tmp = (rand() < 0.5) ? ", $who" : "";
-       &performStrictReply(&getRandom(keys %{$lang{'hello'}}) . $tmp);
+       &performStrictReply(&getRandom(keys %{ $lang{'hello'} }) . $tmp);
        return;
     }
 
     # greetings.
     if ($message =~ /how (the hell )?are (ya|you)( doin\'?g?)?\?*$/) {
-       my $reply = &getRandom(keys %{$lang{'howareyou'}});
-        
+       my $reply = &getRandom(keys %{ $lang{'howareyou'} });
+
        &performReply($reply);
         
        return;
@@ -211,19 +267,15 @@ sub process {
        return;
     }
 
-
     ###
     ### bot commands...
     ###
 
-    # override msgType.
-    if ($msgType =~ /public/ and $message =~ s/^\+//) {
-       &status("found '+' flag; setting msgType to public.");
-       $force_public_reply++;
-       $msgType = 'public';
+    if ($message =~ s/^literal\s+//i) {
+       &status("literal ask of '$message'.");
+       $literal = 1;
     }
 
-
     # karma. set...
     if ($message =~ /^(\S+)(--|\+\+)\s*$/ and $addressed) {
        return '' unless (&hasParam("karma"));
@@ -327,7 +379,6 @@ sub FactoidStuff {
        }
     }
 
-
     # factoid forget.
     if ($message =~ s/^forget\s+//i) {
        return 'forget: no addr' unless ($addressed);
@@ -343,24 +394,37 @@ sub FactoidStuff {
 
        if (defined $result) {
            my $author = &getFactInfo($faqtoid, "created_by");
-           if (IsFlag("r") ne "r" && $author =~ /^\Q$who\E\!/i) {
-               &msg($who, "you don't have access to remove that factoid");
+           if (IsFlag("r") ne "r") {
+               &msg($who, "you don't have access to remove factoids");
                return;
            }
 
            return 'locked factoid' if (&IsLocked($faqtoid) == 1);
 
            if (&IsParam("factoidDeleteDelay")) {
+               if ($faqtoid =~ /#DEL#/ and !&IsFlag("o")) {
+                   &msg($who, "cannot delete it ($faqtoid).");
+                   return;
+               }
                &status("forgot (safe delete): <$who> '$faqtoid' =is=> '$result'");
-               &setFactInfo($faqtoid, "factoid_key", $faqtoid." #DEL#");
-
-               ### delete info. modified_ isn't really used.
-               &setFactInfo($faqtoid, "modified_by", $who);
-               &setFactInfo($faqtoid, "modified_time", time());
+               ### TODO: check if the "backup" exists and overwrite it
+               my $check = &getFactoid("$faqtoid #DEL#");
+               if (!$check) {
+                   if ($faqtoid !~ /#DEL#/) {
+                       &setFactInfo($faqtoid, "factoid_key", $faqtoid." #DEL#");
+
+                       &setFactInfo($faqtoid, "modified_by", $who);
+                       &setFactInfo($faqtoid, "modified_time", time());
+                   } else {
+                       &status("not backing up $faqtoid.");
+                   }
+               } else {
+                   &status("forget: not overwriting backup!");
+               }
            } else {
                &status("forget: <$who> '$faqtoid' =is=> '$result'");
-               &delFactoid($faqtoid);
            }
+           &delFactoid($faqtoid);
 
            &performReply("i forgot $faqtoid");
 
@@ -396,6 +460,7 @@ sub FactoidStuff {
            return;
        }
 
+       &DEBUG("unforget: check => $check");
        if (defined $check) {
            &performReply("cannot undeleted '$faqtoid' because it already exists?");
            return;
@@ -426,19 +491,19 @@ sub FactoidStuff {
            return;
        }
 
-       # strongly requested by #debian on 19991028. -xk
-       if (1 and $faqtoid !~ /^\Q$who\E$/i and &IsFlag("o") ne "o") {
-           &msg($who,"sorry, locking cannot be used since it can be abused unneccesarily.");
-           &status("Replace 1 with 0 in Process.pl#~324 for locking support.");
-           return;
-       }
-
        if (&getFactoid($faqtoid) eq "") {
            &msg($who, "factoid \002$faqtoid\002 does not exist");
            return;
        }
 
        if ($function eq "lock") {
+           # strongly requested by #debian on 19991028. -xk
+           if (1 and $faqtoid !~ /^\Q$who\E$/i and &IsFlag("o") ne "o") {
+               &msg($who,"sorry, locking cannot be used since it can be abused unneccesarily.");
+               &status("Replace 1 with 0 in Process.pl#~324 for locking support.");
+               return;
+           }
+
            &CmdLock($faqtoid);
        } else {
            &CmdUnLock($faqtoid);
@@ -462,7 +527,8 @@ sub FactoidStuff {
            my $result = &getFactoid($from);
            if (defined $result) {
                my $author = &getFactInfo($from, "created_by");
-               if (&IsFlag("m") and $author =~ /^\Q$who\E\!/i) {
+
+               if (&IsFlag("m") or $author =~ /^\Q$who\E\!/i) {
                    &msg($who, "It's not yours to modify.");
                    return;
                }
@@ -520,11 +586,12 @@ sub FactoidStuff {
        return;
     }
 
-
     # Fix up $message for question.
-    for ($message) {
+    my $question = $message;
+    for ($question) {
        # fix the string.
        s/^hey([, ]+)where/where/i;
+       s/\s+\?$/?/;
        s/whois/who is/ig;
        s/where can i find/where is/i;
        s/how about/where is/i;
@@ -554,7 +621,7 @@ sub FactoidStuff {
        $correction_plausible = 0;
     }
 
-    my $result = &doQuestion($message);
+    my $result = &doQuestion($question);
     if (!defined $result or $result eq $noreply) {
        return 'result from doQ undef.';
     }