| POE-Component-IRC-Plugin-BrowserSupport documentation | Contained in the POE-Component-IRC-Plugin-BrowserSupport distribution. |
POE::Component::IRC::Plugin::BrowserSupport - lookup browser support for CSS/HTML/JS from IRC
use strict;
use warnings;
use POE qw(Component::IRC Component::IRC::Plugin::BrowserSupport);
my $irc = POE::Component::IRC->spawn(
nick => 'BrowserSupportBot',
server => 'irc.freenode.net',
port => 6667,
ircname => 'BrowserSupport Bot',
);
POE::Session->create(
package_states => [
main => [ qw(_start irc_001) ],
],
);
$poe_kernel->run;
sub _start {
$irc->yield( register => 'all' );
$irc->plugin_add(
'BrowserSupport' =>
POE::Component::IRC::Plugin::BrowserSupport->new
);
$irc->yield( connect => {} );
}
sub irc_001 {
$_[KERNEL]->post( $_[SENDER] => join => '#zofbot' );
}
<Zoffix__> BrowserSupportBot, support html
<BrowserSupportBot> (html) http://www.webdevout.net/browser-support-html#support-html401
FX1_5: 91.741% | FX2: 91.741% | IE6: 80.211% | IE7: 80.802% | KN3_5: ? |
OP8: 85.822% | OP9: 86.361% | SF2: ?
This module is a POE::Component::IRC plugin which uses
POE::Component::IRC::Plugin for its base. It provides interface to
http://webdevout.net's brower support API.
It accepts input from public channel events, /notice messages as well
as /msg (private messages); although that can be configured at will.
# plain and simple
$irc->plugin_add(
'BrowserSupport' => POE::Component::IRC::Plugin::BrowserSupport->new
);
# juicy flavor
$irc->plugin_add(
'BrowserSupport' =>
POE::Component::IRC::Plugin::BrowserSupport->new(
auto => 1,
response_event => 'irc_webdevout_browser_support',
banned => [ qr/aol\.com$/i ],
root => [ qr/mah.net$/i ],
addressed => 1,
root => [ qr/mah.net$/i ],
trigger => qr/^support\s+(?=\S)/i,
listen_for_input => [ qw(public notice privmsg) ],
eat => 1,
debug => 0,
obj_args => { long => 1 },
)
);
The new() method constructs and returns a new
POE::Component::IRC::Plugin::BrowserSupport 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_webdevout_support
->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( root => [ qr/\Qjust.me.and.my.friend.net\E$/i ] );
Optional. As opposed to banned argument, the root argument
allows access only to people whose usermasks match any of
the regexen you specify in the arrayref the argument takes as a value.
By default: it is not specified. Note: as opposed to banned
specifying an empty arrayref to root argument will restrict
access to everyone.
->new( trigger => qr/^support\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/^support\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 EXAMPLE.
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( obj_args => { long => 1 } );
Optional. Takes a hashef as an argument which contains WWW::WebDevout::BrowserSupportInfo constructor's arguments. See WWW::WebDevout::BrowserSupportInfo documentation for possible arguments. Defaults to: default WWW::WebDevout::BrowserSupportInfo constructor.
->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',
'what' => 'html',
'uri_info' => 'http://www.webdevout.net/browser-support-html#support-html401',
'type' => 'public',
'channel' => '#zofbot',
'message' => 'SupportBot, support html',
'results' => {
'SF2' => '?',
'FX1_5' => '91.741%',
'FX2' => '91.741%',
'IE6' => '80.211%',
'IE7' => '80.802%',
'OP8' => '85.822%',
'OP9' => '86.361%',
'KN3_5' => '?'
}
};
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_webdevout_support) will recieve input
every time request is completed. The input will come in $_[ARG0] in
a form of a hashref.
The keys/value of that hashref are as follows:
'results' => {
'SF2' => '?',
'FX1_5' => '91.741%',
'FX2' => '91.741%',
'IE6' => '80.211%',
'IE7' => '80.802%',
'OP8' => '85.822%',
'OP9' => '86.361%',
'KN3_5' => '?'
}
Unless an error occured (including "No resuls" errors) the results
key will be present. Its value will be a hashref with keys being the
browsers and values being the support information. By default, the names
of browsers will be short. If you want long ones pass
obj_args = { long => 1 }> into the constructor, see
WWW::WebDevoutNet::BrowserSupport for more information.
{ 'error' => 'No results' }
If a network error occured or no results were found the error key
will be present and the value of it will be the description of the error.
{ 'uri_info' => 'http://www.webdevout.net/browser-support-html#support-html401' }
The uri_info key will contain the link pointing to
http://webdevout.net to the location where more information about the
term being looked up can be found.
{ 'what' => 'html' }
The what key will contain the term which was looked up.
{ 'who' => 'Zoffix!n=Zoffix@unaffiliated/zoffix' }
The who key will contain the usermask of the user who sent the request.
{ 'type' => 'public' }
The type key will contain the "type" of the message sent by the
requestor. The possible values are: public, notice and privmsg
indicating that request was requested in public channel, via /notice
and via /msg (private message) respectively.
{ 'channel' => '#zofbot' }
The channel key will contain the name of the channel from which the
request
came from. This will only make sense when type key (see above) contains
public.
{ 'message' => 'SupportBot, support html' }
The message key will contain the message which the user has
sent to request.
Zoffix Znet, <zoffix at cpan.org>
(http://zoffix.com, http://haslayout.net)
Please report any bugs or feature requests to bug-poe-component-irc-plugin-browsersupport at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=POE-Component-IRC-Plugin-BrowserSupport. 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::BrowserSupport
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=POE-Component-IRC-Plugin-BrowserSupport
http://annocpan.org/dist/POE-Component-IRC-Plugin-BrowserSupport
http://cpanratings.perl.org/d/POE-Component-IRC-Plugin-BrowserSupport
http://search.cpan.org/dist/POE-Component-IRC-Plugin-BrowserSupport
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-BrowserSupport documentation | Contained in the POE-Component-IRC-Plugin-BrowserSupport distribution. |
package POE::Component::IRC::Plugin::BrowserSupport; use warnings; use strict; our $VERSION = '0.002'; use POE::Component::WWW::WebDevout::BrowserSupportInfo; use base 'POE::Component::IRC::Plugin::BasePoCoWrap'; sub _make_default_args { return ( response_event => 'irc_webdevout_support', trigger => qr/^support\s+(?=\S)/i, ); } sub _make_poco { my $self = shift; return POE::Component::WWW::WebDevout::BrowserSupportInfo->spawn( debug => $self->{debug}, exists $self->{obj_args} ? ( obj_args => $self->{obj_args} ) : (), ); } sub _make_response_message { my $self = shift; my $in_ref = shift; my $what = substr $in_ref->{what}, 0, 10; if ( exists $in_ref->{error} ) { return [ "($what) Error: $in_ref->{error}" ]; } else { my $results = join ' | ', map { "$_: $in_ref->{results}{$_}" } sort keys %{ $in_ref->{results} }; return [ "($what) $in_ref->{uri_info} $results" ]; }; } sub _make_response_event { my $self = shift; my $in_ref = shift; return { uri_info => $in_ref->{uri_info}, what => $in_ref->{what}, ( exists $in_ref->{error} ? ( error => $in_ref->{error} ) : ( results => $in_ref->{results} ) ), map { $_ => $in_ref->{"_$_"} } qw( who channel message type ), } } sub _make_poco_call { my $self = shift; my $data_ref = shift; $self->{poco}->fetch( { event => '_poco_done', what => delete $data_ref->{what}, map +( "_$_" => $data_ref->{$_} ), keys %$data_ref, } ); } 1; __END__