[f1e629d] | 1 | # $Id$ |
---|
| 2 | # |
---|
| 3 | # This is all linked into the binary and evaluated when perl starts up... |
---|
| 4 | # |
---|
| 5 | ##################################################################### |
---|
| 6 | ##################################################################### |
---|
[b6c067a] | 7 | # XXX NOTE: This file is sourced before almost any barnowl |
---|
| 8 | # architecture is loaded. This means, for example, that it cannot |
---|
[0337203] | 9 | # execute any owl commands. Any code that needs to do so should live |
---|
| 10 | # in BarnOwl::Hooks::_startup |
---|
[f1e629d] | 11 | |
---|
[c681337] | 12 | use strict; |
---|
| 13 | use warnings; |
---|
| 14 | |
---|
[8203afd] | 15 | package BarnOwl; |
---|
[f1e629d] | 16 | |
---|
[74fc22a] | 17 | =head1 NAME |
---|
| 18 | |
---|
| 19 | BarnOwl |
---|
| 20 | |
---|
| 21 | =head1 DESCRIPTION |
---|
| 22 | |
---|
| 23 | The BarnOwl module contains the core of BarnOwl's perl |
---|
| 24 | bindings. Source in this module is also run at startup to bootstrap |
---|
| 25 | barnowl by defining things like the default style. |
---|
| 26 | |
---|
| 27 | =for NOTE |
---|
| 28 | These following functions are defined in perlglue.xs. Keep the |
---|
| 29 | documentation here in sync with the user-visible commands defined |
---|
| 30 | there! |
---|
| 31 | |
---|
| 32 | =head2 command STRING |
---|
| 33 | |
---|
| 34 | Executes a BarnOwl command in the same manner as if the user had |
---|
| 35 | executed it at the BarnOwl command prompt. If the command returns a |
---|
| 36 | value, return it as a string, otherwise return undef. |
---|
| 37 | |
---|
| 38 | =head2 getcurmsg |
---|
| 39 | |
---|
| 40 | Returns the current message as a C<BarnOwl::Message> subclass, or |
---|
| 41 | undef if there is no message selected |
---|
| 42 | |
---|
| 43 | =head2 getnumcols |
---|
| 44 | |
---|
| 45 | Returns the width of the display window BarnOwl is currently using |
---|
| 46 | |
---|
| 47 | =head2 getidletime |
---|
| 48 | |
---|
| 49 | Returns the length of time since the user has pressed a key, in |
---|
| 50 | seconds. |
---|
| 51 | |
---|
| 52 | =head2 zephyr_getrealm |
---|
| 53 | |
---|
| 54 | Returns the zephyr realm barnowl is running in |
---|
| 55 | |
---|
| 56 | =head2 zephyr_getsender |
---|
| 57 | |
---|
| 58 | Returns the fully-qualified name of the zephyr sender barnowl is |
---|
| 59 | running as, e.g. C<nelhage@ATHENA.MIT.EDU> |
---|
| 60 | |
---|
| 61 | =head2 zephyr_zwrite COMMAND MESSAGE |
---|
| 62 | |
---|
| 63 | Sends a zephyr programmatically. C<COMMAND> should be a C<zwrite> |
---|
| 64 | command line, and C<MESSAGE> is the zephyr body to send. |
---|
| 65 | |
---|
| 66 | =head2 ztext_stylestrip STRING |
---|
| 67 | |
---|
| 68 | Strips zephyr formatting from a string and returns the result |
---|
| 69 | |
---|
| 70 | =head2 queue_message MESSAGE |
---|
| 71 | |
---|
| 72 | Enqueue a message in the BarnOwl message list, logging it and |
---|
| 73 | processing it appropriately. C<MESSAGE> should be an instance of |
---|
| 74 | BarnOwl::Message or a subclass. |
---|
| 75 | |
---|
| 76 | =head2 admin_message HEADER BODY |
---|
| 77 | |
---|
| 78 | Display a BarnOwl B<Admin> message, with the given header and body. |
---|
| 79 | |
---|
| 80 | =head2 start_question PROMPT CALLBACK |
---|
| 81 | |
---|
| 82 | Displays C<PROMPT> on the screen and lets the user enter a line of |
---|
| 83 | text, and calls C<CALLBACK>, which must be a perl subroutine |
---|
| 84 | reference, with the text the user entered |
---|
| 85 | |
---|
| 86 | =head2 start_password PROMPT CALLBACK |
---|
| 87 | |
---|
| 88 | Like C<start_question>, but echoes the user's input as C<*>s when they |
---|
| 89 | input. |
---|
| 90 | |
---|
| 91 | =head2 start_editwin PROMPT CALLBACK |
---|
| 92 | |
---|
| 93 | Like C<start_question>, but displays C<PROMPT> on a line of its own |
---|
| 94 | and opens the editwin. If the user cancels the edit win, C<CALLBACK> |
---|
| 95 | is not invoked. |
---|
| 96 | |
---|
| 97 | =head2 get_data_dir |
---|
| 98 | |
---|
| 99 | Returns the BarnOwl system data directory, where system libraries and |
---|
| 100 | modules are stored |
---|
| 101 | |
---|
| 102 | =head2 get_config_dir |
---|
| 103 | |
---|
| 104 | Returns the BarnOwl user configuration directory, where user modules |
---|
| 105 | and configuration are stored (by default, C<$HOME/.owl>) |
---|
| 106 | |
---|
| 107 | =head2 popless_text TEXT |
---|
| 108 | |
---|
| 109 | Show a popup window containing the given C<TEXT> |
---|
| 110 | |
---|
| 111 | =head2 popless_ztext TEXT |
---|
| 112 | |
---|
| 113 | Show a popup window containing the provided zephyr-formatted C<TEXT> |
---|
| 114 | |
---|
| 115 | =head2 error STRING |
---|
| 116 | |
---|
| 117 | Reports an error and log it in `show errors'. Note that in any |
---|
| 118 | callback or hook called in perl code from BarnOwl, a C<die> will be |
---|
| 119 | caught and passed to C<error>. |
---|
| 120 | |
---|
| 121 | =head2 getnumcolors |
---|
| 122 | |
---|
| 123 | Returns the number of colors this BarnOwl is capable of displaying |
---|
| 124 | |
---|
[b07d8c8] | 125 | =head2 add_dispatch FD CALLBACK |
---|
| 126 | |
---|
| 127 | Adds a file descriptor to C<BarnOwl>'s internal C<select()> |
---|
| 128 | loop. C<CALLBACK> will be invoked whenever data is available to be |
---|
| 129 | read from C<FD>. |
---|
| 130 | |
---|
| 131 | =head2 remove_dispatch FD |
---|
| 132 | |
---|
| 133 | Remove a file descriptor previously registered via C<add_dispatch> |
---|
| 134 | |
---|
[74fc22a] | 135 | =cut |
---|
| 136 | |
---|
| 137 | |
---|
[8862725] | 138 | BEGIN { |
---|
[f1e629d] | 139 | # bootstrap in C bindings and glue |
---|
[8203afd] | 140 | *owl:: = \*BarnOwl::; |
---|
| 141 | bootstrap BarnOwl 1.2; |
---|
[8862725] | 142 | }; |
---|
| 143 | |
---|
[b363d83] | 144 | use lib(get_data_dir() . "/lib"); |
---|
| 145 | use lib(get_config_dir() . "/lib"); |
---|
[8862725] | 146 | |
---|
[b363d83] | 147 | # perlconfig.c will set this to the value of the -c command-line |
---|
| 148 | # switch, if present. |
---|
[00f9a7d] | 149 | our $configfile; |
---|
| 150 | |
---|
[2e3b9c2] | 151 | if(!$configfile && -f $ENV{HOME} . "/.barnowlconf") { |
---|
| 152 | $configfile = $ENV{HOME} . "/.barnowlconf"; |
---|
| 153 | } |
---|
| 154 | $configfile ||= $ENV{HOME}."/.owlconf"; |
---|
[d03091c] | 155 | |
---|
[186cdc4] | 156 | # populate global variable space for legacy owlconf files |
---|
[f1e629d] | 157 | sub _format_msg_legacy_wrap { |
---|
| 158 | my ($m) = @_; |
---|
| 159 | $m->legacy_populate_global(); |
---|
[8203afd] | 160 | return &BarnOwl::format_msg($m); |
---|
[f1e629d] | 161 | } |
---|
| 162 | |
---|
[186cdc4] | 163 | # populate global variable space for legacy owlconf files |
---|
[f1e629d] | 164 | sub _receive_msg_legacy_wrap { |
---|
| 165 | my ($m) = @_; |
---|
| 166 | $m->legacy_populate_global(); |
---|
[0337203] | 167 | return &BarnOwl::Hooks::_receive_msg($m); |
---|
[f1e629d] | 168 | } |
---|
| 169 | |
---|
[74fc22a] | 170 | =head2 AUTOLOAD |
---|
| 171 | |
---|
| 172 | BarnOwl.pm has a C<AUTOLOAD> method that translates unused names in |
---|
| 173 | the BarnOwl:: namespace to a call to BarnOwl::command() with that |
---|
| 174 | command. Underscores are also translated to C<->s, so you can do |
---|
| 175 | e.g. C<BarnOwl::start_command()> and it will be translated into |
---|
| 176 | C<start-command>. |
---|
| 177 | |
---|
| 178 | So, if you're looking for functionality that you can't find in the |
---|
| 179 | perl interface, check C<:show commands> or C<commands.c> in the |
---|
| 180 | BarnOwl source tree -- there's a good chance it exists as a BarnOwl |
---|
| 181 | command. |
---|
| 182 | |
---|
| 183 | =head3 BUGS |
---|
| 184 | |
---|
| 185 | There are horrible quoting issues here. The AUTOLOAD simple joins your |
---|
| 186 | commands with spaces and passes them unmodified to C<::command> |
---|
| 187 | |
---|
| 188 | =cut |
---|
| 189 | |
---|
[8203afd] | 190 | # make BarnOwl::<command>("foo") be aliases to BarnOwl::command("<command> foo"); |
---|
[f1e629d] | 191 | sub AUTOLOAD { |
---|
[c681337] | 192 | our $AUTOLOAD; |
---|
[f1e629d] | 193 | my $called = $AUTOLOAD; |
---|
| 194 | $called =~ s/.*:://; |
---|
[e7ac2b6] | 195 | $called =~ s/_/-/g; |
---|
[8203afd] | 196 | return &BarnOwl::command("$called ".join(" ",@_)); |
---|
[f1e629d] | 197 | } |
---|
| 198 | |
---|
[6922edd] | 199 | =head2 new_command NAME FUNC [{ARGS}] |
---|
| 200 | |
---|
| 201 | Add a new owl command. When owl executes the command NAME, FUNC will |
---|
| 202 | be called with the arguments passed to the command, with NAME as the |
---|
| 203 | first argument. |
---|
| 204 | |
---|
| 205 | ARGS should be a hashref containing any or all of C<summary>, |
---|
[74fc22a] | 206 | C<usage>, or C<description> keys: |
---|
| 207 | |
---|
| 208 | =over 4 |
---|
| 209 | |
---|
| 210 | =item summary |
---|
| 211 | |
---|
| 212 | A one-line summary of the purpose of the command |
---|
| 213 | |
---|
| 214 | =item usage |
---|
| 215 | |
---|
| 216 | A one-line usage synopsis, showing available options and syntax |
---|
| 217 | |
---|
| 218 | =item description |
---|
| 219 | |
---|
| 220 | A longer description of the syntax and semantics of the command, |
---|
| 221 | explaining usage and options |
---|
| 222 | |
---|
| 223 | =back |
---|
[6922edd] | 224 | |
---|
| 225 | =cut |
---|
| 226 | |
---|
| 227 | sub new_command { |
---|
| 228 | my $name = shift; |
---|
| 229 | my $func = shift; |
---|
| 230 | my $args = shift || {}; |
---|
| 231 | my %args = ( |
---|
[8757122] | 232 | summary => "", |
---|
| 233 | usage => "", |
---|
| 234 | description => "", |
---|
[6922edd] | 235 | %{$args} |
---|
| 236 | ); |
---|
| 237 | |
---|
[8203afd] | 238 | BarnOwl::new_command_internal($name, $func, $args{summary}, $args{usage}, $args{description}); |
---|
[6922edd] | 239 | } |
---|
| 240 | |
---|
[cd57601] | 241 | =head2 new_variable_int NAME [{ARGS}] |
---|
| 242 | |
---|
| 243 | =head2 new_variable_bool NAME [{ARGS}] |
---|
| 244 | |
---|
| 245 | =head2 new_variable_string NAME [{ARGS}] |
---|
| 246 | |
---|
| 247 | Add a new owl variable, either an int, a bool, or a string, with the |
---|
| 248 | specified name. |
---|
| 249 | |
---|
| 250 | ARGS can optionally contain the following keys: |
---|
| 251 | |
---|
| 252 | =over 4 |
---|
| 253 | |
---|
| 254 | =item default |
---|
| 255 | |
---|
| 256 | The default and initial value for the variable |
---|
| 257 | |
---|
| 258 | =item summary |
---|
| 259 | |
---|
| 260 | A one-line summary of the variable's purpose |
---|
| 261 | |
---|
| 262 | =item description |
---|
| 263 | |
---|
| 264 | A longer description of the function of the variable |
---|
| 265 | |
---|
| 266 | =back |
---|
| 267 | |
---|
| 268 | =cut |
---|
| 269 | |
---|
[a695a68] | 270 | sub new_variable_int { |
---|
| 271 | unshift @_, \&BarnOwl::new_variable_int_internal, 0; |
---|
| 272 | goto \&_new_variable; |
---|
| 273 | } |
---|
| 274 | |
---|
| 275 | sub new_variable_bool { |
---|
| 276 | unshift @_, \&BarnOwl::new_variable_bool_internal, 0; |
---|
| 277 | goto \&_new_variable; |
---|
| 278 | } |
---|
| 279 | |
---|
| 280 | sub new_variable_string { |
---|
| 281 | unshift @_, \&BarnOwl::new_variable_string_internal, ""; |
---|
| 282 | goto \&_new_variable; |
---|
| 283 | } |
---|
| 284 | |
---|
| 285 | sub _new_variable { |
---|
| 286 | my $func = shift; |
---|
| 287 | my $default_default = shift; |
---|
| 288 | my $name = shift; |
---|
| 289 | my $args = shift || {}; |
---|
| 290 | my %args = ( |
---|
| 291 | summary => "", |
---|
| 292 | description => "", |
---|
| 293 | default => $default_default, |
---|
| 294 | %{$args}); |
---|
| 295 | $func->($name, $args{default}, $args{summary}, $args{description}); |
---|
| 296 | } |
---|
| 297 | |
---|
[f1e629d] | 298 | ##################################################################### |
---|
| 299 | ##################################################################### |
---|
| 300 | |
---|
[8203afd] | 301 | package BarnOwl::Message; |
---|
[f1e629d] | 302 | |
---|
[dd16bdd] | 303 | sub new { |
---|
| 304 | my $class = shift; |
---|
| 305 | my %args = (@_); |
---|
| 306 | if($class eq __PACKAGE__ && $args{type}) { |
---|
[8203afd] | 307 | $class = "BarnOwl::Message::" . ucfirst $args{type}; |
---|
[dd16bdd] | 308 | } |
---|
| 309 | return bless {%args}, $class; |
---|
| 310 | } |
---|
| 311 | |
---|
[f1e629d] | 312 | sub type { return shift->{"type"}; } |
---|
| 313 | sub direction { return shift->{"direction"}; } |
---|
| 314 | sub time { return shift->{"time"}; } |
---|
| 315 | sub id { return shift->{"id"}; } |
---|
| 316 | sub body { return shift->{"body"}; } |
---|
| 317 | sub sender { return shift->{"sender"}; } |
---|
| 318 | sub recipient { return shift->{"recipient"}; } |
---|
| 319 | sub login { return shift->{"login"}; } |
---|
[216c734] | 320 | sub is_private { return shift->{"private"}; } |
---|
[f1e629d] | 321 | |
---|
| 322 | sub is_login { return shift->login eq "login"; } |
---|
| 323 | sub is_logout { return shift->login eq "logout"; } |
---|
| 324 | sub is_loginout { my $m=shift; return ($m->is_login or $m->is_logout); } |
---|
| 325 | sub is_incoming { return (shift->{"direction"} eq "in"); } |
---|
| 326 | sub is_outgoing { return (shift->{"direction"} eq "out"); } |
---|
| 327 | |
---|
| 328 | sub is_deleted { return shift->{"deleted"}; } |
---|
| 329 | |
---|
| 330 | sub is_admin { return (shift->{"type"} eq "admin"); } |
---|
| 331 | sub is_generic { return (shift->{"type"} eq "generic"); } |
---|
[421c8ef7] | 332 | sub is_zephyr { return (shift->{"type"} eq "zephyr"); } |
---|
[467aa16] | 333 | sub is_aim { return (shift->{"type"} eq "AIM"); } |
---|
[dd16bdd] | 334 | sub is_jabber { return (shift->{"type"} eq "jabber"); } |
---|
[421c8ef7] | 335 | sub is_icq { return (shift->{"type"} eq "icq"); } |
---|
| 336 | sub is_yahoo { return (shift->{"type"} eq "yahoo"); } |
---|
| 337 | sub is_msn { return (shift->{"type"} eq "msn"); } |
---|
| 338 | sub is_loopback { return (shift->{"type"} eq "loopback"); } |
---|
[f1e629d] | 339 | |
---|
| 340 | # These are overridden by appropriate message types |
---|
| 341 | sub is_ping { return 0; } |
---|
| 342 | sub is_mail { return 0; } |
---|
[3c9012b] | 343 | sub is_personal { return shift->is_private; } |
---|
[f1e629d] | 344 | sub class { return undef; } |
---|
| 345 | sub instance { return undef; } |
---|
| 346 | sub realm { return undef; } |
---|
| 347 | sub opcode { return undef; } |
---|
| 348 | sub header { return undef; } |
---|
| 349 | sub host { return undef; } |
---|
| 350 | sub hostname { return undef; } |
---|
| 351 | sub auth { return undef; } |
---|
| 352 | sub fields { return undef; } |
---|
| 353 | sub zsig { return undef; } |
---|
| 354 | sub zwriteline { return undef; } |
---|
[87c6ef1] | 355 | sub login_host { return undef; } |
---|
| 356 | sub login_tty { return undef; } |
---|
[f1e629d] | 357 | |
---|
[ae47efb] | 358 | sub pretty_sender { return shift->sender; } |
---|
| 359 | sub pretty_recipient { return shift->recipient; } |
---|
[f1e629d] | 360 | |
---|
| 361 | sub delete { |
---|
| 362 | my ($m) = @_; |
---|
[8203afd] | 363 | &BarnOwl::command("delete --id ".$m->id); |
---|
[f1e629d] | 364 | } |
---|
| 365 | |
---|
| 366 | sub undelete { |
---|
| 367 | my ($m) = @_; |
---|
[8203afd] | 368 | &BarnOwl::command("undelete --id ".$m->id); |
---|
[f1e629d] | 369 | } |
---|
| 370 | |
---|
| 371 | # Serializes the message into something similar to the zwgc->vt format |
---|
| 372 | sub serialize { |
---|
| 373 | my ($this) = @_; |
---|
| 374 | my $s; |
---|
| 375 | for my $f (keys %$this) { |
---|
| 376 | my $val = $this->{$f}; |
---|
| 377 | if (ref($val) eq "ARRAY") { |
---|
| 378 | for my $i (0..@$val-1) { |
---|
| 379 | my $aval; |
---|
| 380 | $aval = $val->[$i]; |
---|
| 381 | $aval =~ s/\n/\n$f.$i: /g; |
---|
[186cdc4] | 382 | $s .= "$f.$i: $aval\n"; |
---|
[f1e629d] | 383 | } |
---|
| 384 | } else { |
---|
| 385 | $val =~ s/\n/\n$f: /g; |
---|
| 386 | $s .= "$f: $val\n"; |
---|
| 387 | } |
---|
| 388 | } |
---|
| 389 | return $s; |
---|
| 390 | } |
---|
| 391 | |
---|
| 392 | # Populate the annoying legacy global variables |
---|
| 393 | sub legacy_populate_global { |
---|
| 394 | my ($m) = @_; |
---|
[8203afd] | 395 | $BarnOwl::direction = $m->direction ; |
---|
| 396 | $BarnOwl::type = $m->type ; |
---|
| 397 | $BarnOwl::id = $m->id ; |
---|
| 398 | $BarnOwl::class = $m->class ; |
---|
| 399 | $BarnOwl::instance = $m->instance ; |
---|
| 400 | $BarnOwl::recipient = $m->recipient ; |
---|
| 401 | $BarnOwl::sender = $m->sender ; |
---|
| 402 | $BarnOwl::realm = $m->realm ; |
---|
| 403 | $BarnOwl::opcode = $m->opcode ; |
---|
| 404 | $BarnOwl::zsig = $m->zsig ; |
---|
| 405 | $BarnOwl::msg = $m->body ; |
---|
| 406 | $BarnOwl::time = $m->time ; |
---|
| 407 | $BarnOwl::host = $m->host ; |
---|
| 408 | $BarnOwl::login = $m->login ; |
---|
| 409 | $BarnOwl::auth = $m->auth ; |
---|
[f1e629d] | 410 | if ($m->fields) { |
---|
[8203afd] | 411 | @BarnOwl::fields = @{$m->fields}; |
---|
[f1e629d] | 412 | @main::fields = @{$m->fields}; |
---|
| 413 | } else { |
---|
[8203afd] | 414 | @BarnOwl::fields = undef; |
---|
[f1e629d] | 415 | @main::fields = undef; |
---|
| 416 | } |
---|
| 417 | } |
---|
| 418 | |
---|
[25729b2] | 419 | sub smartfilter { |
---|
[0337203] | 420 | die("smartfilter not supported for this message\n"); |
---|
[25729b2] | 421 | } |
---|
| 422 | |
---|
[6e6ded7] | 423 | # Display fields -- overridden by subclasses when needed |
---|
| 424 | sub login_type {""} |
---|
| 425 | sub login_extra {""} |
---|
| 426 | sub long_sender {""} |
---|
| 427 | |
---|
| 428 | # The context in which a non-personal message was sent, e.g. a chat or |
---|
| 429 | # class |
---|
| 430 | sub context {""} |
---|
| 431 | |
---|
| 432 | # Some indicator of context *within* $self->context. e.g. the zephyr |
---|
| 433 | # instance |
---|
| 434 | sub subcontext {""} |
---|
| 435 | |
---|
[f1e629d] | 436 | ##################################################################### |
---|
| 437 | ##################################################################### |
---|
| 438 | |
---|
[8203afd] | 439 | package BarnOwl::Message::Admin; |
---|
[f1e629d] | 440 | |
---|
[8203afd] | 441 | use base qw( BarnOwl::Message ); |
---|
[f1e629d] | 442 | |
---|
| 443 | sub header { return shift->{"header"}; } |
---|
| 444 | |
---|
| 445 | ##################################################################### |
---|
| 446 | ##################################################################### |
---|
| 447 | |
---|
[8203afd] | 448 | package BarnOwl::Message::Generic; |
---|
[f1e629d] | 449 | |
---|
[8203afd] | 450 | use base qw( BarnOwl::Message ); |
---|
[f1e629d] | 451 | |
---|
| 452 | ##################################################################### |
---|
| 453 | ##################################################################### |
---|
| 454 | |
---|
[186cdc4] | 455 | package BarnOwl::Message::Loopback; |
---|
| 456 | |
---|
| 457 | use base qw( BarnOwl::Message ); |
---|
| 458 | |
---|
[cb06a43] | 459 | # all loopback messages are private |
---|
| 460 | sub is_private { |
---|
[186cdc4] | 461 | return 1; |
---|
| 462 | } |
---|
| 463 | |
---|
| 464 | ##################################################################### |
---|
| 465 | ##################################################################### |
---|
| 466 | |
---|
[8203afd] | 467 | package BarnOwl::Message::AIM; |
---|
[f1e629d] | 468 | |
---|
[8203afd] | 469 | use base qw( BarnOwl::Message ); |
---|
[f1e629d] | 470 | |
---|
[cb06a43] | 471 | # all non-loginout AIM messages are private for now... |
---|
| 472 | sub is_private { |
---|
[f1e629d] | 473 | return !(shift->is_loginout); |
---|
| 474 | } |
---|
| 475 | |
---|
| 476 | ##################################################################### |
---|
| 477 | ##################################################################### |
---|
| 478 | |
---|
[8203afd] | 479 | package BarnOwl::Message::Zephyr; |
---|
[f1e629d] | 480 | |
---|
[8203afd] | 481 | use base qw( BarnOwl::Message ); |
---|
[f1e629d] | 482 | |
---|
[6e6ded7] | 483 | sub login_type { |
---|
| 484 | return (shift->zsig eq "") ? "(PSEUDO)" : ""; |
---|
| 485 | } |
---|
| 486 | |
---|
| 487 | sub login_extra { |
---|
| 488 | my $m = shift; |
---|
| 489 | return undef if (!$m->is_loginout); |
---|
| 490 | my $s = lc($m->host); |
---|
| 491 | $s .= " " . $m->login_tty if defined $m->login_tty; |
---|
| 492 | return $s; |
---|
| 493 | } |
---|
| 494 | |
---|
| 495 | sub long_sender { |
---|
| 496 | my $m = shift; |
---|
| 497 | return $m->zsig; |
---|
| 498 | } |
---|
| 499 | |
---|
| 500 | sub context { |
---|
| 501 | return shift->class; |
---|
| 502 | } |
---|
| 503 | |
---|
| 504 | sub subcontext { |
---|
| 505 | return shift->instance; |
---|
| 506 | } |
---|
| 507 | |
---|
[186cdc4] | 508 | sub login_tty { |
---|
[f1e629d] | 509 | my ($m) = @_; |
---|
| 510 | return undef if (!$m->is_loginout); |
---|
| 511 | return $m->fields->[2]; |
---|
| 512 | } |
---|
| 513 | |
---|
[186cdc4] | 514 | sub login_host { |
---|
[f1e629d] | 515 | my ($m) = @_; |
---|
| 516 | return undef if (!$m->is_loginout); |
---|
| 517 | return $m->fields->[0]; |
---|
| 518 | } |
---|
| 519 | |
---|
| 520 | sub zwriteline { return shift->{"zwriteline"}; } |
---|
| 521 | |
---|
| 522 | sub is_ping { return (lc(shift->opcode) eq "ping"); } |
---|
| 523 | |
---|
[186cdc4] | 524 | sub is_personal { |
---|
[f1e629d] | 525 | my ($m) = @_; |
---|
| 526 | return ((lc($m->class) eq "message") |
---|
| 527 | && (lc($m->instance) eq "personal") |
---|
| 528 | && $m->is_private); |
---|
| 529 | } |
---|
| 530 | |
---|
[186cdc4] | 531 | sub is_mail { |
---|
[f1e629d] | 532 | my ($m) = @_; |
---|
| 533 | return ((lc($m->class) eq "mail") && $m->is_private); |
---|
| 534 | } |
---|
| 535 | |
---|
| 536 | sub pretty_sender { |
---|
| 537 | my ($m) = @_; |
---|
| 538 | my $sender = $m->sender; |
---|
[8203afd] | 539 | my $realm = BarnOwl::zephyr_getrealm(); |
---|
[f1e629d] | 540 | $sender =~ s/\@$realm$//; |
---|
| 541 | return $sender; |
---|
| 542 | } |
---|
| 543 | |
---|
[ae47efb] | 544 | sub pretty_recipient { |
---|
| 545 | my ($m) = @_; |
---|
| 546 | my $recip = $m->recipient; |
---|
| 547 | my $realm = BarnOwl::zephyr_getrealm(); |
---|
| 548 | $recip =~ s/\@$realm$//; |
---|
| 549 | return $recip; |
---|
| 550 | } |
---|
| 551 | |
---|
[f1e629d] | 552 | # These are arguably zephyr-specific |
---|
| 553 | sub class { return shift->{"class"}; } |
---|
| 554 | sub instance { return shift->{"instance"}; } |
---|
| 555 | sub realm { return shift->{"realm"}; } |
---|
| 556 | sub opcode { return shift->{"opcode"}; } |
---|
| 557 | sub host { return shift->{"hostname"}; } |
---|
| 558 | sub hostname { return shift->{"hostname"}; } |
---|
| 559 | sub header { return shift->{"header"}; } |
---|
| 560 | sub auth { return shift->{"auth"}; } |
---|
| 561 | sub fields { return shift->{"fields"}; } |
---|
| 562 | sub zsig { return shift->{"zsig"}; } |
---|
| 563 | |
---|
| 564 | ##################################################################### |
---|
| 565 | ##################################################################### |
---|
[7e470da] | 566 | ################################################################################ |
---|
| 567 | |
---|
[0337203] | 568 | package BarnOwl::Hook; |
---|
[7e470da] | 569 | |
---|
[1a64de6] | 570 | =head1 BarnOwl::Hook |
---|
| 571 | |
---|
| 572 | =head1 DESCRIPTION |
---|
| 573 | |
---|
| 574 | A C<BarnOwl::Hook> represents a list of functions to be triggered on |
---|
| 575 | some event. C<BarnOwl> exports a default set of these (see |
---|
| 576 | C<BarnOwl::Hooks>), but can also be created and used by module code. |
---|
| 577 | |
---|
| 578 | =head2 new |
---|
| 579 | |
---|
| 580 | Creates a new Hook object |
---|
| 581 | |
---|
| 582 | =cut |
---|
| 583 | |
---|
[0337203] | 584 | sub new { |
---|
| 585 | my $class = shift; |
---|
| 586 | return bless [], $class; |
---|
| 587 | } |
---|
[7e470da] | 588 | |
---|
[1a64de6] | 589 | =head2 run [ARGS] |
---|
| 590 | |
---|
| 591 | Calls each of the functions registered with this hook with the given |
---|
| 592 | arguments. |
---|
| 593 | |
---|
| 594 | =cut |
---|
| 595 | |
---|
[0337203] | 596 | sub run { |
---|
| 597 | my $self = shift; |
---|
| 598 | my @args = @_; |
---|
| 599 | return map {$_->(@args)} @$self; |
---|
[7e470da] | 600 | } |
---|
[0337203] | 601 | |
---|
[1a64de6] | 602 | =head2 add SUBREF |
---|
| 603 | |
---|
| 604 | Registers a given subroutine with this hook |
---|
| 605 | |
---|
| 606 | =cut |
---|
| 607 | |
---|
[0337203] | 608 | sub add { |
---|
| 609 | my $self = shift; |
---|
| 610 | my $func = shift; |
---|
| 611 | die("Not a coderef!") unless ref($func) eq 'CODE'; |
---|
| 612 | push @$self, $func; |
---|
[7e470da] | 613 | } |
---|
| 614 | |
---|
[1a64de6] | 615 | =head2 clear |
---|
| 616 | |
---|
| 617 | Remove all functions registered with this hook. |
---|
| 618 | |
---|
| 619 | =cut |
---|
| 620 | |
---|
[0337203] | 621 | sub clear { |
---|
| 622 | my $self = shift; |
---|
| 623 | @$self = (); |
---|
[7e470da] | 624 | } |
---|
| 625 | |
---|
[0337203] | 626 | package BarnOwl::Hooks; |
---|
[7e470da] | 627 | |
---|
[1a64de6] | 628 | =head1 BarnOwl::Hooks |
---|
| 629 | |
---|
| 630 | =head1 DESCRIPTION |
---|
| 631 | |
---|
| 632 | C<BarnOwl::Hooks> exports a set of C<BarnOwl::Hook> objects made |
---|
| 633 | available by BarnOwl internally. |
---|
| 634 | |
---|
| 635 | =head2 USAGE |
---|
| 636 | |
---|
| 637 | Modules wishing to respond to events in BarnOwl should register |
---|
| 638 | functions with these hooks. |
---|
| 639 | |
---|
| 640 | =head2 EXPORTS |
---|
| 641 | |
---|
| 642 | None by default. Either import the hooks you need explicitly, or refer |
---|
| 643 | to them with fully-qualified names. Available hooks are: |
---|
| 644 | |
---|
| 645 | =over 4 |
---|
| 646 | |
---|
| 647 | =item $startup |
---|
| 648 | |
---|
| 649 | Called on BarnOwl startup, and whenever modules are |
---|
| 650 | reloaded. Functions registered with the C<$startup> hook get a true |
---|
| 651 | argument if this is a reload, and false if this is a true startup |
---|
| 652 | |
---|
| 653 | =item $shutdown |
---|
| 654 | |
---|
| 655 | Called before BarnOwl shutdown |
---|
| 656 | |
---|
| 657 | =item $receiveMessage |
---|
| 658 | |
---|
| 659 | Called with a C<BarnOwl::Message> object every time BarnOwl appends a |
---|
| 660 | new message to its message list |
---|
| 661 | |
---|
| 662 | =item $mainLoop |
---|
| 663 | |
---|
[b07d8c8] | 664 | Called on every pass through the C<BarnOwl> main loop. This is |
---|
| 665 | guaranteed to be called at least once/sec and may be called more |
---|
| 666 | frequently. |
---|
[1a64de6] | 667 | |
---|
| 668 | =item $getBuddyList |
---|
| 669 | |
---|
| 670 | Called to display buddy lists for all protocol handlers. The result |
---|
| 671 | from every function registered with this hook will be appended and |
---|
| 672 | displayed in a popup window, with zephyr formatting parsed. |
---|
| 673 | |
---|
| 674 | =back |
---|
| 675 | |
---|
| 676 | =cut |
---|
| 677 | |
---|
[0337203] | 678 | use Exporter; |
---|
| 679 | |
---|
| 680 | our @EXPORT_OK = qw($startup $shutdown |
---|
| 681 | $receiveMessage $mainLoop |
---|
| 682 | $getBuddyList); |
---|
| 683 | |
---|
| 684 | our %EXPORT_TAGS = (all => [@EXPORT_OK]); |
---|
| 685 | |
---|
| 686 | our $startup = BarnOwl::Hook->new; |
---|
| 687 | our $shutdown = BarnOwl::Hook->new; |
---|
| 688 | our $receiveMessage = BarnOwl::Hook->new; |
---|
| 689 | our $mainLoop = BarnOwl::Hook->new; |
---|
| 690 | our $getBuddyList = BarnOwl::Hook->new; |
---|
| 691 | |
---|
| 692 | # Internal startup/shutdown routines called by the C code |
---|
[7e470da] | 693 | |
---|
[b6c067a] | 694 | sub _load_owlconf { |
---|
| 695 | # load the config file |
---|
| 696 | if ( -r $BarnOwl::configfile ) { |
---|
| 697 | undef $@; |
---|
[e8bc8ac] | 698 | package main; |
---|
[b6c067a] | 699 | do $BarnOwl::configfile; |
---|
| 700 | die $@ if $@; |
---|
[e8bc8ac] | 701 | package BarnOwl; |
---|
[39dc159] | 702 | if(*BarnOwl::format_msg{CODE}) { |
---|
| 703 | # if the config defines a legacy formatting function, add 'perl' as a style |
---|
| 704 | BarnOwl::_create_style("perl", "BarnOwl::_format_msg_legacy_wrap", |
---|
| 705 | "User-defined perl style that calls BarnOwl::format_msg" |
---|
| 706 | . " with legacy global variable support"); |
---|
| 707 | BarnOwl::set("-q default_style perl"); |
---|
| 708 | } |
---|
[b6c067a] | 709 | } |
---|
| 710 | } |
---|
| 711 | |
---|
[b0c8011] | 712 | # These are the internal hooks called by the barnowl C code, which |
---|
| 713 | # take care of dispatching to the appropriate perl hooks, and deal |
---|
| 714 | # with compatibility by calling the old, fixed-name hooks. |
---|
| 715 | |
---|
[0337203] | 716 | sub _startup { |
---|
| 717 | _load_owlconf(); |
---|
[8203afd] | 718 | |
---|
[0337203] | 719 | if(eval {require BarnOwl::ModuleLoader}) { |
---|
| 720 | eval { |
---|
| 721 | BarnOwl::ModuleLoader->load_all; |
---|
| 722 | }; |
---|
[f6b319c] | 723 | BarnOwl::error("$@") if $@; |
---|
| 724 | |
---|
[0337203] | 725 | } else { |
---|
| 726 | BarnOwl::error("Can't load BarnOwl::ModuleLoader, loadable module support disabled:\n$@"); |
---|
| 727 | } |
---|
| 728 | |
---|
[836e6263] | 729 | $startup->run(0); |
---|
[8203afd] | 730 | BarnOwl::startup() if *BarnOwl::startup{CODE}; |
---|
| 731 | } |
---|
| 732 | |
---|
[0337203] | 733 | sub _shutdown { |
---|
| 734 | $shutdown->run; |
---|
| 735 | |
---|
[8203afd] | 736 | BarnOwl::shutdown() if *BarnOwl::shutdown{CODE}; |
---|
| 737 | } |
---|
| 738 | |
---|
[0337203] | 739 | sub _receive_msg { |
---|
[7e470da] | 740 | my $m = shift; |
---|
[0337203] | 741 | |
---|
| 742 | $receiveMessage->run($m); |
---|
| 743 | |
---|
[8203afd] | 744 | BarnOwl::receive_msg($m) if *BarnOwl::receive_msg{CODE}; |
---|
[7e470da] | 745 | } |
---|
| 746 | |
---|
[0337203] | 747 | sub _mainloop_hook { |
---|
| 748 | $mainLoop->run; |
---|
| 749 | BarnOwl::mainloop_hook() if *BarnOwl::mainloop_hook{CODE}; |
---|
| 750 | } |
---|
[7e470da] | 751 | |
---|
[0337203] | 752 | sub _get_blist { |
---|
| 753 | return join("\n", $getBuddyList->run); |
---|
[7e470da] | 754 | } |
---|
[dd16bdd] | 755 | |
---|
[b6c067a] | 756 | ################################################################################ |
---|
| 757 | # Built-in perl styles |
---|
| 758 | ################################################################################ |
---|
| 759 | package BarnOwl::Style::Default; |
---|
| 760 | ################################################################################ |
---|
| 761 | # Branching point for various formatting functions in this style. |
---|
| 762 | ################################################################################ |
---|
| 763 | sub format_message($) |
---|
| 764 | { |
---|
| 765 | my $m = shift; |
---|
| 766 | |
---|
[6e6ded7] | 767 | if ( $m->is_loginout) { |
---|
| 768 | return format_login($m); |
---|
[18fb3d4f] | 769 | } elsif($m->is_ping && $m->is_personal) { |
---|
[6e6ded7] | 770 | return ( "\@b(PING) from \@b(" . $m->pretty_sender . ")\n" ); |
---|
| 771 | } elsif($m->is_admin) { |
---|
[b6c067a] | 772 | return "\@bold(OWL ADMIN)\n" . indentBody($m); |
---|
[6e6ded7] | 773 | } else { |
---|
| 774 | return format_chat($m); |
---|
[b6c067a] | 775 | } |
---|
| 776 | } |
---|
| 777 | |
---|
| 778 | BarnOwl::_create_style("default", "BarnOwl::Style::Default::format_message", "Default style"); |
---|
| 779 | |
---|
| 780 | ################################################################################ |
---|
| 781 | |
---|
[6e6ded7] | 782 | sub time_hhmm { |
---|
| 783 | my $m = shift; |
---|
[b6c067a] | 784 | my ($time) = $m->time =~ /(\d\d:\d\d)/; |
---|
[6e6ded7] | 785 | return $time; |
---|
[b6c067a] | 786 | } |
---|
| 787 | |
---|
[6e6ded7] | 788 | sub format_login($) { |
---|
[b6c067a] | 789 | my $m = shift; |
---|
[6e6ded7] | 790 | return sprintf( |
---|
| 791 | '@b<%s%s> for @b(%s) (%s) %s', |
---|
| 792 | uc( $m->login ), |
---|
| 793 | $m->login_type, |
---|
| 794 | $m->pretty_sender, |
---|
| 795 | $m->login_extra, |
---|
| 796 | time_hhmm($m) |
---|
| 797 | ); |
---|
[b6c067a] | 798 | } |
---|
| 799 | |
---|
[6e6ded7] | 800 | sub format_chat($) { |
---|
[b6c067a] | 801 | my $m = shift; |
---|
[6e6ded7] | 802 | my $header; |
---|
| 803 | if ( $m->is_personal ) { |
---|
| 804 | if ( $m->direction eq "out" ) { |
---|
| 805 | $header = ucfirst $m->type . " sent to " . $m->pretty_recipient; |
---|
| 806 | } else { |
---|
| 807 | $header = ucfirst $m->type . " from " . $m->pretty_sender; |
---|
| 808 | } |
---|
| 809 | } else { |
---|
| 810 | $header = $m->context; |
---|
[37dd88c] | 811 | if(defined $m->subcontext) { |
---|
[c39999f] | 812 | $header .= ' / ' . $m->subcontext; |
---|
[6e6ded7] | 813 | } |
---|
[c39999f] | 814 | $header .= ' / @b{' . $m->pretty_sender . '}'; |
---|
[6e6ded7] | 815 | } |
---|
[b6c067a] | 816 | |
---|
[b51d257] | 817 | if($m->opcode) { |
---|
| 818 | $header .= " [" . $m->opcode . "]"; |
---|
| 819 | } |
---|
[6e6ded7] | 820 | $header .= " " . time_hhmm($m); |
---|
[0449730] | 821 | my $sender = $m->long_sender; |
---|
| 822 | $sender =~ s/\n.*$//s; |
---|
[cc5b906] | 823 | $header .= " " x (4 - ((length $header) % 4)); |
---|
[42947f1] | 824 | $header .= "(" . $sender . '@color[default]' . ")"; |
---|
[6e6ded7] | 825 | my $message = $header . "\n". indentBody($m); |
---|
[cb06a43] | 826 | if($m->is_personal && $m->direction eq "in") { |
---|
[6e6ded7] | 827 | $message = BarnOwl::Style::boldify($message); |
---|
| 828 | } |
---|
| 829 | return $message; |
---|
[b6c067a] | 830 | } |
---|
| 831 | |
---|
| 832 | sub indentBody($) |
---|
| 833 | { |
---|
| 834 | my $m = shift; |
---|
[186cdc4] | 835 | |
---|
[b6c067a] | 836 | my $body = $m->body; |
---|
[f6b319c] | 837 | if ($m->{should_wordwrap}) { |
---|
| 838 | $body = BarnOwl::wordwrap($body, BarnOwl::getnumcols()-8); |
---|
| 839 | } |
---|
[186cdc4] | 840 | # replace newline followed by anything with |
---|
[b6c067a] | 841 | # newline plus four spaces and that thing. |
---|
| 842 | $body =~ s/\n(.)/\n $1/g; |
---|
[f2d72128] | 843 | # Trim trailing newlines. |
---|
| 844 | $body =~ s/\n*$//; |
---|
[b6c067a] | 845 | return " ".$body; |
---|
| 846 | } |
---|
| 847 | |
---|
[f2d72128] | 848 | package BarnOwl::Style::OneLine; |
---|
| 849 | ################################################################################ |
---|
| 850 | # Branching point for various formatting functions in this style. |
---|
| 851 | ################################################################################ |
---|
| 852 | use constant BASE_FORMAT => '%s %-13.13s %-11.11s %-12.12s '; |
---|
| 853 | sub format_message($) { |
---|
| 854 | my $m = shift; |
---|
| 855 | |
---|
| 856 | # if ( $m->is_zephyr ) { |
---|
| 857 | # return format_zephyr($m); |
---|
| 858 | # } |
---|
[5ff830a] | 859 | if ( $m->is_loginout ) { |
---|
[f2d72128] | 860 | return format_login($m); |
---|
| 861 | } |
---|
| 862 | elsif ( $m->is_ping) { |
---|
| 863 | return format_ping($m); |
---|
| 864 | } |
---|
| 865 | elsif ( $m->is_admin || $m->is_loopback) { |
---|
| 866 | return format_local($m); |
---|
| 867 | } |
---|
| 868 | else { |
---|
| 869 | return format_chat($m); |
---|
| 870 | } |
---|
| 871 | } |
---|
| 872 | |
---|
| 873 | BarnOwl::_create_style("oneline", "BarnOwl::Style::OneLine::format_message", "Formats for one-line-per-message"); |
---|
| 874 | |
---|
| 875 | ################################################################################ |
---|
| 876 | |
---|
| 877 | sub format_login($) { |
---|
| 878 | my $m = shift; |
---|
| 879 | return sprintf( |
---|
| 880 | BASE_FORMAT, |
---|
| 881 | '<', |
---|
| 882 | $m->type, |
---|
| 883 | uc( $m->login ), |
---|
| 884 | $m->pretty_sender) |
---|
| 885 | . ($m->login_extra ? "at ".$m->login_extra : ''); |
---|
| 886 | } |
---|
| 887 | |
---|
| 888 | sub format_ping($) { |
---|
| 889 | my $m = shift; |
---|
| 890 | return sprintf( |
---|
| 891 | BASE_FORMAT, |
---|
| 892 | '<', |
---|
| 893 | $m->type, |
---|
| 894 | 'PING', |
---|
| 895 | $m->pretty_sender) |
---|
| 896 | } |
---|
| 897 | |
---|
| 898 | sub format_chat($) |
---|
| 899 | { |
---|
| 900 | my $m = shift; |
---|
| 901 | my $dir = lc($m->{direction}); |
---|
| 902 | my $dirsym = '-'; |
---|
| 903 | if ($dir eq 'in') { |
---|
| 904 | $dirsym = '<'; |
---|
| 905 | } |
---|
| 906 | elsif ($dir eq 'out') { |
---|
| 907 | $dirsym = '>'; |
---|
| 908 | } |
---|
| 909 | |
---|
| 910 | my $line; |
---|
| 911 | if ($m->is_personal) { |
---|
| 912 | $line= sprintf(BASE_FORMAT, |
---|
| 913 | $dirsym, |
---|
| 914 | $m->type, |
---|
| 915 | '', |
---|
| 916 | ($dir eq 'out' |
---|
| 917 | ? $m->pretty_recipient |
---|
| 918 | : $m->pretty_sender)); |
---|
| 919 | } |
---|
| 920 | else { |
---|
| 921 | $line = sprintf(BASE_FORMAT, |
---|
| 922 | $dirsym, |
---|
| 923 | $m->context, |
---|
| 924 | $m->subcontext, |
---|
| 925 | ($dir eq 'out' |
---|
| 926 | ? $m->pretty_recipient |
---|
| 927 | : $m->pretty_sender)); |
---|
| 928 | } |
---|
| 929 | |
---|
| 930 | my $body = $m->{body}; |
---|
| 931 | $body =~ tr/\n/ /; |
---|
| 932 | $line .= $body; |
---|
| 933 | $line = BarnOwl::Style::boldify($line) if ($m->is_personal && lc($m->direction) eq 'in'); |
---|
| 934 | return $line; |
---|
| 935 | } |
---|
| 936 | |
---|
| 937 | # Format locally generated messages |
---|
| 938 | sub format_local($) |
---|
| 939 | { |
---|
| 940 | my $m = shift; |
---|
| 941 | my $type = uc($m->{type}); |
---|
| 942 | my $line = sprintf(BASE_FORMAT, '<', $type, '', ''); |
---|
| 943 | my $body = $m->{body}; |
---|
| 944 | $body =~ tr/\n/ /; |
---|
| 945 | return $line.$body; |
---|
| 946 | } |
---|
[b6c067a] | 947 | |
---|
| 948 | package BarnOwl::Style; |
---|
| 949 | |
---|
| 950 | # This takes a zephyr to be displayed and modifies it to be displayed |
---|
| 951 | # entirely in bold. |
---|
| 952 | sub boldify($) |
---|
| 953 | { |
---|
| 954 | local $_ = shift; |
---|
| 955 | if ( !(/\)/) ) { |
---|
| 956 | return '@b(' . $_ . ')'; |
---|
| 957 | } elsif ( !(/\>/) ) { |
---|
| 958 | return '@b<' . $_ . '>'; |
---|
| 959 | } elsif ( !(/\}/) ) { |
---|
| 960 | return '@b{' . $_ . '}'; |
---|
| 961 | } elsif ( !(/\]/) ) { |
---|
| 962 | return '@b[' . $_ . ']'; |
---|
| 963 | } else { |
---|
| 964 | my $txt = "\@b($_"; |
---|
| 965 | $txt =~ s/\)/\)\@b\[\)\]\@b\(/g; |
---|
| 966 | return $txt . ')'; |
---|
| 967 | } |
---|
| 968 | } |
---|
| 969 | |
---|
| 970 | |
---|
[f1e629d] | 971 | # switch to package main when we're done |
---|
| 972 | package main; |
---|
[0337203] | 973 | |
---|
| 974 | # Shove a bunch of fake entries into @INC so modules can use or |
---|
| 975 | # require them without choking |
---|
| 976 | $::INC{$_} = 1 for (qw(BarnOwl.pm BarnOwl/Hooks.pm |
---|
| 977 | BarnOwl/Message.pm BarnOwl/Style.pm)); |
---|
[f1e629d] | 978 | |
---|
| 979 | 1; |
---|
[0337203] | 980 | |
---|