]> git.donarmstrong.com Git - infobot.git/blob - src/IRC/IrcHooks.pl
- forgot to delete hash key even if current pid == parent pid.
[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 = lc $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     $h                  = (split /\@/, $uh)[1];
59     $addressed          = 1;
60     $msgType            = 'chat';
61
62     if (!exists $dcc{'CHATvrfy'}{$nick}) {
63         $userHandle     = &verifyUser($who, $nuh);
64         my $crypto      = $users{$userHandle}{PASS};
65         my $success     = 0;
66
67         if ($userHandle eq "_default") {
68             &WARN("DCC CHAT: _default/guest not allowed.");
69             return;
70         }
71
72         ### TODO: prevent users without CRYPT chatting.
73         if (!defined $crypto) {
74             &DEBUG("todo: dcc close chat");
75             &msg($who, "nope, no guest logins allowed...");
76             return;
77         }
78
79         if (&ckpasswd($msg, $crypto)) {
80             # stolen from eggdrop.
81             $self->privmsg($sock, "Connected to $ident");
82             $self->privmsg($sock, "Commands start with '.' (like '.quit' or '.help')");
83             $self->privmsg($sock, "Everything else goes out to the party line.");
84
85             &dccStatus(2) unless (exists $sched{"dccStatus"}{RUNNING});
86
87             $success++;
88
89         } else {
90             &status("DCC CHAT: incorrect pass; closing connection.");
91             &DEBUG("chat: sock => '$sock'.");
92 ###         $sock->close();
93             delete $dcc{'CHAT'}{$nick};
94             &DEBUG("chat: after closing sock. FIXME");
95             ### BUG: close seizes bot. why?
96         }
97
98         if ($success) {
99             &status("DCC CHAT: user $nick is here!");
100             &DCCBroadcast("*** $nick ($uh) joined the party line.");
101
102             $dcc{'CHATvrfy'}{$nick} = $userHandle;
103
104             return if ($userHandle eq "_default");
105
106             &dccsay($nick,"Flags: $users{$userHandle}{FLAGS}");
107         }
108
109         return;
110     }
111
112     &status("$b_red=$b_cyan$who$b_red=$ob $message");
113
114     if ($message =~ s/^\.//) {  # dcc chat commands.
115         ### TODO: make use of &Forker(); here?
116         &loadMyModule( $myModules{'ircdcc'} );
117
118         &DCCBroadcast("#$who# $message","m");
119
120         my $retval      = &userDCC();
121         return unless (defined $retval);
122         return if ($retval eq $noreply);
123
124         $conn->privmsg($dcc{'CHAT'}{$who}, "Invalid command.");
125
126     } else {                    # dcc chat arena.
127
128         foreach (keys %{ $dcc{'CHAT'} }) {
129             $conn->privmsg($dcc{'CHAT'}{$_}, "<$who> $orig{message}");
130         }
131     }
132
133     return 'DCC CHAT MESSAGE';
134 }
135
136 # is there isoff? how do we know if someone signs off?
137 sub on_ison {
138     my ($self, $event) = @_;
139     my $x1 = ($event->args)[0];
140     my $x2 = ($event->args)[1];
141
142 #    &nick( $param{'ircNick'} );
143
144     &DEBUG("on_ison: x1 = '$x1', x2 => '$x2'");
145 }
146
147 sub on_endofmotd {
148     my ($self) = @_;
149
150     # update IRCStats.
151     $ident      ||= $param{'ircNick'};  # hack.
152     $ircstats{'ConnectTime'}    = time();
153     $ircstats{'ConnectCount'}++;
154     $ircstats{'OffTime'}        += time() - $ircstats{'DisconnectTime'}
155                         if (defined $ircstats{'DisconnectTime'});
156
157     # first time run.
158     if (!exists $users{_default}) {
159         &status("!!! First time run... adding _default user.");
160         $users{_default}{FLAGS} = "mrt";
161         $users{_default}{HOSTS}{"*!*@*"} = 1;
162     }
163
164     if (scalar keys %users < 2) {
165         &status("!"x40);
166         &status("!!! Ok.  Now type '/msg $ident PASS <pass>' to get master access through DCC CHAT.");
167         &status("!"x40);
168     }
169     # end of first time run.
170
171     if (&IsChanConf("wingate")) {
172         my $file = "$bot_base_dir/$param{'ircUser'}.wingate";
173         open(IN, $file);
174         while (<IN>) {
175             chop;
176             next unless (/^(\S+)\*$/);
177             push(@wingateBad, $_);
178         }
179         close IN;
180     }
181
182     if ($firsttime) {
183         &ScheduleThis(1, \&setupSchedulers);
184         $firsttime = 0;
185     }
186
187     if (&IsParam("ircUMode")) {
188         &VERB("Attempting change of user modes to $param{'ircUMode'}.", 2);
189         if ($param{'ircUMode'} !~ /^[-+]/) {
190             &WARN("ircUMode had no +- prefix; adding +");
191             $param{'ircUMode'} = "+".$param{'ircUMode'};
192         }
193
194         &rawout("MODE $ident $param{'ircUMode'}");
195     }
196
197     &status("End of motd. Now lets join some channels...");
198     if (!scalar @joinchan) {
199         &WARN("joinchan array is empty!");
200         @joinchan = &getJoinChans(1);
201     }
202
203     # ok, we're free to do whatever we want now. go for it!
204     $running = 1;
205
206     # add ourself to notify.
207     $conn->ison( $param{'ircNick'} );
208
209     # Q, as on quakenet.org.
210     if (&IsParam("Q_pass")) {
211         &status("Authing to Q...");
212         &rawout("PRIVMSG Q\@CServe.quakenet.org :AUTH $param{'Q_user'} $param{'Q_pass'}");
213     }
214
215     &joinNextChan();
216 }
217
218 sub on_endofwho {
219     my ($self, $event) = @_;
220 #    &DEBUG("endofwho: chan => $chan");
221     $chan       ||= ($event->args)[1];
222 #    &DEBUG("endofwho: chan => $chan");
223
224     if (exists $cache{countryStats}) {
225         &do_countrystats();
226     }
227 }
228
229 sub on_dcc {
230     my ($self, $event) = @_;
231     my $type = uc( ($event->args)[1] );
232     my $nick = lc $event->nick();
233
234     # pity Net::IRC doesn't store nuh. Here's a hack :)
235     if (!exists $nuh{lc $nick}) {
236         $self->whois($nick);
237         $nuh{$nick}     = "GETTING-NOW";        # trying.
238     }
239     $type ||= "???";
240
241     if ($type eq 'SEND') {      # GET for us.
242         # incoming DCC SEND. we're receiving a file.
243         my $get = ($event->args)[2];
244         open(DCCGET,">$get");
245
246         $self->new_get($event, \*DCCGET);
247
248     } elsif ($type eq 'GET') {  # SEND for us?
249         &status("DCC: Initializing SEND for $nick.");
250         $self->new_send($event->args);
251
252     } elsif ($type eq 'CHAT') {
253         &status("DCC: Initializing CHAT for $nick.");
254         $self->new_chat($event);
255 #       $self->new_chat(1, $nick, $event->host);
256
257     } else {
258         &WARN("${b_green}DCC $type$ob (1)");
259     }
260 }
261
262 sub on_dcc_close {
263     my ($self, $event) = @_;
264     my $nick = $event->nick();
265     my $sock = ($event->to)[0];
266
267     # DCC CHAT close on fork exit workaround.
268     if ($bot_pid != $$) {
269         &WARN("run-away fork; exiting.");
270         &delForked($forker);
271     }
272
273     if (exists $dcc{'SEND'}{$nick} and -f "$param{tempDir}/$nick.txt") {
274         &status("${b_green}DCC SEND$ob close from $b_cyan$nick$ob");
275
276         &status("dcc_close: purging $nick.txt from Debian.pl");
277         unlink "$param{tempDir}/$nick.txt";
278
279         delete $dcc{'SEND'}{$nick};
280     } elsif (exists $dcc{'CHAT'}{$nick} and $dcc{'CHAT'}{$nick} eq $sock) {
281         &status("${b_green}DCC CHAT$ob close from $b_cyan$nick$ob");
282         delete $dcc{'CHAT'}{$nick};
283         delete $dcc{'CHATvrfy'}{$nick};
284     } else {
285         &status("${b_green}DCC$ob UNKNOWN close from $b_cyan$nick$ob (2)");
286     }
287 }
288
289 sub on_dcc_open {
290     my ($self, $event) = @_;
291     my $type = uc( ($event->args)[0] );
292     my $nick = lc $event->nick();
293     my $sock = ($event->to)[0];
294
295     $msgType = 'chat';
296     $type ||= "???";
297     ### BUG: who is set to bot's nick?
298
299     # lets do it.
300     if ($type eq 'SEND') {
301         &status("${b_green}DCC lGET$ob established with $b_cyan$nick$ob");
302
303     } elsif ($type eq 'CHAT') {
304         # very cheap hack.
305         ### TODO: run ScheduleThis inside on_dcc_open_chat recursively
306         ###     1,3,5,10 seconds then fail.
307         if ($nuh{$nick} eq "GETTING-NOW") {
308             &ScheduleThis(3/60, "on_dcc_open_chat", $nick, $sock);
309         } else {
310             on_dcc_open_chat(undef, $nick, $sock);
311         }
312
313     } elsif ($type eq 'SEND') {
314         &DEBUG("Starting DCC receive.");
315         foreach ($event->args) {
316             &DEBUG("  => '$_'.");
317         }
318
319     } else {
320         &WARN("${b_green}DCC $type$ob (3)");
321     }
322 }
323
324 # really custom sub to get NUH since Net::IRC doesn't appear to support
325 # it.
326 sub on_dcc_open_chat {
327     my(undef, $nick, $sock) = @_;
328
329     if ($nuh{$nick} eq "GETTING-NOW") {
330         &DEBUG("getting nuh for $nick failed. FIXME.");
331         return;
332     }
333
334     &status("${b_green}DCC CHAT$ob established with $b_cyan$nick$ob $b_yellow($ob$nuh{$nick}$b_yellow)$ob");
335
336     &verifyUser($nick, $nuh{lc $nick});
337
338     if (!exists $users{$userHandle}{HOSTS}) {
339         &pSReply("you have no hosts defined in my user file; rejecting.");
340         $sock->close();
341         return;
342     }
343
344     my $crypto  = $users{$userHandle}{PASS};
345     $dcc{'CHAT'}{$nick} = $sock;
346
347     # todo: don't make DCC CHAT established in the first place.
348     if ($userHandle eq "_default") {
349         &dccsay($nick, "_default/guest not allowed");
350         $sock->close();
351         return;
352     }
353
354     if (defined $crypto) {
355         &status("DCC CHAT: going to use ".$nick."'s crypt.");
356         &dccsay($nick,"Enter your password.");
357     } else {
358 #       &dccsay($nick,"Welcome to blootbot DCC CHAT interface, $userHandle.");
359     }
360 }
361
362 sub on_disconnect {
363     my ($self, $event) = @_;
364     my $from = $event->from();
365     my $what = ($event->args)[0];
366
367     &status("disconnect from $from ($what).");
368     $ircstats{'DisconnectTime'}         = time();
369     $ircstats{'DisconnectReason'}       = $what;
370     $ircstats{'DisconnectCount'}++;
371     $ircstats{'TotalTime'}      += time() - $ircstats{'ConnectTime'}
372                                         if ($ircstats{'ConnectTime'});
373
374     # clear any variables on reconnection.
375     $nickserv = 0;
376
377     &DEBUG("on_disconnect: 1");
378     &clearIRCVars();
379     &DEBUG("on_disconnect: 2");
380
381     if (!defined $self) {
382         &WARN("on_disconnect: self is undefined! WTF");
383         &DEBUG("running function irc... lets hope this works.");
384         &irc();
385         return;
386     }
387
388     if (!$self->connect()) {
389         &DEBUG("on_disconnect: 3");
390         &WARN("not connected? help me. gonna call ircCheck() in 60s");
391         &clearIRCVars();
392         &ScheduleThis(1, "ircCheck");
393     }
394 }
395
396 sub on_endofnames {
397     my ($self, $event) = @_;
398     my $chan = ($event->args)[1];
399
400     # sync time should be done in on_endofwho like in BitchX
401     if (exists $cache{jointime}{$chan}) {
402         my $delta_time = sprintf("%.03f", &timedelta($cache{jointime}{$chan}) );
403         $delta_time    = 0      if ($delta_time <= 0);
404         if ($delta_time > 100) {
405             &WARN("endofnames: delta_time > 100 ($delta_time)");
406         }
407
408         &status("$b_blue$chan$ob: sync in ${delta_time}s.");
409     }
410
411     $conn->mode($chan);
412
413     my $txt;
414     my @array;
415     foreach ("o","v","") {
416         my $count = scalar(keys %{ $channels{$chan}{$_} });
417         next unless ($count);
418
419         $txt = "total" if ($_ eq "");
420         $txt = "voice" if ($_ eq "v");
421         $txt = "ops"   if ($_ eq "o");
422
423         push(@array, "$count $txt");
424     }
425     my $chanstats = join(' || ', @array);
426     &status("$b_blue$chan$ob: [$chanstats]");
427
428     &chanServCheck($chan);
429     # schedule used to solve ircu (OPN) "target too fast" problems.
430     $conn->schedule(5, sub { &joinNextChan(); } );
431 }
432
433 sub on_init {
434     my ($self, $event) = @_;
435     my (@args) = ($event->args);
436     shift @args;
437
438     &status("@args");
439 }
440
441 sub on_invite {
442     my ($self, $event) = @_;
443     my $chan = lc( ($event->args)[0] );
444     my $nick = $event->nick;
445
446     if ($nick =~ /^\Q$ident\E$/) {
447         &DEBUG("on_invite: self invite.");
448         return;
449     }
450
451     ### TODO: join key.
452     if (exists $chanconf{$chan}) {
453         # it's still buggy :/
454         if (&validChan($chan)) {
455             &msg($who, "i'm already in \002$chan\002.");
456 #           return;
457         }
458
459         &status("invited to $b_blue$chan$ob by $b_cyan$nick$ob");
460         &joinchan($chan);
461     }
462 }
463
464 sub on_join {
465     my ($self, $event)  = @_;
466     my ($user,$host)    = split(/\@/, $event->userhost);
467     $chan               = lc( ($event->to)[0] ); # CASING!!!!
468     $who                = $event->nick();
469     $msgType            = "public";
470     my $i               = scalar(keys %{ $channels{$chan} });
471     my $j               = $cache{maxpeeps}{$chan} || 0;
472
473     if (time() > ($sched{shmFlush}{TIME} || time()) + 3600) {
474         &DEBUG("looks like schedulers died somewhere... restarting...");
475         &setupSchedulers();
476     }
477
478     $chanstats{$chan}{'Join'}++;
479     $userstats{lc $who}{'Join'} = time() if (&IsChanConf("seenStats"));
480     $cache{maxpeeps}{$chan}     = $i if ($i > $j);
481
482     &joinfloodCheck($who, $chan, $event->userhost);
483
484     # netjoin detection.
485     my $netsplit = 0;
486     if (exists $netsplit{lc $who}) {
487         delete $netsplit{lc $who};
488         $netsplit = 1;
489
490         if (!scalar keys %netsplit) {
491             &DEBUG("on_join: netsplit hash is now empty!");
492             undef %netsplitservers;
493             &netsplitCheck();   # any point in running this?
494             &chanlimitCheck();
495         }
496     }
497
498     if ($netsplit and !exists $cache{netsplit}) {
499         &VERB("on_join: ok.... re-running chanlimitCheck in 60.",2);
500         $conn->schedule(60, sub {
501                 &chanlimitCheck();
502                 delete $cache{netsplit};
503         } );
504
505         $cache{netsplit} = time();
506     }
507
508     # how to tell if there's a netjoin???
509
510     my $netsplitstr = "";
511     $netsplitstr = " $b_yellow\[${ob}NETSPLIT VICTIM$b_yellow]$ob" if ($netsplit);
512     &status(">>> join/$b_blue$chan$ob $b_cyan$who$ob $b_yellow($ob$user\@$host$b_yellow)$ob$netsplitstr");
513
514     $channels{$chan}{''}{$who}++;
515     $nuh          = $who."!".$user."\@".$host;
516     $nuh{lc $who} = $nuh unless (exists $nuh{lc $who});
517
518     ### on-join bans.
519     my @bans;
520     push(@bans, keys %{ $bans{$chan} }) if (exists $bans{$chan});
521     push(@bans, keys %{ $bans{"*"} })   if (exists $bans{"*"});
522
523     foreach (@bans) {
524         my $ban = $_;
525         s/\?/./g;
526         s/\*/\\S*/g;
527         my $mask        = $_;
528         next unless ($nuh =~ /^$mask$/i);
529
530         ### TODO: check $channels{$chan}{'b'} if ban already exists.
531         foreach (keys %{ $channels{$chan}{'b'} }) {
532             &DEBUG(" bans_on_chan($chan) => $_");
533         }
534
535         my $reason = "no reason";
536         foreach ($chan, "*") {
537             next unless (exists $bans{$_});
538             next unless (exists $bans{$_}{$ban});
539
540             my @array   = @{ $bans{$_}{$ban} };
541
542             $reason     = $array[4] if ($array[4]);
543             last;
544         }
545
546         &ban($ban, $chan);
547         &kick($who, $chan, $reason);
548
549         last;
550     }
551
552     # no need to go further.
553     return if ($netsplit);
554
555     # who == bot.
556     if ($who eq $ident or $who =~ /^$ident$/i) {
557         if (defined( my $whojoin = $cache{join}{$chan} )) {
558             &msg($chan, "Okay, I'm here. (courtesy of $whojoin)");
559             delete $cache{join}{$chan};
560             &joinNextChan();    # hack.
561         }
562
563         ### TODO: move this to &joinchan()?
564         $cache{jointime}{$chan} = &timeget();
565         $conn->who($chan);
566
567         return;
568     }
569
570     ### ROOTWARN:
571     &rootWarn($who,$user,$host,$chan) if (
572                 &IsChanConf("rootWarn") &&
573                 $user =~ /^r(oo|ew|00)t$/i
574     );
575
576     ### NEWS:
577     if (&IsChanConf("news") && &IsChanConf("newsKeepRead")) {
578         if (!&loadMyModule("news")) {   # just in case.
579             &DEBUG("could not load news.");
580         } else {
581             &News::latest($chan);
582         }
583     }
584
585     ### chanlimit check.
586 #    &chanLimitVerify($chan);
587
588     ### wingate:
589     &wingateCheck();
590 }
591
592 sub on_kick {
593     my ($self, $event) = @_;
594     my ($chan,$reason) = $event->args;
595     my $kicker  = $event->nick;
596     my $kickee  = ($event->to)[0];
597     my $uh      = $event->userhost();
598
599     &status(">>> kick/$b_blue$chan$ob [$b$kickee!$uh$ob] by $b_cyan$kicker$ob $b_yellow($ob$reason$b_yellow)$ob");
600
601     $chan = lc $chan;   # forgot about this, found by xsdg, 20001229.
602     $chanstats{$chan}{'Kick'}++;
603
604     if ($kickee eq $ident) {
605         &clearChanVars($chan);
606
607         &status("SELF attempting to rejoin lost channel $chan");
608         &joinchan($chan);
609     } else {
610         &delUserInfo($kickee,$chan);
611     }
612 }
613
614 sub on_mode {
615     my ($self, $event)  = @_;
616     my ($user, $host)   = split(/\@/, $event->userhost);
617     my @args    = $event->args();
618     my $nick    = $event->nick();
619     $chan       = ($event->to)[0];
620
621     $args[0] =~ s/\s$//;
622
623     if ($nick eq $chan) {       # UMODE
624         &status(">>> mode $b_yellow\[$ob$b@args$b_yellow\]$ob by $b_cyan$nick$ob");
625     } else {                    # MODE
626         &status(">>> mode/$b_blue$chan$ob $b_yellow\[$ob$b@args$b_yellow\]$ob by $b_cyan$nick$ob");
627         &hookMode($nick, @args);
628     }
629 }
630
631 sub on_modeis {
632     my ($self, $event) = @_;
633     my ($myself, undef,@args) = $event->args();
634     my $nick    = $event->nick();
635     $chan       = ($event->args())[1];
636
637     &hookMode($nick, @args);
638 }
639
640 sub on_msg {
641     my ($self, $event) = @_;
642     my $nick = $event->nick;
643     my $msg  = ($event->args)[0];
644
645     ($user,$host) = split(/\@/, $event->userhost);
646     $uh         = $event->userhost();
647     $nuh        = $nick."!".$uh;
648     $msgtime    = time();
649     $h          = $host;
650
651     if ($nick eq $ident) { # hopefully ourselves.
652         if ($msg eq "TEST") {
653             &status("IRCTEST: Yes, we're alive.");
654             delete $cache{connect};
655             return;
656         }
657     }
658
659     &hookMsg('private', undef, $nick, $msg);
660     $who        = "";
661     $chan       = "";
662     $msgType    = "";
663 }
664
665 sub on_names {
666     my ($self, $event) = @_;
667     my @args = $event->args;
668     my $chan = lc $args[2];             # CASING, the last of them!
669
670     foreach (split / /, @args[3..$#args]) {
671         $channels{$chan}{'o'}{$_}++     if s/\@//;
672         $channels{$chan}{'v'}{$_}++     if s/\+//;
673         $channels{$chan}{''}{$_}++;
674     }
675 }
676
677 sub on_nick {
678     my ($self, $event) = @_;
679     my $nick = $event->nick();
680     my $newnick = ($event->args)[0];
681
682     if (exists $netsplit{lc $newnick}) {
683         &status("Netsplit: $newnick/$nick came back from netsplit and changed to original nick! removing from hash.");
684         delete $netsplit{lc $newnick};
685         &netsplitCheck() if (time() != $sched{netsplitCheck}{TIME});
686     }
687
688     my ($chan,$mode);
689     foreach $chan (keys %channels) {
690         foreach $mode (keys %{ $channels{$chan} }) {
691             next unless (exists $channels{$chan}{$mode}{$nick});
692
693             $channels{$chan}{$mode}{$newnick} = $channels{$chan}{$mode}{$nick};
694         }
695     }
696     # todo: do %flood* aswell.
697
698     &delUserInfo($nick, keys %channels);
699     $nuh{lc $newnick} = $nuh{lc $nick};
700     delete $nuh{lc $nick};
701
702     if ($nick eq $ident) {
703         &status(">>> I materialized into $b_green$newnick$ob from $nick");
704         $ident  = $newnick;
705     } else {
706         &status(">>> $b_cyan$nick$ob materializes into $b_green$newnick$ob");
707
708         if ($nick =~ /^\Q$param{'ircNick'}\E$/i) {
709             &getNickInUse();
710         }
711     }
712 }
713
714 sub on_nick_taken {
715     my ($self)  = @_;
716     my $nick    = $self->nick;
717     my $newnick = $nick."-";
718
719     &status("nick taken ($nick); preparing nick change.");
720
721     $self->whois($nick);
722     $conn->schedule(5, sub {
723         &status("nick taken; changing to temporary nick ($nick -> $newnick).");
724         &nick($newnick);
725     } );
726 }
727
728 sub on_notice {
729     my ($self, $event) = @_;
730     my $nick = $event->nick();
731     my $chan = ($event->to)[0];
732     my $args = ($event->args)[0];
733
734     if ($nick =~ /^NickServ$/i) {               # nickserv.
735         &status("NickServ: <== '$args'");
736
737         my $check       = 0;
738         $check++        if ($args =~ /^This nickname is registered/i);
739         $check++        if ($args =~ /nickname.*owned/i);
740
741         if ($check) {
742             &status("nickserv told us to register; doing it.");
743
744             if (&IsParam("nickServ_pass")) {
745                 &status("NickServ: ==> Identifying.");
746                 &rawout("PRIVMSG NickServ :IDENTIFY $param{'nickServ_pass'}");
747                 return;
748             } else {
749                 &status("We can't tell nickserv a passwd ;(");
750             }
751         }
752
753         # password accepted.
754         if ($args =~ /^Password a/i) {
755             my $done    = 0;
756
757             foreach ( &ChanConfList("chanServ_ops") ) {
758                 next unless &chanServCheck($_);
759                 next if ($done);
760                 &DEBUG("nickserv activated or restarted; doing chanserv check.");
761                 $done++;
762             }
763
764             $nickserv++;
765         }
766
767     } elsif ($nick =~ /^ChanServ$/i) {          # chanserv.
768         &status("ChanServ: <== '$args'.");
769
770     } else {
771         if ($chan =~ /^$mask{chan}$/) { # channel notice.
772             &status("-$nick/$chan- $args");
773         } else {
774             $server = $nick unless (defined $server);
775             &status("-$nick- $args");   # private or server notice.
776         }
777     }
778 }
779
780 sub on_other {
781     my ($self, $event) = @_;
782     my $chan = ($event->to)[0];
783     my $nick = $event->nick;
784
785     &status("!!! other called.");
786     &status("!!! $event->args");
787 }
788
789 sub on_part {
790     my ($self, $event) = @_;
791     $chan       = lc( ($event->to)[0] );        # CASING!!!
792     my $nick    = $event->nick;
793     my $userhost = $event->userhost;
794     $who        = $nick;
795     $msgType    = "public";
796
797     if (0 and !exists $channels{$chan}) {
798         &DEBUG("on_part: found out we're on $chan!");
799         $channels{$chan} = 1;
800     }
801
802     if (exists $floodjoin{$chan}{$nick}{Time}) {
803         delete $floodjoin{$chan}{$nick};
804     }
805
806     $chanstats{$chan}{'Part'}++;
807     &delUserInfo($nick,$chan);
808     if ($nick eq $ident) {
809         &DEBUG("on_part: ok, I left $chan... clearChanVars...");
810         &clearChanVars($chan);
811     }
812
813     if (!&IsNickInAnyChan($nick) and &IsChanConf("seenStats")) {
814         delete $userstats{lc $nick};
815     }
816
817     &status(">>> part/$b_blue$chan$ob $b_cyan$nick$ob $b_yellow($ob$userhost$b_yellow)$ob");
818 }
819
820 sub on_ping {
821     my ($self, $event) = @_;
822     my $nick = $event->nick;
823
824     $self->ctcp_reply($nick, join(' ', ($event->args)));
825     &status(">>> ${b_green}CTCP PING$ob request from $b_cyan$nick$ob received.");
826 }
827
828 sub on_ping_reply {
829     my ($self, $event) = @_;
830     my $nick    = $event->nick;
831     my $t       = ($event->args)[1];
832     if (!defined $t) {
833         &WARN("on_ping_reply: t == undefined.");
834         return;
835     }
836
837     my $lag = time() - $t;
838
839     &status(">>> ${b_green}CTCP PING$ob reply from $b_cyan$nick$ob: $lag sec.");
840 }
841
842 sub on_public {
843     my ($self, $event) = @_;
844     my $msg     = ($event->args)[0];
845     $chan       = lc( ($event->to)[0] );        # CASING.
846     my $nick    = $event->nick;
847     $who        = $nick;
848     $uh         = $event->userhost();
849     $nuh        = $nick."!".$uh;
850     $msgType    = "public";
851     # todo: move this out of hookMsg to here?
852     ($user,$host) = split(/\@/, $uh);
853     $h          = $host;
854
855     # rare case should this happen - catch it just in case.
856     if ($bot_pid != $$) {
857         &ERROR("run-away fork; exiting.");
858         &delForked($forker);
859     }
860
861     $msgtime            = time();
862     $lastWho{$chan}     = $nick;
863     ### TODO: use $nick or lc $nick?
864     if (&IsChanConf("seenStats")) {
865         $userstats{lc $nick}{'Count'}++;
866         $userstats{lc $nick}{'Time'} = time();
867     }
868
869     # would this slow things down?
870     if ($_ = &getChanConf("ircTextCounters")) {
871         my $time = time();
872
873         foreach (split /[\s]+/) {
874             my $x = $_;
875
876             # either full word or ends with a space, etc...
877             next unless ($msg =~ /^\Q$x\E[\$\s!.]/i);
878
879             &VERB("textcounters: $x matched for $who",2);
880             my $c = $chan || "PRIVATE";
881
882             my ($v,$t) = &dbGet("stats", "counter,time",
883                         "nick=". &dbQuote($who)
884                         ." AND type=".&dbQuote($x)
885                         ." AND channel=".&dbQuote($c)
886             );
887             $v++;
888
889             # don't allow ppl to cheat the stats :-)
890             next unless ($time - $t > 10);
891
892             my %hash = (
893                 nick    => $who,
894                 type    => $x,
895                 channel => $c,
896
897                 time    => $time,
898                 counter => $v,
899             );
900                 
901
902             &dbReplace("stats", "nick", %hash);
903             # does not work, atleast with old mysql!!! :(
904 #           &dbReplace("stats", (nick => $who, type => $x, -counter => "counter+1") );
905         }
906     }
907
908     &hookMsg('public', $chan, $nick, $msg);
909     $chanstats{$chan}{'PublicMsg'}++;
910     $who        = "";
911     $chan       = "";
912     $msgType    = "";
913 }
914
915 sub on_quit {
916     my ($self, $event) = @_;
917     my $nick    = $event->nick();
918     my $reason  = ($event->args)[0];
919
920     # hack for ICC.
921     $msgType    = "public";
922     $who        = $nick;
923 ###    $chan    = $reason;      # no.
924
925     my $count   = 0;
926     foreach (grep !/^_default$/, keys %channels) {
927         # fixes inconsistent chanstats bug #1.
928         if (!&IsNickInChan($nick,$_)) {
929             $count++;
930             next;
931         }
932         $chanstats{$_}{'SignOff'}++;
933     }
934
935     if ($count == scalar keys %channels) {
936         &DEBUG("on_quit: nick $nick was not found in any chan.");
937     }
938
939     # should fix chanstats inconsistencies bug #2.
940     if ($reason =~ /^($mask{host})\s($mask{host})$/) {  # netsplit.
941         $reason = "NETSPLIT: $1 <=> $2";
942
943         # chanlimit code.
944         foreach $chan ( &getNickInChans($nick) ) {
945             next unless ( &IsChanConf("chanlimitcheck") );
946             next unless ( exists $channels{$_}{'l'} );
947
948             &DEBUG("on_quit: netsplit detected on $_; disabling chan limit.");
949             $conn->mode($_, "-l");
950         }
951
952         $netsplit{lc $nick} = time();
953         if (!exists $netsplitservers{$1}{$2}) {
954             &status("netsplit detected between $1 and $2 at [".scalar(localtime)."]");
955             $netsplitservers{$1}{$2} = time();
956         }
957     }
958
959     my $chans = join(' ', &getNickInChans($nick) );
960     &status(">>> $b_cyan$nick$ob has signed off IRC $b_red($ob$reason$b_red)$ob [$chans]");
961     if ($nick =~ /^\Q$ident\E$/) {
962         &ERROR("^^^ THIS SHOULD NEVER HAPPEN (10).");
963     }
964
965     ###
966     ### ok... lets clear out the cache
967     ###
968     &delUserInfo($nick, keys %channels);
969     if (exists $nuh{lc $nick}) {
970         delete $nuh{lc $nick};
971     } else {
972         # well.. it's good but weird that this has happened - lets just
973         # be quiet about it.
974     }
975     delete $userstats{lc $nick} if (&IsChanConf("seenStats"));
976     delete $chanstats{lc $nick};
977     ###
978
979     # does this work?
980     if ($nick !~ /^\Q$ident\E$/ and $nick =~ /^\Q$param{'ircNick'}\E$/i) {
981         &status("nickchange: own nickname became free; changing.");
982         &nick($param{'ircNick'});
983     }
984 }
985
986 sub on_targettoofast {
987     my ($self, $event) = @_;
988     my $nick = $event->nick();
989     my($me,$chan,$why) = $event->args();
990
991     ### TODO: incomplete.
992     if ($why =~ /.* wait (\d+) second/) {
993         my $sleep       = $1;
994         my $max         = 10;
995
996         if ($sleep > $max) {
997             &status("targettoofast: going to sleep for $max ($sleep)...");
998             $sleep = $max;
999         } else {
1000             &status("targettoofast: going to sleep for $sleep");
1001         }
1002
1003         my $delta = time() - ($cache{sleepTime} || 0);
1004         if ($delta > $max+2) {
1005             sleep $sleep;
1006             $cache{sleepTime} = time();
1007         }
1008
1009         return;
1010     }
1011
1012     if (!exists $cache{TargetTooFast}) {
1013         &DEBUG("on_ttf: failed: $why");
1014         $cache{TargetTooFast}++;
1015     }
1016 }
1017
1018 sub on_topic {
1019     my ($self, $event) = @_;
1020
1021     if (scalar($event->args) == 1) {    # change.
1022         my $topic = ($event->args)[0];
1023         my $chan  = ($event->to)[0];
1024         my $nick  = $event->nick();
1025
1026         ###
1027         # WARNING:
1028         #       race condition here. To fix, change '1' to '0'.
1029         #       This will keep track of topics set by bot only.
1030         ###
1031         # UPDATE:
1032         #       this may be fixed at a later date with topic queueing.
1033         ###
1034
1035         $topic{$chan}{'Current'} = $topic if (1);
1036         $chanstats{$chan}{'Topic'}++;
1037
1038         &status(">>> topic/$b_blue$chan$ob by $b_cyan$nick$ob -> $topic");
1039     } else {                                            # join.
1040         my ($nick, $chan, $topic) = $event->args;
1041         if (&IsChanConf("topic")) {
1042             $topic{$chan}{'Current'}    = $topic;
1043             &topicAddHistory($chan,$topic);
1044         }
1045
1046         $topic = &fixString($topic, 1);
1047         &status(">>> topic/$b_blue$chan$ob is $topic");
1048     }
1049 }
1050
1051 sub on_topicinfo {
1052     my ($self, $event) = @_;
1053     my ($myself,$chan,$setby,$time) = $event->args();
1054
1055     my $timestr;
1056     if (time() - $time > 60*60*24) {
1057         $timestr        = "at ". localtime $time;
1058     } else {
1059         $timestr        = &Time2String(time() - $time) ." ago";
1060     }
1061
1062     &status(">>> set by $b_cyan$setby$ob $timestr");
1063 }
1064
1065 sub on_crversion {
1066     my ($self, $event) = @_;
1067     my $nick    = $event->nick();
1068     my $ver;
1069
1070     if (scalar $event->args() != 1) {   # old.
1071         $ver    = join ' ', $event->args();
1072         $ver    =~ s/^VERSION //;
1073     } else {                            # new.
1074         $ver    = ($event->args())[0];
1075     }
1076
1077     if (grep /^\Q$nick\E$/i, @vernick) {
1078         &WARN("nick $nick found in vernick ($ver); skipping.");
1079         return;
1080     }
1081     push(@vernick, $nick);
1082
1083     if ($ver =~ /bitchx/i) {
1084         $ver{bitchx}{$nick}     = $ver;
1085
1086     } elsif ($ver =~ /xc\!|xchat/i) {
1087         $ver{xchat}{$nick}      = $ver;
1088
1089     } elsif ($ver =~ /irssi/i) {
1090         $ver{irssi}{$nick}      = $ver;
1091
1092     } elsif ($ver =~ /epic|(Third Eye)/i) {
1093         $ver{epic}{$nick}       = $ver;
1094
1095     } elsif ($ver =~ /ircII|PhoEniX/i) {
1096         $ver{ircII}{$nick}      = $ver;
1097
1098     } elsif ($ver =~ /mirc/i) {
1099 #       &DEBUG("verstats: mirc: $nick => '$ver'.");
1100         $ver{mirc}{$nick}       = $ver;
1101
1102 # ok... then we get to the lesser known/used clients.
1103     } elsif ($ver =~ /ircle/i) {
1104         $ver{ircle}{$nick}      = $ver;
1105
1106     } elsif ($ver =~ /chatzilla/i) {
1107         $ver{chatzilla}{$nick}  = $ver;
1108
1109     } elsif ($ver =~ /pirch/i) {
1110         $ver{pirch}{$nick}      = $ver;
1111
1112     } elsif ($ver =~ /sirc /i) {
1113         $ver{sirc}{$nick}       = $ver;
1114
1115     } elsif ($ver =~ /kvirc/i) {
1116         $ver{kvirc}{$nick}      = $ver;
1117
1118     } elsif ($ver =~ /eggdrop/i) {
1119         $ver{eggdrop}{$nick}    = $ver;
1120
1121     } elsif ($ver =~ /xircon/i) {
1122         $ver{xircon}{$nick}     = $ver;
1123
1124     } else {
1125         &DEBUG("verstats: other: $nick => '$ver'.");
1126         $ver{other}{$nick}      = $ver;
1127     }
1128 }
1129
1130 sub on_version {
1131     my ($self, $event) = @_;
1132     my $nick = $event->nick;
1133
1134     &status(">>> ${b_green}CTCP VERSION$ob request from $b_cyan$nick$ob");
1135     $self->ctcp_reply($nick, "VERSION $bot_version");
1136 }
1137
1138 sub on_who {
1139     my ($self, $event) = @_;
1140     my @args    = $event->args;
1141     my $str     = $args[5]."!".$args[2]."\@".$args[3];
1142
1143     if ($cache{on_who_Hack}) {
1144         $cache{nuhInfo}{lc $args[5]}{Nick} = $args[5];
1145         $cache{nuhInfo}{lc $args[5]}{User} = $args[2];
1146         $cache{nuhInfo}{lc $args[5]}{Host} = $args[3];
1147         $cache{nuhInfo}{lc $args[5]}{NUH}  = "$args[5]!$args[2]\@$args[3]";
1148         return;
1149     }
1150
1151     if ($args[5] =~ /^nickserv$/i and !$nickserv) {
1152         &DEBUG("ok... we did a who for nickserv.");
1153         &rawout("PRIVMSG NickServ :IDENTIFY $param{'nickServ_pass'}");
1154     }
1155
1156     $nuh{lc $args[5]} = $args[5]."!".$args[2]."\@".$args[3];
1157 }
1158
1159 sub on_whois {
1160     my ($self, $event) = @_;
1161     my @args    = $event->args;
1162
1163     $nuh{lc $args[1]} = $args[1]."!".$args[2]."\@".$args[3];
1164 }
1165
1166 sub on_whoischannels {
1167     my ($self, $event) = @_;
1168     my @args    = $event->args;
1169
1170     &DEBUG("on_whoischannels: @args");
1171 }
1172
1173 sub on_useronchannel {
1174     my ($self, $event) = @_;
1175     my @args    = $event->args;
1176
1177     &DEBUG("on_useronchannel: @args");
1178     &joinNextChan();
1179 }
1180
1181 ###
1182 ### since joinnextchan is hooked onto on_endofnames, these are needed.
1183 ###
1184
1185 sub on_chanfull {
1186     my ($self, $event) = @_;
1187     my @args    = $event->args;
1188
1189     &status(">>> chanfull/$b_blue$args[1]$ob");
1190
1191     &joinNextChan();
1192 }
1193
1194 sub on_inviteonly {
1195     my ($self, $event) = @_;
1196     my @args    = $event->args;
1197
1198     &status(">>> inviteonly/$b_cyan$args[1]$ob");
1199
1200     &joinNextChan();
1201 }
1202
1203 sub on_banned {
1204     my ($self, $event) = @_;
1205     my @args    = $event->args;
1206     my $chan    = $args[1];
1207
1208     &status(">>> banned/$b_blue$chan$ob $b_cyan$args[0]$ob");
1209
1210     &joinNextChan();
1211 }
1212
1213 sub on_badchankey {
1214     my ($self, $event) = @_;
1215     my @args    = $event->args;
1216
1217     &DEBUG("on_badchankey: args => @args");
1218     &joinNextChan();
1219 }
1220
1221 sub on_useronchan {
1222     my ($self, $event) = @_;
1223     my @args    = $event->args;
1224
1225     &DEBUG("on_useronchan: args => @args");
1226     &joinNextChan();
1227 }
1228
1229 1;