]> git.donarmstrong.com Git - infobot.git/blobdiff - src/Process.pl
- irctextcounter: ORDER by counter, not nick!
[infobot.git] / src / Process.pl
index ac2573b62506ee1575a60f70ccc83de235437071..f23143b4d006b4ba978258342ee7f2fc5680dc05 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';
     }
@@ -60,8 +63,8 @@ sub process {
            }
 
            if (&validChan($thischan)) {
-               &msg($who,"I'm already on $thischan...");
-               return;
+               &msg($who,"warn: I'm already on $thischan, joining  anyway...");
+#              return;
            }
        }
        $cache{join}{$thischan} = $who; # used for on_join self.
@@ -74,7 +77,7 @@ sub process {
     }
 
     # '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;
 
@@ -115,6 +118,64 @@ 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       = 1;
+       foreach (keys %users) {
+           if ($users{$_}{FLAGS} =~ /n/) {
+               $first = 0;
+               last;
+           }
+       }
+
+       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 hostmask '\002$mask\002' 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;
@@ -132,6 +193,15 @@ sub process {
        }
     }
 
+    # override msgType.
+    if ($msgType =~ /public/ and $message =~ s/^\+//) {
+       &status("Process: '+' flag detected; changing reply to public");
+       $msgType = 'public';
+       $who     = $chan;       # major hack to fix &msg().
+       $force_public_reply++;
+       # notice is still NOTICE but to whole channel => good.
+    }
+
     # User Processing, for all users.
     if ($addressed) {
        my $retval;
@@ -147,7 +217,7 @@ sub process {
     ###
 
     # confused? is this for infobot communications?
-    foreach (keys %{$lang{'confused'}}) {
+    foreach (keys %{ $lang{'confused'} }) {
        my $y = $_;
 
        next unless ($message =~ /^\Q$y\E\s*/);
@@ -169,14 +239,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;
@@ -200,22 +270,14 @@ sub process {
     if ($message =~ /^than(ks?|x)( you)?( \S+)?/i) {
        return 'thank: no addr' unless ($message =~ /$ident/ or $talkok);
 
-       &performReply( &getRandom(keys %{$lang{'welcome'}}) );
+       &performReply( &getRandom(keys %{ $lang{'welcome'} }) );
        return;
     }
 
-
     ###
     ### bot commands...
     ###
 
-    # override msgType.
-    if ($msgType =~ /public/ and $message =~ s/^\+//) {
-       &status("found '+' flag; setting msgType to public.");
-       $force_public_reply++;
-       $msgType = 'public';
-    }
-
     # karma. set...
     if ($message =~ /^(\S+)(--|\+\+)\s*$/ and $addressed) {
        return '' unless (&hasParam("karma"));
@@ -227,19 +289,22 @@ sub process {
            return;
        }
 
-       if (lc($term) eq lc($who)) {
+       if (lc $term eq lc $who) {
            &msg($who, "please don't karma yourself");
            return;
        }
 
-       my $karma = &dbGet("karma", "nick",$term,"karma") || 0;
+       my $karma = &dbGet("stats", "counter", "nick='$term' and type='karma'") || 0;
        if ($inc eq '++') {
            $karma++;
        } else {
            $karma--;
        }
 
-       &dbSet("karma", "nick",$term,"karma",$karma);
+       &dbSet("stats", 
+               { nick => $term, type => "karma" },
+               { counter => $karma }
+       );
 
        return;
     }
@@ -256,12 +321,9 @@ sub process {
            return 'SOMETHING 1';
        }
 
-       ### FIXME: should this only apply to public messages?
-       if ($addrchar) {
-           &DEBUG("floodwho => '$floodwho'.");
-           delete $flood{$floodwho}{$message};
-           &status("short return due to unknown command.");
-           return 'ADDR CHAR';
+       if (0 and $addrchar) {
+           &msg($who, "I don't trust people to use the core commands while addressing me in a short-cut way.");
+           return;
        }
     }
 
@@ -319,7 +381,6 @@ sub FactoidStuff {
        }
     }
 
-
     # factoid forget.
     if ($message =~ s/^forget\s+//i) {
        return 'forget: no addr' unless ($addressed);
@@ -334,26 +395,55 @@ sub FactoidStuff {
        my $result = &getFactoid($faqtoid);
 
        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");
+           my $author  = &getFactInfo($faqtoid, "created_by");
+           my $count   = &getFactInfo($faqtoid, "requested_count") || 0;
+           my $limit   = &getChanConfDefault("factoidPreventForgetLimit", 
+                               0, $chan);
+
+           &DEBUG("forget: limit = $limit");
+           &DEBUG("forget: count = $count");
+
+           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")) {
+           # factoidPreventForgetLimit:
+           if ($limit and $count > $limit and (&IsFlag("o") ne "o")) {
+               &msg($who, "will not delete '$faqtoid', count > limit ($count > $limit)");
+               return;
+           }
+
+           if (&IsParam("factoidDeleteDelay") or &IsChanConf("factoidDeleteDelay")) {
+               if ($faqtoid =~ / #DEL#$/ and !&IsFlag("o")) {
+                   &msg($who, "cannot delete it ($faqtoid).");
+                   return;
+               }
+
                &status("forgot (safe delete): <$who> '$faqtoid' =is=> '$result'");
                ### TODO: check if the "backup" exists and overwrite it
                my $check = &getFactoid("$faqtoid #DEL#");
-               if (!$check) {
-                   &setFactInfo($faqtoid, "factoid_key", $faqtoid." #DEL#");
 
-                   &setFactInfo($faqtoid, "modified_by", $who);
-                   &setFactInfo($faqtoid, "modified_time", time());
+               if (!defined $check or $check =~ /^\s*$/) {
+                   if ($faqtoid !~ / #DEL#$/) {
+                       my $new = $faqtoid." #DEL#";
+                       &DEBUG("Process: backing up $faqtoid to '$new'.");
+
+                       # this looks weird but does it work?
+                       &setFactInfo($faqtoid, "factoid_key", $new);
+                       &setFactInfo($new, "modified_by", $who);
+                       &setFactInfo($new, "modified_time", time());
+
+                   } else {
+                       &status("not backing up $faqtoid.");
+                   }
+
                } else {
                    &status("forget: not overwriting backup!");
                }
+
            } else {
                &status("forget: <$who> '$faqtoid' =is=> '$result'");
            }
@@ -373,7 +463,10 @@ sub FactoidStuff {
     if ($message =~ s/^un(forget|delete)\s+//i) {
        return 'unforget: no addr' unless ($addressed);
 
-       if (!&IsParam("factoidDeleteDelay")) {
+       my $i = 0;
+       $i++ if (&IsParam("factoidDeleteDelay"));
+       $i++ if (&IsChanConf("factoidDeleteDelay"));
+       if (!$i) {
            &performReply("safe delete has been disable so what is there to undelete?");
            return;
        }
@@ -393,7 +486,6 @@ sub FactoidStuff {
            return;
        }
 
-       &DEBUG("unforget: check => $check");
        if (defined $check) {
            &performReply("cannot undeleted '$faqtoid' because it already exists?");
            return;
@@ -460,7 +552,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;
                }
@@ -518,11 +611,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;
@@ -552,7 +646,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.';
     }
@@ -565,6 +659,7 @@ sub FactoidStuff {
        my $newresult = &perlMath();
 
        if (defined $newresult and $newresult ne "") {
+           $cmdstats{'Maths'}++;
            $result = $newresult;
            &status("math: <$who> $message => $result");
        }
@@ -589,13 +684,15 @@ sub FactoidStuff {
 
     if (length $message > 64) {
        &status("unparseable-moron: $message");
-       &performReply( &getRandom(keys %{$lang{'moron'}}) );
+#      &performReply( &getRandom(keys %{ $lang{'moron'} }) );
        $count{'Moron'}++;
+
+       &performReply("You are moron #".$count{'Moron'}."!");
        return;
     }
 
     &status("unparseable: $message");
-    &performReply( &getRandom(keys %{$lang{'dunno'}}) );
+    &performReply( &getRandom(keys %{ $lang{'dunno'} }) );
     $count{'Dunno'}++;
 }