[ee183be] | 1 | use strict; |
---|
| 2 | use warnings; |
---|
| 3 | |
---|
| 4 | package BarnOwl; |
---|
| 5 | |
---|
[2be605a] | 6 | use base qw(Exporter); |
---|
| 7 | our @EXPORT_OK = qw(command getcurmsg getnumcols getidletime |
---|
| 8 | zephyr_getsender zephyr_getrealm zephyr_zwrite |
---|
| 9 | zephyr_stylestrip zephyr_smartstrip_user zephyr_getsubs |
---|
| 10 | queue_message admin_message |
---|
| 11 | start_question start_password start_edit_win |
---|
| 12 | get_data_dir get_config_dir popless_text popless_ztext |
---|
[eede1bf] | 13 | error debug |
---|
[2be605a] | 14 | create_style getnumcolors wordwrap |
---|
| 15 | add_dispath remove_dispatch |
---|
| 16 | new_command |
---|
| 17 | new_variable_int new_variable_bool new_variable_string |
---|
[4df918b] | 18 | quote redisplay); |
---|
[2be605a] | 19 | our %EXPORT_TAGS = (all => \@EXPORT_OK); |
---|
| 20 | |
---|
[fd8dfe7] | 21 | BEGIN { |
---|
| 22 | # bootstrap in C bindings and glue |
---|
| 23 | *owl:: = \*BarnOwl::; |
---|
| 24 | bootstrap BarnOwl 1.2; |
---|
| 25 | }; |
---|
| 26 | |
---|
| 27 | use lib(get_data_dir() . "/lib"); |
---|
| 28 | use lib(get_config_dir() . "/lib"); |
---|
| 29 | |
---|
| 30 | use BarnOwl::Hook; |
---|
| 31 | use BarnOwl::Hooks; |
---|
| 32 | use BarnOwl::Message; |
---|
| 33 | use BarnOwl::Style; |
---|
[df569c5] | 34 | use BarnOwl::Zephyr; |
---|
[fd8dfe7] | 35 | use BarnOwl::Timer; |
---|
[cf26b72] | 36 | use BarnOwl::Editwin; |
---|
[8eac1a5] | 37 | use BarnOwl::Completion; |
---|
[fd8dfe7] | 38 | |
---|
[ee183be] | 39 | =head1 NAME |
---|
| 40 | |
---|
| 41 | BarnOwl |
---|
| 42 | |
---|
| 43 | =head1 DESCRIPTION |
---|
| 44 | |
---|
| 45 | The BarnOwl module contains the core of BarnOwl's perl |
---|
| 46 | bindings. Source in this module is also run at startup to bootstrap |
---|
| 47 | barnowl by defining things like the default style. |
---|
| 48 | |
---|
| 49 | =for NOTE |
---|
| 50 | These following functions are defined in perlglue.xs. Keep the |
---|
| 51 | documentation here in sync with the user-visible commands defined |
---|
| 52 | there! |
---|
| 53 | |
---|
| 54 | =head2 command STRING |
---|
| 55 | |
---|
| 56 | Executes a BarnOwl command in the same manner as if the user had |
---|
| 57 | executed it at the BarnOwl command prompt. If the command returns a |
---|
| 58 | value, return it as a string, otherwise return undef. |
---|
| 59 | |
---|
| 60 | =head2 getcurmsg |
---|
| 61 | |
---|
| 62 | Returns the current message as a C<BarnOwl::Message> subclass, or |
---|
| 63 | undef if there is no message selected |
---|
| 64 | |
---|
| 65 | =head2 getnumcols |
---|
| 66 | |
---|
| 67 | Returns the width of the display window BarnOwl is currently using |
---|
| 68 | |
---|
| 69 | =head2 getidletime |
---|
| 70 | |
---|
| 71 | Returns the length of time since the user has pressed a key, in |
---|
| 72 | seconds. |
---|
| 73 | |
---|
| 74 | =head2 zephyr_getrealm |
---|
| 75 | |
---|
| 76 | Returns the zephyr realm barnowl is running in |
---|
| 77 | |
---|
| 78 | =head2 zephyr_getsender |
---|
| 79 | |
---|
| 80 | Returns the fully-qualified name of the zephyr sender barnowl is |
---|
| 81 | running as, e.g. C<nelhage@ATHENA.MIT.EDU> |
---|
| 82 | |
---|
| 83 | =head2 zephyr_zwrite COMMAND MESSAGE |
---|
| 84 | |
---|
| 85 | Sends a zephyr programmatically. C<COMMAND> should be a C<zwrite> |
---|
| 86 | command line, and C<MESSAGE> is the zephyr body to send. |
---|
| 87 | |
---|
| 88 | =head2 ztext_stylestrip STRING |
---|
| 89 | |
---|
| 90 | Strips zephyr formatting from a string and returns the result |
---|
| 91 | |
---|
| 92 | =head2 zephyr_getsubs |
---|
| 93 | |
---|
| 94 | Returns the list of subscription triples <class,instance,recipient>, |
---|
| 95 | separated by newlines. |
---|
| 96 | |
---|
| 97 | =head2 queue_message MESSAGE |
---|
| 98 | |
---|
| 99 | Enqueue a message in the BarnOwl message list, logging it and |
---|
| 100 | processing it appropriately. C<MESSAGE> should be an instance of |
---|
| 101 | BarnOwl::Message or a subclass. |
---|
| 102 | |
---|
| 103 | =head2 admin_message HEADER BODY |
---|
| 104 | |
---|
| 105 | Display a BarnOwl B<Admin> message, with the given header and body. |
---|
| 106 | |
---|
| 107 | =head2 start_question PROMPT CALLBACK |
---|
| 108 | |
---|
| 109 | Displays C<PROMPT> on the screen and lets the user enter a line of |
---|
| 110 | text, and calls C<CALLBACK>, which must be a perl subroutine |
---|
| 111 | reference, with the text the user entered |
---|
| 112 | |
---|
| 113 | =head2 start_password PROMPT CALLBACK |
---|
| 114 | |
---|
| 115 | Like C<start_question>, but echoes the user's input as C<*>s when they |
---|
| 116 | input. |
---|
| 117 | |
---|
| 118 | =head2 start_edit_win PROMPT CALLBACK |
---|
| 119 | |
---|
| 120 | Like C<start_question>, but displays C<PROMPT> on a line of its own |
---|
| 121 | and opens the editwin. If the user cancels the edit win, C<CALLBACK> |
---|
| 122 | is not invoked. |
---|
| 123 | |
---|
| 124 | =head2 get_data_dir |
---|
| 125 | |
---|
| 126 | Returns the BarnOwl system data directory, where system libraries and |
---|
| 127 | modules are stored |
---|
| 128 | |
---|
| 129 | =head2 get_config_dir |
---|
| 130 | |
---|
| 131 | Returns the BarnOwl user configuration directory, where user modules |
---|
| 132 | and configuration are stored (by default, C<$HOME/.owl>) |
---|
| 133 | |
---|
| 134 | =head2 popless_text TEXT |
---|
| 135 | |
---|
| 136 | Show a popup window containing the given C<TEXT> |
---|
| 137 | |
---|
| 138 | =head2 popless_ztext TEXT |
---|
| 139 | |
---|
| 140 | Show a popup window containing the provided zephyr-formatted C<TEXT> |
---|
| 141 | |
---|
| 142 | =head2 error STRING |
---|
| 143 | |
---|
| 144 | Reports an error and log it in `show errors'. Note that in any |
---|
| 145 | callback or hook called in perl code from BarnOwl, a C<die> will be |
---|
| 146 | caught and passed to C<error>. |
---|
| 147 | |
---|
[eede1bf] | 148 | =head2 debug STRING |
---|
| 149 | |
---|
| 150 | Logs a debugging message to BarnOwl's debug log |
---|
| 151 | |
---|
[ee183be] | 152 | =head2 getnumcolors |
---|
| 153 | |
---|
| 154 | Returns the number of colors this BarnOwl is capable of displaying |
---|
| 155 | |
---|
| 156 | =head2 add_dispatch FD CALLBACK |
---|
| 157 | |
---|
| 158 | Adds a file descriptor to C<BarnOwl>'s internal C<select()> |
---|
| 159 | loop. C<CALLBACK> will be invoked whenever data is available to be |
---|
| 160 | read from C<FD>. |
---|
| 161 | |
---|
| 162 | =head2 remove_dispatch FD |
---|
| 163 | |
---|
| 164 | Remove a file descriptor previously registered via C<add_dispatch> |
---|
| 165 | |
---|
| 166 | =head2 create_style NAME OBJECT |
---|
| 167 | |
---|
| 168 | Creates a new barnowl style with the given NAME defined by the given |
---|
| 169 | object. The object must have a C<description> method which returns a |
---|
| 170 | string description of the style, and a and C<format_message> method |
---|
| 171 | which accepts a C<BarnOwl::Message> object and returns a string that |
---|
| 172 | is the result of formatting the message for display. |
---|
| 173 | |
---|
[4df918b] | 174 | =head2 redisplay |
---|
| 175 | |
---|
| 176 | Redraw all of the messages on screen. This is useful if you've just |
---|
| 177 | changed how a style renders messages. |
---|
| 178 | |
---|
[ee183be] | 179 | =cut |
---|
| 180 | |
---|
| 181 | # perlconfig.c will set this to the value of the -c command-line |
---|
| 182 | # switch, if present. |
---|
| 183 | our $configfile; |
---|
| 184 | |
---|
[d7bcff8] | 185 | our @all_commands; |
---|
| 186 | |
---|
[ee183be] | 187 | if(!$configfile && -f $ENV{HOME} . "/.barnowlconf") { |
---|
| 188 | $configfile = $ENV{HOME} . "/.barnowlconf"; |
---|
| 189 | } |
---|
| 190 | $configfile ||= $ENV{HOME}."/.owlconf"; |
---|
| 191 | |
---|
| 192 | # populate global variable space for legacy owlconf files |
---|
| 193 | sub _receive_msg_legacy_wrap { |
---|
| 194 | my ($m) = @_; |
---|
| 195 | $m->legacy_populate_global(); |
---|
| 196 | return &BarnOwl::Hooks::_receive_msg($m); |
---|
| 197 | } |
---|
| 198 | |
---|
| 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>, |
---|
| 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 |
---|
| 224 | |
---|
| 225 | =cut |
---|
| 226 | |
---|
| 227 | sub new_command { |
---|
| 228 | my $name = shift; |
---|
| 229 | my $func = shift; |
---|
| 230 | my $args = shift || {}; |
---|
| 231 | my %args = ( |
---|
| 232 | summary => "", |
---|
| 233 | usage => "", |
---|
| 234 | description => "", |
---|
| 235 | %{$args} |
---|
| 236 | ); |
---|
| 237 | |
---|
| 238 | BarnOwl::Internal::new_command($name, $func, $args{summary}, $args{usage}, $args{description}); |
---|
| 239 | } |
---|
| 240 | |
---|
| 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 | |
---|
| 270 | sub new_variable_int { |
---|
| 271 | unshift @_, \&BarnOwl::Internal::new_variable_int, 0; |
---|
| 272 | goto \&_new_variable; |
---|
| 273 | } |
---|
| 274 | |
---|
| 275 | sub new_variable_bool { |
---|
| 276 | unshift @_, \&BarnOwl::Internal::new_variable_bool, 0; |
---|
| 277 | goto \&_new_variable; |
---|
| 278 | } |
---|
| 279 | |
---|
| 280 | sub new_variable_string { |
---|
| 281 | unshift @_, \&BarnOwl::Internal::new_variable_string, ""; |
---|
| 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 | |
---|
[fc92e6e2] | 298 | =head2 quote LIST |
---|
[ee183be] | 299 | |
---|
[fc92e6e2] | 300 | Quotes each of the strings in LIST and returns a string that will be |
---|
| 301 | correctly decoded to LIST by the BarnOwl command parser. For example: |
---|
| 302 | |
---|
| 303 | quote('zwrite', 'andersk', '-m', 'Hello, world!') |
---|
| 304 | # returns "zwrite andersk -m 'Hello, world!'" |
---|
[ee183be] | 305 | |
---|
| 306 | =cut |
---|
| 307 | |
---|
| 308 | sub quote { |
---|
[fc92e6e2] | 309 | my @quoted; |
---|
| 310 | for my $str (@_) { |
---|
| 311 | if ($str eq '') { |
---|
| 312 | push @quoted, "''"; |
---|
| 313 | } elsif ($str !~ /['" ]/) { |
---|
| 314 | push @quoted, "$str"; |
---|
| 315 | } elsif ($str !~ /'/) { |
---|
| 316 | push @quoted, "'$str'"; |
---|
| 317 | } else { |
---|
| 318 | (my $qstr = $str) =~ s/"/"'"'"/g; |
---|
| 319 | push @quoted, '"' . $qstr . '"'; |
---|
| 320 | } |
---|
[ee183be] | 321 | } |
---|
[fc92e6e2] | 322 | return join(' ', @quoted); |
---|
[ee183be] | 323 | } |
---|
| 324 | |
---|
[22b54a7] | 325 | =head2 Modify filters by appending text |
---|
| 326 | |
---|
| 327 | =cut |
---|
| 328 | |
---|
[cff58b4] | 329 | sub register_builtin_commands { |
---|
[0b2afba] | 330 | # Filter modification |
---|
[cff58b4] | 331 | BarnOwl::new_command("filterappend", |
---|
| 332 | sub { filter_append_helper('appending', '', @_); }, |
---|
| 333 | { |
---|
| 334 | summary => "append '<text>' to filter", |
---|
| 335 | usage => "filterappend <filter> <text>", |
---|
| 336 | }); |
---|
| 337 | |
---|
| 338 | BarnOwl::new_command("filterand", |
---|
| 339 | sub { filter_append_helper('and-ing', 'and', @_); }, |
---|
| 340 | { |
---|
| 341 | summary => "append 'and <text>' to filter", |
---|
| 342 | usage => "filterand <filter> <text>", |
---|
| 343 | }); |
---|
| 344 | |
---|
| 345 | BarnOwl::new_command("filteror", |
---|
| 346 | sub { filter_append_helper('or-ing', 'or', @_); }, |
---|
| 347 | { |
---|
| 348 | summary => "append 'or <text>' to filter", |
---|
| 349 | usage => "filteror <filter> <text>", |
---|
| 350 | }); |
---|
| 351 | |
---|
[0b2afba] | 352 | # Date formatting |
---|
| 353 | BarnOwl::new_command("showdate", |
---|
| 354 | sub { BarnOwl::time_format('showdate', '%Y-%m-%d %H:%M'); }, |
---|
| 355 | { |
---|
| 356 | summary => "Show date in timestamps for supporting styles.", |
---|
| 357 | usage => "showdate", |
---|
| 358 | }); |
---|
| 359 | |
---|
| 360 | BarnOwl::new_command("hidedate", |
---|
| 361 | sub { BarnOwl::time_format('hidedate', '%H:%M'); }, |
---|
| 362 | { |
---|
| 363 | summary => "Don't show date in timestamps for supporting styles.", |
---|
| 364 | usage => "hidedate", |
---|
| 365 | }); |
---|
| 366 | |
---|
| 367 | BarnOwl::new_command("timeformat", |
---|
| 368 | \&BarnOwl::time_format, |
---|
| 369 | { |
---|
| 370 | summary => "Set the format for timestamps and re-display messages", |
---|
| 371 | usage => "timeformat <format>", |
---|
| 372 | }); |
---|
| 373 | |
---|
[cff58b4] | 374 | } |
---|
| 375 | |
---|
| 376 | $BarnOwl::Hooks::startup->add("BarnOwl::register_builtin_commands"); |
---|
[22b54a7] | 377 | |
---|
| 378 | =head3 filter_append_helper ACTION SEP FUNC FILTER APPEND_TEXT |
---|
| 379 | |
---|
| 380 | Helper to append to filters. |
---|
| 381 | |
---|
| 382 | =cut |
---|
| 383 | |
---|
| 384 | sub filter_append_helper |
---|
| 385 | { |
---|
| 386 | my $action = shift; |
---|
| 387 | my $sep = shift; |
---|
| 388 | my $func = shift; |
---|
| 389 | my $filter = shift; |
---|
| 390 | my @append = @_; |
---|
| 391 | my $oldfilter = BarnOwl::getfilter($filter); |
---|
| 392 | chomp $oldfilter; |
---|
[0b5168d] | 393 | my $newfilter = "$oldfilter $sep " . quote(@append); |
---|
| 394 | my $msgtext = "To filter " . quote($filter) . " $action\n" . quote(@append) . "\nto get\n$newfilter"; |
---|
[22b54a7] | 395 | if (BarnOwl::getvar('showfilterchange') eq 'on') { |
---|
| 396 | BarnOwl::admin_message("Filter", $msgtext); |
---|
| 397 | } |
---|
| 398 | BarnOwl::filter($filter, $newfilter); |
---|
| 399 | return; |
---|
| 400 | } |
---|
| 401 | BarnOwl::new_variable_bool("showfilterchange", |
---|
| 402 | { default => 1, |
---|
| 403 | summary => 'Show modifications to filters by filterappend and friends.'}); |
---|
[ee183be] | 404 | |
---|
[0b2afba] | 405 | =head3 time_format FORMAT |
---|
| 406 | |
---|
| 407 | Set the format for displaying times (variable timeformat) and redisplay |
---|
| 408 | messages. |
---|
| 409 | |
---|
| 410 | =cut |
---|
| 411 | |
---|
[d694c55] | 412 | my $timeformat = '%H:%M'; |
---|
[0b2afba] | 413 | |
---|
| 414 | sub time_format |
---|
| 415 | { |
---|
| 416 | my $function = shift; |
---|
| 417 | my $format = shift; |
---|
| 418 | if(!$format) |
---|
| 419 | { |
---|
| 420 | return $timeformat; |
---|
| 421 | } |
---|
| 422 | if(shift) |
---|
| 423 | { |
---|
| 424 | return "Wrong number of arguments for command"; |
---|
| 425 | } |
---|
| 426 | $timeformat = $format; |
---|
| 427 | redisplay(); |
---|
| 428 | } |
---|
| 429 | |
---|
[de3f641] | 430 | =head3 default_zephyr_signature |
---|
| 431 | |
---|
| 432 | Compute the default zephyr signature. |
---|
| 433 | |
---|
| 434 | =cut |
---|
| 435 | |
---|
| 436 | sub default_zephyr_signature |
---|
| 437 | { |
---|
[77c87b2] | 438 | my $zsig = getvar('zsig'); |
---|
[3c428d4] | 439 | if (!$zsig) { |
---|
| 440 | if (my $zsigproc = getvar('zsigproc')) { |
---|
| 441 | $zsig = `$zsigproc`; |
---|
| 442 | } elsif (!defined($zsig = get_zephyr_variable('zwrite-signature'))) { |
---|
| 443 | $zsig = ((getpwuid($<))[6]); |
---|
| 444 | $zsig =~ s/,.*//; |
---|
| 445 | } |
---|
[de3f641] | 446 | } |
---|
[77c87b2] | 447 | chomp($zsig); |
---|
| 448 | return $zsig; |
---|
[de3f641] | 449 | } |
---|
| 450 | |
---|
[7589f0a] | 451 | # Stub for owl::startup / BarnOwl::startup, so it isn't bound to the |
---|
| 452 | # startup command. This may be redefined in a user's configfile. |
---|
| 453 | sub startup |
---|
| 454 | { |
---|
| 455 | } |
---|
| 456 | |
---|
[ee183be] | 457 | 1; |
---|