]> git.donarmstrong.com Git - infobot.git/blob - src/IRC/IrcHooks.pl
massive add-in for postgres support, contributed by troubled
[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') > 0) {
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') > 0 &&
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') > 0);
589
590     ### NEWS:
591     if (&IsChanConf('News') > 0 && &IsChanConf('newsKeepRead') > 0) {
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') > 0) {
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             &sqlSet("stats", {'nick' => $who}, {
930                 type    => $x,
931                 channel => $c,
932                 time    => $time,
933                 counter => $v,
934             } );
935         }
936     }
937
938     &hookMsg('public', $chan, $nick, $msg);
939     $chanstats{$chan}{'PublicMsg'}++;
940     $who        = "";
941     $chan       = "";
942     $msgType    = "";
943 }
944
945 sub on_quit {
946     $conn = shift(@_);
947     my ($event) = @_;
948     my $nick    = $event->nick();
949     my $reason  = ($event->args)[0];
950
951     # hack for ICC.
952     $msgType    = "public";
953     $who        = $nick;
954 ###    $chan    = $reason;      # no.
955
956     my $count   = 0;
957     foreach (grep !/^_default$/, keys %channels) {
958         # fixes inconsistent chanstats bug #1.
959         if (!&IsNickInChan($nick,$_)) {
960             $count++;
961             next;
962         }
963         $chanstats{$_}{'SignOff'}++;
964     }
965
966     if ($count == scalar keys %channels) {
967         &DEBUG("on_quit: nick $nick was not found in any chan.");
968     }
969
970     # should fix chanstats inconsistencies bug #2.
971     if ($reason =~ /^($mask{host})\s($mask{host})$/) {  # netsplit.
972         $reason = "NETSPLIT: $1 <=> $2";
973
974         # chanlimit code.
975         foreach $chan ( &getNickInChans($nick) ) {
976             next unless ( &IsChanConf("chanlimitcheck") > 0);
977             next unless ( exists $channels{$_}{'l'} );
978
979             &DEBUG("on_quit: netsplit detected on $_; disabling chan limit.");
980             $conn->mode($_, "-l");
981         }
982
983         $netsplit{lc $nick} = time();
984         if (!exists $netsplitservers{$1}{$2}) {
985             &status("netsplit detected between $1 and $2 at [".scalar(gmtime)."]");
986             $netsplitservers{$1}{$2} = time();
987         }
988     }
989
990     my $chans = join(' ', &getNickInChans($nick) );
991     &status(">>> $b_cyan$nick$ob has signed off IRC $b_red($ob$reason$b_red)$ob [$chans]");
992
993     ###
994     ### ok... lets clear out the cache
995     ###
996     &delUserInfo($nick, keys %channels);
997     if (exists $nuh{lc $nick}) {
998         delete $nuh{lc $nick};
999     } else {
1000         # well.. it's good but weird that this has happened - lets just
1001         # be quiet about it.
1002     }
1003     delete $userstats{lc $nick} if (&IsChanConf("seenStats") > 0);
1004     delete $chanstats{lc $nick};
1005     ###
1006
1007     # if we have a temp nick, and whoever is camping on our main nick leaves
1008     # revert to main nick. Note that Net::IRC only knows our main nick
1009     if ($nick eq $conn->nick()) {
1010         &status("nickchange: own nick \"$nick\" became free; changing.");
1011         &nick($mynick);
1012     }
1013 }
1014
1015 sub on_targettoofast {
1016     $conn = shift(@_);
1017     my ($event) = @_;
1018     my $nick = $event->nick();
1019     my($me,$chan,$why) = $event->args();
1020
1021     ### TODO: incomplete.
1022     if ($why =~ /.* wait (\d+) second/) {
1023         my $sleep       = $1;
1024         my $max         = 10;
1025
1026         if ($sleep > $max) {
1027             &status("targettoofast: going to sleep for $max ($sleep)...");
1028             $sleep = $max;
1029         } else {
1030             &status("targettoofast: going to sleep for $sleep");
1031         }
1032
1033         my $delta = time() - ($cache{sleepTime} || 0);
1034         if ($delta > $max+2) {
1035             sleep $sleep;
1036             $cache{sleepTime} = time();
1037         }
1038
1039         return;
1040     }
1041
1042     if (!exists $cache{TargetTooFast}) {
1043         &DEBUG("on_ttf: failed: $why");
1044         $cache{TargetTooFast}++;
1045     }
1046 }
1047
1048 sub on_topic {
1049     $conn = shift(@_);
1050     my ($event) = @_;
1051
1052     if (scalar($event->args) == 1) {    # change.
1053         my $topic = ($event->args)[0];
1054         my $chan  = ($event->to)[0];
1055         my $nick  = $event->nick();
1056
1057         ###
1058         # WARNING:
1059         #       race condition here. To fix, change '1' to '0'.
1060         #       This will keep track of topics set by bot only.
1061         ###
1062         # UPDATE:
1063         #       this may be fixed at a later date with topic queueing.
1064         ###
1065
1066         $topic{$chan}{'Current'} = $topic if (1);
1067         $chanstats{$chan}{'Topic'}++;
1068
1069         &status(">>> topic/$b_blue$chan$ob by $b_cyan$nick$ob -> $topic");
1070     } else {                                            # join.
1071         my ($nick, $chan, $topic) = $event->args;
1072         if (&IsChanConf('Topic') > 0) {
1073             $topic{$chan}{'Current'}    = $topic;
1074             &topicAddHistory($chan,$topic);
1075         }
1076
1077         $topic = &fixString($topic, 1);
1078         &status(">>> topic/$b_blue$chan$ob is $topic");
1079     }
1080 }
1081
1082 sub on_topicinfo {
1083     $conn = shift(@_);
1084     my ($event) = @_;
1085     my ($myself,$chan,$setby,$time) = $event->args();
1086
1087     my $timestr;
1088     if (time() - $time > 60*60*24) {
1089         $timestr        = "at ". gmtime $time;
1090     } else {
1091         $timestr        = &Time2String(time() - $time) ." ago";
1092     }
1093
1094     &status(">>> set by $b_cyan$setby$ob $timestr");
1095 }
1096
1097 sub on_crversion {
1098     $conn = shift(@_);
1099     my ($event) = @_;
1100     my $nick    = $event->nick();
1101     my $ver;
1102
1103     if (scalar $event->args() != 1) {   # old.
1104         $ver    = join ' ', $event->args();
1105         $ver    =~ s/^VERSION //;
1106     } else {                            # new.
1107         $ver    = ($event->args())[0];
1108     }
1109
1110     if (grep /^\Q$nick\E$/i, @vernick) {
1111         &WARN("nick $nick found in vernick ($ver); skipping.");
1112         return;
1113     }
1114     push(@vernick, $nick);
1115
1116     if ($ver =~ /bitchx/i) {
1117         $ver{bitchx}{$nick}     = $ver;
1118
1119     } elsif ($ver =~ /xc\!|xchat/i) {
1120         $ver{xchat}{$nick}      = $ver;
1121
1122     } elsif ($ver =~ /irssi/i) {
1123         $ver{irssi}{$nick}      = $ver;
1124
1125     } elsif ($ver =~ /epic|(Third Eye)/i) {
1126         $ver{epic}{$nick}       = $ver;
1127
1128     } elsif ($ver =~ /ircII|PhoEniX/i) {
1129         $ver{ircII}{$nick}      = $ver;
1130
1131     } elsif ($ver =~ /mirc/i) {
1132 #       &DEBUG("verstats: mirc: $nick => '$ver'.");
1133         $ver{mirc}{$nick}       = $ver;
1134
1135 # ok... then we get to the lesser known/used clients.
1136     } elsif ($ver =~ /ircle/i) {
1137         $ver{ircle}{$nick}      = $ver;
1138
1139     } elsif ($ver =~ /chatzilla/i) {
1140         $ver{chatzilla}{$nick}  = $ver;
1141
1142     } elsif ($ver =~ /pirch/i) {
1143         $ver{pirch}{$nick}      = $ver;
1144
1145     } elsif ($ver =~ /sirc /i) {
1146         $ver{sirc}{$nick}       = $ver;
1147
1148     } elsif ($ver =~ /kvirc/i) {
1149         $ver{kvirc}{$nick}      = $ver;
1150
1151     } elsif ($ver =~ /eggdrop/i) {
1152         $ver{eggdrop}{$nick}    = $ver;
1153
1154     } elsif ($ver =~ /xircon/i) {
1155         $ver{xircon}{$nick}     = $ver;
1156
1157     } else {
1158         &DEBUG("verstats: other: $nick => '$ver'.");
1159         $ver{other}{$nick}      = $ver;
1160     }
1161 }
1162
1163 sub on_version {
1164     $conn = shift(@_);
1165     my ($event) = @_;
1166     my $nick = $event->nick;
1167
1168     &status(">>> ${b_green}CTCP VERSION$ob request from $b_cyan$nick$ob");
1169     $conn->ctcp_reply($nick, "VERSION $bot_version");
1170 }
1171
1172 sub on_who {
1173     $conn = shift(@_);
1174     my ($event) = @_;
1175     my @args    = $event->args;
1176     my $str     = $args[5]."!".$args[2]."\@".$args[3];
1177
1178     if ($cache{on_who_Hack}) {
1179         $cache{nuhInfo}{lc $args[5]}{Nick} = $args[5];
1180         $cache{nuhInfo}{lc $args[5]}{User} = $args[2];
1181         $cache{nuhInfo}{lc $args[5]}{Host} = $args[3];
1182         $cache{nuhInfo}{lc $args[5]}{NUH}  = "$args[5]!$args[2]\@$args[3]";
1183         return;
1184     }
1185
1186     if ($args[5] =~ /^nickserv$/i and !$nickserv) {
1187         &DEBUG("ok... we did a who for nickserv.");
1188         &rawout("PRIVMSG NickServ :IDENTIFY $param{'nickServ_pass'}");
1189     }
1190
1191     $nuh{lc $args[5]} = $args[5]."!".$args[2]."\@".$args[3];
1192 }
1193
1194 sub on_whois {
1195     $conn = shift(@_);
1196     my ($event) = @_;
1197     my @args    = $event->args;
1198
1199     $nuh{lc $args[1]} = $args[1]."!".$args[2]."\@".$args[3];
1200 }
1201
1202 sub on_whoischannels {
1203     $conn = shift(@_);
1204     my ($event) = @_;
1205     my @args    = $event->args;
1206
1207     &DEBUG("on_whoischannels: @args");
1208 }
1209
1210 sub on_useronchannel {
1211     $conn = shift(@_);
1212     my ($event) = @_;
1213     my @args    = $event->args;
1214
1215     &DEBUG("on_useronchannel: @args");
1216     &joinNextChan();
1217 }
1218
1219 ###
1220 ### since joinnextchan is hooked onto on_endofnames, these are needed.
1221 ###
1222
1223 sub on_chanfull {
1224     $conn = shift(@_);
1225     my ($event) = @_;
1226     my @args    = $event->args;
1227
1228     &status(">>> chanfull/$b_blue$args[1]$ob");
1229
1230     &joinNextChan();
1231 }
1232
1233 sub on_inviteonly {
1234     $conn = shift(@_);
1235     my ($event) = @_;
1236     my @args    = $event->args;
1237
1238     &status(">>> inviteonly/$b_cyan$args[1]$ob");
1239
1240     &joinNextChan();
1241 }
1242
1243 sub on_banned {
1244     $conn = shift(@_);
1245     my ($event) = @_;
1246     my @args    = $event->args;
1247     my $chan    = $args[1];
1248
1249     &status(">>> banned/$b_blue$chan$ob $b_cyan$args[0]$ob, removing autojoin for $chan");
1250     delete $chanconf{$chan}{autojoin};
1251     &joinNextChan();
1252 }
1253
1254 sub on_badchankey {
1255     $conn = shift(@_);
1256     my ($event) = @_;
1257     my @args    = $event->args;
1258     my $chan    = $args[1];
1259
1260     &DEBUG("on_badchankey: args => @args, removing autojoin for $chan");
1261     delete $chanconf{$chan}{autojoin};
1262     &joinNextChan();
1263 }
1264
1265 sub on_useronchan {
1266     $conn = shift(@_);
1267     my ($event) = @_;
1268     my @args    = $event->args;
1269
1270     &DEBUG("on_useronchan: args => @args");
1271     &joinNextChan();
1272 }
1273
1274 # TODO not used yet
1275 sub on_stdin {
1276     my $line = <STDIN>;
1277     chomp($line);
1278     &FIXME("on_stdin: line => \"$line\"");
1279 }
1280
1281 1;