[b38b0b2] | 1 | use strict; |
---|
| 2 | use warnings; |
---|
| 3 | |
---|
| 4 | package BarnOwl::Module::IRC; |
---|
| 5 | |
---|
| 6 | =head1 NAME |
---|
| 7 | |
---|
[2c40dc0] | 8 | BarnOwl::Module::IRC |
---|
[b38b0b2] | 9 | |
---|
| 10 | =head1 DESCRIPTION |
---|
| 11 | |
---|
[2c40dc0] | 12 | This module implements IRC support for barnowl. |
---|
[b38b0b2] | 13 | |
---|
| 14 | =cut |
---|
| 15 | |
---|
| 16 | use BarnOwl; |
---|
| 17 | use BarnOwl::Hooks; |
---|
| 18 | use BarnOwl::Message::IRC; |
---|
[380b1ab] | 19 | use BarnOwl::Module::IRC::Connection qw(is_private); |
---|
[b38b0b2] | 20 | |
---|
| 21 | use Net::IRC; |
---|
| 22 | use Getopt::Long; |
---|
| 23 | |
---|
[2c40dc0] | 24 | our $VERSION = 0.02; |
---|
[b38b0b2] | 25 | |
---|
| 26 | our $irc; |
---|
| 27 | |
---|
| 28 | # Hash alias -> BarnOwl::Module::IRC::Connection object |
---|
| 29 | our %ircnets; |
---|
[fe8cad8] | 30 | our %channels; |
---|
[b38b0b2] | 31 | |
---|
| 32 | sub startup { |
---|
[b10f340] | 33 | BarnOwl::new_variable_string('irc:nick', { |
---|
| 34 | default => $ENV{USER}, |
---|
| 35 | summary => 'The default IRC nickname', |
---|
| 36 | description => 'By default, irc-connect will use this nick ' . |
---|
| 37 | 'when connecting to a new server. See :help irc-connect for ' . |
---|
| 38 | 'more information.' |
---|
| 39 | }); |
---|
| 40 | |
---|
| 41 | BarnOwl::new_variable_string('irc:user', { |
---|
| 42 | default => $ENV{USER}, |
---|
| 43 | summary => 'The IRC "username" field' |
---|
| 44 | }); |
---|
| 45 | BarnOwl::new_variable_string('irc:name', { |
---|
| 46 | default => "", |
---|
| 47 | summary => 'A short name field for IRC', |
---|
| 48 | description => 'A short (maybe 60 or so chars) piece of text, ' . |
---|
| 49 | 'originally intended to display your real name, which people ' . |
---|
| 50 | 'often use for pithy quotes and URLs.' |
---|
| 51 | }); |
---|
| 52 | |
---|
| 53 | BarnOwl::new_variable_bool('irc:spew', { |
---|
| 54 | default => 0, |
---|
| 55 | summary => 'Show unhandled IRC events', |
---|
| 56 | description => 'If set, display all unrecognized IRC events as ' . |
---|
| 57 | 'admin messages. Intended for debugging and development use only ' |
---|
| 58 | }); |
---|
| 59 | |
---|
[b38b0b2] | 60 | register_commands(); |
---|
| 61 | register_handlers(); |
---|
| 62 | BarnOwl::filter('irc type ^IRC$'); |
---|
| 63 | } |
---|
| 64 | |
---|
| 65 | sub shutdown { |
---|
| 66 | for my $conn (values %ircnets) { |
---|
[2c40dc0] | 67 | $conn->disconnect(); |
---|
[b38b0b2] | 68 | } |
---|
| 69 | } |
---|
| 70 | |
---|
| 71 | sub mainloop_hook { |
---|
| 72 | return unless defined $irc; |
---|
| 73 | eval { |
---|
| 74 | $irc->do_one_loop(); |
---|
| 75 | }; |
---|
| 76 | return; |
---|
| 77 | } |
---|
| 78 | |
---|
| 79 | sub register_handlers { |
---|
| 80 | if(!$irc) { |
---|
| 81 | $irc = Net::IRC->new; |
---|
| 82 | $irc->timeout(0); |
---|
| 83 | } |
---|
| 84 | } |
---|
| 85 | |
---|
| 86 | sub register_commands { |
---|
[b0c8011] | 87 | BarnOwl::new_command('irc-connect' => \&cmd_connect, |
---|
| 88 | { |
---|
| 89 | summary => 'Connect to an IRC server', |
---|
| 90 | usage => 'irc-connect [-a ALIAS ] [-s] [-p PASSWORD] [-n NICK] SERVER [port]', |
---|
| 91 | description => |
---|
| 92 | |
---|
| 93 | "Connect to an IRC server. Supported options are\n\n" . |
---|
| 94 | "-a <alias> Define an alias for this server\n" . |
---|
| 95 | "-s Use SSL\n" . |
---|
| 96 | "-p <password> Specify the password to use\n" . |
---|
| 97 | "-n <nick> Use a non-default nick" |
---|
| 98 | }); |
---|
[b38b0b2] | 99 | BarnOwl::new_command('irc-disconnect' => \&cmd_disconnect); |
---|
[b0c8011] | 100 | BarnOwl::new_command('irc-msg' => \&cmd_msg); |
---|
| 101 | BarnOwl::new_command('irc-join' => \&cmd_join); |
---|
| 102 | BarnOwl::new_command('irc-part' => \&cmd_part); |
---|
| 103 | BarnOwl::new_command('irc-nick' => \&cmd_nick); |
---|
| 104 | BarnOwl::new_command('irc-names' => \&cmd_names); |
---|
| 105 | BarnOwl::new_command('irc-whois' => \&cmd_whois); |
---|
[56e72d5] | 106 | BarnOwl::new_command('irc-motd' => \&cmd_motd); |
---|
[b38b0b2] | 107 | } |
---|
| 108 | |
---|
| 109 | $BarnOwl::Hooks::startup->add(\&startup); |
---|
| 110 | $BarnOwl::Hooks::shutdown->add(\&shutdown); |
---|
| 111 | $BarnOwl::Hooks::mainLoop->add(\&mainloop_hook); |
---|
| 112 | |
---|
| 113 | ################################################################################ |
---|
| 114 | ######################## Owl command handlers ################################## |
---|
| 115 | ################################################################################ |
---|
| 116 | |
---|
| 117 | sub cmd_connect { |
---|
| 118 | my $cmd = shift; |
---|
| 119 | |
---|
[2c40dc0] | 120 | my $nick = BarnOwl::getvar('irc:nick'); |
---|
| 121 | my $username = BarnOwl::getvar('irc:user'); |
---|
| 122 | my $ircname = BarnOwl::getvar('irc:name'); |
---|
[b38b0b2] | 123 | my $host; |
---|
| 124 | my $port; |
---|
| 125 | my $alias; |
---|
| 126 | my $ssl; |
---|
| 127 | my $password = undef; |
---|
| 128 | |
---|
| 129 | { |
---|
| 130 | local @ARGV = @_; |
---|
| 131 | GetOptions( |
---|
| 132 | "alias=s" => \$alias, |
---|
| 133 | "ssl" => \$ssl, |
---|
[2c40dc0] | 134 | "password=s" => \$password, |
---|
[b10f340] | 135 | "nick=s" => \$nick, |
---|
[2c40dc0] | 136 | ); |
---|
[b38b0b2] | 137 | $host = shift @ARGV or die("Usage: $cmd HOST\n"); |
---|
| 138 | if(!$alias) { |
---|
[b0c8011] | 139 | if($host =~ /^(?:irc[.])?(\w+)[.]\w+$/) { |
---|
| 140 | $alias = $1; |
---|
| 141 | } else { |
---|
| 142 | $alias = $host; |
---|
| 143 | } |
---|
[b38b0b2] | 144 | } |
---|
[b0c8011] | 145 | $port = shift @ARGV || 6667; |
---|
[b38b0b2] | 146 | $ssl ||= 0; |
---|
| 147 | } |
---|
| 148 | |
---|
[b0c8011] | 149 | if(exists $ircnets{$alias}) { |
---|
| 150 | die("Already connected to a server with alias '$alias'. Either disconnect or specify an alias with -a.\n"); |
---|
| 151 | } |
---|
| 152 | |
---|
[b38b0b2] | 153 | my $conn = BarnOwl::Module::IRC::Connection->new($irc, $alias, |
---|
| 154 | Nick => $nick, |
---|
| 155 | Server => $host, |
---|
| 156 | Port => $port, |
---|
| 157 | Username => $username, |
---|
| 158 | Ircname => $ircname, |
---|
| 159 | Port => $port, |
---|
| 160 | Password => $password, |
---|
| 161 | SSL => $ssl |
---|
| 162 | ); |
---|
| 163 | |
---|
| 164 | $ircnets{$alias} = $conn; |
---|
| 165 | return; |
---|
| 166 | } |
---|
| 167 | |
---|
| 168 | sub cmd_disconnect { |
---|
| 169 | my $cmd = shift; |
---|
| 170 | my $conn = get_connection(\@_); |
---|
| 171 | $conn->disconnect; |
---|
| 172 | delete $ircnets{$conn->alias}; |
---|
| 173 | } |
---|
| 174 | |
---|
| 175 | sub cmd_msg { |
---|
| 176 | my $cmd = shift; |
---|
| 177 | my $conn = get_connection(\@_); |
---|
| 178 | my $to = shift or die("Usage: $cmd NICK\n"); |
---|
[2c40dc0] | 179 | # handle multiple recipients? |
---|
[b38b0b2] | 180 | if(@_) { |
---|
| 181 | process_msg($conn, $to, join(" ", @_)); |
---|
| 182 | } else { |
---|
| 183 | BarnOwl::start_edit_win("/msg $to -a " . $conn->alias, sub {process_msg($conn, $to, @_)}); |
---|
| 184 | } |
---|
| 185 | } |
---|
| 186 | |
---|
| 187 | sub process_msg { |
---|
| 188 | my $conn = shift; |
---|
| 189 | my $to = shift; |
---|
| 190 | my $body = shift; |
---|
| 191 | # Strip whitespace. In the future -- send one message/line? |
---|
| 192 | $body =~ tr/\n\r/ /; |
---|
| 193 | $conn->privmsg($to, $body); |
---|
| 194 | my $msg = BarnOwl::Message->new( |
---|
| 195 | type => 'IRC', |
---|
[6858d2d] | 196 | direction => is_private($to) ? 'out' : 'in', |
---|
[b38b0b2] | 197 | server => $conn->server, |
---|
| 198 | network => $conn->alias, |
---|
| 199 | recipient => $to, |
---|
| 200 | body => $body, |
---|
| 201 | sender => $conn->nick, |
---|
[2c40dc0] | 202 | is_private($to) ? |
---|
[0e52069] | 203 | (isprivate => 'true') : (channel => $to), |
---|
[b38b0b2] | 204 | replycmd => "irc-msg $to", |
---|
[2c40dc0] | 205 | replysendercmd => "irc-msg $to" |
---|
[b38b0b2] | 206 | ); |
---|
| 207 | BarnOwl::queue_message($msg); |
---|
| 208 | } |
---|
| 209 | |
---|
[2c40dc0] | 210 | sub cmd_join { |
---|
| 211 | my $cmd = shift; |
---|
| 212 | my $conn = get_connection(\@_); |
---|
| 213 | my $chan = shift or die("Usage: $cmd channel\n"); |
---|
[fe8cad8] | 214 | $channels{$chan} ||= []; |
---|
| 215 | push @{$channels{$chan}}, $conn; |
---|
[2c40dc0] | 216 | $conn->join($chan); |
---|
| 217 | } |
---|
[b38b0b2] | 218 | |
---|
[6858d2d] | 219 | sub cmd_part { |
---|
| 220 | my $cmd = shift; |
---|
| 221 | my $conn = get_connection(\@_); |
---|
[b0c8011] | 222 | my $chan = get_channel(\@_) || die("Usage: $cmd <channel>\n"); |
---|
[fe8cad8] | 223 | $channels{$chan} = [grep {$_ ne $conn} @{$channels{$chan} || []}]; |
---|
[6858d2d] | 224 | $conn->part($chan); |
---|
| 225 | } |
---|
| 226 | |
---|
[6286f26] | 227 | sub cmd_nick { |
---|
| 228 | my $cmd = shift; |
---|
| 229 | my $conn = get_connection(\@_); |
---|
[b0c8011] | 230 | my $nick = shift or die("Usage: $cmd <new nick>\n"); |
---|
[6286f26] | 231 | $conn->nick($nick); |
---|
| 232 | } |
---|
| 233 | |
---|
[6858d2d] | 234 | sub cmd_names { |
---|
| 235 | my $cmd = shift; |
---|
| 236 | my $conn = get_connection(\@_); |
---|
[b0c8011] | 237 | my $chan = get_channel(\@_) || die("Usage: $cmd <channel>\n"); |
---|
[6858d2d] | 238 | $conn->names($chan); |
---|
| 239 | } |
---|
| 240 | |
---|
[b0c8011] | 241 | sub cmd_whois { |
---|
| 242 | my $cmd = shift; |
---|
| 243 | my $conn = get_connection(\@_); |
---|
| 244 | my $who = shift || die("Usage: $cmd <user>\n"); |
---|
| 245 | $conn->whois($who); |
---|
| 246 | } |
---|
| 247 | |
---|
[56e72d5] | 248 | sub cmd_motd { |
---|
| 249 | my $cmd = shift; |
---|
| 250 | my $conn = get_connection(\@_); |
---|
| 251 | $conn->motd; |
---|
| 252 | } |
---|
| 253 | |
---|
[b38b0b2] | 254 | ################################################################################ |
---|
| 255 | ########################### Utilities/Helpers ################################## |
---|
| 256 | ################################################################################ |
---|
| 257 | |
---|
| 258 | sub get_connection { |
---|
| 259 | my $args = shift; |
---|
| 260 | if(scalar @$args >= 2 && $args->[0] eq '-a') { |
---|
| 261 | shift @$args; |
---|
| 262 | return get_connection_by_alias(shift @$args); |
---|
| 263 | } |
---|
[fe8cad8] | 264 | my $channel = $args->[-1]; |
---|
[56e72d5] | 265 | if (defined($channel) && $channel =~ /^#/ |
---|
| 266 | and $channels{$channel} and @{$channels{$channel}} == 1) { |
---|
[fe8cad8] | 267 | return $channels{$channel}[0]; |
---|
| 268 | } |
---|
[b38b0b2] | 269 | my $m = BarnOwl::getcurmsg(); |
---|
| 270 | if($m && $m->type eq 'IRC') { |
---|
| 271 | return get_connection_by_alias($m->network); |
---|
| 272 | } |
---|
| 273 | if(scalar keys %ircnets == 1) { |
---|
| 274 | return [values(%ircnets)]->[0]; |
---|
| 275 | } |
---|
| 276 | die("You must specify a network with -a\n"); |
---|
| 277 | } |
---|
| 278 | |
---|
[6858d2d] | 279 | sub get_channel { |
---|
| 280 | my $args = shift; |
---|
| 281 | if(scalar @$args) { |
---|
| 282 | return shift @$args; |
---|
| 283 | } |
---|
| 284 | my $m = BarnOwl::getcurmsg(); |
---|
| 285 | if($m && $m->type eq 'IRC') { |
---|
| 286 | return $m->channel if !$m->is_private; |
---|
| 287 | } |
---|
| 288 | return undef; |
---|
| 289 | } |
---|
| 290 | |
---|
[b38b0b2] | 291 | sub get_connection_by_alias { |
---|
[2c40dc0] | 292 | my $key = shift; |
---|
| 293 | die("No such ircnet: $key\n") unless exists $ircnets{$key}; |
---|
[b38b0b2] | 294 | return $ircnets{$key}; |
---|
| 295 | } |
---|
| 296 | |
---|
| 297 | 1; |
---|