| POE-Component-IRC documentation | Contained in the POE-Component-IRC distribution. |
POE::Component::IRC::Plugin::CycleEmpty - A PoCo-IRC plugin which cycles channels if they become empty and opless.
use POE::Component::IRC::Plugin::CycleEmpty;
$irc->plugin_add('CycleEmpty', POE::Component::IRC::Plugin::CycleEmpty->new());
POE::Component::IRC::Plugin::CycleEmpty is a POE::Component::IRC plugin. When a channel member quits, gets kicked, or parts, the plugin will cycle the channel if the IRC component is alone on that channel and is not a channel operator. If there was a topic or a key set on the channel, they will be restored upon rejoining.
This is useful for regaining ops in small channels if the IRC network does not have ChanServ or IRCNet's +R channel mode.
This plugin requires the IRC component to be POE::Component::IRC::State or a subclass thereof.
newReturns a plugin object suitable for feeding to
POE::Component::IRC's plugin_add method.
is_cyclingOne argument:
A channel name
Returns 1 if the plugin is currently cycling that channel, 0 otherwise. Useful if need to ignore the fact that the Component just parted the channel in question.
Hinrik Örn Sigurðsson, hinrik.sig@gmail.com
| POE-Component-IRC documentation | Contained in the POE-Component-IRC distribution. |
package POE::Component::IRC::Plugin::CycleEmpty; BEGIN { $POE::Component::IRC::Plugin::CycleEmpty::AUTHORITY = 'cpan:HINRIK'; } BEGIN { $POE::Component::IRC::Plugin::CycleEmpty::VERSION = '6.68'; } use strict; use warnings FATAL => 'all'; use Carp; use IRC::Utils qw( parse_user uc_irc ); use POE::Component::IRC::Plugin qw( :ALL ); sub new { my ($package) = shift; croak "$package requires an even number of arguments" if @_ & 1; my %self = @_; return bless \%self, $package; } sub PCI_register { my ($self, $irc) = @_; if (!$irc->isa('POE::Component::IRC::State')) { die __PACKAGE__ . " requires PoCo::IRC::State or a subclass thereof"; } $self->{cycling} = { }; $self->{irc} = $irc; $irc->plugin_register($self, 'SERVER', qw(join kick part quit)); return 1; } sub PCI_unregister { return 1; } sub S_join { my ($self, $irc) = splice @_, 0, 2; my $chan = ${ $_[1] }; delete $self->{cycling}->{$chan}; return PCI_EAT_NONE; } sub S_kick { my ($self, $irc) = splice @_, 0, 2; my $chan = ${ $_[1] }; my $victim = ${ $_[2] }; $self->_cycle($chan) if $victim ne $irc->nick_name(); return PCI_EAT_NONE; } sub S_part { my ($self, $irc) = splice @_, 0, 2; my $parter = parse_user(${ $_[0] }); my $chan = ${ $_[1] }; $self->_cycle($chan) if $parter ne $irc->nick_name(); return PCI_EAT_NONE; } sub S_quit { my ($self, $irc) = splice @_, 0, 2; my $quitter = parse_user(${ $_[0] }); my $channels = @{ $_[2] }[0]; if ($quitter ne $irc->nick_name()) { for my $chan (@{ $channels }) { $self->_cycle($chan); } } return PCI_EAT_NONE; } sub _cycle { my ($self, $chan) = @_; my $irc = $self->{irc}; if ($irc->channel_list($chan) == 1) { if (!$irc->is_channel_operator($chan, $irc->nick_name)) { $self->{cycling}->{ uc_irc($chan) } = 1; my $topic = $irc->channel_topic($chan); $irc->yield(part => $chan); $irc->yield(join => $chan => $irc->channel_key($chan)); $irc->yield(topic => $chan => $topic->{Value}) if defined $topic->{Value}; $irc->yield(mode => $chan => '+k ' . $irc->channel_key($chan)) if defined $irc->channel_key($chan); } } return; } sub is_cycling { my ($self, $value) = @_; return 1 if $self->{cycling}->{ uc_irc($value) }; return; } 1;