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