]> git.donarmstrong.com Git - infobot.git/blob - src/IRC/IrcHooks.pl
- pointless regex in on_dcc_chat_open that I was going to deal with on
[infobot.git] / src / IRC / IrcHooks.pl
1 #
2 # IrcHooks.pl: IRC Hooks stuff.
3 #      Author: dms
4 #     Version: 20000126
5 #        NOTE: Based on code by Kevin Lenzo & Patrick Cole  (c) 1997
6 #
7
8 if (&IsParam("useStrict")) { use strict; }
9
10 # GENERIC. TO COPY.
11 sub on_generic {
12     my ($self, $event) = @_;
13     my $nick = $event->nick();
14     my $chan = ($event->to)[0];
15
16     &DEBUG("on_generic: nick => '$nick'.");
17     &DEBUG("on_generic: chan => '$chan'.");
18
19     foreach ($event->args) {
20         &DEBUG("on_generic: args => '$_'.");
21     }
22 }
23
24 sub on_action {
25     my ($self, $event) = @_;
26     my ($nick, @args) = ($event->nick, $event->args);
27     my $chan = ($event->to)[0];
28
29     shift @args;
30
31     if ($chan eq $ident) {
32         &status("* [$nick] @args");
33     } else {
34         &status("* $nick/$chan @args");
35     }
36 }
37
38 sub on_chat {
39     my ($self, $event) = @_;
40     my $msg  = ($event->args)[0];
41     my $sock = ($event->to)[0];
42     my $nick = $event->nick();
43
44     if (!exists $nuh{$nick}) {
45         &DEBUG("chat: nuh{$nick} doesn't exist; trying WHOIS .");
46         $self->whois($nick);
47         return;
48     }
49
50     ### set vars that would have been set in hookMsg.
51     $userHandle         = "";   # reset.
52     $who                = lc $nick;
53     $message            = $msg;
54     $orig{who}          = $nick;
55     $orig{message}      = $msg;
56     $nuh                = $nuh{$who};
57     $uh                 = (split /\!/, $nuh)[1];
58     $addressed          = 1;
59     $msgType            = 'chat';
60
61     if (!exists $dcc{'CHATvrfy'}{$nick}) {
62         $userHandle     = &verifyUser($who, $nuh);
63         my $crypto      = $users{$userHandle}{PASS};
64         my $success     = 0;
65
66         ### TODO: prevent users without CRYPT chatting.
67         if (!defined $crypto) {
68             &DEBUG("chat: no pass required.");
69 ###         $success++;
70
71         } elsif (&ckpasswd($msg, $crypto)) {
72             # stolen from eggdrop.
73             $self->privmsg($sock, "Connected to $ident");
74             $self->privmsg($sock, "Commands start with '.' (like '.quit' or '.help')");
75             $self->privmsg($sock, "Everything else goes out to the party line.");
76
77             &dccStatus(2) unless (exists $sched{"dccStatus"}{RUNNING});
78
79             $success++;
80
81         } else {
82             &status("DCC CHAT: incorrect pass; closing connection.");
83             &DEBUG("chat: sock => '$sock'.");
84 ###         $sock->close();
85             delete $dcc{'CHAT'}{$nick};
86             &DEBUG("chat: after closing sock. FIXME");
87             ### BUG: close seizes bot. why?
88         }
89
90         if ($success) {
91             &status("DCC CHAT: user $nick is here!");
92             &DCCBroadcast("*** $nick ($uh) joined the party line.");
93
94             $dcc{'CHATvrfy'}{$nick} = $userHandle;
95
96             return if ($userHandle eq "_default");
97
98             &dccsay($nick,"Flags: $users{$userHandle}{FLAGS}");
99         }
100
101         return;
102     }
103
104     &status("$b_red=$b_cyan$who$b_red=$ob $message");
105
106     if ($message =~ s/^\.//) {  # dcc chat commands.
107         ### TODO: make use of &Forker(); here?
108         &loadMyModule( $myModules{'ircdcc'} );
109
110         &DCCBroadcast("#$who# $message","m");
111
112         my $retval      = &userDCC();
113         return unless (defined $retval);
114         return if ($retval eq $noreply);
115
116         $conn->privmsg($dcc{'CHAT'}{$who}, "Invalid command.");
117
118     } else {                    # dcc chat arena.
119
120         foreach (keys %{$dcc{'CHAT'}}) {
121             $conn->privmsg($dcc{'CHAT'}{$_}, "<$who> $orig{message}");
122         }
123     }
124
125     return 'DCC CHAT MESSAGE';
126 }
127
128 sub on_endofmotd {
129     my ($self) = @_;
130
131     # what's the following for?
132     $ident                      = $param{'ircNick'};
133     # update IRCStats.
134     $ircstats{'ConnectTime'}    = time();
135     $ircstats{'ConnectCount'}++;
136
137     if (&IsChanConf("wingate")) {
138         my $file = "$bot_base_dir/$param{'ircUser'}.wingate";
139         open(IN, $file);
140         while (<IN>) {
141             chop;
142             next unless (/^(\S+)\*$/);
143             push(@wingateBad, $_);
144         }
145         close IN;
146     }
147
148     if ($firsttime) {
149         &ScheduleThis(1, \&setupSchedulers);
150         $firsttime = 0;
151     }
152
153     if (&IsParam("ircUMode")) {
154         &status("Attempting change of user modes to $param{'ircUMode'}.");
155         &rawout("MODE $ident $param{'ircUMode'}");
156     }
157
158     &status("End of motd. Now lets join some channels...");
159     if (!scalar @joinchan) {
160         &WARN("joinchan array is empty!!!");
161         @joinchan = &getJoinChans();
162     }
163
164     &joinNextChan();
165 }
166
167 sub on_dcc {
168     my ($self, $event) = @_;
169     my $type = uc( ($event->args)[1] );
170     my $nick = $event->nick();
171
172     # pity Net::IRC doesn't store nuh. Here's a hack :)
173     if (!exists $nuh{lc $nick}) {
174         $self->whois($nick);
175         $nuh{lc $nick}  = "GETTING-NOW";        # trying.
176     }
177     $type ||= "???";
178
179     if ($type eq 'SEND') {      # GET for us.
180         # incoming DCC SEND. we're receiving a file.
181         my $get = ($event->args)[2];
182         open(DCCGET,">$get");
183
184         $self->new_get($nick,
185                 ($event->args)[2],
186                 ($event->args)[3],
187                 ($event->args)[4],
188                 ($event->args)[5],
189                 \*DCCGET
190         );
191     } elsif ($type eq 'GET') {  # SEND for us?
192         &status("DCC: Initializing SEND for $nick.");
193         $self->new_send($event->args);
194     } elsif ($type eq 'CHAT') {
195         &status("DCC: Initializing CHAT for $nick.");
196         $self->new_chat($event);
197     } else {
198         &WARN("${b_green}DCC $type$ob (1)");
199     }
200 }
201
202 sub on_dcc_close {
203     my ($self, $event) = @_;
204     my $nick = $event->nick();
205     my $sock = ($event->to)[0];
206
207     # DCC CHAT close on fork exit workaround.
208     if ($bot_pid != $$) {
209         &WARN("run-away fork; exiting.");
210         &delForked($forker);
211     }
212
213     if (exists $dcc{'SEND'}{$nick} and -f "$param{tempDir}/$nick.txt") {
214         &status("${b_green}DCC SEND$ob close from $b_cyan$nick$ob");
215
216         &status("dcc_close: purging $nick.txt from Debian.pl");
217         unlink "$param{tempDir}/$nick.txt";
218
219         delete $dcc{'SEND'}{$nick};
220     } elsif (exists $dcc{'CHAT'}{$nick} and $dcc{'CHAT'}{$nick} eq $sock) {
221         &status("${b_green}DCC CHAT$ob close from $b_cyan$nick$ob");
222         delete $dcc{'CHAT'}{$nick};
223         delete $dcc{'CHATvrfy'}{$nick};
224     } else {
225         &status("${b_green}DCC$ob UNKNOWN close from $b_cyan$nick$ob (2)");
226     }
227 }
228
229 sub on_dcc_open {
230     my ($self, $event) = @_;
231     my $type = uc( ($event->args)[0] );
232     my $nick = $event->nick();
233     my $sock = ($event->to)[0];
234
235     $msgType = 'chat';
236     $type ||= "???";
237     ### BUG: who is set to bot's nick?
238
239     # lets do it.
240     if ($type eq 'SEND') {
241         &status("${b_green}DCC lGET$ob established with $b_cyan$nick$ob");
242
243     } elsif ($type eq 'CHAT') {
244         # very cheap hack.
245         ### TODO: run ScheduleThis inside on_dcc_open_chat recursively
246         ###     1,3,5,10 seconds then fail.
247         if ($nuh{$nick} eq "GETTING-NOW") {
248             &ScheduleThis(3/60, "on_dcc_open_chat", $nick, $sock);
249         } else {
250             on_dcc_open_chat(undef, $nick, $sock);
251         }
252
253     } elsif ($type eq 'SEND') {
254         &DEBUG("Starting DCC receive.");
255         foreach ($event->args) {
256             &DEBUG("  => '$_'.");
257         }
258
259     } else {
260         &WARN("${b_green}DCC $type$ob (3)");
261
262     }
263 }
264
265 # really custom sub to get NUH since Net::IRC doesn't appear to support
266 # it.
267 sub on_dcc_open_chat {
268     my(undef, $nick,$sock) = @_;
269
270     if ($nuh{$nick} eq "GETTING-NOW") {
271         &DEBUG("getting nuh for $nick failed. FIXME.");
272         return;
273     }
274
275     &status("${b_green}DCC CHAT$ob established with $b_cyan$nick$ob $b_yellow($ob$nuh{$nick}$b_yellow)$ob");
276
277     &verifyUser($nick, $nuh{lc $nick});
278
279     if (!exists $users{$userHandle}{HOSTS}) {
280         &pSReply("you have no hosts defined in my user file; rejecting.");
281         ### TODO: $sock->close();
282         return;
283     }
284
285     my $crypto  = $users{$userHandle}{PASS};
286     $dcc{'CHAT'}{$nick} = $sock;
287
288     if (defined $crypto) {
289         &dccsay($nick,"Enter your password.");
290     } else {
291         &dccsay($nick,"Welcome to blootbot DCC CHAT interface, $userHandle.");
292     }
293 }
294
295 sub on_disconnect {
296     my ($self, $event) = @_;
297     my $from = $event->from();
298     my $what = ($event->args)[0];
299
300     &status("disconnect from $from ($what).");
301     $ircstats{'DisconnectTime'}         = time();
302     $ircstats{'DisconnectReason'}       = $what;
303     $ircstats{'DisconnectCount'}++;
304
305     # clear any variables on reconnection.
306     $nickserv = 0;
307
308     &clearIRCVars();
309     if (!$self->connect()) {
310         &WARN("not connected? help me. gonna call ircCheck() in 1800s");
311         &ScheduleThis(30, "ircCheck");
312     }
313 }
314
315 sub on_endofnames {
316     my ($self, $event) = @_;
317     my $chan = ($event->args)[1];
318
319     if (exists $cache{jointime}{$chan}) {
320         my $delta_time = sprintf("%.03f", &gettimeofday() - $cache{jointime}{$chan});
321         $delta_time    = 0      if ($delta_time < 0);
322
323         &status("$b_blue$chan$ob: sync in ${delta_time}s.");
324     }
325
326     rawout("MODE $chan");
327
328     my $txt;
329     my @array;
330     foreach ("o","v","") {
331         my $count = scalar(keys %{$channels{$chan}{$_}});
332         next unless ($count);
333
334         $txt = "total" if ($_ eq "");
335         $txt = "voice" if ($_ eq "v");
336         $txt = "ops"   if ($_ eq "o");
337
338         push(@array, "$count $txt");
339     }
340     my $chanstats = join(' || ', @array);
341     &status("$b_blue$chan$ob: [$chanstats]");
342
343     if (scalar @joinchan) {     # remaining channels to join.
344         &joinNextChan();
345     }
346
347     return unless (&IsChanConf("chanServ_ops") > 0);
348     return unless ($nickserv);
349
350     if (!exists $channels{$chan}{'o'}{$ident}) {
351         &status("ChanServ ==> Requesting ops for $chan.");
352         &rawout("PRIVMSG ChanServ :OP $chan $ident");
353     }
354 }
355
356 sub on_init {
357     my ($self, $event) = @_;
358     my (@args) = ($event->args);
359     shift @args;
360
361     &status("@args");
362 }
363
364 sub on_invite {
365     my ($self, $event) = @_;
366     my $chan = lc( ($event->args)[0] );
367     my $nick = $event->nick;
368
369     if ($nick =~ /^\Q$ident\E$/) {
370         &DEBUG("on_invite: self invite.");
371         return;
372     }
373
374     ### TODO: join key.
375     if (exists $chanconf{$chan}) {
376         if (&validChan($chan)) {
377             &msg($who, "i'm already in \002$chan\002.");
378             next;
379         }
380
381         &status("invited to $b_blue$_$ob by $b_cyan$who$ob");
382         &joinchan($self, $_);
383     }
384 }
385
386 sub on_join {
387     my ($self, $event) = @_;
388     my ($user,$host) = split(/\@/, $event->userhost);
389     $chan       = lc( ($event->to)[0] );        # CASING!!!!
390     $who        = $event->nick();
391
392     $chanstats{$chan}{'Join'}++;
393     $userstats{lc $who}{'Join'} = time() if (&IsChanConf("seenStats"));
394
395     &joinfloodCheck($who, $chan, $event->userhost);
396
397     # netjoin detection.
398     my $netsplit = 0;
399     if (exists $netsplit{lc $who}) {
400         delete $netsplit{lc $who};
401         $netsplit = 1;
402     }
403
404     if ($netsplit and !$netsplittime) {
405         &DEBUG("on_join: ok.... re-running chanlimitCheck in 60.");
406         $conn->schedule(60, sub {
407                 &chanlimitCheck();
408                 $netsplittime = undef;
409         } );
410
411         $netsplittime = time();
412     }
413
414     # how to tell if there's a netjoin???
415
416     my $netsplitstr = "";
417     $netsplitstr = " $b_yellow\[${ob}NETSPLIT VICTIM$b_yellow]$ob" if ($netsplit);
418     &status(">>> join/$b_blue$chan$ob $b_cyan$who$ob $b_yellow($ob$user\@$host$b_yellow)$ob$netsplitstr");
419
420     $channels{$chan}{''}{$who}++;
421     $nuh{lc $who} = $who."!".$user."\@".$host unless (exists $nuh{lc $who});
422
423     ### on-join ban. (TODO: kick)
424     if (exists $bans{$chan}) {
425         ### TODO: need to do $chan and _default
426         foreach (keys %{ $bans{$chan} }) {
427             s/\*/\\S*/g;
428             next unless /^\Q$nuh\E$/i;
429
430             foreach (keys %{ $channels{$chan}{'b'} }) {
431                 &DEBUG(" bans_on_chan($chan) => $_");
432             }
433
434             ### TODO: check $channels{$chan}{'b'} if ban already exists.
435             &ban( "*!*@".&makeHostMask($host), $chan);
436             last;
437         }
438     }
439
440     ### ROOTWARN:
441     &rootWarn($who,$user,$host,$chan)
442                 if (&IsChanConf("rootWarn") &&
443                     $user =~ /^r(oo|ew|00)t$/i &&
444                     $channels{$chan}{'o'}{$ident});
445
446     ### chanlimit check.
447     &chanLimitVerify($chan);
448
449     # used to determine sync time.
450     if ($who =~ /^$ident$/i) {
451         if (defined( my $whojoin = $cache{join}{$chan} )) {
452             &msg($chan, "Okay, I'm here. (courtesy of $whojoin)");
453             delete $cache{join}{$chan};
454         }
455
456         ### TODO: move this to &joinchan()?
457         $cache{jointime}{$chan} = &gettimeofday();
458         rawout("WHO $chan");
459     } else {
460         ### TODO: this may go wild on a netjoin :)
461         ### WINGATE:
462         &wingateCheck();
463     }
464 }
465
466 sub on_kick {
467     my ($self, $event) = @_;
468     my ($chan,$reason) = $event->args;
469     my $kicker  = $event->nick;
470     my $kickee  = ($event->to)[0];
471     my $uh      = $event->userhost();
472
473     &status(">>> kick/$b_blue$chan$ob [$b$kickee!$uh$ob] by $b_cyan$kicker$ob $b_yellow($ob$reason$b_yellow)$ob");
474
475     $chan = lc $chan;   # forgot about this, found by xsdg, 20001229.
476     $chanstats{$chan}{'Kick'}++;
477
478     if ($kickee eq $ident) {
479         &clearChanVars($chan);
480
481         &status("SELF attempting to rejoin lost channel $chan");
482         &joinchan($chan);
483     } else {
484         &DeleteUserInfo($kickee,$chan);
485     }
486 }
487
488 sub on_mode {
489     my ($self, $event)  = @_;
490     my ($user, $host)   = split(/\@/, $event->userhost);
491     my @args = $event->args();
492     my $nick = $event->nick();
493     my $chan = ($event->to)[0];
494
495     $args[0] =~ s/\s$//;
496
497     if ($nick eq $chan) {       # UMODE
498         &status(">>> mode $b_yellow\[$ob$b@args$b_yellow\]$ob by $b_cyan$nick$ob");
499     } else {                    # MODE
500         &status(">>> mode/$b_blue$chan$ob $b_yellow\[$ob$b@args$b_yellow\]$ob by $b_cyan$nick$ob");
501         &hookMode($chan, @args);
502     }
503 }
504
505 sub on_modeis {
506     my ($self, $event) = @_;
507     my $nick = $event->nick();
508     my ($myself,$chan,@args) = $event->args();
509
510     &hookMode(lc $chan, @args);         # CASING.
511 }
512
513 sub on_msg {
514     my ($self, $event) = @_;
515     my $nick = $event->nick;
516     my $msg  = ($event->args)[0];
517
518     ($user,$host) = split(/\@/, $event->userhost);
519     $uh         = $event->userhost();
520     $nuh        = $nick."!".$uh;
521
522     &hookMsg('private', undef, $nick, $msg);
523 }
524
525 sub on_names {
526     my ($self, $event) = @_;
527     my @args = $event->args;
528     my $chan = lc $args[2];             # CASING, the last of them!
529
530     foreach (split / /, @args[3..$#args]) {
531         $channels{$chan}{'o'}{$_}++     if s/\@//;
532         $channels{$chan}{'v'}{$_}++     if s/\+//;
533         $channels{$chan}{''}{$_}++;
534     }
535 }
536
537 sub on_nick {
538     my ($self, $event) = @_;
539     my $nick = $event->nick();
540     my $newnick = ($event->args)[0];
541
542     if (exists $netsplit{lc $newnick}) {
543         &status("Netsplit: $newnick/$nick came back from netsplit and changed to original nick! removing from hash.");
544         delete $netsplit{lc $newnick};
545     }
546
547     my ($chan,$mode);
548     foreach $chan (keys %channels) {
549         foreach $mode (keys %{$channels{$chan}}) {
550             next unless (exists $channels{$chan}{$mode}{$nick});
551
552             $channels{$chan}{$mode}{$newnick} = $channels{$chan}{$mode}{$nick};
553         }
554     }
555     &DeleteUserInfo($nick,keys %channels);
556     $nuh{lc $newnick} = $nuh{lc $nick};
557     delete $nuh{lc $nick};
558
559     # successful self-nick change.
560     if ($nick eq $ident) {
561         &status(">>> I materialized into $b_green$newnick$ob from $nick");
562         $ident = $newnick;
563     } else {
564         &status(">>> $b_cyan$nick$ob materializes into $b_green$newnick$ob");
565     }
566 }
567
568 sub on_nick_taken {
569     my ($self) = @_;
570     my $nick = $self->nick;
571     my $newnick = substr($nick,0,7)."-";
572
573     &status("nick taken; changing to temporary nick.");
574     &nick($newnick);
575     &getNickInUse(1);
576 }
577
578 sub on_notice {
579     my ($self, $event) = @_;
580     my $nick = $event->nick();
581     my $chan = ($event->to)[0];
582     my $args = ($event->args)[0];
583
584     if ($nick =~ /^NickServ$/i) {               # nickserv.
585         &status("NickServ: <== '$args'");
586
587         if ($args =~ /^This nickname is registered/i) {
588             &status("nickserv told us to register; doing it.");
589             if (&IsParam("nickServ_pass")) {
590                 &status("NickServ: ==> Identifying.");
591                 &rawout("PRIVMSG NickServ :IDENTIFY $param{'nickServ_pass'}");
592                 return;
593             } else {
594                 &status("We can't tell nickserv a passwd ;(");
595             }
596         }
597
598         # password accepted.
599         if ($args =~ /^Password a/i) {
600             $nickserv++;
601         }
602     } elsif ($nick =~ /^ChanServ$/i) {          # chanserv.
603         &status("ChanServ: <== '$args'.");
604     } else {
605         if ($chan =~ /^$mask{chan}$/) { # channel notice.
606             &status("-$nick/$chan- $args");
607         } else {
608             $server = $nick unless (defined $server);
609             &status("-$nick- $args");   # private or server notice.
610         }
611     }
612 }
613
614 sub on_other {
615     my ($self, $event) = @_;
616     my $chan = ($event->to)[0];
617     my $nick = $event->nick;
618
619     &status("!!! other called.");
620     &status("!!! $event->args");
621 }
622
623 sub on_part {
624     my ($self, $event) = @_;
625     my $chan = lc( ($event->to)[0] );   # CASING!!!
626     my $nick = $event->nick;
627     my $userhost = $event->userhost;
628
629     if (exists $floodjoin{$chan}{$nick}{Time}) {
630         delete $floodjoin{$chan}{$nick};
631     }
632
633     $chanstats{$chan}{'Part'}++;
634     &DeleteUserInfo($nick,$chan);
635     &clearChanVars($chan) if ($nick eq $ident);
636     if (!&IsNickInAnyChan($nick) and &IsChanConf("seenStats")) {
637         delete $userstats{lc $nick};
638     }
639
640     &status(">>> part/$b_blue$chan$ob $b_cyan$nick$ob $b_yellow($ob$userhost$b_yellow)$ob");
641 }
642
643 sub on_ping {
644     my ($self, $event) = @_;
645     my $nick = $event->nick;
646
647     $self->ctcp_reply($nick, join(' ', ($event->args)));
648     &status(">>> ${b_green}CTCP PING$ob request from $b_cyan$nick$ob received.");
649 }
650
651 sub on_ping_reply {
652     my ($self, $event) = @_;
653     my $nick = $event->nick;
654     my $lag = time() - ($event->args)[1];
655
656     &status(">>> ${b_green}CTCP PING$ob reply from $b_cyan$nick$ob: $lag sec.");
657 }
658
659 sub on_public {
660     my ($self, $event) = @_;
661     my $msg  = ($event->args)[0];
662     my $chan = lc( ($event->to)[0] );   # CASING.
663     my $nick = $event->nick;
664     $uh      = $event->userhost();
665     $nuh     = $nick."!".$uh;
666     ($user,$host) = split(/\@/, $uh);
667
668     if ($bot_pid != $$) {
669         &ERROR("run-away fork; exiting.");
670         &delForked($forker);
671     }
672
673     ### DEBUGGING.
674     if ($statcount < 200) {
675         foreach $chan (grep /[A-Z]/, keys %channels) {
676             &DEBUG("leak: chan => '$chan'.");
677             my ($i,$j);
678             foreach $i (keys %{$channels{$chan}}) {  
679                 foreach (keys %{$channels{$chan}{$i}}) {
680                     &DEBUG("leak:   \$channels{$chan}{$i}{$_} ...");
681                 }
682             }
683         }
684     }
685
686
687     $msgtime = time();
688     $lastWho{$chan} = $nick;
689     ### TODO: use $nick or lc $nick?
690     if (&IsChanConf("seenStats")) {
691         $userstats{lc $nick}{'Count'}++;
692         $userstats{lc $nick}{'Time'} = time();
693     }
694
695 #    if (&IsChanConf("hehCounter")) {
696 #       #...
697 #    }
698
699     &hookMsg('public', $chan, $nick, $msg);
700     $chanstats{$chan}{'PublicMsg'}++;
701 }
702
703 sub on_quit {
704     my ($self, $event) = @_;
705     my $nick = $event->nick();
706     my $reason = ($event->args)[0];
707
708     my $count   = 0;
709     foreach (keys %channels) {
710         # fixes inconsistent chanstats bug #1.
711         if (!&IsNickInChan($nick,$_)) {
712             $count++;
713             next;
714         }
715         $chanstats{$_}{'SignOff'}++;
716     }
717
718     if ($count == scalar keys %channels) {
719         &DEBUG("on_quit: nick $nick was not found in any chan.");
720     }
721
722     &DeleteUserInfo($nick, keys %channels);
723
724     if (exists $nuh{lc $nick}) {
725         delete $nuh{lc $nick};
726     } else {
727         &DEBUG("on_quit: nuh{lc $nick} does not exist! FIXME");
728     }
729     delete $userstats{lc $nick} if (&IsChanConf("seenStats"));
730
731     # should fix chanstats inconsistencies bug #2.
732     if ($reason=~/^($mask{host})\s($mask{host})$/) {    # netsplit.
733         $reason = "NETSPLIT: $1 <=> $2";
734
735         if (&ChanConfList("chanlimitcheck") and !scalar keys %netsplit) {
736             &DEBUG("on_quit: netsplit detected; disabling chan limit.");
737             &rawout("MODE $chan -l");
738         }
739
740         $netsplit{lc $nick} = time();
741         if (!exists $netsplitservers{$1}{$2}) {
742             &status("netsplit detected between $1 and $2.");
743             $netsplitservers{$1}{$2} = time();
744         }
745     }
746
747     &status(">>> $b_cyan$nick$ob has signed off IRC $b_red($ob$reason$b_red)$ob");
748     if ($nick =~ /^\Q$ident\E$/) {
749         &DEBUG("^^^ THIS SHOULD NEVER HAPPEN.");
750     }
751
752     if ($nick !~ /^\Q$ident\E$/ and $nick =~ /^\Q$param{'ircNick'}\E$/i) {
753         &status("own nickname became free; changing.");
754         &nick($param{'ircNick'});
755     }
756 }
757
758 sub on_targettoofast {
759     my ($self, $event) = @_;
760     my $nick = $event->nick();
761     my($me,$chan,$why) = $event->args();
762
763 ###    .* wait (\d+) second/) {
764         &status("X1 $msg");
765         my $sleep = 5;
766         &status("going to sleep for $sleep...");
767         sleep $sleep;
768         &joinNextChan();
769 ### }
770 }
771
772 sub on_topic {
773     my ($self, $event) = @_;
774
775     if (scalar($event->args) == 1) {    # change.
776         my $topic = ($event->args)[0];
777         my $chan  = ($event->to)[0];
778         my $nick  = $event->nick();
779
780         ###
781         # WARNING:
782         #       race condition here. To fix, change '1' to '0'.
783         #       This will keep track of topics set by bot only.
784         ###
785         # UPDATE:
786         #       this may be fixed at a later date with topic queueing.
787         ###
788
789         $topic{$chan}{'Current'} = $topic if (1);
790         $chanstats{$chan}{'Topic'}++;
791
792         &status(">>> topic/$b_blue$chan$ob by $b_cyan$nick$ob -> $topic");
793     } else {                                            # join.
794         my ($nick, $chan, $topic) = $event->args;
795         if (&IsChanConf("topic")) {
796             $topic{$chan}{'Current'}    = $topic;
797             &topicAddHistory($chan,$topic);
798         }
799
800         $topic = &fixString($topic, 1);
801         &status(">>> topic/$b_blue$chan$ob is $topic");
802     }
803 }
804
805 sub on_topicinfo {
806     my ($self, $event) = @_;
807     my ($myself,$chan,$setby,$time) = $event->args();
808
809     my $timestr;
810     if (time() - $time > 60*60*24) {
811         $timestr        = "at ". localtime $time;
812     } else {
813         $timestr        = &Time2String(time() - $time) ." ago";
814     }
815
816     &status(">>> set by $b_cyan$setby$ob $timestr");
817 }
818
819 sub on_crversion {
820     my ($self, $event) = @_;
821     my $nick    = $event->nick();
822     my $ver;
823
824     if (scalar $event->args() != 1) {   # old.
825         $ver    = join ' ', $event->args();
826         $ver    =~ s/^VERSION //;
827     } else {                            # new.
828         $ver    = ($event->args())[0];
829     }
830
831     if (grep /^\Q$nick\E$/i, @vernick) {
832         &WARN("nick $nick found in vernick; skipping.");
833         return;
834     }
835     push(@vernick, $nick);
836
837     if ($ver =~ /bitchx/i) {
838         $ver{bitchx}{$nick}     = $ver;
839     } elsif ($ver =~ /xc\!|xchat/i) {
840         $ver{xchat}{$nick}      = $ver;
841     } elsif ($ver =~ /irssi/i) {
842         $ver{irssi}{$nick}      = $ver;
843     } elsif ($ver =~ /epic/i) {
844         $ver{epic}{$nick}       = $ver;
845     } elsif ($ver =~ /mirc/i) {
846         $ver{mirc}{$nick}       = $ver;
847     } elsif ($ver =~ /ircle/i) {
848         $ver{ircle}{$nick}      = $ver;
849     } elsif ($ver =~ /ircII/i) {
850         $ver{ircII}{$nick}      = $ver;
851     } elsif ($ver =~ /sirc /i) {
852         $ver{sirc}{$nick}       = $ver;
853     } elsif ($ver =~ /kvirc/i) {
854         $ver{kvirc}{$nick}      = $ver;
855     } elsif ($ver =~ /eggdrop/i) {
856         $ver{eggdrop}{$nick}    = $ver;
857     } elsif ($ver =~ /xircon/i) {
858         $ver{xircon}{$nick}     = $ver;
859     } else {
860         $ver{other}{$nick}      = $ver;
861     }
862 }
863
864 sub on_version {
865     my ($self, $event) = @_;
866     my $nick = $event->nick;
867
868     &status(">>> ${b_green}CTCP VERSION$ob request from $b_cyan$nick$ob");
869     $self->ctcp_reply($nick, "VERSION $bot_version");
870 }
871
872 sub on_who {
873     my ($self, $event) = @_;
874     my @args    = $event->args;
875
876     $nuh{lc $args[5]} = $args[5]."!".$args[2]."\@".$args[3];
877 }
878
879 sub on_whoisuser {
880     my ($self, $event) = @_;
881     my @args    = $event->args;
882
883     &DEBUG("on_whoisuser: @args");
884
885     $nuh{lc $args[1]} = $args[1]."!".$args[2]."\@".$args[3];
886 }
887
888 #######################################################################
889 ####### IRC HOOK HELPERS   IRC HOOK HELPERS   IRC HOOK HELPERS ########
890 #######################################################################
891
892 #####
893 # Usage: &hookMode($chan, $modes, @targets);
894 sub hookMode {
895     my ($chan, $modes, @targets) = @_;
896     my $parity  = 0;
897
898     $chan = lc $chan;           # !!!.
899
900     my $mode;
901     foreach $mode (split(//, $modes)) {
902         # sign.
903         if ($mode =~ /[-+]/) {
904             $parity = 1         if ($mode eq "+");
905             $parity = 0         if ($mode eq "-");
906             next;
907         }
908
909         # mode with target.
910         if ($mode =~ /[bklov]/) {
911             my $target = shift @targets;
912
913             if ($parity) {
914                 $chanstats{$chan}{'Op'}++    if ($mode eq "o");
915                 $chanstats{$chan}{'Ban'}++   if ($mode eq "b");
916             } else {
917                 $chanstats{$chan}{'Deop'}++  if ($mode eq "o");
918                 $chanstats{$chan}{'Unban'}++ if ($mode eq "b");
919             }
920
921             # modes w/ target affecting nick => cache it.
922             if ($mode =~ /[bov]/) {
923                 $channels{$chan}{$mode}{$target}++      if  $parity;
924                 delete $channels{$chan}{$mode}{$target} if !$parity;
925             }
926
927             if ($mode =~ /[l]/) {
928                 $channels{$chan}{$mode} = $target       if  $parity;
929                 delete $channels{$chan}{$mode}          if !$parity;
930             }
931         }
932
933         # important channel modes, targetless.
934         if ($mode =~ /[mt]/) {
935             $channels{$chan}{$mode}++                   if  $parity;
936             delete $channels{$chan}{$mode}              if !$parity;
937         }
938     }
939 }
940
941 sub hookMsg {
942     ($msgType, $chan, $who, $message) = @_;
943     my $skipmessage     = 0;
944     $addressed          = 0;
945     $addressedother     = 0;
946     $orig{message}      = $message;
947     $orig{who}          = $who;
948     $addrchar           = 0;
949
950     $message    =~ s/[\cA-\c_]//ig;     # strip control characters
951     $message    =~ s/^\s+//;            # initial whitespaces.
952     $who        =~ tr/A-Z/a-z/;         # lowercase.
953
954     &showProc();
955
956     # addressing.
957     if ($msgType =~ /private/) {
958         # private messages.
959         $addressed = 1;
960     } else {
961         # public messages.
962         # addressing revamped by the xk.
963         ### below needs to be fixed...
964         if (&IsParam("addressCharacter")) {
965             if ($message =~ s/^$param{'addressCharacter'}//) {
966                 $addrchar  = 1;
967                 $addressed = 1;
968             }
969         }
970
971         if ($message =~ /^($mask{nick})([\;\:\>\, ]+) */) {
972             my $newmessage = $';
973             if ($1 =~ /^\Q$ident\E$/i) {
974                 $message   = $newmessage;
975                 $addressed = 1;
976             } else {
977                 # ignore messages addressed to other people or unaddressed.
978                 $skipmessage++ if ($2 ne "" and $2 !~ /^ /);
979             }
980         }
981     }
982
983     # Determine floodwho.
984     my $c       = "_default";
985     if ($msgType =~ /public/i) {                # public.
986         $floodwho = $c = lc $chan;
987     } elsif ($msgType =~ /private/i) {  # private.
988         $floodwho = lc $who;
989     } else {                            # dcc?
990         &DEBUG("FIXME: floodwho = ???");
991     }
992
993     my $val = &getChanConfDefault("floodRepeat", "2:10", $c);
994     my ($count, $interval) = split /:/, $val;
995
996     # flood repeat protection.
997     if ($addressed) {
998         my $time = $flood{$floodwho}{$message};
999
1000         if (defined $time and (time - $time < $interval)) {
1001             ### public != personal who so the below is kind of pointless.
1002             my @who;
1003             foreach (keys %flood) {
1004                 next if (/^\Q$floodwho\E$/);
1005                 next if (defined $chan and /^\Q$chan\E$/);
1006
1007                 push(@who, grep /^\Q$message\E$/i, keys %{$flood{$_}});
1008             }
1009
1010             if (scalar @who) {
1011                 &msg($who, "you already said what ".
1012                                 join(' ', @who)." have said.");
1013             } else {
1014                 &msg($who,"Someone already said that ". (time - $time) ." seconds ago" );
1015             }
1016
1017             ### TODO: delete old floodwarn{} keys.
1018             my $floodwarn = 0;
1019             if (!exists $floodwarn{$floodwho}) {
1020                 $floodwarn++;
1021             } else {
1022                 $floodwarn++ if (time() - $floodwarn{$floodwho} > $interval);
1023             }
1024
1025             if ($floodwarn) {
1026                 &status("FLOOD repetition detected from $floodwho.");
1027                 $floodwarn{$floodwho} = time();
1028             }
1029
1030             return;
1031         }
1032
1033         if ($addrchar) {
1034             &status("$b_cyan$who$ob is short-addressing me");
1035         } elsif ($msgType eq "private") {       # private.
1036             &status("$b_cyan$who$ob is /msg'ing me");
1037         } else {                                # public?
1038             &status("$b_cyan$who$ob is addressing me");
1039         }
1040
1041         $flood{$floodwho}{$message} = time();
1042     }
1043
1044     $val = &getChanConfDefault("floodMessages", "5:30", $c);
1045     ($count, $interval) = split /:/, $val;
1046
1047     # flood overflow protection.
1048     if ($addressed) {
1049         foreach (keys %{$flood{$floodwho}}) {
1050             next unless (time() - $flood{$floodwho}{$_} > $interval);
1051             delete $flood{$floodwho}{$_};
1052         }
1053
1054         my $i = scalar keys %{$flood{$floodwho}};
1055         if ($i > $count) {
1056             &msg($who,"overflow of messages ($i > $count)");
1057             &status("FLOOD overflow detected from $floodwho; ignoring");
1058
1059             my $expire = $param{'ignoreAutoExpire'} || 5;
1060             &ignoreAdd("*!$uh", $chan, $expire, "flood overflow auto-detected.");
1061             return;
1062         }
1063
1064         $flood{$floodwho}{$message} = time();
1065     }
1066
1067     if ($msgType =~ /public/i) {                    # public.
1068         $talkchannel    = $chan;
1069         &status("<$orig{who}/$chan> $orig{message}");
1070     } elsif ($msgType =~ /private/i) {             # private.
1071         &status("[$orig{who}] $orig{message}");
1072         $talkchannel    = undef;
1073         $chan           = "_default";
1074     } else {
1075         &DEBUG("unknown msgType => $msgType.");
1076     }
1077
1078     if ((!$skipmessage or &IsChanConf("seenStoreAll")) and
1079         &IsChanConf("seen") and
1080         $msgType =~ /public/
1081     ) {
1082         $seencache{$who}{'time'} = time();
1083         $seencache{$who}{'nick'} = $orig{who};
1084         $seencache{$who}{'host'} = $uh;
1085         $seencache{$who}{'chan'} = $talkchannel;
1086         $seencache{$who}{'msg'}  = $orig{message};
1087         $seencache{$who}{'msgcount'}++;
1088     }
1089
1090     return if ($skipmessage);
1091     return unless (&IsParam("minVolunteerLength") or $addressed);
1092
1093     local $ignore       = 0;
1094     if (exists $ignore{lc $chan}) {
1095         foreach (keys %{ $ignore{lc $chan} }) {
1096             s/\*/\\S*/g;
1097
1098             next unless ($nuh =~ /^\Q$_\E$/i);
1099             $ignore++;
1100             last;
1101         }
1102     }
1103
1104     if (defined $nuh) {
1105         if (!defined $userHandle) {
1106             &DEBUG("line 1074: need verifyUser?");
1107             &verifyUser($who, $nuh);
1108         }
1109     } else {
1110         &DEBUG("hookMsg: 'nuh' not defined?");
1111     }
1112
1113 ### For extra debugging purposes...
1114     if ($_ = &process()) {
1115 #       &DEBUG("IrcHooks: process returned '$_'.");
1116     }
1117
1118     return;
1119 }
1120
1121 sub chanLimitVerify {
1122     my($chan)   = @_;
1123     my $l       = $channels{$chan}{'l'};
1124
1125     # only change it if it's not set.
1126     if (defined $l and &IsChanConf("chanlimitcheck")) {
1127         my $plus = &getChanConfDefault("chanlimitcheckPlus", 5, $chan);
1128         my $nowl = scalar(keys %{ $channels{$chan}{''} });
1129         my $delta       = $nowl - $l;
1130         $delta          =~ s/^\-//;
1131
1132         if ($plus <= 3) {
1133             &WARN("clc: stupid to have plus at $plus, fix it!");
1134         }
1135
1136         ### todo: check if we have ops.
1137         ### todo: if not, check if nickserv/chanserv is avail.
1138         ### todo: unify code with chanlimitcheck()
1139         if ($delta > 3) {
1140             &WARN("clc: nowl($nowl) > l($l) - 3");
1141             &rawout("MODE $chan +l ".($nowl+$plus) );
1142         }
1143     }
1144 }
1145
1146 1;