]> git.donarmstrong.com Git - infobot.git/blob - src/IRC/IrcHelpers.pl
show addressCharacter in error
[infobot.git] / src / IRC / IrcHelpers.pl
1 #
2 # IrcHooks.pl: IRC Hooks stuff.
3 #      Author: dms
4 #     Version: 20010413
5 #     Created: 20010413
6 #        NOTE: Based on code by Kevin Lenzo & Patrick Cole  (c) 1997
7 #
8
9 #######################################################################
10 ####### IRC HOOK HELPERS   IRC HOOK HELPERS   IRC HOOK HELPERS ########
11 #######################################################################
12
13 #####
14 # Usage: &hookMode($nick, $modes, @targets);
15 sub hookMode {
16     my ($nick, $modes, @targets) = @_;
17     my $parity  = 0;
18
19     if ($chan =~ tr/A-Z/a-z/) {
20         &VERB("hookMode: cased $chan.",2);
21     }
22
23     my $mode;
24     foreach $mode (split(//, $modes)) {
25         # sign.
26         if ($mode =~ /[-+]/) {
27             $parity = 1         if ($mode eq "+");
28             $parity = 0         if ($mode eq "-");
29             next;
30         }
31
32         # mode with target.
33         if ($mode =~ /[bklov]/) {
34             my $target = shift @targets;
35
36             if ($parity) {
37                 $chanstats{$chan}{'Op'}++    if ($mode eq "o");
38                 $chanstats{$chan}{'Ban'}++   if ($mode eq "b");
39             } else {
40                 $chanstats{$chan}{'Deop'}++  if ($mode eq "o");
41                 $chanstats{$chan}{'Unban'}++ if ($mode eq "b");
42             }
43
44             # modes w/ target affecting nick => cache it.
45             if ($mode =~ /[bov]/) {
46                 $channels{$chan}{$mode}{$target}++      if  $parity;
47                 delete $channels{$chan}{$mode}{$target} if !$parity;
48
49                 # lets do some custom stuff.
50                 if ($mode eq "o" and $parity) {
51                     if ($nick eq "ChanServ" and $target =~ /^\Q$ident\E$/i) {
52                         &VERB("hookmode: chanserv deopped us! asking",2);
53                         &chanServCheck($chan);
54                     }
55
56                     &chanLimitVerify($chan);
57                 }
58             }
59
60             if ($mode =~ /[l]/) {
61                 $channels{$chan}{$mode} = $target       if  $parity;
62                 delete $channels{$chan}{$mode}          if !$parity;
63             }
64         }
65
66         # important channel modes, targetless.
67         if ($mode =~ /[mt]/) {
68             $channels{$chan}{$mode}++                   if  $parity;
69             delete $channels{$chan}{$mode}              if !$parity;
70         }
71     }
72 }
73
74 sub hookMsg {
75     ($msgType, $chan, $who, $message) = @_;
76     my $skipmessage     = 0;
77     $addressed          = 0;
78     $addressedother     = 0;
79     $orig{message}      = $message;
80     $orig{who}          = $who;
81     $addrchar           = 0;
82
83     $message    =~ s/[\cA-\c_]//ig;     # strip control characters
84     $message    =~ s/^\s+//;            # initial whitespaces.
85     $who        =~ tr/A-Z/a-z/;         # lowercase.
86     my $mynick = $conn->nick();
87
88     &showProc();
89
90     # addressing.
91     if ($msgType =~ /private/) {
92         # private messages.
93         $addressed = 1;
94         if (&IsChanConf('addressCharacter')) {
95             $addressCharacter = getChanConf('addressCharacter');
96             if ($message =~ s/^\Q$addressCharacter\E//) {
97                 &msg($who, "please don't use the the addressCharacter \"$addressCharacter\" when private messaging");
98             }
99         }
100     } else {
101         # public messages.
102         # addressing revamped by the xk.
103         ### below needs to be fixed...
104         if (&IsChanConf('addressCharacter')) {
105             $addressCharacter = getChanConf('addressCharacter');
106             if ($message =~ s/^\Q$addressCharacter\E//) {
107                 $addrchar  = 1;
108                 $addressed = 1;
109             }
110         }
111
112         if ($message =~ /^($mask{nick})([\;\:\>\, ]+) */) {
113             my $newmessage = $';
114             if ($1 =~ /^\Q$mynick\E$/i) {
115                 $message   = $newmessage;
116                 $addressed = 1;
117             } else {
118                 # ignore messages addressed to other people or unaddressed.
119                 $skipmessage++ if ($2 ne "" and $2 !~ /^ /);
120             }
121         }
122     }
123
124     # Determine floodwho.
125     my $c       = "_default";
126     if ($msgType =~ /public/i) {
127         # public.
128         $floodwho = $c = lc $chan;
129     } elsif ($msgType =~ /private/i) {
130         # private.
131         $floodwho = lc $who;
132     } else {
133         # dcc?
134         &FIXME("floodwho = ???");
135     }
136
137     my $val = &getChanConfDefault("floodRepeat", "2:5", $c);
138     my ($count, $interval) = split /:/, $val;
139
140     # flood repeat protection.
141     if ($addressed) {
142         my $time = $flood{$floodwho}{$message} || 0;
143
144         if ($msgType eq "public" and (time() - $time < $interval)) {
145             ### public != personal who so the below is kind of pointless.
146             my @who;
147             foreach (keys %flood) {
148                 next if (/^\Q$floodwho\E$/);
149                 next if (defined $chan and /^\Q$chan\E$/);
150
151                 push(@who, grep /^\Q$message\E$/i, keys %{ $flood{$_} });
152             }
153
154             return if ($lobotomized);
155
156             if (!scalar @who) {
157                 push(@who,"Someone");
158             }
159             &msg($who,join(' ', @who)." already said that ". (time - $time) ." seconds ago" );
160
161             ### TODO: delete old floodwarn{} keys.
162             my $floodwarn = 0;
163             if (!exists $floodwarn{$floodwho}) {
164                 $floodwarn++;
165             } else {
166                 $floodwarn++ if (time() - $floodwarn{$floodwho} > $interval);
167             }
168
169             if ($floodwarn) {
170                 &status("FLOOD repetition detected from $floodwho.");
171                 $floodwarn{$floodwho} = time();
172             }
173
174             return;
175         }
176
177         if ($addrchar) {
178             &status("$b_cyan$who$ob is short-addressing $mynick");
179         } elsif ($msgType eq "private") {       # private.
180             &status("$b_cyan$who$ob is /msg'ing $mynick");
181         } else {                                # public?
182             &status("$b_cyan$who$ob is addressing $mynick");
183         }
184
185         $flood{$floodwho}{$message} = time();
186     } elsif ($msgType eq "public" and &IsChanConf("kickOnRepeat")) {
187         # unaddressed, public only.
188
189         ### TODO: use a separate "short-time" hash.
190         my @data;
191         @data   = keys %{ $flood{$floodwho} } if (exists $flood{$floodwho});
192     }
193
194     $val = &getChanConfDefault("floodMessages", "5:30", $c);
195     ($count, $interval) = split /:/, $val;
196
197     # flood overflow protection.
198     if ($addressed) {
199         foreach (keys %{ $flood{$floodwho} }) {
200             next unless (time() - $flood{$floodwho}{$_} > $interval);
201             delete $flood{$floodwho}{$_};
202         }
203
204         my $i = scalar keys %{ $flood{$floodwho} };
205         if ($i > $count) {
206             my $expire = $param{'ignoreAutoExpire'} || 5;
207
208 #           &msg($who,"overflow of messages ($i > $count)");
209             &msg($who,"Too many queries from you, ignoring for $expire minutes.");
210             &status("FLOOD overflow detected from $floodwho; ignoring");
211
212             &ignoreAdd("*!$uh", $chan, $expire, "flood overflow auto-detected.");
213             return;
214         }
215
216         $flood{$floodwho}{$message} = time();
217     }
218
219     my @ignore;
220     if ($msgType =~ /public/i) {                    # public.
221         $talkchannel    = $chan;
222         &status("<$orig{who}/$chan> $orig{message}");
223         push(@ignore, keys %{ $ignore{$chan} }) if (exists $ignore{$chan});
224     } elsif ($msgType =~ /private/i) {             # private.
225         &status("[$orig{who}] $orig{message}");
226         $talkchannel    = undef;
227         $chan           = "_default";
228     } else {
229         &DEBUG("unknown msgType => $msgType.");
230     }
231     push(@ignore, keys %{ $ignore{"*"} }) if (exists $ignore{"*"});
232
233     if ((!$skipmessage or &IsChanConf("seenStoreAll") > 0) and
234         &IsChanConf("seen") > 0 and
235         $msgType =~ /public/
236     ) {
237         $seencache{$who}{'time'} = time();
238         $seencache{$who}{'nick'} = $orig{who};
239         $seencache{$who}{'host'} = $uh;
240         $seencache{$who}{'chan'} = $talkchannel;
241         $seencache{$who}{'msg'}  = $orig{message};
242         $seencache{$who}{'msgcount'}++;
243     }
244     if (&IsChanConf("minVolunteerLength")) {
245         # FIXME hack to treat unaddressed as if using addrchar
246         $addrchar = 1;
247     }
248     return if ($skipmessage);
249     return unless ($addrchar or $addressed);
250
251     foreach (@ignore) {
252         s/\*/\\S*/g;
253
254         next unless (eval { $nuh =~ /^$_$/i } );
255
256         # better to ignore an extra message than to allow one to get
257         # through, although it would be better to go through ignore
258         # checking again.
259         if (time() - ($cache{ignoreCheckTime} || 0) > 60) {
260             &ignoreCheck();
261         }
262
263         &status("IGNORE <$who> $message");
264         return;
265     }
266
267     if (defined $nuh) {
268         if (!defined $userHandle) {
269             &DEBUG("line 1074: need verifyUser?");
270             &verifyUser($who, $nuh);
271         }
272     } else {
273         &DEBUG("hookMsg: 'nuh' not defined?");
274     }
275
276 ### For extra debugging purposes...
277     if ($_ = &process()) {
278 #       &DEBUG("IrcHooks: process returned '$_'.");
279     }
280
281     # hack to remove +o from ppl with +O flag.
282     if (exists $users{$userHandle} && exists $users{$userHandle}{FLAGS} &&
283         $users{$userHandle}{FLAGS} =~ /O/
284     ) {
285         $users{$userHandle}{FLAGS} =~ s/o//g;
286     }
287
288     return;
289 }
290
291 # this is basically run on on_join or on_quit
292 sub chanLimitVerify {
293     my($c)      = @_;
294     $chan       = $c;
295     my $l       = $channels{$chan}{'l'};
296
297     return unless (&IsChanConf("chanlimitcheck"));
298
299     if (scalar keys %netsplit) {
300         &WARN("clV: netsplit active (1, chan = $chan); skipping.");
301         return;
302     }
303
304     if (!defined $l) {
305         &DEBUG("$chan: running chanlimitCheck from chanLimitVerify.");
306         &chanlimitCheck();
307         return;
308     }
309
310     # only change it if it's not set.
311     my $plus  = &getChanConfDefault("chanlimitcheckPlus", 5, $chan);
312     my $count = scalar(keys %{ $channels{$chan}{''} });
313     my $int   = &getChanConfDefault("chanlimitcheckInterval", 10, $chan);
314
315     my $delta = $count + $plus - $l;
316 #   $delta    =~ s/^\-//;
317
318     if ($plus <= 3) {
319         &WARN("clc: stupid to have plus at $plus, fix it!");
320     }
321
322     if (exists $cache{chanlimitChange}{$chan}) {
323         if (time() - $cache{chanlimitChange}{$chan} < $int*60) {
324             return;
325         }
326     }
327
328     &chanServCheck($chan);
329
330     ### TODO: unify code with chanlimitcheck()
331     return if ($delta > 5);
332
333     &status("clc: big change in limit for $chan ($delta);".
334                 "going for it. (was: $l; now: ".($count+$plus).")");
335
336     $conn->mode($chan, "+l", $count+$plus);
337     $cache{chanlimitChange}{$chan} = time();
338 }
339
340 sub chanServCheck {
341     ($chan) = @_;
342
343     if (!defined $chan or $chan =~ /^\s*$/) {
344         &WARN("chanServCheck: chan == NULL.");
345         return 0;
346     }
347
348     if ($chan =~ tr/A-Z/a-z/) {
349         &DEBUG("chanServCheck: lowercased chan ($chan)");
350     }
351
352     if (! &IsChanConf("chanServ_ops") ) {
353         return 0;
354     }
355
356     &VERB("chanServCheck($chan) called.",2);
357
358     if ( &IsParam("nickServ_pass") and !$nickserv) {
359         $conn->who("NickServ");
360         return 0;
361     }
362
363     # check for first hash then for next hash.
364     # TODO: a function for &ischanop()? &isvoice()?
365     if (exists $channels{$chan} and exists $channels{$chan}{'o'}{$ident}) {
366         return 0;
367     }
368
369     &status("ChanServ ==> Requesting ops for $chan. (chanServCheck)");
370     &rawout("PRIVMSG ChanServ :OP $chan $ident");
371     return 1;
372 }
373
374 1;