NAME Mojo::IRC - IRC Client for the Mojo IOLoop VERSION 0.02 SYNOPSIS my $irc = Mojo::IRC->new( nick => 'test123', user => 'my name', server => 'irc.perl.org:6667', ); $irc->on(irc_join => sub { my($self, $message) = @_; warn "yay! i joined $message->{params}[0]"; }); $irc->on(irc_privmsg => sub { my($self, $message) = @_; say $message->{prefix}, " said: ", $message->{params}[1]; }); $irc->connect(sub { my($irc, $err) = @_; return warn $err if $err; $irc->write(join => '#mojo'); }); Mojo::IOLoop->start; DESCRIPTION This class inherit from Mojo::EventEmitter. TODO: * Authentication with password * SSL * use IRC::Utils qw/ decode_irc /; EVENTS close Emitted once the connection to the server close. error Emitted once the stream emits an error. irc_close Called when the client has closed the connection. irc_error This event is used by IRC errors irc_err_nicknameinuse irc_join $self->$callback({ params => ['#html'], raw_line => ':somenick!~someuser@1.2.3.4 JOIN #html', command => 'JOIN', prefix => 'somenick!~someuser@1.2.3.4' }); irc_nick $self->$callback({ params => ['newnick'], raw_line => ':oldnick!~someuser@hostname.com MODE somenick :+i', command => 'NICK', prefix => 'somenick!~someuser@hostname.com' }); irc_mode $self->$callback({ params => ['somenick', '+i'], raw_line => ':somenick!~someuser@hostname.com MODE somenick :+i', command => 'MODE', prefix => 'somenick!~someuser@hostname.com' }); irc_notice $self->$callback({ params => ['somenick', 'on 1 ca 1(4) ft 10(10)'], raw_line => ':Zurich.CH.EU.Undernet.Org NOTICE somenick :on 1 ca 1(4) ft 10(10)', command => 'NOTICE', prefix => 'Zurich.CH.EU.Undernet.Org', }); irc_part $self->$callback({ command => 'PART', params => ['#channel'], raw_line => ':somenick!~someuser@host PART #channel', prefix => 'somenick!~someuser@host', }) irc_ping $self->$callback({ params => [2687237629], raw_line => 'PING :2687237629', command => 'PING', }) irc_privmsg $self->$callback({ params => [ '#channel', 'some message' ], raw_line => ':nick!user@host PRIVMSG #nms :some message', command => 'PRIVMSG', prefix => 'nick!user@host', }); irc_rpl_created $self->$callback({ params => ['somenick', 'This server was created Thu Jun 21 2012 at 01:26:15 UTC'], raw_line => ':Tampa.FL.US.Undernet.org 003 somenick :This server was created Thu Jun 21 2012 at 01:26:15 UTC', command => '003', prefix => 'Tampa.FL.US.Undernet.org' }); irc_rpl_endofmotd irc_rpl_endofnames $self->$callback({ params => ['somenick', '#channel', 'End of /NAMES list.'], raw_line => ':Budapest.Hu.Eu.Undernet.org 366 somenick #channel :End of /NAMES list.', command => '366', prefix => 'Budapest.Hu.Eu.Undernet.org' }); irc_rpl_isupport $self->$callback({ params => ['somenick', 'WHOX', 'WALLCHOPS', 'WALLVOICES', 'USERIP', 'CPRIVMSG', 'CNOTICE', 'SILENCE=25', 'MODES=6', 'MAXCHANNELS=20', 'MAXBANS=50', 'NICKLEN=12', 'are supported by this server'], raw_line => ':Tampa.FL.US.Undernet.org 005 somenick WHOX WALLCHOPS WALLVOICES USERIP CPRIVMSG CNOTICE SILENCE=25 MODES=6 MAXCHANNELS=20 MAXBANS=50 NICKLEN=12 :are supported by this server', command => '005', prefix => 'Tampa.FL.US.Undernet.org' }) irc_rpl_luserchannels $self->$callback({ params => ['somenick', '13700', 'channels formed'], raw_line => ':Tampa.FL.US.Undernet.org 254 somenick 13700 :channels formed', command => '254', prefix => 'Tampa.FL.US.Undernet.org' }) irc_rpl_luserclient $self->$callback({ params => ['somenick', 'There are 3400 users and 46913 invisible on 18 servers'], raw_line => ':Tampa.FL.US.Undernet.org 251 somenick :There are 3400 users and 46913 invisible on 18 servers', command => '251', prefix => 'Tampa.FL.US.Undernet.org' }); irc_rpl_luserme $self->$callback({ params => ['somenick', 'I have 12000 clients and 1 servers'], raw_line => ':Tampa.FL.US.Undernet.org 255 somenick :I have 12000 clients and 1 servers', command => '255', prefix => 'Tampa.FL.US.Undernet.org' }); irc_rpl_luserop $self->$callback({ params => ['somenick', '19', 'operator(s) online'], raw_line => ':Tampa.FL.US.Undernet.org 252 somenick 19 :operator(s) online', command => '252', prefix => 'Tampa.FL.US.Undernet.org' }); irc_rpl_luserunknown $self->$callback({ params => ['somenick', '305', 'unknown connection(s)'], raw_line => ':Tampa.FL.US.Undernet.org 253 somenick 305 :unknown connection(s)', command => '253', prefix => 'Tampa.FL.US.Undernet.org' }) irc_rpl_motd irc_rpl_motdstart irc_rpl_myinfo $self->$callback({ params => ['somenick', 'Tampa.FL.US.Undernet.org', 'u2.10.12.14', 'dioswkgx', 'biklmnopstvrDR', 'bklov'], raw_line => ':Tampa.FL.US.Undernet.org 004 somenick Tampa.FL.US.Undernet.org u2.10.12.14 dioswkgx biklmnopstvrDR bklov', command => '004', prefix => 'Tampa.FL.US.Undernet.org', }) irc_rpl_namreply $self->$callback({ params => ['somenick', '=', '#html', 'somenick Indig0 Wildblue @HTML @CSS @Luch1an @Steaua_ Indig0_ Pilum @fade'], raw_line => ':Budapest.Hu.Eu.Undernet.org 353 somenick = #html :somenick Indig0 Wildblue @HTML @CSS @Luch1an @Steaua_ Indig0_ Pilum @fade', command => '353', prefix => 'Budapest.Hu.Eu.Undernet.org' }) irc_rpl_welcome $self->$callback({ params => ['somenick', 'Welcome to the UnderNet IRC Network, somenick'], raw_line => ':Zurich.CH.EU.Undernet.Org 001 somenick :Welcome to the UnderNet IRC Network, somenick', command => '001', prefix => 'Zurich.CH.EU.Undernet.Org' }) irc_rpl_yourhost $self->$callback({ params => ['somenick', 'Your host is Tampa.FL.US.Undernet.org, running version u2.10.12.14'], raw_line => ':Tampa.FL.US.Undernet.org 002 somenick :Your host is Tampa.FL.US.Undernet.org, running version u2.10.12.14', command => '002', prefix => 'Tampa.FL.US.Undernet.org' }); ATTRIBUTES ioloop Holds an instance of Mojo::IOLoop. real_host Will be set by "irc_rpl_welcome". Holds the actual hostname of the IRC server that we are connected to. user IRC username. nick IRC nick name accessor. server Server name and optionally a port to connect to. Changing this while connected to the IRC server will issue a reconnect. name The name of this IRC client. Defaults to "Mojo IRC". pass Password for authentication METHODS change_nick Change IRC nick name. This command will change the "nick" attribute if not connected to the server. connect $self->connect(\&callback); Will login to the IRC "server" and call &callback once connected. The &callback will be called once connected or if it fail to connect. The second argument will be an error message or empty string on success. disconnect $self->disconnect(\&callback); Will disconnect form the server and run the callback once it is done. register_default_event_handlers $self->register_default_event_handlers; This method sets up the default "DEFAULT EVENT HANDLERS" unless someone has already subscribed to the event. write $self->write(@str, \&callback); This method writes a message to the IRC server. @str will be concatenated with " " and "\r\n" will be appended. &callback is called once the message is delivered over the stream. The second argument to the callback will be an error message: Empty string on success and a description on error. DEFAULT EVENT HANDLERS irc_nick Used to update the "nick" attribute when the nick has changed. irc_notice Responds to the server with "QUOTE PASS ..." if the notice contains "Ident broken...QUOTE PASS...". irc_ping Responds to the server with "PONG ...". irc_rpl_welcome Used to get the hostname of the server. Will also set up automatic PING requests to prevent timeout. irc_err_nicknameinuse Tries to register with the same nick as "nick", only with an extra underscore added. The new nick will be stored in "nick". COPYRIGHT This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0. AUTHOR Marcus Ramberg - "mramberg@cpan.org" Jan Henning Thorsen - "jhthorsen@cpan.org"