package POE::Component::IRC::Plugin::CPAN::LinksToDocs; use strict; use warnings; our $VERSION = '0.001'; use base 'POE::Component::IRC::Plugin::BaseWrap'; use CPAN::LinksToDocs; sub _make_default_args { return ( trigger => qr/^(?:ur[il]\s*(?:for)?|perldoc)\s+(?=\S+)/i, response_event => 'irc_cpan_links_to_docs', linker => CPAN::LinksToDocs->new ); } sub _make_response_message { my ( $self, $in_ref ) = @_; my $what = (split /,/, $in_ref->{what})[0]; return [ join ' ', @{$self->{linker}->link_for($what)}]; } sub _make_response_event { my ( $self, $in_ref ) = @_; $in_ref->{result} = $self->{linker}->link_for($in_ref->{what}); return $in_ref; } 1; __END__ =head1 NAME POE::Component::IRC::Plugin::CPAN::LinksToDocs - get links to http://search.cpan.org/ documentation from IRC =head1 SYNOPSIS use strict; use warnings; use POE qw(Component::IRC Component::IRC::Plugin::CPAN::LinksToDocs); my $irc = POE::Component::IRC->spawn( nick => 'DocBot', server => 'irc.freenode.net', port => 6667, ircname => 'CPAN LinksToDocs', ); POE::Session->create( package_states => [ main => [ qw(_start irc_001) ], ], ); $poe_kernel->run; sub _start { $irc->yield( register => 'all' ); $irc->plugin_add( 'LinksToDocs' => POE::Component::IRC::Plugin::CPAN::LinksToDocs->new ); $irc->yield( connect => {} ); } sub irc_001 { $_[KERNEL]->post( $_[SENDER] => join => '#zofbot' ); } DocBot, uri Acme::BabyEater http://search.cpan.org/perldoc?Acme::BabyEater DocBot, perldoc map http://perldoc.perl.org/functions/map.html DocBot, perldoc RE http://search.cpan.org/perldoc?perlrequick http://search.cpan.org/perldoc?perlretut http://search.cpan.org/perldoc?perlre http://search.cpan.org/perldoc?perlreref =head1 DESCRIPTION This module is a L plugin which uses L for its base. It provides interface to to link people to documentation on L by giving it predefined "tags" (see TAGS section in L) or module names. It accepts input from public channel events, C messages as well as C (private messages); although that can be configured at will. The tags given to the plugin in IRC will be split on commas, only the link(s) for the B tag will be spoken in IRC B of the tags will be processed and the B the links will be returned in the response event. See EMITED EVENTS section for more information. =head1 CONSTRUCTOR =head2 new # plain and simple $irc->plugin_add( LinksToDocs => POE::Component::IRC::Plugin::CPAN::LinksToDocs->new ); # juicy flavor $irc->plugin_add( LinksToDocs => POE::Component::IRC::Plugin::CPAN::LinksToDocs->new( auto => 1, response_event => 'irc_docs_ready', banned => [ qr/aol\.com$/i ], root => [ qr/mah.net$/i ], addressed => 1, trigger => qr/^cpan\s+(?=\S)/i, listen_for_input => [ qw(public notice privmsg) ], linker => CPAN::LinksToDocs->new( tags => { m => 'http://m.com' } ), eat => 1, debug => 0, ) ); The C method constructs and returns a new C object suitable to be fed to L's C method. The constructor takes a few arguments, but I. The possible arguments/values are as follows: =head3 auto ->new( auto => 0 ); B. Takes either true or false values, specifies whether or not the plugin should auto respond to requests. When the C argument is set to a true value plugin will respond to the requesting person with the results automatically. When the C 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 C argument for details). B C<1>. =head3 linker ->new(linker => CPAN::LinksToDocs->new(tags => { m => 'http://m.com/' } )); B. The C argument takes a L object as a value, here's where you can add any custom tags if you want. B standard, plain L object. =head3 response_event ->new( response_event => 'event_name_to_recieve_results' ); B. 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. B C =head3 banned ->new( banned => [ qr/aol\.com$/i ] ); B. 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 C arrayref, plugin will ignore the request. B C<[]> (no bans are set). =head3 root ->new( root => [ qr/\Qjust.me.and.my.friend.net\E$/i ] ); B. As opposed to C argument, the C argument B access only to people whose usermasks match B of the regexen you specify in the arrayref the argument takes as a value. B it is not specified. B as opposed to C specifying an empty arrayref to C argument will restrict access to everyone. =head3 trigger ->new( trigger => qr/^cpan\s+(?=\S)/i ); B. Takes a regex as an argument. Messages matching this regex will be considered as requests. See also B option below which is enabled by default. B the trigger will be B from the message, therefore make sure your trigger doesn't match the actual data that needs to be processed. B C =head3 addressed ->new( addressed => 1 ); B. Takes either true or false values. When set to a true value all the public messages must be I. In other words, if your bot's nickname is C and your trigger is C you would make the request by saying C. When addressed mode is turned on, the bot's nickname, including any whitespace and common punctuation character will be removed before matching the C (see above). When C argument it set to a false value, public messages will only have to match C regex in order to make a request. Note: this argument has no effect on C and C requests. B C<1> =head3 listen_for_input ->new( listen_for_input => [ qw(public notice privmsg) ] ); B. Takes an arrayref as a value which can contain any of the three elements, namely C, C and C which indicate which kind of input plugin should respond to. When the arrayref contains C element, plugin will respond to requests sent from messages in public channels (see C argument above for specifics). When the arrayref contains C element plugin will respond to requests sent to it via C messages. When the arrayref contains C element, the plugin will respond to requests sent to it via C (private messages). You can specify any of these. In other words, setting C<( listen_for_input => [ qr(notice privmsg) ] )> will enable functionality only via C and C messages. B C<[ qw(public notice privmsg) ]> =head3 eat ->new( eat => 0 ); B. If set to a false value plugin will return a C after responding. If eat is set to a true value, plugin will return a C after responding. See L documentation for more information if you are interested. B: C<1> =head3 debug ->new( debug => 1 ); B. Takes either a true or false value. When C argument is set to a true value some debugging information will be printed out. When C argument is set to a false value no debug info will be printed. B C<0>. =head1 EMITED EVENTS =head2 response_event $VAR1 = { 'who' => 'Zoffix!n=Zoffix@unaffiliated/zoffix', 'what' => 'map,grep,RE', 'type' => 'public', 'channel' => '#zofbot', 'result' => [ 'http://perldoc.perl.org/functions/map.html', 'http://perldoc.perl.org/functions/grep.html', 'http://search.cpan.org/perldoc?perlrequick', 'http://search.cpan.org/perldoc?perlretut', 'http://search.cpan.org/perldoc?perlre', 'http://search.cpan.org/perldoc?perlreref' ], 'message' => 'DocBot, perldoc map,grep,RE' }; The event handler set up to handle the event, name of which you've specified in the C argument to the constructor (it defaults to C) will recieve input every time request is completed. The input will come in a form of a hashref. The keys/values of that hashref are as follows: =head2 who { 'who' => 'Zoffix!n=Zoffix@unaffiliated/zoffix' } The usermask of the person who made the request. =head2 what { 'what' => 'map,grep,RE' } The user's message after stripping the trigger. =head2 type { 'type' => 'public' } The type of the request. This will be either C, C or C =head2 channel { '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) =head2 message { 'message' => 'DocBot, perldoc map,grep,RE' } The full message that the user has sent. =head2 result { 'result' => [ 'http://perldoc.perl.org/functions/map.html', 'http://perldoc.perl.org/functions/grep.html', 'http://search.cpan.org/perldoc?perlrequick', 'http://search.cpan.org/perldoc?perlretut', 'http://search.cpan.org/perldoc?perlre', 'http://search.cpan.org/perldoc?perlreref' ], } The result of the request. B the "tags" given to the plugin will be split on commas, only the link(s) for the B tag of that split will be spoken in IRC, B of them will be returned in the response event. =head1 SEE ALSO L, L =head1 AUTHOR Zoffix Znet, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc POE::Component::IRC::Plugin::CPAN::LinksToDocs You can also look for information at: =over 4 =item * RT: CPAN's request tracker L =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * Search CPAN L =back =head1 COPYRIGHT & LICENSE 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. =cut