]> git.donarmstrong.com Git - infobot.git/blobdiff - src/IRC/Irc.pl
fix more warnings
[infobot.git] / src / IRC / Irc.pl
index a0f48a0967f2cc98b1aac2efabb323d64e7588a5..36d57aae2ad52fe5a41f79e7c40c65d92577af65 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;
@@ -144,6 +144,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,13 +178,31 @@ sub say {
     my ($msg) = @_;
     if (!defined $msg) {
        $msg ||= "NULL";
-       &DEBUG("say: msg == $msg.");
+       &WARN("say: msg == $msg.");
        return;
     }
 
     &status("</$talkchannel> $msg");
     if (&whatInterface() =~ /IRC/) {
-       $msg = "zero" if ($msg =~ /^0+$/);
+       $msg    = "zero" if ($msg =~ /^0+$/);
+       my $t   = time();
+
+       if ($t == $pubtime) {
+           $pubcount++;
+           $pubsize += length $msg;
+
+           if ( ($pubcount % 4) == 0 and $pubcount) {
+               sleep 1;
+           } elsif ($pubsize > 1500) {
+               sleep 1;
+               $pubsize -= 1500;
+           }
+
+       } else {
+           $pubcount   = 0;
+           $pubtime    = $t;
+           $pubsize    = length $msg;
+       }
 
        $conn->privmsg($talkchannel, $msg);
     }
@@ -194,19 +217,41 @@ sub msg {
 
     if (!defined $msg) {
        $msg ||= "NULL";
-       &DEBUG("msg: msg == $msg.");
+       &WARN("msg: msg == $msg.");
        return;
     }
 
     &status(">$nick< $msg");
-    $conn->privmsg($nick, $msg) if (&whatInterface() =~ /IRC/);
+
+    if (&whatInterface() =~ /IRC/) {
+       my $t = time();
+
+       if ($t == $msgtime) {
+           $msgcount++;
+           $msgsize += length $msg;
+
+           if ( ($msgcount % 4) == 0 and $msgcount) {
+               sleep 1;
+           } elsif ($msgsize > 1000) {
+               sleep 1;
+               $msgsize -= 1000;
+           }
+
+       } else {
+           $msgcount   = 0;
+           $msgtime    = $t;
+           $msgsize    = length $msg;
+       }
+
+       $conn->privmsg($nick, $msg);
+    }
 }
 
 # Usage: &action(nick || chan, txt);
 sub action {
     my ($target, $txt) = @_;
     if (!defined $txt) {
-       &DEBUG("action: txt == NULL.");
+       &WARN("action: txt == NULL.");
        return;
     }
 
@@ -222,16 +267,35 @@ 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;
+
+       if ( ($notcount % 3) == 0 and $notcount) {
+           sleep 1;
+       } elsif ($notsize > 1000) {
+           sleep 1;
+           $notsize -= 1000;
+       }
+
+    } else {
+       $notcount       = 0;
+       $nottime        = $t;
+       $notsize        = length $txt;
+    }
+
     $conn->notice($target, $txt);
 }
 
@@ -241,7 +305,7 @@ sub DCCBroadcast {
 
     ### FIXME: flag not supported yet.
 
-    foreach (keys %{$dcc{'CHAT'}}) {
+    foreach (keys %{ $dcc{'CHAT'} }) {
        $conn->privmsg($dcc{'CHAT'}{$_}, $txt);
     }
 }
@@ -326,7 +390,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];
     }
@@ -346,7 +410,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();
        }
     }
@@ -361,8 +425,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");
@@ -379,7 +443,7 @@ sub mode {
        return;
     }
 
-    &DEBUG("MODE $chan $modes");
+    &DEBUG("mode: MODE $chan $modes");
 
     rawout("MODE $chan $modes");
 }
@@ -484,11 +548,13 @@ sub nick {
     my ($nick) = @_;
 
     if ($nick =~ /^$mask{nick}$/) {
-       &DEBUG("Changing nick to $nick (from $ident)");
+       &DEBUG("nick: Changing nick to $nick (from $ident)");
        rawout("NICK ".$nick);
+       # unfortunately, on_nick doesn't catch ourself.
+       $ident  = $nick;
        return 1;
     }
-    &DEBUG("nick failed... why oh why (nick => $nick)");
+    &DEBUG("nick: failed... why oh why (nick => $nick)");
 
     return 0;
 }
@@ -505,28 +571,29 @@ sub invite {
 
 # Usage: &joinNextChan();
 sub joinNextChan {
+    &DEBUG("joinNextChan called.");
+
     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--;
-    }
+    } else {
+       if (exists $cache{joinTime}) {
+           my $delta   = time() - $cache{joinTime};
+           my $timestr = &Time2String($delta);
+           my $rate    = sprintf("%.1f", $delta / &getJoinChans() );
+           delete $cache{joinTime};
 
-    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");
+           &DEBUG("time taken to join all chans: $timestr; rate: $rate sec/join");
+       }
+       # chanserv check: global channels, in case we missed one.
+
+       foreach ( &ChanConfList("chanServ_ops") ) {
+           &chanServCheck($_);
        }
     }
 }
@@ -537,7 +604,7 @@ sub GetNickInChans {
     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, $_);
     }
 
@@ -562,12 +629,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;
     }
@@ -577,7 +644,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;
@@ -606,7 +673,7 @@ sub DeleteUserInfo {
     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});
 
@@ -622,14 +689,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;
 
@@ -653,22 +722,25 @@ sub getJoinChans {
        push(@chans, $_);
     }
 
+    my $str;
     if (scalar @skip) {
-       &status("gJC: channels not auto-joining: @skip");
+       $str = "gJC: channels not auto-joining: @skip";
     } else {
-       &status("gJC: auto-joining all chans.");
+       $str = "gJC: auto-joining all chans.";
     }
 
+    &status($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});
@@ -687,7 +759,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}) {
@@ -702,16 +774,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.
@@ -725,13 +797,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;