3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-05 02:48:50 +02:00

Group comma-separated bans/mutes together in one MODE

This commit is contained in:
Pragmatic Software 2018-06-05 22:59:33 -07:00
parent 4d6c3d14ca
commit fc4fbc6af3
2 changed files with 91 additions and 14 deletions

View File

@ -87,8 +87,13 @@ sub ban_user {
} }
my @targets = split /,/, $target; my @targets = split /,/, $target;
my $immediately = @targets > 1 ? 0 : 1;
foreach my $t (@targets) { foreach my $t (@targets) {
$self->{pbot}->{chanops}->ban_user_timed($t, $channel, $length); $self->{pbot}->{chanops}->ban_user_timed($t, $channel, $length, $immediately);
}
if (not $immediately) {
$self->{pbot}->{chanops}->check_ban_queue;
} }
if ($length > 0) { if ($length > 0) {
@ -131,12 +136,16 @@ sub unban_user {
} }
my @targets = split /,/, $target; my @targets = split /,/, $target;
$immediately = 0 if @targets > 2; $immediately = 0 if @targets > 1;
foreach my $t (@targets) { foreach my $t (@targets) {
$self->{pbot}->{chanops}->unban_user($t, $channel, $immediately); $self->{pbot}->{chanops}->unban_user($t, $channel, $immediately);
} }
if (@targets > 1) {
$self->{pbot}->{chanops}->check_unban_queue;
}
return "/msg $nick $target has been unbanned from $channel."; return "/msg $nick $target has been unbanned from $channel.";
} }
@ -186,8 +195,13 @@ sub mute_user {
} }
my @targets = split /,/, $target; my @targets = split /,/, $target;
my $immediately = @targets > 1 ? 0 : 1;
foreach my $t (@targets) { foreach my $t (@targets) {
$self->{pbot}->{chanops}->mute_user_timed($t, $channel, $length); $self->{pbot}->{chanops}->mute_user_timed($t, $channel, $length, $immediately);
}
if (not $immediately) {
$self->{pbot}->{chanops}->check_ban_queue;
} }
if ($length > 0) { if ($length > 0) {
@ -230,11 +244,16 @@ sub unmute_user {
} }
my @targets = split /,/, $target; my @targets = split /,/, $target;
$immediately = 0 if @targets > 2; $immediately = 0 if @targets > 1;
foreach my $t (@targets) { foreach my $t (@targets) {
$self->{pbot}->{chanops}->unmute_user($t, $channel, $immediately); $self->{pbot}->{chanops}->unmute_user($t, $channel, $immediately);
} }
if (@targets > 1) {
$self->{pbot}->{chanops}->check_unban_queue;
}
return "/msg $nick $target has been unmuted in $channel."; return "/msg $nick $target has been unmuted in $channel.";
} }

View File

@ -47,6 +47,7 @@ sub initialize {
$self->{unmute_timeout}->load; $self->{unmute_timeout}->load;
$self->{ban_queue} = {};
$self->{unban_queue} = {}; $self->{unban_queue} = {};
$self->{op_commands} = {}; $self->{op_commands} = {};
@ -120,10 +121,13 @@ sub perform_op_commands {
sub ban_user { sub ban_user {
my $self = shift; my $self = shift;
my ($mask, $channel) = @_; my ($mask, $channel, $immediately) = @_;
$self->add_op_command($channel, "mode $channel +b $mask"); $self->add_to_ban_queue($channel, 'b', $mask);
$self->gain_ops($channel);
if (not defined $immediately or $immediately != 0) {
$self->check_ban_queue;
}
} }
sub get_bans { sub get_bans {
@ -192,7 +196,7 @@ sub unban_user {
sub ban_user_timed { sub ban_user_timed {
my $self = shift; my $self = shift;
my ($mask, $channel, $length) = @_; my ($mask, $channel, $length, $immediately) = @_;
$channel = lc $channel; $channel = lc $channel;
$mask = lc $mask; $mask = lc $mask;
@ -212,7 +216,8 @@ sub ban_user_timed {
} }
} }
$self->ban_user($mask, $channel); $self->ban_user($mask, $channel, $immediately);
if ($length > 0) { if ($length > 0) {
$self->{unban_timeout}->hash->{$channel}->{$mask}{timeout} = gettimeofday + $length; $self->{unban_timeout}->hash->{$channel}->{$mask}{timeout} = gettimeofday + $length;
$self->{unban_timeout}->save; $self->{unban_timeout}->save;
@ -225,10 +230,13 @@ sub ban_user_timed {
sub mute_user { sub mute_user {
my $self = shift; my $self = shift;
my ($mask, $channel) = @_; my ($mask, $channel, $immediately) = @_;
$self->add_op_command($channel, "mode $channel +q $mask"); $self->add_to_ban_queue($channel, 'q', $mask);
$self->gain_ops($channel);
if (not defined $immediately or $immediately != 0) {
$self->check_ban_queue;
}
} }
sub unmute_user { sub unmute_user {
@ -241,13 +249,13 @@ sub unmute_user {
sub mute_user_timed { sub mute_user_timed {
my $self = shift; my $self = shift;
my ($mask, $channel, $length) = @_; my ($mask, $channel, $length, $immediately) = @_;
$channel = lc $channel; $channel = lc $channel;
$mask = lc $mask; $mask = lc $mask;
$mask .= '!*@*' if $mask !~ m/[\$!@]/; $mask .= '!*@*' if $mask !~ m/[\$!@]/;
$self->mute_user($mask, $channel); $self->mute_user($mask, $channel, $immediately);
if ($length > 0) { if ($length > 0) {
$self->{unmute_timeout}->hash->{$channel}->{$mask}{timeout} = gettimeofday + $length; $self->{unmute_timeout}->hash->{$channel}->{$mask}{timeout} = gettimeofday + $length;
$self->{unmute_timeout}->save; $self->{unmute_timeout}->save;
@ -300,6 +308,56 @@ sub has_mute_timeout {
return exists $self->{unmute_timeout}->hash->{lc $channel}->{lc $mask}; return exists $self->{unmute_timeout}->hash->{lc $channel}->{lc $mask};
} }
sub add_to_ban_queue {
my ($self, $channel, $mode, $target) = @_;
push @{$self->{ban_queue}->{$channel}->{$mode}}, $target;
$self->{pbot}->{logger}->log("Added +$mode $target for $channel to ban queue.\n");
}
sub check_ban_queue {
my $self = shift;
my $MAX_COMMANDS = 4;
my $commands = 0;
foreach my $channel (keys %{$self->{ban_queue}}) {
my $done = 0;
while (not $done) {
my ($list, $count, $modes);
$list = '';
$modes = '+';
$count = 0;
foreach my $mode (keys %{$self->{ban_queue}->{$channel}}) {
while (@{$self->{ban_queue}->{$channel}->{$mode}}) {
my $target = pop @{$self->{ban_queue}->{$channel}->{$mode}};
$list .= " $target";
$modes .= $mode;
last if ++$count >= $self->{pbot}->{ircd}->{MODES};
}
if (not @{$self->{ban_queue}->{$channel}->{$mode}}) {
delete $self->{ban_queue}->{$channel}->{$mode};
}
last if $count >= $self->{pbot}->{ircd}->{MODES};
}
if (not keys %{ $self->{ban_queue}->{$channel} }) {
delete $self->{ban_queue}->{$channel};
$done = 1;
}
if ($count) {
$self->add_op_command($channel, "mode $channel $modes $list");
$self->gain_ops($channel);
return if ++$commands >= $MAX_COMMANDS;
}
}
}
}
sub add_to_unban_queue { sub add_to_unban_queue {
my ($self, $channel, $mode, $target) = @_; my ($self, $channel, $mode, $target) = @_;
push @{$self->{unban_queue}->{$channel}->{$mode}}, $target; push @{$self->{unban_queue}->{$channel}->{$mode}}, $target;