]> git.donarmstrong.com Git - infobot.git/blob - src/Process.pl
"~forget blah" now works. thanks to ElectricElf
[infobot.git] / src / Process.pl
1 ###
2 ### Process.pl: Kevin Lenzo 1997-1999
3 ###
4
5 #
6 # process the incoming message
7 #
8
9 if (&IsParam("useStrict")) { use strict; }
10
11 sub process {
12     $learnok    = 0;    # Able to learn?
13     $talkok     = 0;    # Able to yap?
14     $force_public_reply = 0;
15     $literal    = 0;
16
17     return 'X'                  if $who eq $ident;      # self-message.
18     return 'addressedother set' if ($addressedother);
19
20     $talkok     = ($param{'addressing'} =~ /^OPTIONAL$/i or $addressed);
21     $learnok    = ($param{'learn'}      =~ /^HUNGRY$/i   or $addressed);
22
23     &shmFlush();                # hack.
24
25     # check if we have our head intact.
26     if ($lobotomized) {
27         if ($addressed and IsFlag("o") eq "o") {
28             my $delta_time      = time() - ($cache{lobotomy}{$who} || 0);
29             &msg($who, "give me an unlobotomy.") if ($delta_time > 60*60);
30             $cache{lobotomy}{$who} = time();
31         }
32         return 'LOBOTOMY';
33     }
34
35     # talkMethod.
36     if ($param{'talkMethod'} =~ /^PRIVATE$/i) {
37         if ($msgType =~ /public/ and $addressed) {
38             &msg($who, "sorry. i'm in 'PRIVATE' talkMethod mode ".
39                   "while you sent a message to me ${msgType}ly.");
40
41             return 'TALKMETHOD';
42         }
43     }
44
45     # join, must be done before outsider checking.
46     if ($message =~ /^join(\s+(.*))?\s*$/i) {
47         return 'join: not addr' unless ($addressed);
48
49         $2 =~ /^($mask{chan})(,(\S+))?/;
50         my($thischan, $key) = (lc $1, $3);
51         my $chankey     = lc $thischan;
52         $chankey        .= " $key"      if (defined $key);
53
54         if ($thischan eq "") {
55             &help("join");
56             return;
57         }
58
59         if (&IsFlag("o") ne "o") {
60             if (!exists $chanconf{$thischan}) {
61                 &msg($who, "I am not allowed to join $thischan.");
62                 return;
63             }
64
65             if (&validChan($thischan)) {
66                 &msg($who,"warn: I'm already on $thischan, joining  anyway...");
67 #               return;
68             }
69         }
70         $cache{join}{$thischan} = $who; # used for on_join self.
71
72         &joinchan($chankey);
73         &status("JOIN $chankey <$who>");
74         &msg($who, "joining $chankey");
75
76         return;
77     }
78
79     # 'identify'
80     if ($msgType =~ /private/ and $message =~ s/^identify//i) {
81         $message =~ s/^\s+|\s+$//g;
82         my @array = split / /, $message;
83
84         if ($who =~ /^_default$/i) {
85             &pSReply("you are too eleet.");
86             return;
87         }
88
89         if (!scalar @array or scalar @array > 2) {
90             &help("identify");
91             return;
92         }
93
94         my $do_nick = $array[1] || $who;
95
96         if (!exists $users{$do_nick}) {
97             &pSReply("nick $do_nick is not in user list.");
98             return;
99         }
100
101         my $crypt = $users{$do_nick}{PASS};
102         if (!defined $crypt) {
103             &pSReply("user $do_nick has no passwd set.");
104             return;
105         }
106
107         if (!&ckpasswd($array[0], $crypt)) {
108             &pSReply("invalid passwd for $do_nick.");
109             return;
110         }
111
112         my $mask = "*!$user@".&makeHostMask($host);
113         ### TODO: prevent adding multiple dupe masks?
114         ### TODO: make &addHostMask() CMD?
115         &pSReply("Added $mask for $do_nick...");
116         $users{$do_nick}{HOSTS}{$mask} = 1;
117
118         return;
119     }
120
121     # 'pass'
122     if ($msgType =~ /private/ and $message =~ s/^pass//i) {
123         $message =~ s/^\s+|\s+$//g;
124         my @array = split / /, $message;
125
126         if ($who =~ /^_default$/i) {
127             &pSReply("you are too eleet.");
128             return;
129         }
130
131         if (scalar @array != 1) {
132             &help("pass");
133             return;
134         }
135
136         # todo: use &getUser()?
137         my $first       = (scalar keys %users) ? 1 : 0;
138         if (!exists $users{$who} and !$first) {
139             &pSReply("nick $who is not in user list.");
140             return;
141         }
142
143         if ($first) {
144             &pSReply("first time user... adding you as master.");
145             $users{$who}{FLAGS} = "mrsteon";
146         }
147
148         my $crypt = $users{$who}{PASS};
149         if (defined $crypt) {
150             &pSReply("user $who already has pass set.");
151             return;
152         }
153
154         if (!defined $host) {
155             &WARN("pass: host == NULL.");
156             return;
157         }
158
159         if (!scalar keys %{ $users{$who}{HOSTS} }) {
160             my $mask = "*!$user@".&makeHostMask($host);
161             &pSReply("added mask $mask to $who.");
162             $users{$who}{HOSTS}{$mask}  = 1;
163         }
164
165         $crypt                  = &mkcrypt($array[0]);
166         $users{$who}{PASS}      = $crypt;
167         &pSReply("new pass for $who, crypt $crypt.");
168
169         return;
170     }
171
172     # allowOutsiders.
173     if (&IsParam("disallowOutsiders") and $msgType =~ /private/i) {
174         my $found = 0;
175
176         foreach (keys %channels) {
177             next unless (&IsNickInChan($who,$_));
178
179             $found++;
180             last;
181         }
182
183         if (!$found and scalar(keys %channels)) {
184             &status("OUTSIDER <$who> $message");
185             return 'OUTSIDER';
186         }
187     }
188
189     # override msgType.
190     if ($msgType =~ /public/ and $message =~ s/^\+//) {
191         &status("Process: '+' flag detected; changing reply to public");
192         $msgType = 'public';
193         $who     = $chan;       # major hack to fix &msg().
194         $force_public_reply++;
195         # notice is still NOTICE but to whole channel => good.
196     }
197
198     # User Processing, for all users.
199     if ($addressed) {
200         my $retval;
201         return 'returned from pCH'   if &parseCmdHook("main",$message);
202
203         $retval = &userCommands();
204         return unless (defined $retval);
205         return if ($retval eq $noreply);
206     }
207
208     ###
209     # once useless messages have been parsed out, we match them.
210     ###
211
212     # confused? is this for infobot communications?
213     foreach (keys %{ $lang{'confused'} }) {
214         my $y = $_;
215
216         next unless ($message =~ /^\Q$y\E\s*/);
217         return 'CONFUSO';
218     }
219
220     # hello. [took me a while to fix this. -xk]
221     if ($orig{message} =~ /^(\Q$ident\E\S?[:, ]\S?)?\s*(h(ello|i( there)?|owdy|ey|ola))( \Q$ident\E)?\s*$/i) {
222         return '' unless ($talkok);
223
224         # 'mynick: hi' or 'hi mynick' or 'hi'.
225         &status("somebody said hello");
226
227         # 50% chance of replying to a random greeting when not addressed
228         if (!defined $5 and $addressed == 0 and rand() < 0.5) {
229             &status("not returning unaddressed greeting");
230             return;
231         }
232
233         # customized random message.
234         my $tmp = (rand() < 0.5) ? ", $who" : "";
235         &performStrictReply(&getRandom(keys %{ $lang{'hello'} }) . $tmp);
236         return;
237     }
238
239     # greetings.
240     if ($message =~ /how (the hell )?are (ya|you)( doin\'?g?)?\?*$/) {
241         my $reply = &getRandom(keys %{ $lang{'howareyou'} });
242
243         &performReply($reply);
244         
245         return;
246     }
247
248     # praise.
249     if ($message =~ /you (rock|rewl|rule|are so+ coo+l)/ ||
250         $message =~ /(good (bo(t|y)|g([ui]|r+)rl))|(bot( |\-)?snack)/i)
251     {
252         return 'praise: no addr' unless ($addressed);
253
254         &status("random praise detected");
255
256         my $tmp = (rand() < 0.5) ? "thanks $who " : "";
257         &performStrictReply($tmp.":)");
258
259         return;
260     }
261
262     # thanks.
263     if ($message =~ /^than(ks?|x)( you)?( \S+)?/i) {
264         return 'thank: no addr' unless ($message =~ /$ident/ or $talkok);
265
266         &performReply( &getRandom(keys %{ $lang{'welcome'} }) );
267         return;
268     }
269
270     ###
271     ### bot commands...
272     ###
273
274     if ($message =~ s/^literal\s+//i) {
275         &status("literal ask of '$message'.");
276         $literal = 1;
277     }
278
279     # karma. set...
280     if ($message =~ /^(\S+)(--|\+\+)\s*$/ and $addressed) {
281         return '' unless (&hasParam("karma"));
282
283         my($term,$inc) = (lc $1,$2);
284
285         if ($msgType !~ /public/i) {
286             &msg($who, "karma must be done in public!");
287             return;
288         }
289
290         if (lc($term) eq lc($who)) {
291             &msg($who, "please don't karma yourself");
292             return;
293         }
294
295         my $karma = &dbGet("karma", "nick",$term,"karma") || 0;
296         if ($inc eq '++') {
297             $karma++;
298         } else {
299             $karma--;
300         }
301
302         &dbSet("karma", "nick",$term,"karma",$karma);
303
304         return;
305     }
306
307     # here's where the external routines get called.
308     # if they return anything but null, that's the "answer".
309     if ($addressed) {
310         if ( &parseCmdHook("extra",$message) ) {
311             return 'DID SOMETHING IN PCH.';
312         }
313
314         my $er = &Modules();
315         if (!defined $er) {
316             return 'SOMETHING 1';
317         }
318
319         if (0 and $addrchar) {
320             &msg($who, "I don't trust people to use the core commands while addressing me in a short-cut way.");
321             return;
322         }
323     }
324
325     if (&IsParam("factoids") and $param{'DBType'} =~ /^(mysql|pg|postgres|dbm)/i) {
326         &FactoidStuff();
327     } elsif ($param{'DBType'} =~ /^none$/i) {
328         return "NO FACTOIDS.";
329     } else {
330         &ERROR("INVALID FACTOID SUPPORT? ($param{'DBType'})");
331         &shutdown();
332         exit 0;
333     }
334 }
335
336 sub FactoidStuff {
337     # inter-infobot.
338     if ($msgType =~ /private/ and $message =~ s/^:INFOBOT://) {
339         ### identification.
340         &status("infobot <$nuh> identified") unless $bots{$nuh};
341         $bots{$nuh} = $who;
342
343         ### communication.
344
345         # query.
346         if ($message =~ /^QUERY (<.*?>) (.*)/) {        # query.
347             my ($target,$item) = ($1,$2);
348             $item =~ s/[.\?]$//;
349
350             &status(":INFOBOT:QUERY $who: $message");
351
352             if ($_ = &getFactoid($item)) {
353                 &msg($who, ":INFOBOT:REPLY $target $item =is=> $_");
354             }
355
356             return 'INFOBOT QUERY';
357         } elsif ($message =~ /^REPLY <(.*?)> (.*)/) {   # reply.
358             my ($target,$item) = ($1,$2);
359
360             &status(":INFOBOT:REPLY $who: $message");
361
362             my ($lhs,$mhs,$rhs) = $item =~ /^(.*?) =(.*?)=> (.*)/;
363
364             if ($param{'acceptUrl'} !~ /REQUIRE/ or $rhs =~ /(http|ftp|mailto|telnet|file):/) {
365                 &msg($target, "$who knew: $lhs $mhs $rhs");
366
367                 # "are" hack :)
368                 $rhs = "<REPLY> are" if ($mhs eq "are");
369                 &setFactInfo($lhs, "factoid_value", $rhs);
370             }
371
372             return 'INFOBOT REPLY';
373         } else {
374             &ERROR(":INFOBOT:UNKNOWN $who: $message");
375             return 'INFOBOT UNKNOWN';
376         }
377     }
378
379     # factoid forget.
380     if ($message =~ s/^forget\s+//i) {
381         return 'forget: no addr' unless ($addressed);
382
383         my $faqtoid = $message;
384         if ($faqtoid eq "") {
385             &help("forget");
386             return;
387         }
388
389         $faqtoid =~ tr/A-Z/a-z/;
390         my $result = &getFactoid($faqtoid);
391
392         if (defined $result) {
393             my $author = &getFactInfo($faqtoid, "created_by");
394             if (IsFlag("r") ne "r") {
395                 &msg($who, "you don't have access to remove factoids");
396                 return;
397             }
398
399             return 'locked factoid' if (&IsLocked($faqtoid) == 1);
400
401             if (&IsParam("factoidDeleteDelay")) {
402                 if ($faqtoid =~ /#DEL#/ and !&IsFlag("o")) {
403                     &msg($who, "cannot delete it ($faqtoid).");
404                     return;
405                 }
406                 &status("forgot (safe delete): <$who> '$faqtoid' =is=> '$result'");
407                 ### TODO: check if the "backup" exists and overwrite it
408                 my $check = &getFactoid("$faqtoid #DEL#");
409                 if (!$check) {
410                     if ($faqtoid !~ /#DEL#/) {
411                         my $new = $faqtoid." #DEL#";
412                         &setFactInfo($faqtoid, "factoid_key", $new);
413                         &setFactInfo($new, "modified_by", $who);
414                         &setFactInfo($new, "modified_time", time());
415                     } else {
416                         &status("not backing up $faqtoid.");
417                     }
418                 } else {
419                     &status("forget: not overwriting backup!");
420                 }
421             } else {
422                 &status("forget: <$who> '$faqtoid' =is=> '$result'");
423             }
424             &delFactoid($faqtoid);
425
426             &performReply("i forgot $faqtoid");
427
428             $count{'Update'}++;
429         } else {
430             &performReply("i didn't have anything called '$faqtoid'");
431         }
432
433         return;
434     }
435
436     # factoid unforget/undelete.
437     if ($message =~ s/^un(forget|delete)\s+//i) {
438         return 'unforget: no addr' unless ($addressed);
439
440         if (!&IsParam("factoidDeleteDelay")) {
441             &performReply("safe delete has been disable so what is there to undelete?");
442             return;
443         }
444
445         my $faqtoid = $message;
446         if ($faqtoid eq "") {
447             &help("undelete");
448             return;
449         }
450
451         $faqtoid =~ tr/A-Z/a-z/;
452         my $result = &getFactoid($faqtoid." #DEL#");
453         my $check  = &getFactoid($faqtoid);
454
455         if (!defined $result) {
456             &performReply("i didn't have anything ('$faqtoid') to undelete.");
457             return;
458         }
459
460         &DEBUG("unforget: check => $check");
461         if (defined $check) {
462             &performReply("cannot undeleted '$faqtoid' because it already exists?");
463             return;
464         }
465
466         &setFactInfo($faqtoid." #DEL#", "factoid_key", $faqtoid);
467
468         ### delete info. modified_ isn't really used.
469         &setFactInfo($faqtoid, "modified_by",  "");
470         &setFactInfo($faqtoid, "modified_time", 0);
471
472         &performReply("Successfully recovered '$faqtoid'.  Have fun now.");
473
474         $count{'Undelete'}++;
475
476         return;
477     }
478
479     # factoid locking.
480     if ($message =~ /^((un)?lock)(\s+(.*))?\s*?$/i) {
481         return 'lock: no addr 2' unless ($addressed);
482
483         my $function = lc $1;
484         my $faqtoid  = lc $4;
485
486         if ($faqtoid eq "") {
487             &help($function);
488             return;
489         }
490
491         if (&getFactoid($faqtoid) eq "") {
492             &msg($who, "factoid \002$faqtoid\002 does not exist");
493             return;
494         }
495
496         if ($function eq "lock") {
497             # strongly requested by #debian on 19991028. -xk
498             if (1 and $faqtoid !~ /^\Q$who\E$/i and &IsFlag("o") ne "o") {
499                 &msg($who,"sorry, locking cannot be used since it can be abused unneccesarily.");
500                 &status("Replace 1 with 0 in Process.pl#~324 for locking support.");
501                 return;
502             }
503
504             &CmdLock($faqtoid);
505         } else {
506             &CmdUnLock($faqtoid);
507         }
508
509         return;
510     }
511
512     # factoid rename.
513     if ($message =~ s/^rename(\s+|$)//) {
514         return 'rename: no addr' unless ($addressed);
515
516         if ($message eq "") {
517             &help("rename");
518             return;
519         }
520
521         if ($message =~ /^'(.*)'\s+'(.*)'$/) {
522             my($from,$to) = (lc $1, lc $2);
523
524             my $result = &getFactoid($from);
525             if (defined $result) {
526                 my $author = &getFactInfo($from, "created_by");
527
528                 if (&IsFlag("m") or $author =~ /^\Q$who\E\!/i) {
529                     &msg($who, "It's not yours to modify.");
530                     return;
531                 }
532
533                 if ($_ = &getFactoid($to)) {
534                     &performReply("destination factoid already exists.");
535                     return;
536                 }
537
538                 &setFactInfo($from,"factoid_key",$to);
539
540                 &status("rename: <$who> '$from' is now '$to'");
541                 &performReply("i renamed '$from' to '$to'");
542             } else {
543                 &performReply("i didn't have anything called '$from'");
544             }
545         } else {
546             &msg($who,"error: wrong format. ask me about 'help rename'.");
547         }
548
549         return;
550     }
551
552     # factoid substitution. (X =~ s/A/B/FLAG)
553     if ($message =~ m|^(.*?)\s+=~\s+s([/,#])(.+?)\2(.*?)\2([a-z]*);?\s*$|) {
554         my ($faqtoid,$delim,$op,$np,$flags) = (lc $1, $2, $3, $4, $5);
555         return 'subst: no addr' unless ($addressed);
556
557         # incorrect format.
558         if ($np =~ /$delim/) {
559             &msg($who,"looks like you used the delimiter too many times. You may want to use a different delimiter, like ':' or '#'.");
560             return;
561         }
562
563         # success.
564         if (my $result = &getFactoid($faqtoid)) {
565             return 'subst: locked' if (&IsLocked($faqtoid) == 1);
566             my $was = $result;
567
568             if (($flags eq "g" && $result =~ s/\Q$op/$np/gi) || $result =~ s/\Q$op/$np/i) {
569                 if (length $result > $param{'maxDataSize'}) {
570                     &performReply("that's too long");
571                     return;
572                 }
573                 &setFactInfo($faqtoid, "factoid_value", $result);
574                 &status("update: '$faqtoid' =is=> '$result'; was '$was'");
575                 &performReply("OK");
576             } else {
577                 &performReply("that doesn't contain '$op'");
578             }
579         } else {
580             &performReply("i didn't have anything called '$faqtoid'");
581         }
582
583         return;
584     }
585
586     # Fix up $message for question.
587     my $question = $message;
588     for ($question) {
589         # fix the string.
590         s/^hey([, ]+)where/where/i;
591         s/\s+\?$/?/;
592         s/whois/who is/ig;
593         s/where can i find/where is/i;
594         s/how about/where is/i;
595         s/ da / the /ig;
596
597         # clear the string of useless words.
598         s/^(stupid )?q(uestion)?:\s+//i;
599         s/^(does )?(any|ne)(1|one|body) know //i;
600
601         s/^[uh]+m*[,\.]* +//i;
602
603         s/^well([, ]+)//i;
604         s/^still([, ]+)//i;
605         s/^(gee|boy|golly|gosh)([, ]+)//i;
606         s/^(well|and|but|or|yes)([, ]+)//i;
607
608         s/^o+[hk]+(a+y+)?([,. ]+)//i;
609         s/^g(eez|osh|olly)([,. ]+)//i;
610         s/^w(ow|hee|o+ho+)([,. ]+)//i;
611         s/^heya?,?( folks)?([,. ]+)//i;
612     }
613
614     if ($addressed and $message =~ s/^no([, ]+)(\Q$ident\E\,+)?\s*//i) {
615         $correction_plausible = 1;
616         &status("correction is plausible, initial negative and nick deleted ($&)") if ($param{VERBOSITY});
617     } else {
618         $correction_plausible = 0;
619     }
620
621     my $result = &doQuestion($question);
622     if (!defined $result or $result eq $noreply) {
623         return 'result from doQ undef.';
624     }
625
626     if (defined $result and $result !~ /^0?$/) {        # question.
627         &status("question: <$who> $message");
628         $count{'Question'}++;
629     } elsif (&IsChanConf("perlMath") > 0 and $addressed) { # perl math.
630         &loadMyModule("perlMath");
631         my $newresult = &perlMath();
632
633         if (defined $newresult and $newresult ne "") {
634             $cmdstats{'Maths'}++;
635             $result = $newresult;
636             &status("math: <$who> $message => $result");
637         }
638     }
639
640     if ($result !~ /^0?$/) {
641         &performStrictReply($result);
642         return;
643     }
644
645     # why would a friendly bot get passed here?
646     if (&IsParam("friendlyBots")) {
647         return if (grep lc($_) eq lc($who), split(/\s+/, $param{'friendlyBots'}));
648     }
649
650     # do the statement.
651     if (!defined &doStatement($message)) {
652         return;
653     }
654
655     return unless ($addressed);
656
657     if (length $message > 64) {
658         &status("unparseable-moron: $message");
659         &performReply( &getRandom(keys %{ $lang{'moron'} }) );
660         $count{'Moron'}++;
661         return;
662     }
663
664     &status("unparseable: $message");
665     &performReply( &getRandom(keys %{ $lang{'dunno'} }) );
666     $count{'Dunno'}++;
667 }
668
669 1;