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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
package POE::Component::IRC::Plugin::BotCommand;
BEGIN {
$POE::Component::IRC::Plugin::BotCommand::AUTHORITY = 'cpan:HINRIK';
}
BEGIN {
$POE::Component::IRC::Plugin::BotCommand::VERSION = '6.35';
}
use strict;
use warnings;
use Carp;
use POE::Component::IRC::Common qw( parse_user strip_color strip_formatting );
use POE::Component::IRC::Plugin qw( :ALL );
sub new {
my ($package) = shift;
croak "$package requires an even number of arguments" if @_ & 1;
my %args = @_;
$args{Method} = 'notice' if !defined $args{Method};
for my $cmd (keys %{ $args{Commands} }) {
$args{Commands}->{lc $cmd} = delete $args{Commands}->{$cmd};
}
return bless \%args, $package;
}
sub PCI_register {
my ($self, $irc) = splice @_, 0, 2;
$self->{Addressed} = 1 if !defined $self->{Addressed};
$self->{Prefix} = '!' if !defined $self->{Prefix};
$self->{In_channels} = 1 if !defined $self->{In_channels};
$self->{In_private} = 1 if !defined $self->{In_private};
$self->{irc} = $irc;
$irc->plugin_register( $self, 'SERVER', qw(msg public) );
return 1;
}
sub PCI_unregister {
return 1;
}
sub S_msg {
my ($self, $irc) = splice @_, 0, 2;
my $who = ${ $_[0] };
my $where = parse_user($who);
my $what = ${ $_[2] };
return PCI_EAT_NONE if !$self->{In_private};
$what = $self->_normalize($what);
my ($cmd, $args);
if (!(($cmd, $args) = $what =~ /^$self->{Prefix}(\w+)(?:\s+(.+))?$/)) {
return PCI_EAT_NONE;
}
$self->_handle_cmd($who, $where, $cmd, $args);
return $self->{Eat} ? PCI_EAT_PLUGIN : PCI_EAT_NONE;
}
sub S_public {
my ($self, $irc) = splice @_, 0, 2;
my $who = ${ $_[0] };
my $where = ${ $_[1] }->[0];
my $what = ${ $_[2] };
my $me = $irc->nick_name();
return PCI_EAT_NONE if !$self->{In_channels};
$what = $self->_normalize($what);
if ($self->{Addressed}) {
return PCI_EAT_NONE if !(($what) = $what =~ m/^\s*\Q$me\E[:,;.!?~]?\s*(.*)$/);
}
else {
return PCI_EAT_NONE if $what !~ s/^$self->{Prefix}//;
}
my ($cmd, $args);
if (!(($cmd, $args) = $what =~ /^(\w+)(?:\s+(.+))?$/)) {
return PCI_EAT_NONE;
}
$self->_handle_cmd($who, $where, $cmd, $args);
return $self->{Eat} ? PCI_EAT_PLUGIN : PCI_EAT_NONE;
}
sub _normalize {
my ($self, $line) = @_;
$line = strip_color($line);
$line = strip_formatting($line);
return $line;
}
sub _handle_cmd {
my ($self, $who, $where, $cmd, $args) = @_;
my $irc = $self->{irc};
my $chantypes = join('', @{ $irc->isupport('CHANTYPES') || ['#', '&']});
my $public = $where =~ /^[$chantypes]/ ? 1 : 0;
$cmd = lc $cmd;
if (ref $self->{Auth_sub} eq 'CODE') {
my ($authed, $errors) = $self->{Auth_sub}->($self->{irc}, $who, $where, $cmd, $args);
if (!$authed) {
my @errors = ref $errors eq 'ARRAY'
? @$errors
: 'You are not authorized to use this command.';
for my $error (@errors) {
$irc->yield($self->{Method}, $where, $error);
}
return;
}
}
if (defined $self->{Commands}->{$cmd}) {
$irc->send_event("irc_botcmd_$cmd" => $who, $where, $args);
}
elsif ($cmd =~ /^help$/i) {
my @help = $self->_get_help($args, $public);
$irc->yield($self->{Method} => $where => $_) for @help;
}
elsif (!$self->{Ignore_unknown}) {
my @help = $self->_get_help($cmd, $public);
$irc->yield($self->{Method} => $where => $_) for @help;
}
return;
}
sub _get_help {
my ($self, $args, $public) = @_;
my $irc = $self->{irc};
my $p = $self->{Addressed} && $public
? $irc->nick_name().': '
: $self->{Prefix};
my @help;
if (defined $args) {
my $cmd = (split /\s+/, $args, 2)[0];
if (exists $self->{Commands}->{$cmd}) {
@help = split /\015?\012/, $self->{Commands}->{$cmd};
}
else {
push @help, "Unknown command: $cmd";
push @help, "To get a list of commands, use: ${p}help";
}
}
else {
if (keys %{ $self->{Commands} }) {
push @help, 'Commands: ' . join ', ', keys %{ $self->{Commands} };
push @help, "For more details, use: ${p}help <command>";
}
else {
push @help, 'No commands are defined';
}
}
return @help;
}
sub add {
my ($self, $cmd, $usage) = @_;
$cmd = lc $cmd;
return if exists $self->{Commands}->{$cmd};
$self->{Commands}->{$cmd} = $usage;
return 1;
}
sub remove {
my ($self, $cmd) = @_;
$cmd = lc $cmd;
return if !exists $self->{Commands}->{$cmd};
delete $self->{Commands}->{$cmd};
return 1;
}
sub list {
my ($self) = @_;
return %{ $self->{Commands} };
}
1;
__END__
=encoding utf8
=head1 NAME
POE::Component::IRC::Plugin::BotCommand - A PoCo-IRC plugin which handles
commands issued to your bot
=head1 SYNOPSIS
use POE;
use POE::Component::Client::DNS;
use POE::Component::IRC;
use POE::Component::IRC::Plugin::BotCommand;
my @channels = ('#channel1', '#channel2');
my $dns = POE::Component::Client::DNS->spawn();
my $irc = POE::Component::IRC->spawn(
nick => 'YourBot',
server => 'some.irc.server',
);
POE::Session->create(
package_states => [
main => [ qw(_start irc_001 irc_botcmd_slap irc_botcmd_lookup dns_response) ],
],
);
$poe_kernel->run();
sub _start {
$irc->plugin_add('BotCommand', POE::Component::IRC::Plugin::BotCommand->new(
Commands => {
slap => 'Takes one argument: a nickname to slap.',
lookup => 'Takes two arguments: a record type (optional), and a host.',
}
));
$irc->yield(register => qw(001 botcmd_slap botcmd_lookup));
$irc->yield(connect => { });
}
# join some channels
sub irc_001 {
$irc->yield(join => $_) for @channels;
return;
}
# the good old slap
sub irc_botcmd_slap {
my $nick = (split /!/, $_[ARG0])[0];
my ($where, $arg) = @_[ARG1, ARG2];
$irc->yield(ctcp => $where, "ACTION slaps $arg");
return;
}
# non-blocking dns lookup
sub irc_botcmd_lookup {
my $nick = (split /!/, $_[ARG0])[0];
my ($where, $arg) = @_[ARG1, ARG2];
my ($type, $host) = $arg =~ /^(?:(\w+) )?(\S+)/;
my $res = $dns->resolve(
event => 'dns_response',
host => $host,
type => $type,
context => {
where => $where,
nick => $nick,
},
);
$poe_kernel->yield(dns_response => $res) if $res;
return;
}
sub dns_response {
my $res = $_[ARG0];
my @answers = map { $_->rdatastr } $res->{response}->answer() if $res->{response};
$irc->yield(
'notice',
$res->{context}->{where},
$res->{context}->{nick} . (@answers
? ": @answers"
: ': no answers for "' . $res->{host} . '"')
);
return;
}
=head1 DESCRIPTION
POE::Component::IRC::Plugin::BotCommand is a
L<POE::Component::IRC|POE::Component::IRC> plugin. It provides you with a
standard interface to define bot commands and lets you know when they are
issued. Commands are accepted as channel or private messages.
The plugin will respond to the 'help' command by default, listing available
commands and information on how to use them. However, if you add a help
command yourself, that one will be used instead.
=head1 METHODS
=head2 C<new>
B<'Commands'>, a hash reference, with your commands as keys, and usage
information as values. If the usage string contains newlines, the component
will send one message for each line.
=head3 Accepting commands
B<'In_channels'>, a boolean value indicating whether to accept commands in
channels. Default is true.
B<'In_private'>, a boolean value indicating whether to accept commands in
private. Default is true.
B<'Addressed'>, requires users to address the bot by name in order
to issue commands. Default is true.
B<'Prefix'>, a string which all commands must be prefixed with (except in
channels when B<'Addressed'> is true). Default is '!'. You can set it to ''
to allow bare commands.
=head3 Authorization
B<'Auth_sub'>, a subroutine reference which, if provided, will be called
for every command. The subroutine will be called in list context. If the
first value returned is true the command will be processed as normal. If the
value is false, then no events will be generated, and an error message will
possibly be sent back to the user. You can override the default error message
by returning an array reference of (zero or more) strings. Each string will
be sent as a message to the user.
The sub will get the following arguments:
=over
=item 1. The IRC component object
=item 2. The nick!user@host of the user
=item 3. The place where the command was issued (the nickname of the user if
it was in private)
=item 4. The name of the command
=item 5. The command argument string
=back
B<'Ignore_unauthorized'>, if true, the plugin will ignore unauthorized
commands, rather than printing an error message upon receiving them. This is
only relevant if B<'Auth_sub'> is also supplied. Default is false.
=head3 Miscellaneous
B<'Ignore_unknown'>, if true, the plugin will ignore undefined commands,
rather than printing a help message upon receiving them. Default is false.
B<'Method'>, how you want help messages to be delivered. Valid options are
'notice' (the default) and 'privmsg'.
B<'Eat'>, set to true to make the plugin hide
L<C<irc_public>|POE::Component::IRC/"irc_public"> events from other plugins
when they look like commands. Probably only useful when a B<'Prefix'> is
defined. Default is false.
Returns a plugin object suitable for feeding to
L<POE::Component::IRC|POE::Component::IRC>'s C<plugin_add> method.
=head2 C<add>
Adds a new command. Takes two arguments, the name of the command, and a string
containing its usage information. Returns false if the command has already been
defined, true otherwise.
=head2 C<remove>
Removes a command. Takes one argument, the name of the command. Returns false
if the command wasn't defined to begin with, true otherwise.
=head2 C<list>
Takes no arguments. Returns a list of key/value pairs, the keys being the
command names and the values being the usage strings.
=head1 OUTPUT
=head2 C<irc_botcmd_*>
You will receive an event like this for every valid command issued. E.g. if
'slap' were a valid command, you would receive an C<irc_botcmd_slap> event
every time someone issued that command. C<ARG0> is the nick!hostmask of the
user who issued the command. C<ARG1> is the name of the channel in which the
command was issued, or the sender's nickname if this was a private message.
If the command was followed by any arguments, C<ARG2> will be a string
containing them, otherwise it will be undefined.
=head1 AUTHOR
Hinrik E<Ouml>rn SigurE<eth>sson, hinrik.sig@gmail.com
=cut
|