| POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s documentation | Contained in the POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s distribution. |
POE::Component::IRC::Plugin::CPAN::LinksToDocs::No404s - link to http://search.cpan.org/ documentation from IRC (and check that all links lead to existing docs)
use strict;
use warnings;
use POE qw(Component::IRC Component::IRC::Plugin::CPAN::LinksToDocs::No404s);
my $irc = POE::Component::IRC->spawn(
nick => 'DocBot',
server => 'irc.freenode.net',
port => 6667,
ircname => 'Documentation Bot',
);
POE::Session->create(
package_states => [
main => [ qw(_start irc_001) ],
],
);
$poe_kernel->run;
sub _start {
$irc->yield( register => 'all' );
$irc->plugin_add(
'DocLinks' =>
POE::Component::IRC::Plugin::CPAN::LinksToDocs::No404s->new
);
$irc->yield( connect => {} );
}
sub irc_001 {
$_[KERNEL]->post( $_[SENDER] => join => '#zofbot' );
}
<Zoffix> DocBot, perldoc map
<DocBot> http://perldoc.perl.org/functions/map.html
<Zoffix> DocBot, uri map,grep,File::Find,SomeWeirdModuleThatDoesn'tExist
<DocBot> http://perldoc.perl.org/functions/map.html
http://perldoc.perl.org/functions/grep.html
http://search.cpan.org/perldoc?File::Find
Not found
This module is a POE::Component::IRC plugin which uses
POE::Component::IRC::Plugin for its base. It provides means to get
links to documentation on http://search.cpan.org/ by giving the plugin
predefined "tags" or names of modules on CPAN.
It accepts input from public channel events, /notice messages as well
as /msg (private messages); although that can be configured at will.
For predefined "tags"
see documentation for CPAN::LinksToDocs::No404s module.
Note: plugin filters out duplicate tags. In other words if the request
is map,map,map you'll get only one link in return.
# plain and simple
$irc->plugin_add(
'DocLinks' => POE::Component::IRC::Plugin::CPAN::LinksToDocs::No404s->new
);
# juicy flavor
$irc->plugin_add(
'DocLinks' =>
POE::Component::IRC::Plugin::CPAN::LinksToDocs::No404s->new(
auto => 1,
response_event => 'irc_cpan_links_to_docs',
banned => [ qr/aol\.com$/i ],
addressed => 1,
trigger => qr/^docs\s+(?=\S)/i,
listen_for_input => [ qw(public notice privmsg) ],
linker => CPAN::LinksToDocs::No404s->new( tags=>{ foos => 'bars' } ),
no_filter => 1,
max_length => 300,
eat => 1,
debug => 0,
)
);
The new() method constructs and returns a new
POE::Component::IRC::Plugin::CPAN::LinksToDocs::No404s object suitable to be
fed to POE::Component::IRC's plugin_add method. The constructor
takes a few arguments, but all of them are optional. The possible
arguments/values are as follows:
->new( auto => 0 );
Optional. Takes either true or false values, specifies whether or not
the plugin should auto respond to requests. When the auto
argument is set to a true value plugin will respond to the requesting
person with the results automatically. When the auto argument
is set to a false value plugin will not respond and you will have to
listen to the events emited by the plugin to retrieve the results (see
EMITED EVENTS section and response_event argument for details).
Defaults to: 1.
->new( response_event => 'event_name_to_recieve_results' );
Optional. Takes a scalar string specifying the name of the event
to emit when the results of the request are ready. See EMITED EVENTS
section for more information. Defaults to: irc_cpan_links_to_docs
->new( banned => [ qr/aol\.com$/i ] );
Optional. Takes an arrayref of regexes as a value. If the usermask
of the person (or thing) making the request matches any of
the regexes listed in the banned arrayref, plugin will ignore the
request. Defaults to: [] (no bans are set).
->new( trigger => qr/^docs\s+(?=\S)/i );
Optional. Takes a regex as an argument. Messages matching this
regex will be considered as requests. See also
addressed option below which is enabled by default. Note: the
trigger will be removed from the message, therefore make sure your
trigger doesn't match the actual data that needs to be processed.
Defaults to: qr/^(?:ur[il]\s*(?:for)?|perldoc)\s+(?=\S+)/i
->new( addressed => 1 );
Optional. Takes either true or false values. When set to a true value
all the public messages must be addressed to the bot. In other words,
if your bot's nickname is Nick and your trigger is
qr/^trig\s+/
you would make the request by saying Nick, trig Some::Module.
When addressed mode is turned on, the bot's nickname, including any
whitespace and common punctuation character will be removed before
matching the trigger (see above). When addressed argument it set
to a false value, public messages will only have to match trigger regex
in order to make a request. Note: this argument has no effect on
/notice and /msg requests. Defaults to: 1
->new( listen_for_input => [ qw(public notice privmsg) ] );
Optional. Takes an arrayref as a value which can contain any of the
three elements, namely public, notice and privmsg which indicate
which kind of input plugin should respond to. When the arrayref contains
public element, plugin will respond to requests sent from messages
in public channels (see addressed argument above for specifics). When
the arrayref contains notice element plugin will respond to
requests sent to it via /notice messages. When the arrayref contains
privmsg element, the plugin will respond to requests sent
to it via /msg (private messages). You can specify any of these. In
other words, setting ( listen_for_input = [ qr(notice privmsg) ] )>
will enable functionality only via /notice and /msg messages.
Defaults to: [ qw(public notice privmsg) ]
->new( linker => CPAN::LinksToDocs::No404s->new( tags=>{ foos => 'bars' } ), )
Optional. The linker argument takes a CPAN::LinksToDocs::No404s
object (in case you want to add custom tags, change use ua, etc.).
Defaults to: plain, standard CPAN::LinksToDocs::No404s object.
->new( no_filter => 1 );
Optional. By default plugin will filter the IRC message from all
the network errors and 404s. If you want to prevent that and see
a bunch of "Not found" or "Network error: blah" messages set
no_filter argument to a true value. Note: the response_event
will still get full, non-filtered results even no matter of what
the no_filter argument is set to. Defaults to: not set (filter all
404s and network errors)
->new( max_length => 300 );
Optional. Specifies the maximum length of output sent to IRC (when
auto argument is turned on). Note: only the link(s) whose total length
(including spaces that separate them) is less than max_length
argument's value
(see constructor)
will be spoken in IRC, but all of them will be returned in the response
event. Defaults to: 300
->new( eat => 0 );
Optional. If set to a false value plugin will return a
PCI_EAT_NONE after
responding. If eat is set to a true value, plugin will return a
PCI_EAT_ALL after responding. See POE::Component::IRC::Plugin
documentation for more information if you are interested. Defaults to:
1
->new( debug => 1 );
Optional. Takes either a true or false value. When debug argument
is set to a true value some debugging information will be printed out.
When debug argument is set to a false value no debug info will be
printed. Defaults to: 0.
$VAR1 = {
'who' => 'Zoffix!n=Zoffix@unaffiliated/zoffix',
'response' => [
'http://perldoc.perl.org/functions/map.html',
'http://search.cpan.org/perldoc?Acme::BabyEater',
'http://search.cpan.org/perldoc?perlboot',
'http://search.cpan.org/perldoc?perltoot',
'http://search.cpan.org/perldoc?perltooc',
'http://search.cpan.org/perldoc?perlbot'
],
'type' => 'public',
'channel' => '#zofbot',
'message' => 'DocBot, uri map,Acme::BabyEater,OOP',
'tags' => 'map,Acme::BabyEater,OOP'
};
The event handler set up to handle the event, name of which you've
specified in the response_event argument to the constructor
(it defaults to irc_cpan_links_to_docs) will recieve input
every time request is completed. The input will come in $_[ARG0] in
a form of a hashref.
The keys/values of that hashref are as follows:
{ 'who' => 'Zoffix!n=Zoffix@unaffiliated/zoffix' }
The usermask of the person who made the request.
{ 'type' => 'public' }
The type of the request. This will be either public, notice or
privmsg
{ 'channel' => '#zofbot' }
The channel where the message came from (this will only make sense when the request came from a public channel as opposed to /notice or /msg)
{ 'message' => 'DocBot, uri map,Acme::BabyEater,OOP' }
The full message that the user has sent.
{
'response' => [
'http://perldoc.perl.org/functions/map.html',
'http://search.cpan.org/perldoc?Acme::BabyEater',
'http://search.cpan.org/perldoc?perlboot',
'http://search.cpan.org/perldoc?perltoot',
'http://search.cpan.org/perldoc?perltooc',
'http://search.cpan.org/perldoc?perlbot'
],
}
The result of the request. Note: only the link(s) whose total length
(including spaces that separate them) is less than max_length
argument's value
(see constructor)
will be spoken in IRC, but all of them will be returned in the response
event.
Zoffix Znet, <zoffix at cpan.org>
Please report any bugs or feature requests to bug-poe-component-irc-plugin-cpan-linkstodocs-no404s at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc POE::Component::IRC::Plugin::CPAN::LinksToDocs::No404s
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s
http://annocpan.org/dist/POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s
http://cpanratings.perl.org/d/POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s
http://search.cpan.org/dist/POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s
Copyright 2008 Zoffix Znet, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s documentation | Contained in the POE-Component-IRC-Plugin-CPAN-LinksToDocs-No404s distribution. |
package POE::Component::IRC::Plugin::CPAN::LinksToDocs::No404s; use warnings; use strict; our $VERSION = '0.002'; use base 'POE::Component::IRC::Plugin::BasePoCoWrap'; use POE::Component::CPAN::LinksToDocs::No404s; sub _make_default_args { return ( response_event => 'irc_cpan_links_to_docs', trigger => qr/^(?:ur[il]\s*(?:for)?|perldoc)\s+(?=\S+)/i, linker => CPAN::LinksToDocs::No404s->new, max_length => 300, ); } sub _make_poco { my $self = shift; return POE::Component::CPAN::LinksToDocs::No404s->spawn( debug => $self->{debug}, linker => $self->{linker}, ); } sub _make_response_message { my $self = shift; my $in_ref = shift; my $response = ''; my @links = @{ $in_ref->{response} }; my $message_404 = quotemeta $self->{linker}->message_404; if ( @links > 1 and !$self->{no_filter} ) { @links = grep { !/^(?:Network error|$message_404)/ } @links; } while ( $self->{max_length} > ( length($links[0]) + length $response ) ) { $response .= ' ' . shift @links; defined $links[0] or last; } return [ substr $response, 1 ]; } sub _make_response_event { my $self = shift; my $in_ref = shift; return { tags => $in_ref->{tags}, response => $in_ref->{response}, map { $_ => $in_ref->{"_$_"} } qw( who channel message type ), } } sub _make_poco_call { my $self = shift; my $data_ref = shift; my %seen; my $tags = join q|,|, grep { not $seen{$_}++ } split q|,|, delete $data_ref->{what}; $self->{poco}->link_for( { event => '_poco_done', tags => $tags, map +( "_$_" => $data_ref->{$_} ), keys %$data_ref, } ); } 1; __END__