]> git.donarmstrong.com Git - infobot.git/blob - src/Factoids/Core.pl
CMD: is now cmd:, commands in sqlite will be broken!
[infobot.git] / src / Factoids / Core.pl
1 #
2 #   Misc.pl: Miscellaneous stuff.
3 #    Author: dms
4 #   Version: v0.1 (20010906)
5 #   Created: 20010906
6 #
7
8 # use strict;   # TODO
9
10 use vars qw(%param %cache %lang %cmdstats %bots);
11 use vars qw($message $who $addressed $chan $h $nuh $ident $msgType
12         $correction_plausable);
13
14 # Usage: &validFactoid($lhs,$rhs);
15 sub validFactoid {
16     my ($lhs,$rhs) = @_;
17     my $valid = 0;
18
19     for (lc $lhs) {
20         # allow the following only if they have been made on purpose.
21         if ($rhs ne "" and $rhs !~ /^</) {
22             / \Q$ident$/i and last;     # someone said i'm something.
23             /^i('m)? / and last;
24             /^(it|that|there|what)('s)?(\s+|$)/ and last;
25             /^you('re)?(\s+|$)/ and last;
26
27             /^(where|who|why|when|how)(\s+|$)/ and last;
28             /^(this|that|these|those|they)(\s+|$)/ and last;
29             /^(every(one|body)|we) / and last;
30
31             /^say / and last;
32         }
33
34         # uncaught commands.
35         /^add topic / and last;         # topic management.
36         /( add$| add |^add )/ and last; # borked teach statement.
37         /^learn / and last;             # teach. damn morons.
38         /^tell (\S+) about / and last;  # tell.
39         /\=\~/ and last;                # substituition.
40
41         /^\=/ and last;                 # botnick = heh is.
42         /wants you to know/ and last;
43
44         # symbols.
45         /(\"\*)/ and last;
46         /, / and last;
47         (/^'/ and /'$/) and last;
48         (/^"/ and /"$/) and last;
49
50         # delimiters.
51         /\=\>/ and last;                # '=>'.
52         /\;\;/ and last;                # ';;'.
53         /\|\|/ and last;                # '||'.
54
55         /^\Q$ident\E[\'\,\: ]/ and last;# dupe addressed.
56         /^[\-\, ]/ and last;
57         /\\$/ and last;                 # forgot shift for '?'.
58         /^all / and last;
59         /^also / and last;
60         / also$/ and last;
61         / and$/ and last;
62         /^because / and last;
63         /^but / and last;
64         /^gives / and last;
65         /^h(is|er) / and last;
66         /^if / and last;
67         / is,/ and last;
68         / it$/ and last;
69         /^or / and last;
70         / says$/ and last;
71         /^should / and last;
72         /^so / and last;
73         /^supposedly/ and last;
74         /^to / and last;
75         /^was / and last;
76         / which$/ and last;
77
78         # nasty bug I introduced _somehow_, probably by fixMySQLBug().
79         /\\\%/ and last;
80         /\\\_/ and last;
81
82         # weird/special stuff. also old blootbot or stock infobot bugs.
83         $rhs =~ /( \Q$ident\E's|\Q$ident\E's )/i and last; # ownership.
84
85         # duplication.
86         $rhs =~ /^\Q$lhs /i and last;
87         last if ($rhs =~ /^is /i and / is$/);
88
89         $valid++;
90     }
91
92     return $valid;
93 }
94
95 sub FactoidStuff {
96     # inter-infobot.
97     if ($msgType =~ /private/ and $message =~ s/^:INFOBOT://) {
98         ### identification.
99         &status("infobot <$nuh> identified") unless $bots{$nuh};
100         $bots{$nuh} = $who;
101
102         ### communication.
103
104         # query.
105         if ($message =~ /^QUERY (<.*?>) (.*)/) {        # query.
106             my ($target,$item) = ($1,$2);
107             $item =~ s/[.\?]$//;
108
109             &status(":INFOBOT:QUERY $who: $message");
110
111             if ($_ = &getFactoid($item)) {
112                 &msg($who, ":INFOBOT:REPLY $target $item =is=> $_");
113             }
114
115             return 'INFOBOT QUERY';
116         } elsif ($message =~ /^REPLY <(.*?)> (.*)/) {   # reply.
117             my ($target,$item) = ($1,$2);
118
119             &status(":INFOBOT:REPLY $who: $message");
120
121             my ($lhs,$mhs,$rhs) = $item =~ /^(.*?) =(.*?)=> (.*)/;
122
123             if ($param{'acceptUrl'} !~ /REQUIRE/ or $rhs =~ /(http|ftp|mailto|telnet|file):/) {
124                 &msg($target, "$who knew: $lhs $mhs $rhs");
125
126                 # "are" hack :)
127                 $rhs = "<REPLY> are" if ($mhs eq "are");
128                 &setFactInfo($lhs, "factoid_value", $rhs);
129             }
130
131             return 'INFOBOT REPLY';
132         } else {
133             &ERROR(":INFOBOT:UNKNOWN $who: $message");
134             return 'INFOBOT UNKNOWN';
135         }
136     }
137
138     # factoid forget.
139     if ($message =~ s/^forget\s+//i) {
140         return 'forget: no addr' unless ($addressed);
141
142         my $faqtoid = $message;
143         if ($faqtoid eq "") {
144             &help("forget");
145             return;
146         }
147
148         $faqtoid =~ tr/A-Z/a-z/;
149         my $result = &getFactoid($faqtoid);
150
151         # if it doesn't exist, well... it doesn't!
152         if (!defined $result) {
153             &performReply("i didn't have anything called '$faqtoid' to forget");
154             return;
155         }
156
157         # TODO: squeeze 3 getFactInfo calls into one?
158         my $author      = &getFactInfo($faqtoid, "created_by");
159         my $count       = &getFactInfo($faqtoid, "requested_count") || 0;
160         # don't delete if requested $limit times
161         my $limit       = &getChanConfDefault(
162                                 "factoidPreventForgetLimit", 100, $chan);
163         # don't delete if older than $limitage seconds (modified by requests below)
164         my $limitage    = &getChanConfDefault(
165                                 "factoidPreventForgetLimitTime", 7 * 24 * 60 * 60, $chan);
166         my $t           = &getFactInfo($faqtoid, "created_time") || 0;
167         my $age         = time() - $t;
168
169         # lets scale limitage from 1 (nearly 0) to $limit (full time).
170         $limitage       = $limitage*($count+1)/$limit if ($count < $limit);
171         # isauthor and isop.
172         my $isau        = (defined $author and &IsHostMatch($author) == 2) ? 1 : 0;
173         my $isop        = (&IsFlag("o") eq "o") ? 1 : 0;
174
175         if (IsFlag("r") ne "r" && !$isop) {
176             &msg($who, "you don't have access to remove factoids");
177             return;
178         }
179
180         return 'locked factoid' if (&IsLocked($faqtoid) == 1);
181
182         ###
183         ### lets go do some checking.
184         ###
185
186         # factoidPreventForgetLimitTime:
187         if (!($isop or $isau) and $age/(60*60*24) > $limitage) {
188             &msg($who, "cannot remove factoid '$faqtoid', too old. (" .
189                     $age/(60*60*24) . ">$limitage) use 'no,' instead");
190             return;
191         }
192
193         # factoidPreventForgetLimit:
194         if (!($isop or $isau) and $limit and $count > $limit) {
195             &msg($who, "will not delete '$faqtoid', count > limit ($count > $limit) use 'no, ' instead.");
196             return;
197         }
198
199         # this may eat some memory.
200         # prevent deletion if other factoids redirect to it.
201         # TODO: use hash instead of array.
202         my @list;
203         if (&getChanConf("factoidPreventForgetRedirect")) {
204             &status("Factoids/Core: forget: checking for redirect factoids");
205             @list = &searchTable("factoids", "factoid_key",
206                         "factoid_value", "^<REPLY> see ");
207         }
208
209         my $match = 0;
210         for (@list) {
211             my $f = $_;
212             my $v = &getFactInfo($f, "factoid_value");
213             my $fsafe = quotemeta($faqtoid);
214             next unless ($v =~ /^<REPLY> ?see( also)? $fsafe\.?$/i);
215
216             &DEBUG("Factoids/Core: match! ($f || $faqtoid)");
217
218             $match++;
219         }
220         # TODO: warn for op aswell, but allow force delete.
221         if (!$isop and $match) {
222             &msg($who, "uhm, other (redirection) factoids depend on this one.");
223             return;
224         }
225
226         # minimize abuse.
227         if (!$isop and &IsHostMatch($author) != 2) {
228             $cache{forget}{$h}++;
229
230             # warn.
231             if ($cache{forget}{$h} > 3) {
232                 &msg($who, "Stop abusing forget!");
233             }
234
235             # ignore.
236             # TODO: make forget limit configurable.
237             # TODO: make forget ignore time configurable.
238             if ($cache{forget}{$h} > 5) {
239                 &ignoreAdd(&makeHostMask($nuh), "*", 3*24*60, "abuse of forget");
240                 &msg($who, "forget: Ignoring you for abuse!");
241             }
242         }
243
244         # lets do it!
245
246         if (&IsParam("factoidDeleteDelay") or &IsChanConf("factoidDeleteDelay")) {
247             if (!($isop or $isau) and $faqtoid =~ / #DEL#$/) {
248                 &msg($who, "cannot delete it ($faqtoid).");
249                 return;
250             }
251
252             &status("forgot (safe delete): '$faqtoid' - ". scalar(gmtime));
253             ### TODO: check if the "backup" exists and overwrite it
254             my $check = &getFactoid("$faqtoid #DEL#");
255
256             if (!defined $check or $check =~ /^\s*$/) {
257                 if ($faqtoid !~ / #DEL#$/) {
258                     my $new = $faqtoid." #DEL#";
259
260                     my $backup = &getFactoid($new);
261                     if ($backup) {
262                         &DEBUG("forget: not overwriting backup: $faqtoid");
263                     } else {
264                         &status("forget: backing up '$faqtoid'");
265                         &setFactInfo($faqtoid, "factoid_key", $new);
266                         &setFactInfo($new, "modified_by", $who);
267                         &setFactInfo($new, "modified_time", time());
268                     }
269
270                 } else {
271                     &status("forget: not backing up $faqtoid.");
272                 }
273
274             } else {
275                 &status("forget: not overwriting backup!");
276             }
277         }
278
279         &status("forget: <$who> '$faqtoid' =is=> '$result'");
280         &delFactoid($faqtoid);
281
282         &performReply("i forgot $faqtoid");
283
284         $count{'Update'}++;
285
286         return;
287     }
288
289     # factoid unforget/undelete.
290     if ($message =~ s/^un(forget|delete)\s+//i) {
291         return 'unforget: no addr' unless ($addressed);
292
293         my $i = 0;
294         $i++ if (&IsParam("factoidDeleteDelay"));
295         $i++ if (&IsChanConf("factoidDeleteDelay"));
296         if (!$i) {
297             &performReply("safe delete has been disable so what is there to undelete?");
298             return;
299         }
300
301         my $faqtoid = $message;
302         if ($faqtoid eq "") {
303             &help("unforget");
304             return;
305         }
306
307         $faqtoid =~ tr/A-Z/a-z/;
308         my $result = &getFactoid($faqtoid." #DEL#");
309         my $check  = &getFactoid($faqtoid);
310
311         if (defined $check) {
312             &performReply("cannot undeleted '$faqtoid' because it already exists!");
313             return;
314         }
315
316         if (!defined $result) {
317             &performReply("that factoid was not backedup :/");
318             return;
319         }
320
321         &setFactInfo($faqtoid." #DEL#", "factoid_key",   $faqtoid);
322 #       &setFactInfo($faqtoid, "modified_by",   "");
323 #       &setFactInfo($faqtoid, "modified_time", 0);
324
325         $check  = &getFactoid($faqtoid);
326         # TODO: check if $faqtoid." #DEL#" exists?
327         if (defined $check) {
328             &performReply("Successfully recovered '$faqtoid'.  Have fun now.");
329             $count{'Undelete'}++;
330         } else {
331             &performReply("did not recover '$faqtoid'.  What happened?");
332         }
333
334         return;
335     }
336
337     # factoid locking.
338     if ($message =~ /^((un)?lock)(\s+(.*))?\s*?$/i) {
339         return 'lock: no addr 2' unless ($addressed);
340
341         my $function = lc $1;
342         my $faqtoid  = lc $4;
343
344         if ($faqtoid eq "") {
345             &help($function);
346             return;
347         }
348
349         if (&getFactoid($faqtoid) eq "") {
350             &msg($who, "factoid \002$faqtoid\002 does not exist");
351             return;
352         }
353
354         if ($function eq "lock") {
355             # strongly requested by #debian on 19991028. -xk
356             if (1 and $faqtoid !~ /^\Q$who\E$/i and &IsFlag("o") ne "o") {
357                 &msg($who,"sorry, locking cannot be used since it can be abused unneccesarily.");
358                 &status("Replace 1 with 0 in Process.pl#~324 for locking support.");
359                 return;
360             }
361
362             &CmdLock($faqtoid);
363         } else {
364             &CmdUnLock($faqtoid);
365         }
366
367         return;
368     }
369
370     # factoid rename.
371     if ($message =~ s/^rename(\s+|$)//) {
372         return 'rename: no addr' unless ($addressed);
373
374         if ($message eq "") {
375             &help("rename");
376             return;
377         }
378
379         if ($message =~ /^'(.*)'\s+'(.*)'$/) {
380             my ($from,$to) = (lc $1, lc $2);
381
382             my $result = &getFactoid($from);
383             if (!defined $result) {
384                 &performReply("i didn't have anything called '$from' to rename");
385                 return;
386             }
387
388             # who == nick!user@host.
389             if (&IsFlag("m") ne "m" and $author !~ /^\Q$who\E\!/i) {
390                 &msg($who, "factoid '$from' is not yours to modify.");
391                 return;
392             }
393
394             if ($_ = &getFactoid($to)) {
395                 &performReply("destination factoid already exists.");
396                 return;
397             }
398
399             &setFactInfo($from,"factoid_key",$to);
400
401             &status("rename: <$who> '$from' is now '$to'");
402             &performReply("i renamed '$from' to '$to'");
403         } else {
404             &msg($who,"error: wrong format. ask me about 'help rename'.");
405         }
406
407         return;
408     }
409
410     # factoid substitution. (X =~ s/A/B/FLAG)
411     if ($message =~ m|^(.*?)\s+=~\s+s([/,#])(.+?)\2(.*?)\2([a-z]*);?\s*$|) {
412         my ($faqtoid,$delim,$op,$np,$flags) = (lc $1, $2, $3, $4, $5);
413         return 'subst: no addr' unless ($addressed);
414
415         # incorrect format.
416         if ($np =~ /$delim/) {
417             &msg($who,"looks like you used the delimiter too many times. You may want to use a different delimiter, like ':' or '#'.");
418             return;
419         }
420
421         # success.
422         if (my $result = &getFactoid($faqtoid)) {
423             return 'subst: locked' if (&IsLocked($faqtoid) == 1);
424             my $was = $result;
425
426             if (($flags eq "g" && $result =~ s/\Q$op/$np/gi) || $result =~ s/\Q$op/$np/i) {
427                 # excessive length.
428                 if (length $result > $param{'maxDataSize'}) {
429                     &performReply("that's too long");
430                     return;
431                 }
432                 # min length.
433                 my $faqauth = &getFactInfo($faqtoid, "created_by");
434                 if ((length $result)*2 < length $was and
435                         &IsFlag("o") ne "o" and
436                         &IsHostMask($faqauth) != 2
437                 ) {
438                     &performReply("too drastic change of factoid.");
439                 }
440
441                 &setFactInfo($faqtoid, "factoid_value", $result);
442                 &status("update: '$faqtoid' =is=> '$result'; was '$was'");
443                 &performReply("OK");
444             } else {
445                 &performReply("that doesn't contain '$op'");
446             }
447         } else {
448             &performReply("i didn't have anything called '$faqtoid' to modify");
449         }
450
451         return;
452     }
453
454     # Fix up $message for question.
455     my $question = $message;
456     for ($question) {
457         # fix the string.
458         s/^hey([, ]+)where/where/i;
459         s/\s+\?$/?/;
460         s/whois/who is/ig;
461         s/where can i find/where is/i;
462         s/how about/where is/i;
463         s/ da / the /ig;
464
465         # clear the string of useless words.
466         s/^(stupid )?q(uestion)?:\s+//i;
467         s/^(does )?(any|ne)(1|one|body) know //i;
468
469         s/^[uh]+m*[,\.]* +//i;
470
471         s/^well([, ]+)//i;
472         s/^still([, ]+)//i;
473         s/^(gee|boy|golly|gosh)([, ]+)//i;
474         s/^(well|and|but|or|yes)([, ]+)//i;
475
476         s/^o+[hk]+(a+y+)?([,. ]+)//i;
477         s/^g(eez|osh|olly)([,. ]+)//i;
478         s/^w(ow|hee|o+ho+)([,. ]+)//i;
479         s/^heya?,?( folks)?([,. ]+)//i;
480     }
481
482     if ($addressed and $message =~ s/^no([, ]+)(\Q$ident\E\,+)?\s*//i) {
483         $correction_plausible = 1;
484         &status("correction is plausible, initial negative and nick deleted ($&)") if ($param{VERBOSITY});
485     } else {
486         $correction_plausible = 0;
487     }
488
489     my $result = &doQuestion($question);
490     if (!defined $result or $result eq $noreply) {
491         return 'result from doQ undef.';
492     }
493
494     if (defined $result and $result !~ /^0?$/) {        # question.
495         &status("question: <$who> $message");
496         $count{'Question'}++;
497     } elsif (&IsChanConf('Math') > 0 and $addressed) { # perl math.
498         &loadMyModule('Math');
499         my $newresult = &perlMath();
500
501         if (defined $newresult and $newresult ne "") {
502             $cmdstats{'Maths'}++;
503             $result = $newresult;
504             &status("math: <$who> $message => $result");
505         }
506     }
507
508     if ($result !~ /^0?$/) {
509         &performStrictReply($result);
510         return;
511     }
512
513     # why would a friendly bot get passed here?
514     if (&IsParam('friendlyBots')) {
515         return if (grep lc($_) eq lc($who), split(/\s+/, $param{'friendlyBots'}));
516     }
517
518     # do the statement.
519     if (!defined &doStatement($message)) {
520         return;
521     }
522
523     return unless ($addressed and !$addrchar);
524
525     if (length $message > 64) {
526         &status("unparseable-moron: $message");
527 #       &performReply( &getRandom(keys %{ $lang{'moron'} }) );
528         $count{'Moron'}++;
529
530         &performReply("You are moron \002#". $count{'Moron'} ."\002");
531         return;
532     }
533
534     &status("unparseable: $message");
535     &performReply( &getRandom(keys %{ $lang{'dunno'} }) );
536     $count{'Dunno'}++;
537 }
538
539 1;