our
$AUTHORITY
=
'cpan:HINRIK'
;
$POE::Component::IRC::Plugin::CycleEmpty::VERSION
=
'6.93'
;
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;