]> git.donarmstrong.com Git - infobot.git/blobdiff - src/IRC/Irc.pl
- moved scripts/setup_sql.pl to src/db_mysql as &createTables()
[infobot.git] / src / IRC / Irc.pl
index b8ee86fdde44d3ebee218d21f2d88d14e80b76be..49c931db836df443719adcb48033078e654f3722 100644 (file)
@@ -27,7 +27,7 @@ loop:;
     while (my $host = shift @ircServers) {
        # JUST IN CASE. irq was complaining about this.
        if ($lastrun == time()) {
-           &DEBUG("hrm... lastrun == time()");
+           &DEBUG("ircloop: hrm... lastrun == time()");
            $error++;
            sleep 10;
            next;
@@ -40,25 +40,25 @@ loop:;
        }
        next unless (exists $ircPort{$host});
 
-       my $retval = &irc($host, $ircPort{$host});
-       &DEBUG("ircloop: after irc()");
-
+       my $retval      = &irc($host, $ircPort{$host});
        next unless (defined $retval and $retval == 0);
-
        $error++;
 
        if ($error % 3 == 0 and $error != 0) {
-           &ERROR("CANNOT connect to this server; next!");
+           &status("IRC: Could not connect.");
+           &status("IRC: ");
            next;
        }
 
-       if ($error >= 3*3) {
-           &ERROR("CANNOT connect to any irc server; stopping.");
+       if ($error >= 3*2) {
+           &status("IRC: cannot connect to any IRC servers; stopping.");
+           &shutdown();
            exit 1;
        }
     }
 
-    &DEBUG("ircloop: end... going back.");
+    &status("IRC: ok, done one cycle of IRC servers; trying again.");
+
     &loadIRCServers();
     goto loop;
 }
@@ -90,13 +90,15 @@ sub irc {
 
     $irc = new Net::IRC;
 
-    $conn = $irc->newconn(
+    my %args = (
                Nick    => $param{'ircNick'},
                Server  => $server,
                Port    => $port,
                Ircname => $param{'ircName'},
-               LocalAddr => $param{'ircHost'},
     );
+    $args{'LocalAddr'} = $param{'ircHost'} if ($param{'ircHost'});
+
+    $conn = $irc->newconn(%args);
 
     if (!defined $conn) {
        &ERROR("irc: conn was not created!defined!!!");
@@ -107,6 +109,8 @@ sub irc {
 
     # change internal timeout value for scheduler.
     $irc->{_timeout}   = 10;   # how about 60?
+    # Net::IRC debugging.
+    $irc->{_debug}     = 1;
 
     $ircstats{'Server'}        = "$server:$port";
 
@@ -136,6 +140,7 @@ sub irc {
        $conn->add_global_handler('disconnect', \&on_disconnect);
        $conn->add_global_handler([251,252,253,254,255], \&on_init);
 ###    $conn->add_global_handler([251,252,253,254,255,302], \&on_init);
+       $conn->add_global_handler(315, \&on_endofwho);
        $conn->add_global_handler(324, \&on_modeis);
        $conn->add_global_handler(333, \&on_topicinfo);
        $conn->add_global_handler(352, \&on_who);
@@ -144,6 +149,11 @@ sub irc {
        $conn->add_global_handler(376, \&on_endofmotd); # on_connect.
        $conn->add_global_handler(433, \&on_nick_taken);
        $conn->add_global_handler(439, \&on_targettoofast);
+       # for proper joinnextChan behaviour
+       $conn->add_global_handler(471, \&on_chanfull);
+       $conn->add_global_handler(473, \&on_inviteonly);
+       $conn->add_global_handler(474, \&on_banned);
+       $conn->add_global_handler(475, \&on_badchankey);
 
     # end of handler stuff.
 
@@ -173,7 +183,7 @@ sub say {
     my ($msg) = @_;
     if (!defined $msg) {
        $msg ||= "NULL";
-       &DEBUG("say: msg == $msg.");
+       &WARN("say: msg == $msg.");
        return;
     }
 
@@ -186,11 +196,16 @@ sub say {
            $pubcount++;
            $pubsize += length $msg;
 
-           if ($pubcount % 4 and $pubcount) {
+           my $i = &getChanConfDefault("sendPublicLimitLines", 3);
+           my $j = &getChanConfDefault("sendPublicLimitBytes", 1000);
+
+           if ( ($pubcount % $i) == 0 and $pubcount) {
                sleep 1;
-           } elsif ($pubsize > 1500) {
+               $pubsleep++;
+           } elsif ($pubsize > $j) {
                sleep 1;
-               $pubsize -= 1500;
+               $pubsize -= $j;
+               $pubsleep++;
            }
 
        } else {
@@ -212,7 +227,7 @@ sub msg {
 
     if (!defined $msg) {
        $msg ||= "NULL";
-       &DEBUG("msg: msg == $msg.");
+       &WARN("msg: msg == $msg.");
        return;
     }
 
@@ -225,11 +240,15 @@ sub msg {
            $msgcount++;
            $msgsize += length $msg;
 
-           if ($msgcount % 4 and $msgcount) {
+           my $i = &getChanConfDefault("sendPrivateLimitLines", 3);
+           my $j = &getChanConfDefault("sendPrivateLimitBytes", 1000);
+           if ( ($msgcount % $i) == 0 and $msgcount) {
                sleep 1;
-           } elsif ($msgsize > 1000) {
+               $msgsleep++;
+           } elsif ($msgsize > $j) {
                sleep 1;
-               $msgsize -= 1000;
+               $msgsize -= $j;
+               $msgsleep++;
            }
 
        } else {
@@ -246,7 +265,7 @@ sub msg {
 sub action {
     my ($target, $txt) = @_;
     if (!defined $txt) {
-       &DEBUG("action: txt == NULL.");
+       &WARN("action: txt == NULL.");
        return;
     }
 
@@ -262,26 +281,49 @@ sub action {
     rawout($rawout);
 }
 
-# Usage: &action(nick || chan, txt);
-sub notice{
+# Usage: &notice(nick || chan, txt);
+sub notice {
     my ($target, $txt) = @_;
     if (!defined $txt) {
-       &DEBUG("action: txt == NULL.");
+       &WARN("notice: txt == NULL.");
        return;
     }
 
     &status("-$target- $txt");
 
+    my $t      = time();
+
+    if ($t == $nottime) {
+       $notcount++;
+       $notsize += length $txt;
+
+       my $i = &getChanConfDefault("sendNoticeLimitLines", 3);
+       my $j = &getChanConfDefault("sendNoticeLimitBytes", 1000);
+
+       if ( ($notcount % $i) == 0 and $notcount) {
+           sleep 1;
+           $notsleep++;
+       } elsif ($notsize > $j) {
+           sleep 1;
+           $notsize -= $j;
+           $notsleep++;
+       }
+
+    } else {
+       $notcount       = 0;
+       $nottime        = $t;
+       $notsize        = length $txt;
+    }
+
     $conn->notice($target, $txt);
 }
 
-
 sub DCCBroadcast {
     my ($txt,$flag) = @_;
 
     ### FIXME: flag not supported yet.
 
-    foreach (keys %{$dcc{'CHAT'}}) {
+    foreach (keys %{ $dcc{'CHAT'} }) {
        $conn->privmsg($dcc{'CHAT'}{$_}, $txt);
     }
 }
@@ -366,7 +408,7 @@ sub dcc_close {
 
     foreach $type (keys %dcc) {
        &FIXME("dcc_close: $who");
-       my @who = grep /^\Q$who\E$/i, keys %{$dcc{$type}};
+       my @who = grep /^\Q$who\E$/i, keys %{ $dcc{$type} };
        next unless (scalar @who);
        $who = $who[0];
     }
@@ -386,7 +428,7 @@ sub joinchan {
        &status("join: already on $chan");
     } else {
        if (!$conn->join($chan)) {
-           &DEBUG("join failed. trying connect!");
+           &DEBUG("joinchan: join failed. trying connect!");
            $conn->connect();
        }
     }
@@ -401,8 +443,8 @@ sub part {
 
        &status("parting $chan");
        if (!&validChan($chan)) {
-           &status("part: not on $chan");
-           next;
+           &WARN("part: not on $chan; doing anyway");
+#          next;
        }
 
        rawout("PART $chan");
@@ -419,7 +461,7 @@ sub mode {
        return;
     }
 
-    &DEBUG("MODE $chan $modes");
+    &DEBUG("mode: MODE $chan $modes");
 
     rawout("MODE $chan $modes");
 }
@@ -517,18 +559,48 @@ sub unban {
 sub quit {
     my ($quitmsg) = @_;
     &status("QUIT $param{'ircNick'} has quit IRC ($quitmsg)");
-    $conn->quit($quitmsg);
+    if (defined $conn) {
+       $conn->quit($quitmsg);
+    } else {
+       &WARN("quit: could not quit!");
+    }
 }
 
 sub nick {
     my ($nick) = @_;
 
+    if (!defined $nick) {
+       &ERROR("nick: nick == NULL.");
+       return;
+    }
+
+    if (defined $ident and $nick eq $ident) {
+       &WARN("nick: nick == ident == '$ident'.");
+    }
+
+    my $bad     = 0;
+    $bad++ if (exists $nuh{ $param{'ircNick'} });
+    $bad++ if (&IsNickInAnyChan($param{'ircNick'}));
+
+    if ($bad) {
+       &WARN("Nick: not going to try and get my nick back. [".
+               scalar(localtime). "]");
+       return;
+    }
+
     if ($nick =~ /^$mask{nick}$/) {
-       &DEBUG("Changing nick to $nick (from $ident)");
        rawout("NICK ".$nick);
+
+       if (defined $ident) {
+           &status("nick: Changing nick to $nick (from $ident)");
+       } else {
+           &DEBUG("first time nick change.");
+           $ident      = $nick;
+       }
+
        return 1;
     }
-    &DEBUG("nick failed... why oh why (nick => $nick)");
+    &DEBUG("nick: failed... why oh why (nick => $nick)");
 
     return 0;
 }
@@ -546,46 +618,49 @@ sub invite {
 # Usage: &joinNextChan();
 sub joinNextChan {
     if (scalar @joinchan) {
-       my $chan = shift @joinchan;
+       $chan = shift @joinchan;
        &joinchan($chan);
 
        if (my $i = scalar @joinchan) {
            &status("joinNextChan: $i chans to join.");
        }
+
        return;
+
     }
 
-    if (&IsParam("nickServ_pass") and $nickserv < 1) {
-       &WARN("jNC: nickserv/chanserv not up.") if (!$nickserv);
-       $nickserv--;
+    # !scalar @joinchan:
+    my @c      = &getJoinChans();
+    if (exists $cache{joinTime} and scalar @c) {
+       my $delta       = time() - $cache{joinTime} - 5;
+       my $timestr     = &Time2String($delta);
+       my $rate        = sprintf("%.1f", $delta / @c);
+       delete $cache{joinTime};
+
+       &DEBUG("time taken to join all chans: $timestr; rate: $rate sec/join");
     }
 
-    my %chan = &getChanConfList("chanServ");
-    foreach $chan (keys %chan) {
-       next unless ($chan{$chan} > 0);
-           
-       if (!exists $channels{$chan}{'o'}{$ident}) {
-           &status("ChanServ ==> Requesting ops for $chan.");
-           &rawout("PRIVMSG ChanServ :OP $chan $ident");
-       }
+    # chanserv check: global channels, in case we missed one.
+    foreach ( &ChanConfList("chanServ_ops") ) {
+       &chanServCheck($_);
     }
 }
 
-# Usage: &GetNickInChans($nick,$chan);
-sub GetNickInChans {
+# Usage: &getNickInChans($nick);
+sub getNickInChans {
     my ($nick) = @_;
     my @array;
 
     foreach (keys %channels) {
-       next unless (grep /^\Q$nick\E$/i, keys %{$channels{$_}{''}});
+       next unless (grep /^\Q$nick\E$/i, keys %{ $channels{$_}{''} });
        push(@array, $_);
     }
 
     return @array;
 }
 
-# Usage: &GetNicksInChan($chan);
-sub GetNicksInChan {
+# Usage: &getNicksInChan($chan);
+sub getNicksInChan {
     my ($chan) = @_;
     my @array;
 
@@ -602,12 +677,12 @@ sub IsNickInChan {
        return 0;
     }
 
-    if (grep /^\Q$nick\E$/i, keys %{$channels{$chan}{''}}) {
+    if (grep /^\Q$nick\E$/i, keys %{ $channels{$chan}{''} }) {
        return 1;
     } else {
        foreach (keys %channels) {
            next unless (/[A-Z]/);
-           &DEBUG("hash channels contains mixed cased chan!!!");
+           &DEBUG("iNIC: hash channels contains mixed cased chan!!!");
        }
        return 0;
     }
@@ -617,7 +692,7 @@ sub IsNickInAnyChan {
     my ($nick) = @_;
 
     foreach $chan (keys %channels) {
-       next unless (grep /^\Q$nick\E$/i, keys %{$channels{$chan}{''}});
+       next unless (grep /^\Q$nick\E$/i, keys %{ $channels{$chan}{''}  });
        return 1;
     }
     return 0;
@@ -640,13 +715,13 @@ sub validChan {
 }
 
 ###
-# Usage: &DeleteUserInfo($nick,@chans);
-sub DeleteUserInfo {
+# Usage: &delUserInfo($nick,@chans);
+sub delUserInfo {
     my ($nick,@chans) = @_;
     my ($mode,$chan);
 
     foreach $chan (@chans) {
-       foreach $mode (keys %{$channels{$chan}}) {
+       foreach $mode (keys %{ $channels{$chan} }) {
            # use grep here?
            next unless (exists $channels{$chan}{$mode}{$nick});
 
@@ -662,14 +737,16 @@ sub clearChanVars {
 }
 
 sub clearIRCVars {
-    &DEBUG("clearIRCVars() called!");
+#    &DEBUG("clearIRCVars() called!");
     undef %channels;
     undef %floodjoin;
 
-    @joinchan  = &getJoinChans();
+    @joinchan          = &getJoinChans(1);
+    $cache{joinTime}   = time();
 }
 
 sub getJoinChans {
+    my($show)  = @_;
     my @chans;
     my @skip;
 
@@ -693,22 +770,25 @@ sub getJoinChans {
        push(@chans, $_);
     }
 
+    my $str;
     if (scalar @skip) {
-       &status("gJC: channels not auto-joining: @skip");
+       $str = "channels not auto-joining: @skip (joining: @chans)";
     } else {
-       &status("gJC: auto-joining all chans.");
+       $str = "auto-joining all chans: @chans";
     }
 
+    &status("Chans: ".$str) if ($show);
+
     return @chans;
 }
 
 sub closeDCC {
-    &DEBUG("closeDCC called.");
+###    &DEBUG("closeDCC called.");
 
     foreach $type (keys %dcc) {
        next if ($type ne uc($type));
  
-       foreach $nick (keys %{$dcc{$type}}) {
+       foreach $nick (keys %{ $dcc{$type} }) {
            next unless (defined $nick);
            &DEBUG("closing DCC $type to $nick (FIXME).");
            next unless (defined $dcc{$type}{$nick});
@@ -727,7 +807,7 @@ sub joinfloodCheck {
     return unless (&IsChanConf("joinfloodCheck"));
 
     if (exists $netsplit{lc $who}) {   # netsplit join.
-       &DEBUG("jfC: $who was in netsplit; not checking.");
+       &DEBUG("joinfloodCheck: $who was in netsplit; not checking.");
     }
 
     if (exists $floodjoin{$chan}{$who}{Time}) {
@@ -742,16 +822,16 @@ sub joinfloodCheck {
        my $c = $_;
        my $count = scalar keys %{ $floodjoin{$c} };
        next unless ($count > 5);
-       &DEBUG("count => $count");
+       &DEBUG("joinflood: count => $count");
 
        my $time;
        foreach (keys %{ $floodjoin{$c} }) {
            $time += $floodjoin{$c}{$_}{Time};
        }
-       &DEBUG("time => $time");
+       &DEBUG("joinflood: time => $time");
        $time /= $count;
 
-       &DEBUG("new time => $time");
+       &DEBUG("joinflood: new time => $time");
     }
 
     ### Clean it up.
@@ -765,13 +845,13 @@ sub joinfloodCheck {
        }
     }
 
-    &DEBUG("jfC: $delete deleted.") if ($delete);
+    &DEBUG("joinfloodCheck: $delete deleted.") if ($delete);
 }
 
 sub getHostMask {
     my($n) = @_;
 
-    &FIXME("getHostMask...");
+    &FIXME("getHostMask($n) called...");
 }
 
 1;