aboutsummaryrefslogtreecommitdiff
path: root/Plugin/Antiflood.pm
blob: 37e2199c5d92036840be777c7b21f404429fbe81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package Plugin::Antiflood;

use strict;
use warnings;

my $message_count = 5;
my $message_period = 11;


my %lastmsg = ();

sub configure {
	my $self = shift;
	my $cmdref = shift;
	return $self;
}

sub on_message {
	my ($self, $logger, $who, $where, $raw_what, $what, $irc) = @_;
	my $channel = $where->[0];
	my $nick = (split /!/, $who)[0];

	my $now = time();
	push @{$lastmsg{$nick}}, $now;

	if (@{$lastmsg{$nick}} >= $message_count) {
		@{$lastmsg{$nick}} = splice @{$lastmsg{$nick}}, 1, $message_count - 1;
		my $first = @{$lastmsg{$nick}}[0];
		if ($now - $first <= $message_period) {
			$irc->yield(kick => $channel => $nick => "Flood");
		}
	}
	return;
}

sub on_action {
	on_message(@_);
}
1;