source: functions.c @ d1d68e0

release-1.10release-1.8release-1.9
Last change on this file since d1d68e0 was 259e60a8, checked in by Anders Kaseorg <andersk@mit.edu>, 13 years ago
Remove the length limit on field values in :info
  • Property mode set to 100644
File size: 95.7 KB
Line 
1#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <signal.h>
5#include <netinet/in.h>
6#include <string.h>
7#include <time.h>
8#include <sys/types.h>
9#include <sys/stat.h>
10#include <sys/wait.h>
11#include <errno.h>
12#include <signal.h>
13#include "owl.h"
14#include "filterproc.h"
15
16char *owl_function_command(const char *cmdbuff)
17{
18  owl_function_debugmsg("executing command: %s", cmdbuff);
19  return owl_cmddict_execute(owl_global_get_cmddict(&g), 
20                             owl_global_get_context(&g), cmdbuff);
21}
22
23char *owl_function_command_argv(const char *const *argv, int argc)
24{
25  return owl_cmddict_execute_argv(owl_global_get_cmddict(&g),
26                                  owl_global_get_context(&g),
27                                  argv, argc);
28}
29
30void owl_function_command_norv(const char *cmdbuff)
31{
32  char *rv;
33  rv=owl_function_command(cmdbuff);
34  g_free(rv);
35}
36
37void owl_function_command_alias(const char *alias_from, const char *alias_to)
38{
39  owl_cmddict_add_alias(owl_global_get_cmddict(&g), alias_from, alias_to);
40}
41
42const owl_cmd *owl_function_get_cmd(const char *name)
43{
44  return owl_cmddict_find(owl_global_get_cmddict(&g), name);
45}
46
47void owl_function_show_commands(void)
48{
49  owl_list l;
50  owl_fmtext fm;
51
52  owl_fmtext_init_null(&fm);
53  owl_fmtext_append_bold(&fm, "Commands:  ");
54  owl_fmtext_append_normal(&fm, "(use 'show command <name>' for details)\n");
55  owl_list_create(&l);
56  owl_cmddict_get_names(owl_global_get_cmddict(&g), &l);
57  owl_fmtext_append_list(&fm, &l, "\n", owl_function_cmd_describe);
58  owl_fmtext_append_normal(&fm, "\n");
59  owl_function_popless_fmtext(&fm);
60  owl_list_cleanup(&l, g_free);
61  owl_fmtext_cleanup(&fm);
62}
63
64void owl_function_show_view(const char *viewname)
65{
66  const owl_view *v;
67  owl_fmtext fm;
68
69  /* we only have the one view right now */
70  v=owl_global_get_current_view(&g);
71  if (viewname && strcmp(viewname, owl_view_get_name(v))) {
72    owl_function_error("No view named '%s'", viewname);
73    return;
74  }
75
76  owl_fmtext_init_null(&fm);
77  owl_view_to_fmtext(v, &fm);
78  owl_function_popless_fmtext(&fm);
79  owl_fmtext_cleanup(&fm);
80}
81
82void owl_function_show_styles(void) {
83  owl_list l;
84  owl_fmtext fm;
85
86  owl_fmtext_init_null(&fm);
87  owl_fmtext_append_bold(&fm, "Styles:\n");
88  owl_list_create(&l);
89  owl_global_get_style_names(&g, &l);
90  owl_fmtext_append_list(&fm, &l, "\n", owl_function_style_describe);
91  owl_fmtext_append_normal(&fm, "\n");
92  owl_function_popless_fmtext(&fm);
93  owl_list_cleanup(&l, g_free);
94  owl_fmtext_cleanup(&fm);
95}
96
97static void _owl_function_timer_append_fmtext(gpointer data, gpointer user_data) {
98  owl_fmtext *fm = user_data;
99  owl_timer *timer = data;
100  char *str = g_strdup_printf("- %s: in %d seconds",
101                              timer->name ? timer->name : "(unnamed)",
102                              (int)(timer->time - time(NULL)));
103  owl_fmtext_append_normal(fm, str);
104  g_free(str);
105  if (timer->interval) {
106    str = g_strdup_printf(", repeat every %d seconds", timer->interval);
107    owl_fmtext_append_normal(fm, str);
108    g_free(str);
109  }
110  owl_fmtext_append_normal(fm, "\n");
111}
112
113void owl_function_show_timers(void) {
114  owl_fmtext fm;
115  GList **timers;
116
117  owl_fmtext_init_null(&fm);
118  owl_fmtext_append_bold(&fm, "Active timers:\n");
119
120  timers = owl_global_get_timerlist(&g);
121  g_list_foreach(*timers, _owl_function_timer_append_fmtext, &fm);
122
123  owl_function_popless_fmtext(&fm);
124  owl_fmtext_cleanup(&fm);
125}
126
127char *owl_function_style_describe(const char *name) {
128  const char *desc;
129  char *s;
130  const owl_style *style;
131  style = owl_global_get_style_by_name(&g, name);
132  if (style) {
133    desc = owl_style_get_description(style);
134  } else {
135    desc = "???";
136  }
137  s = g_strdup_printf("%-20s - %s%s", name,
138                      0 == owl_style_validate(style) ? "" : "[INVALID] ",
139                      desc);
140  return s;
141}
142
143char *owl_function_cmd_describe(const char *name)
144{
145  const owl_cmd *cmd = owl_cmddict_find(owl_global_get_cmddict(&g), name);
146  if (cmd) return owl_cmd_describe(cmd);
147  else return(NULL);
148}
149
150void owl_function_show_command(const char *name)
151{
152  owl_function_help_for_command(name);
153}
154
155void owl_function_show_license(void)
156{
157  const char *text;
158
159  text=""
160    "barnowl version " OWL_VERSION_STRING "\n"
161    "Copyright (c) 2006-2011 The BarnOwl Developers. All rights reserved.\n"
162    "Copyright (c) 2004 James Kretchmar. All rights reserved.\n"
163    "\n"
164    "Redistribution and use in source and binary forms, with or without\n"
165    "modification, are permitted provided that the following conditions are\n"
166    "met:\n"
167    "\n"
168    "   * Redistributions of source code must retain the above copyright\n"
169    "     notice, this list of conditions and the following disclaimer.\n"
170    "\n"
171    "   * Redistributions in binary form must reproduce the above copyright\n"
172    "     notice, this list of conditions and the following disclaimer in\n"
173    "     the documentation and/or other materials provided with the\n"
174    "     distribution.\n"
175    "\n"
176    "   * Redistributions in any form must be accompanied by information on\n"
177    "     how to obtain complete source code for the Owl software and any\n"
178    "     accompanying software that uses the Owl software. The source code\n"
179    "     must either be included in the distribution or be available for no\n"
180    "     more than the cost of distribution plus a nominal fee, and must be\n"
181    "     freely redistributable under reasonable conditions. For an\n"
182    "     executable file, complete source code means the source code for\n"
183    "     all modules it contains. It does not include source code for\n"
184    "     modules or files that typically accompany the major components of\n"
185    "     the operating system on which the executable file runs.\n"
186    "\n"
187    "THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n"
188    "IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n"
189    "WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n"
190    "NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n"
191    "LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n"
192    "CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n"
193    "SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n"
194    "BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n"
195    "WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n"
196    "OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n"
197    "IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n";
198  owl_function_popless_text(text);
199}
200
201void owl_function_show_quickstart(void)
202{
203    const char *message =
204    "Move between messages with the arrow keys, and press 'r' to reply.\n"
205    "For more info, press 'h' or visit http://barnowl.mit.edu/\n\n"
206#ifdef HAVE_LIBZEPHYR
207    "@b(Zephyr:)\n"
208    "To send a message to a user, type ':zwrite @b(username)'. You can also\n"
209    "press 'z' and then type the username. To subscribe to a class, type\n"
210    "':sub @b(class)', and then type ':zwrite -c @b(class)' to send.\n\n"
211#endif
212    "@b(AIM:)\n"
213    "Log in to AIM with ':aimlogin @b(screenname)'. Use ':aimwrite @b(screenname)',\n"
214    "or 'a' and then the screen name, to send someone a message.\n\n"
215    ;
216
217    if (owl_perlconfig_is_function("BarnOwl::Hooks::_get_quickstart")) {
218        char *perlquickstart = owl_perlconfig_execute("BarnOwl::Hooks::_get_quickstart()");
219        if (perlquickstart) {
220            char *result = g_strdup_printf("%s%s", message, perlquickstart);
221            owl_function_adminmsg("BarnOwl Quickstart", result);
222            g_free(result);
223            g_free(perlquickstart);
224            return;
225        }
226    }
227    owl_function_adminmsg("BarnOwl Quickstart", message);
228}
229
230
231/* Create an admin message, append it to the global list of messages
232 * and redisplay if necessary.
233 */
234void owl_function_adminmsg(const char *header, const char *body)
235{
236  owl_message *m;
237
238  m=g_new(owl_message, 1);
239  owl_message_create_admin(m, header, body);
240 
241  /* add it to the global list and current view */
242  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
243  owl_view_consider_message(owl_global_get_current_view(&g), m);
244
245  /* do followlast if necessary */
246  if (owl_global_should_followlast(&g)) owl_function_lastmsg_noredisplay();
247
248  /* redisplay etc. */
249  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
250}
251
252/* Queues outgoing zephyrs; if z sends to n people, queue n messages
253 * (except in case of cc). If there are no recipients queues 1
254 * message.
255 */
256void owl_function_add_outgoing_zephyrs(const owl_zwrite *z)
257{
258  if (z->cc || owl_zwrite_get_numrecips(z) == 0) {
259    /* create the message */
260    owl_message *m = g_new(owl_message, 1);
261    owl_message_create_from_zwrite(m, z, owl_zwrite_get_message(z), 0);
262
263    owl_global_messagequeue_addmsg(&g, m);
264  } else {
265    int i;
266    for (i = 0; i < owl_zwrite_get_numrecips(z); i++) {
267      /* create the message */
268      owl_message *m = g_new(owl_message, 1);
269      owl_message_create_from_zwrite(m, z, owl_zwrite_get_message(z), i);
270
271      owl_global_messagequeue_addmsg(&g, m);
272    }
273  }
274}
275
276/* Create an outgoing AIM message, returns a pointer to the created
277 * message or NULL if we're not logged into AIM (and thus unable to
278 * create the message).  Does not put it on the global queue.  Use
279 * owl_global_messagequeue_addmsg() for that.
280 */
281owl_message *owl_function_make_outgoing_aim(const char *body, const char *to)
282{
283  owl_message *m;
284
285  /* error if we're not logged into aim */
286  if (!owl_global_is_aimloggedin(&g)) return(NULL);
287 
288  m=g_new(owl_message, 1);
289  owl_message_create_aim(m,
290                         owl_global_get_aim_screenname(&g),
291                         to,
292                         body,
293                         OWL_MESSAGE_DIRECTION_OUT,
294                         0);
295  return(m);
296}
297
298/* Create an outgoing loopback message and return a pointer to it.
299 * Does not append it to the global queue, use
300 * owl_global_messagequeue_addmsg() for that.
301 */
302owl_message *owl_function_make_outgoing_loopback(const char *body)
303{
304  owl_message *m;
305
306  /* create the message */
307  m=g_new(owl_message, 1);
308  owl_message_create_loopback(m, body);
309  owl_message_set_direction_out(m);
310
311  return(m);
312}
313
314void owl_function_start_edit_win(const char *line, void (*callback)(owl_editwin *), void *data, void (*cleanup)(void *))
315{
316  owl_editwin *e;
317  owl_context *ctx;
318  char *s;
319
320  /* create and setup the editwin */
321  e = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_MULTILINE,
322                                   owl_global_get_msg_history(&g));
323  owl_editwin_set_dotsend(e);
324  s = g_strdup_printf("----> %s\n", line);
325  owl_editwin_set_locktext(e, s);
326  g_free(s);
327
328  owl_editwin_set_cbdata(e, data, cleanup);
329  owl_editwin_set_callback(e, callback);
330  ctx = owl_editcontext_new(OWL_CTX_EDITMULTI, e, "editmulti",
331                            owl_global_deactivate_editcontext, &g);
332  owl_global_push_context_obj(&g, ctx);
333
334}
335
336static void owl_function_write_setup(const char *noun)
337{
338
339  if (!owl_global_get_lockout_ctrld(&g))
340    owl_function_makemsg("Type your %s below.  "
341                         "End with ^D or a dot on a line by itself."
342                         "  ^C will quit.", noun);
343  else
344    owl_function_makemsg("Type your %s below.  "
345                         "End with a dot on a line by itself.  ^C will quit.",
346                         noun);
347}
348
349void owl_function_zwrite_setup(owl_zwrite *z)
350{
351  /* send a ping if necessary */
352  if (owl_global_is_txping(&g)) {
353    owl_zwrite_send_ping(z);
354  }
355
356
357  owl_function_write_setup("zephyr");
358  owl_function_start_edit_win(z->zwriteline,
359                              &owl_callback_zwrite,
360                              z, (void(*)(void*))owl_zwrite_delete);
361}
362
363void owl_function_aimwrite_setup(const char *to)
364{
365  /* TODO: We probably actually want an owl_aimwrite object like
366   * owl_zwrite. */
367  char *line = g_strdup_printf("aimwrite %s", to);
368  owl_function_write_setup("message");
369  owl_function_start_edit_win(line,
370                              &owl_callback_aimwrite,
371                              g_strdup(to),
372                              g_free);
373  g_free(line);
374}
375
376void owl_function_loopwrite_setup(void)
377{
378  owl_function_write_setup("message");
379  owl_function_start_edit_win("loopwrite",
380                              &owl_callback_loopwrite,
381                              NULL, NULL);
382}
383
384void owl_callback_zwrite(owl_editwin *e) {
385  owl_zwrite *z = owl_editwin_get_cbdata(e);
386  owl_function_zwrite(z, owl_editwin_get_text(e));
387}
388
389/* send, log and display outgoing zephyrs.  If 'msg' is NULL the
390 * message is expected to be set from the zwrite line itself
391 */
392#ifdef HAVE_LIBZEPHYR
393void owl_function_zwrite(owl_zwrite *z, const char *msg)
394{
395  int ret;
396
397  if(strcmp(z->cmd, "zcrypt") == 0) {
398    owl_function_zcrypt(z, msg);
399    return;
400  }
401
402  /* create the zwrite and send the message */
403  owl_zwrite_populate_zsig(z);
404  if (msg) {
405    owl_zwrite_set_message(z, msg);
406  }
407  ret = owl_zwrite_send_message(z);
408  if (ret != 0) {
409    owl_function_makemsg("Error sending zephyr: %s", error_message(ret));
410    return;
411  }
412  owl_function_makemsg("Waiting for ack...");
413
414  /* If it's personal */
415  if (owl_zwrite_is_personal(z)) {
416    /* create the outgoing message */
417    owl_function_add_outgoing_zephyrs(z);
418  }
419}
420#else
421void owl_function_zwrite(owl_zwrite *z, const char *msg) {
422}
423#endif
424
425/* send, log and display outgoing zcrypt zephyrs.  If 'msg' is NULL
426 * the message is expected to be set from the zwrite line itself
427 */
428void owl_function_zcrypt(owl_zwrite *z, const char *msg)
429{
430  char *cryptmsg;
431  const char *argv[7];
432  char *zcrypt;
433  int rv, status;
434  char *old_msg;
435
436  /* create the zwrite and send the message */
437  owl_zwrite_populate_zsig(z);
438  if (msg) {
439    owl_zwrite_set_message(z, msg);
440  }
441  old_msg = g_strdup(owl_zwrite_get_message(z));
442
443  zcrypt = g_strdup_printf("%s/zcrypt", owl_get_bindir());
444  argv[0] = "zcrypt";
445  argv[1] = "-E";
446  argv[2] = "-c"; argv[3] = owl_zwrite_get_class(z);
447  argv[4] = "-i"; argv[5] = owl_zwrite_get_instance(z);
448  argv[6] = NULL;
449
450  rv = call_filter(zcrypt, argv, owl_zwrite_get_message(z), &cryptmsg, &status);
451
452  g_free(zcrypt);
453
454  if (rv || status) {
455    g_free(cryptmsg);
456    g_free(old_msg);
457    owl_function_error("Error in zcrypt, possibly no key found.  Message not sent.");
458    owl_function_beep();
459    return;
460  }
461
462  owl_zwrite_set_message_raw(z, cryptmsg);
463  owl_zwrite_set_opcode(z, "crypt");
464
465  owl_zwrite_send_message(z);
466  owl_function_makemsg("Waiting for ack...");
467
468  /* If it's personal */
469  if (owl_zwrite_is_personal(z)) {
470    /* Create the outgoing message. Restore the un-crypted message for display. */
471    owl_zwrite_set_message_raw(z, old_msg);
472    owl_function_add_outgoing_zephyrs(z);
473  }
474
475  /* free the zwrite */
476  g_free(cryptmsg);
477}
478
479void owl_callback_aimwrite(owl_editwin *e) {
480  char *to = owl_editwin_get_cbdata(e);
481  owl_function_aimwrite(to, owl_editwin_get_text(e), true);
482}
483
484void owl_function_aimwrite(const char *to, const char *msg, bool unwrap)
485{
486  int ret;
487  char *format_msg;
488  owl_message *m;
489
490  /* make a formatted copy of the message */
491  format_msg = g_strdup(msg);
492  if (unwrap)
493    owl_text_wordunwrap(format_msg);
494 
495  /* send the message */
496  ret=owl_aim_send_im(to, format_msg);
497  if (!ret) {
498    owl_function_makemsg("AIM message sent.");
499  } else {
500    owl_function_error("Could not send AIM message.");
501  }
502
503  /* create the outgoing message */
504  m=owl_function_make_outgoing_aim(msg, to);
505
506  if (m) {
507    owl_global_messagequeue_addmsg(&g, m);
508  } else {
509    owl_function_error("Could not create outgoing AIM message");
510  }
511
512  g_free(format_msg);
513}
514
515void owl_function_send_aimawymsg(const char *to, const char *msg)
516{
517  int ret;
518  char *format_msg;
519  owl_message *m;
520
521  /* make a formatted copy of the message */
522  format_msg=g_strdup(msg);
523  owl_text_wordunwrap(format_msg);
524 
525  /* send the message */
526  ret=owl_aim_send_awaymsg(to, format_msg);
527  if (!ret) {
528    /* owl_function_makemsg("AIM message sent."); */
529  } else {
530    owl_function_error("Could not send AIM message.");
531  }
532
533  /* create the message */
534  m=owl_function_make_outgoing_aim(msg, to);
535  if (m) {
536    owl_global_messagequeue_addmsg(&g, m);
537  } else {
538    owl_function_error("Could not create AIM message");
539  }
540  g_free(format_msg);
541}
542
543void owl_callback_loopwrite(owl_editwin *e) {
544  owl_function_loopwrite(owl_editwin_get_text(e));
545}
546
547void owl_function_loopwrite(const char *msg)
548{
549  owl_message *min, *mout;
550
551  /* create a message and put it on the message queue.  This simulates
552   * an incoming message */
553  min=g_new(owl_message, 1);
554  mout=owl_function_make_outgoing_loopback(msg);
555
556  if (owl_global_is_displayoutgoing(&g)) {
557    owl_global_messagequeue_addmsg(&g, mout);
558  } else {
559    owl_message_delete(mout);
560  }
561
562  owl_message_create_loopback(min, msg);
563  owl_message_set_direction_in(min);
564  owl_global_messagequeue_addmsg(&g, min);
565
566  /* fake a makemsg */
567  owl_function_makemsg("loopback message sent");
568}
569
570/* If filter is non-null, looks for the next message matching
571 * that filter.  If skip_deleted, skips any deleted messages.
572 * If last_if_none, will stop at the last message in the view
573 * if no matching messages are found.  */
574void owl_function_nextmsg_full(const char *filter, int skip_deleted, int last_if_none)
575{
576  int curmsg, i, viewsize, found;
577  const owl_view *v;
578  const owl_filter *f = NULL;
579  const owl_message *m;
580
581  v=owl_global_get_current_view(&g);
582
583  if (filter) {
584    f=owl_global_get_filter(&g, filter);
585    if (!f) {
586      owl_function_error("No %s filter defined", filter);
587      return;
588    }
589  }
590
591  curmsg=owl_global_get_curmsg(&g);
592  viewsize=owl_view_get_size(v);
593  found=0;
594
595  /* just check to make sure we're in bounds... */
596  if (curmsg>viewsize-1) curmsg=viewsize-1;
597  if (curmsg<0) curmsg=0;
598
599  for (i=curmsg+1; i<viewsize; i++) {
600    m=owl_view_get_element(v, i);
601    if (skip_deleted && owl_message_is_delete(m)) continue;
602    if (f && !owl_filter_message_match(f, m)) continue;
603    found = 1;
604    break;
605  }
606
607  if (i>owl_view_get_size(v)-1) i=owl_view_get_size(v)-1;
608  if (i<0) i=0;
609
610  if (!found) {
611    owl_function_makemsg("already at last%s message%s%s%s",
612                         skip_deleted?" non-deleted":"",
613                         filter?" in ":"", filter?filter:"",
614                         owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g)) ?
615                         ", press Enter to scroll" : "");
616    /* if (!skip_deleted) owl_function_beep(); */
617  }
618
619  if (last_if_none || found) {
620    owl_global_set_curmsg(&g, i);
621    owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
622    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
623    owl_global_set_direction_downwards(&g);
624  }
625}
626
627void owl_function_prevmsg_full(const char *filter, int skip_deleted, int first_if_none)
628{
629  int curmsg, i, found;
630  const owl_view *v;
631  const owl_filter *f = NULL;
632  const owl_message *m;
633
634  v=owl_global_get_current_view(&g);
635
636  if (filter) {
637    f=owl_global_get_filter(&g, filter);
638    if (!f) {
639      owl_function_error("No %s filter defined", filter);
640      return;
641    }
642  }
643
644  curmsg=owl_global_get_curmsg(&g);
645  found=0;
646
647  /* just check to make sure we're in bounds... */
648  if (curmsg<0) curmsg=0;
649
650  for (i=curmsg-1; i>=0; i--) {
651    m=owl_view_get_element(v, i);
652    if (skip_deleted && owl_message_is_delete(m)) continue;
653    if (f && !owl_filter_message_match(f, m)) continue;
654    found = 1;
655    break;
656  }
657
658  if (i<0) i=0;
659
660  if (!found) {
661    owl_function_makemsg("already at first%s message%s%s",
662                         skip_deleted?" non-deleted":"",
663                         filter?" in ":"", filter?filter:"");
664    /* if (!skip_deleted) owl_function_beep(); */
665  }
666
667  if (first_if_none || found) {
668    owl_global_set_curmsg(&g, i);
669    owl_function_calculate_topmsg(OWL_DIRECTION_UPWARDS);
670    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
671    owl_global_set_direction_upwards(&g);
672  }
673}
674
675void owl_function_nextmsg(void)
676{
677  owl_function_nextmsg_full(NULL, 0, 1);
678}
679
680void owl_function_prevmsg(void)
681{
682  owl_function_prevmsg_full(NULL, 0, 1);
683}
684
685void owl_function_nextmsg_notdeleted(void)
686{
687  owl_function_nextmsg_full(NULL, 1, 1);
688}
689
690void owl_function_prevmsg_notdeleted(void)
691{
692  owl_function_prevmsg_full(NULL, 1, 1);
693}
694
695/* if move_after is 1, moves after the delete */
696void owl_function_deletecur(int move_after)
697{
698  int curmsg;
699  owl_view *v;
700
701  v=owl_global_get_current_view(&g);
702
703  /* bail if there's no current message */
704  if (owl_view_get_size(v) < 1) {
705    owl_function_error("No current message to delete");
706    return;
707  }
708
709  /* mark the message for deletion */
710  curmsg=owl_global_get_curmsg(&g);
711  owl_view_delete_element(v, curmsg);
712
713  if (move_after) {
714    /* move the poiner in the appropriate direction
715     * to the next undeleted msg */
716    if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) {
717      owl_function_prevmsg_notdeleted();
718    } else {
719      owl_function_nextmsg_notdeleted();
720    }
721  }
722}
723
724void owl_function_undeletecur(int move_after)
725{
726  int curmsg;
727  owl_view *v;
728
729  v=owl_global_get_current_view(&g);
730 
731  if (owl_view_get_size(v) < 1) {
732    owl_function_error("No current message to undelete");
733    return;
734  }
735  curmsg=owl_global_get_curmsg(&g);
736
737  owl_view_undelete_element(v, curmsg);
738
739  if (move_after) {
740    if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) {
741      if (curmsg>0) {
742        owl_function_prevmsg();
743      } else {
744        owl_function_nextmsg();
745      }
746    } else {
747      owl_function_nextmsg();
748    }
749  }
750
751  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
752}
753
754void owl_function_expunge(void)
755{
756  int curmsg;
757  const owl_message *m;
758  owl_messagelist *ml;
759  owl_view *v;
760  int lastmsgid=0;
761
762  curmsg=owl_global_get_curmsg(&g);
763  v=owl_global_get_current_view(&g);
764  ml=owl_global_get_msglist(&g);
765
766  m=owl_view_get_element(v, curmsg);
767  if (m) lastmsgid = owl_message_get_id(m);
768
769  /* expunge the message list */
770  owl_messagelist_expunge(ml);
771
772  /* update all views (we only have one right now) */
773  owl_view_recalculate(v);
774
775  /* find where the new position should be
776     (as close as possible to where we last where) */
777  curmsg = owl_view_get_nearest_to_msgid(v, lastmsgid);
778  if (curmsg>owl_view_get_size(v)-1) curmsg = owl_view_get_size(v)-1;
779  if (curmsg<0) curmsg = 0;
780  owl_global_set_curmsg(&g, curmsg);
781  owl_function_calculate_topmsg(OWL_DIRECTION_NONE);
782  /* if there are no messages set the direction to down in case we
783     delete everything upwards */
784  owl_global_set_direction_downwards(&g);
785 
786  owl_function_makemsg("Messages expunged");
787  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
788}
789
790void owl_function_firstmsg(void)
791{
792  owl_global_set_curmsg(&g, 0);
793  owl_global_set_topmsg(&g, 0);
794  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
795  owl_global_set_direction_downwards(&g);
796}
797
798void owl_function_lastmsg_noredisplay(void)
799{
800  int oldcurmsg, curmsg;
801  const owl_view *v;
802
803  v=owl_global_get_current_view(&g);
804  oldcurmsg=owl_global_get_curmsg(&g);
805  curmsg=owl_view_get_size(v)-1; 
806  if (curmsg<0) curmsg=0;
807  owl_global_set_curmsg(&g, curmsg);
808  if (oldcurmsg < curmsg) {
809    owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
810  } else if (curmsg<owl_view_get_size(v)) {
811    /* If already at the end, blank the screen and move curmsg
812     * past the end of the messages. */
813    owl_global_set_topmsg(&g, curmsg+1);
814    owl_global_set_curmsg(&g, curmsg+1);
815  } 
816  /* owl_mainwin_redisplay(owl_global_get_mainwin(&g)); */
817  owl_global_set_direction_downwards(&g);
818}
819
820void owl_function_lastmsg(void)
821{
822  owl_function_lastmsg_noredisplay();
823  owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 
824}
825
826void owl_function_shift_right(void)
827{
828  owl_global_set_rightshift(&g, owl_global_get_rightshift(&g)+10);
829}
830
831void owl_function_shift_left(void)
832{
833  int shift;
834
835  shift=owl_global_get_rightshift(&g);
836  if (shift > 0) {
837    owl_global_set_rightshift(&g, MAX(shift - 10, 0));
838  } else {
839    owl_function_beep();
840    owl_function_makemsg("Already full left");
841  }
842}
843
844void owl_function_unsuball(void)
845{
846  unsuball();
847  owl_function_makemsg("Unsubscribed from all messages.");
848}
849
850
851/* Load zephyr subscriptions from the named 'file' and load zephyr's
852 * default subscriptions as well.  An error message is printed if
853 * 'file' can't be opened or if zephyr reports an error in
854 * subscribing.
855 *
856 * If 'file' is NULL, this look for the default filename
857 * $HOME/.zephyr.subs.  If the file can not be opened in this case
858 * only, no error message is printed.
859 */
860void owl_function_loadsubs(const char *file)
861{
862  int ret, ret2;
863  const char *foo;
864  char *path;
865
866  if (file==NULL) {
867    ret=owl_zephyr_loadsubs(NULL, 0);
868  } else {
869    path = owl_util_makepath(file);
870    ret=owl_zephyr_loadsubs(path, 1);
871    g_free(path);
872  }
873
874  /* for backwards compatibility for now */
875  ret2=owl_zephyr_loaddefaultsubs();
876
877  if (!owl_context_is_interactive(owl_global_get_context(&g))) return;
878
879  foo=file?file:"file";
880  if (ret==0 && ret2==0) {
881    if (!file) {
882      owl_function_makemsg("Subscribed to messages.");
883    } else {
884      owl_function_makemsg("Subscribed to messages from %s", file);
885    }
886  } else if (ret==-1) {
887    owl_function_error("Could not read %s", foo);
888  } else {
889    owl_function_error("Error subscribing to messages");
890  }
891}
892
893void owl_function_loadloginsubs(const char *file)
894{
895  int ret;
896
897  ret=owl_zephyr_loadloginsubs(file);
898
899  if (!owl_context_is_interactive(owl_global_get_context(&g))) return;
900  if (ret==0) {
901  } else if (ret==-1) {
902    owl_function_error("Could not open file for login subscriptions.");
903  } else {
904    owl_function_error("Error subscribing to login messages from file.");
905  }
906}
907
908void owl_callback_aimlogin(owl_editwin *e) {
909  char *user = owl_editwin_get_cbdata(e);
910  owl_function_aimlogin(user,
911                        owl_editwin_get_text(e));
912}
913
914void owl_function_aimlogin(const char *user, const char *passwd) {
915  int ret;
916
917  /* clear the buddylist */
918  owl_buddylist_clear(owl_global_get_buddylist(&g));
919
920  /* try to login */
921  ret=owl_aim_login(user, passwd);
922  if (ret) owl_function_makemsg("Warning: login for %s failed.\n", user);
923}
924
925void owl_function_suspend(void)
926{
927  endwin();
928  printf("\n");
929  kill(getpid(), SIGSTOP);
930
931  /* resize to reinitialize all the windows when we come back */
932  owl_command_resize();
933}
934
935void owl_function_zaway_toggle(void)
936{
937  if (!owl_global_is_zaway(&g)) {
938    owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g));
939    owl_function_zaway_on();
940  } else {
941    owl_function_zaway_off();
942  }
943}
944
945void owl_function_zaway_on(void)
946{
947  owl_global_set_zaway_on(&g);
948  owl_function_makemsg("zaway set (%s)", owl_global_get_zaway_msg(&g));
949}
950
951void owl_function_zaway_off(void)
952{
953  owl_global_set_zaway_off(&g);
954  owl_function_makemsg("zaway off");
955}
956
957void owl_function_aaway_toggle(void)
958{
959  if (!owl_global_is_aaway(&g)) {
960    owl_global_set_aaway_msg(&g, owl_global_get_aaway_msg_default(&g));
961    owl_function_aaway_on();
962  } else {
963    owl_function_aaway_off();
964  }
965}
966
967void owl_function_aaway_on(void)
968{
969  owl_global_set_aaway_on(&g);
970  /* owl_aim_set_awaymsg(owl_global_get_zaway_msg(&g)); */
971  owl_function_makemsg("AIM away set (%s)", owl_global_get_aaway_msg(&g));
972}
973
974void owl_function_aaway_off(void)
975{
976  owl_global_set_aaway_off(&g);
977  /* owl_aim_set_awaymsg(""); */
978  owl_function_makemsg("AIM away off");
979}
980
981void owl_function_quit(void)
982{
983  char *ret;
984 
985  /* zlog out if we need to */
986  if (owl_global_is_havezephyr(&g) &&
987      owl_global_is_shutdownlogout(&g)) {
988    owl_zephyr_zlog_out();
989  }
990
991  /* execute the commands in shutdown */
992  ret = owl_perlconfig_execute("BarnOwl::Hooks::_shutdown();");
993  g_free(ret);
994
995  /* signal our child process, if any */
996  if (owl_global_get_newmsgproc_pid(&g)) {
997    kill(owl_global_get_newmsgproc_pid(&g), SIGHUP);
998  }
999 
1000  /* Quit AIM */
1001  if (owl_global_is_aimloggedin(&g)) {
1002    owl_aim_logout();
1003  }
1004
1005  owl_function_debugmsg("Quitting Owl");
1006  owl_select_quit_loop();
1007}
1008
1009void owl_function_calculate_topmsg(int direction)
1010{
1011  int recwinlines, topmsg, curmsg;
1012  const owl_view *v;
1013
1014  v=owl_global_get_current_view(&g);
1015  curmsg=owl_global_get_curmsg(&g);
1016  topmsg=owl_global_get_topmsg(&g);
1017  recwinlines=owl_global_get_recwin_lines(&g);
1018
1019  /*
1020  if (owl_view_get_size(v) < 1) {
1021    return;
1022  }
1023  */
1024
1025  switch (owl_global_get_scrollmode(&g)) {
1026  case OWL_SCROLLMODE_TOP:
1027    topmsg = owl_function_calculate_topmsg_top(direction, v, curmsg, topmsg, recwinlines);
1028    break;
1029  case OWL_SCROLLMODE_NEARTOP:
1030    topmsg = owl_function_calculate_topmsg_neartop(direction, v, curmsg, topmsg, recwinlines);
1031    break;
1032  case OWL_SCROLLMODE_CENTER:
1033    topmsg = owl_function_calculate_topmsg_center(direction, v, curmsg, topmsg, recwinlines);
1034    break;
1035  case OWL_SCROLLMODE_PAGED:
1036    topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 0);
1037    break;
1038  case OWL_SCROLLMODE_PAGEDCENTER:
1039    topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 1);
1040    break;
1041  case OWL_SCROLLMODE_NORMAL:
1042  default:
1043    topmsg = owl_function_calculate_topmsg_normal(direction, v, curmsg, topmsg, recwinlines);
1044  }
1045  owl_function_debugmsg("Calculated a topmsg of %i", topmsg);
1046  owl_global_set_topmsg(&g, topmsg);
1047}
1048
1049/* Returns what the new topmsg should be. 
1050 * Passed the last direction of movement,
1051 * the current view,
1052 * the current message number in the view,
1053 * the top message currently being displayed,
1054 * and the number of lines in the recwin.
1055 */
1056int owl_function_calculate_topmsg_top(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
1057{
1058  return(curmsg);
1059}
1060
1061int owl_function_calculate_topmsg_neartop(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
1062{
1063  if (curmsg>0 
1064      && (owl_message_get_numlines(owl_view_get_element(v, curmsg-1))
1065          <  recwinlines/2)) {
1066    return(curmsg-1);
1067  } else {
1068    return(curmsg);
1069  }
1070}
1071 
1072int owl_function_calculate_topmsg_center(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
1073{
1074  int i, last, lines;
1075
1076  last = curmsg;
1077  lines = 0;
1078  for (i=curmsg-1; i>=0; i--) {
1079    lines += owl_message_get_numlines(owl_view_get_element(v, i));
1080    if (lines > recwinlines/2) break;
1081    last = i;
1082  }
1083  return(last);
1084}
1085 
1086int owl_function_calculate_topmsg_paged(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines, int center_on_page)
1087{
1088  int i, last, lines, savey;
1089 
1090  /* If we're off the top of the screen, scroll up such that the
1091   * curmsg is near the botton of the screen. */
1092  if (curmsg < topmsg) {
1093    last = curmsg;
1094    lines = 0;
1095    for (i=curmsg; i>=0; i--) {
1096      lines += owl_message_get_numlines(owl_view_get_element(v, i));
1097      if (lines > recwinlines) break;
1098    last = i;
1099    }
1100    if (center_on_page) {
1101      return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines));
1102    } else {
1103      return(last);
1104    }
1105  }
1106
1107  /* Find number of lines from top to bottom of curmsg (store in savey) */
1108  savey=0;
1109  for (i=topmsg; i<=curmsg; i++) {
1110    savey+=owl_message_get_numlines(owl_view_get_element(v, i));
1111  }
1112
1113  /* if we're off the bottom of the screen, scroll down */
1114  if (savey > recwinlines) {
1115    if (center_on_page) {
1116      return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines));
1117    } else {
1118      return(curmsg);
1119    }
1120  }
1121
1122  /* else just stay as we are... */
1123  return(topmsg);
1124}
1125
1126int owl_function_calculate_topmsg_normal(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
1127{
1128  int savey, i, foo, y;
1129
1130  if (curmsg<0) return(topmsg);
1131   
1132  /* If we're off the top of the screen then center */
1133  if (curmsg<topmsg) {
1134    topmsg=owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines);
1135  }
1136
1137  /* If curmsg is so far past topmsg that there are more messages than
1138     lines, skip the line counting that follows because we're
1139     certainly off screen.  */
1140  savey=curmsg-topmsg;
1141  if (savey <= recwinlines) {
1142    /* Find number of lines from top to bottom of curmsg (store in savey) */
1143    savey = 0;
1144    for (i=topmsg; i<=curmsg; i++) {
1145      savey+=owl_message_get_numlines(owl_view_get_element(v, i));
1146    }
1147  }
1148
1149  /* If we're off the bottom of the screen, set the topmsg to curmsg
1150   * and scroll upwards */
1151  if (savey > recwinlines) {
1152    topmsg=curmsg;
1153    savey=owl_message_get_numlines(owl_view_get_element(v, curmsg));
1154    direction=OWL_DIRECTION_UPWARDS;
1155  }
1156 
1157  /* If our bottom line is less than 1/4 down the screen then scroll up */
1158  if (direction == OWL_DIRECTION_UPWARDS || direction == OWL_DIRECTION_NONE) {
1159    if (savey < (recwinlines / 4)) {
1160      y=0;
1161      for (i=curmsg; i>=0; i--) {
1162        foo=owl_message_get_numlines(owl_view_get_element(v, i));
1163        /* will we run the curmsg off the screen? */
1164        if ((foo+y) >= recwinlines) {
1165          i++;
1166          if (i>curmsg) i=curmsg;
1167          break;
1168        }
1169        /* have saved 1/2 the screen space? */
1170        y+=foo;
1171        if (y > (recwinlines / 2)) break;
1172      }
1173      if (i<0) i=0;
1174      return(i);
1175    }
1176  }
1177
1178  if (direction == OWL_DIRECTION_DOWNWARDS || direction == OWL_DIRECTION_NONE) {
1179    /* If curmsg bottom line is more than 3/4 down the screen then scroll down */
1180    if (savey > ((recwinlines * 3)/4)) {
1181      y=0;
1182      /* count lines from the top until we can save 1/2 the screen size */
1183      for (i=topmsg; i<curmsg; i++) {
1184        y+=owl_message_get_numlines(owl_view_get_element(v, i));
1185        if (y > (recwinlines / 2)) break;
1186      }
1187      if (i==curmsg) {
1188        i--;
1189      }
1190      return(i+1);
1191    }
1192  }
1193
1194  return(topmsg);
1195}
1196
1197void owl_function_resize(void)
1198{
1199  owl_global_set_resize_pending(&g);
1200}
1201
1202void G_GNUC_PRINTF(1, 2) owl_function_debugmsg(const char *fmt, ...)
1203{
1204  FILE *file;
1205  time_t now;
1206  va_list ap;
1207  va_start(ap, fmt);
1208
1209  if (!owl_global_is_debug_fast(&g))
1210    return;
1211
1212  file = owl_global_get_debug_file_handle(&g);
1213  if (!file) /* XXX should report this */
1214    return;
1215
1216  now = time(NULL);
1217
1218  fprintf(file, "[%d -  %.24s - %lds]: ",
1219          (int) getpid(), ctime(&now), now - owl_global_get_starttime(&g));
1220  vfprintf(file, fmt, ap);
1221  putc('\n', file);
1222  fflush(file);
1223
1224  va_end(ap);
1225}
1226
1227void owl_function_beep(void)
1228{
1229  if (owl_global_is_bell(&g)) {
1230    beep();
1231  }
1232}
1233
1234int owl_function_subscribe(const char *class, const char *inst, const char *recip)
1235{
1236  int ret;
1237
1238  ret=owl_zephyr_sub(class, inst, recip);
1239  if (ret) {
1240    owl_function_error("Error subscribing.");
1241  } else {
1242    owl_function_makemsg("Subscribed.");
1243  }
1244  return(ret);
1245}
1246
1247void owl_function_unsubscribe(const char *class, const char *inst, const char *recip)
1248{
1249  int ret;
1250
1251  ret=owl_zephyr_unsub(class, inst, recip);
1252  if (ret) {
1253    owl_function_error("Error subscribing.");
1254  } else {
1255    owl_function_makemsg("Unsubscribed.");
1256  }
1257}
1258
1259static void _dirty_everything(owl_window *w) {
1260  if (!owl_window_is_realized(w))
1261    return;
1262  owl_window_dirty(w);
1263  owl_window_children_foreach(w, (GFunc)_dirty_everything, NULL);
1264}
1265
1266void owl_function_full_redisplay(void)
1267{
1268  /* Ask every widget to redraw itself. */
1269  _dirty_everything(owl_window_get_screen());
1270  /* Force ncurses to redisplay everything. */
1271  clearok(stdscr, TRUE);
1272}
1273
1274void owl_function_popless_text(const char *text)
1275{
1276  owl_popwin *pw;
1277  owl_viewwin *v;
1278
1279  if (owl_global_get_popwin(&g) || owl_global_get_viewwin(&g)) {
1280    owl_function_error("Popwin already in use.");
1281    return;
1282  }
1283  pw = owl_popwin_new();
1284  owl_global_set_popwin(&g, pw);
1285  owl_popwin_up(pw);
1286
1287  v = owl_viewwin_new_text(owl_popwin_get_content(pw), text);
1288  owl_global_set_viewwin(&g, v);
1289
1290  owl_global_push_context(&g, OWL_CTX_POPLESS, v, "popless", NULL);
1291}
1292
1293void owl_function_popless_fmtext(const owl_fmtext *fm)
1294{
1295  owl_popwin *pw;
1296  owl_viewwin *v;
1297
1298  if (owl_global_get_popwin(&g) || owl_global_get_viewwin(&g)) {
1299    owl_function_error("Popwin already in use.");
1300    return;
1301  }
1302  pw = owl_popwin_new();
1303  owl_global_set_popwin(&g, pw);
1304  owl_popwin_up(pw);
1305
1306  v = owl_viewwin_new_fmtext(owl_popwin_get_content(pw), fm);
1307  owl_global_set_viewwin(&g, v);
1308
1309  owl_global_push_context(&g, OWL_CTX_POPLESS, v, "popless", NULL);
1310}
1311
1312void owl_function_popless_file(const char *filename)
1313{
1314  owl_fmtext fm;
1315  FILE *file;
1316  char *s = NULL;
1317
1318  file=fopen(filename, "r");
1319  if (!file) {
1320    owl_function_error("Could not open file: %s", filename);
1321    return;
1322  }
1323
1324  owl_fmtext_init_null(&fm);
1325  while (owl_getline(&s, file))
1326    owl_fmtext_append_normal(&fm, s);
1327  g_free(s);
1328
1329  owl_function_popless_fmtext(&fm);
1330  owl_fmtext_cleanup(&fm);
1331  fclose(file);
1332}
1333
1334void owl_function_about(void)
1335{
1336  owl_function_popless_text(
1337    "This is barnowl version " OWL_VERSION_STRING ".\n\n"
1338    "barnowl is a fork of the Owl zephyr client, written and\n"
1339    "maintained by Alejandro Sedeno and Nelson Elhage at the\n"
1340    "Massachusetts Institute of Technology. \n"
1341    "\n"
1342    "Owl was written by James Kretchmar. The first version, 0.5, was\n"
1343    "released in March 2002.\n"
1344    "\n"
1345    "The name 'owl' was chosen in reference to the owls in the\n"
1346    "Harry Potter novels, who are tasked with carrying messages\n"
1347    "between Witches and Wizards. The name 'barnowl' was chosen\n"
1348    "because we feel our owls should live closer to our ponies.\n"
1349    "\n"
1350    "Copyright (c) 2006-2011 The BarnOwl Developers. All rights reserved.\n"
1351    "Copyright (c) 2004 James Kretchmar. All rights reserved.\n"
1352    "Copyright 2002 Massachusetts Institute of Technology\n"
1353    "\n"
1354    "This program is free software. You can redistribute it and/or\n"
1355    "modify under the terms of the Sleepycat License. Use the \n"
1356    "':show license' command to display the full license\n"
1357  );
1358}
1359
1360void owl_function_info(void)
1361{
1362  const owl_message *m;
1363  owl_fmtext fm, attrfm;
1364  const owl_view *v;
1365#ifdef HAVE_LIBZEPHYR
1366  const ZNotice_t *n;
1367#endif
1368
1369  owl_fmtext_init_null(&fm);
1370 
1371  v=owl_global_get_current_view(&g);
1372  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
1373  if (!m || owl_view_get_size(v)==0) {
1374    owl_function_error("No message selected\n");
1375    return;
1376  }
1377
1378  owl_fmtext_append_bold(&fm, "General Information:\n");
1379  owl_fmtext_appendf_normal(&fm, "  Msg Id    : %i\n", owl_message_get_id(m));
1380
1381  owl_fmtext_append_normal(&fm, "  Type      : ");
1382  owl_fmtext_append_bold(&fm, owl_message_get_type(m));
1383  owl_fmtext_append_normal(&fm, "\n");
1384
1385  if (owl_message_is_direction_in(m)) {
1386    owl_fmtext_append_normal(&fm, "  Direction : in\n");
1387  } else if (owl_message_is_direction_out(m)) {
1388    owl_fmtext_append_normal(&fm, "  Direction : out\n");
1389  } else if (owl_message_is_direction_none(m)) {
1390    owl_fmtext_append_normal(&fm, "  Direction : none\n");
1391  } else {
1392    owl_fmtext_append_normal(&fm, "  Direction : unknown\n");
1393  }
1394
1395  owl_fmtext_appendf_normal(&fm, "  Time      : %s\n", owl_message_get_timestr(m));
1396
1397  if (!owl_message_is_type_admin(m)) {
1398    owl_fmtext_appendf_normal(&fm, "  Sender    : %s\n", owl_message_get_sender(m));
1399    owl_fmtext_appendf_normal(&fm, "  Recipient : %s\n", owl_message_get_recipient(m));
1400  }
1401
1402  if (owl_message_is_type_zephyr(m)) {
1403    owl_fmtext_append_bold(&fm, "\nZephyr Specific Information:\n");
1404   
1405    owl_fmtext_appendf_normal(&fm, "  Class     : %s\n", owl_message_get_class(m));
1406    owl_fmtext_appendf_normal(&fm, "  Instance  : %s\n", owl_message_get_instance(m));
1407    owl_fmtext_appendf_normal(&fm, "  Opcode    : %s\n", owl_message_get_opcode(m));
1408#ifdef HAVE_LIBZEPHYR
1409    if (owl_message_is_direction_in(m)) {
1410      char *tmpbuff;
1411      int i, fields;
1412
1413      n=owl_message_get_notice(m);
1414
1415      if (!owl_message_is_pseudo(m)) {
1416        owl_fmtext_append_normal(&fm, "  Kind      : ");
1417        if (n->z_kind==UNSAFE) {
1418          owl_fmtext_append_normal(&fm, "UNSAFE\n");
1419        } else if (n->z_kind==UNACKED) {
1420          owl_fmtext_append_normal(&fm, "UNACKED\n");
1421        } else if (n->z_kind==ACKED) {
1422          owl_fmtext_append_normal(&fm, "ACKED\n");
1423        } else if (n->z_kind==HMACK) {
1424          owl_fmtext_append_normal(&fm, "HMACK\n");
1425        } else if (n->z_kind==HMCTL) {
1426          owl_fmtext_append_normal(&fm, "HMCTL\n");
1427        } else if (n->z_kind==SERVACK) {
1428          owl_fmtext_append_normal(&fm, "SERVACK\n");
1429        } else if (n->z_kind==SERVNAK) {
1430          owl_fmtext_append_normal(&fm, "SERVNACK\n");
1431        } else if (n->z_kind==CLIENTACK) {
1432          owl_fmtext_append_normal(&fm, "CLIENTACK\n");
1433        } else if (n->z_kind==STAT) {
1434          owl_fmtext_append_normal(&fm, "STAT\n");
1435        } else {
1436          owl_fmtext_append_normal(&fm, "ILLEGAL VALUE\n");
1437        }
1438      }
1439      owl_fmtext_appendf_normal(&fm, "  Host      : %s\n", owl_message_get_hostname(m));
1440
1441      if (!owl_message_is_pseudo(m)) {
1442        owl_fmtext_append_normal(&fm, "\n");
1443        owl_fmtext_appendf_normal(&fm, "  Port      : %i\n", ntohs(n->z_port));
1444        owl_fmtext_appendf_normal(&fm, "  Auth      : %s\n", owl_zephyr_get_authstr(n));
1445
1446        /* FIXME make these more descriptive */
1447        owl_fmtext_appendf_normal(&fm, "  Checkd Ath: %i\n", n->z_checked_auth);
1448        owl_fmtext_appendf_normal(&fm, "  Multi notc: %s\n", n->z_multinotice);
1449        owl_fmtext_appendf_normal(&fm, "  Num other : %i\n", n->z_num_other_fields);
1450        owl_fmtext_appendf_normal(&fm, "  Msg Len   : %i\n", n->z_message_len);
1451
1452        fields=owl_zephyr_get_num_fields(n);
1453        owl_fmtext_appendf_normal(&fm, "  Fields    : %i\n", fields);
1454
1455        for (i = 0; i < fields; i++) {
1456          tmpbuff = owl_zephyr_get_field_as_utf8(n, i + 1);
1457
1458          g_strdelimit(tmpbuff, "\n", '~');
1459          g_strdelimit(tmpbuff, "\r", '!');
1460
1461          owl_fmtext_appendf_normal(&fm, "  Field %i   : %s\n", i + 1, tmpbuff);
1462          g_free(tmpbuff);
1463        }
1464        owl_fmtext_appendf_normal(&fm, "  Default Fm: %s\n", n->z_default_format);
1465      }
1466
1467    }
1468#endif
1469  }
1470
1471  owl_fmtext_append_bold(&fm, "\nOwl Message Attributes:\n");
1472  owl_message_attributes_tofmtext(m, &attrfm);
1473  owl_fmtext_append_fmtext(&fm, &attrfm);
1474 
1475  owl_function_popless_fmtext(&fm);
1476  owl_fmtext_cleanup(&fm);
1477  owl_fmtext_cleanup(&attrfm);
1478}
1479
1480/* print the current message in a popup window.
1481 * Use the 'default' style regardless of whatever
1482 * style the user may be using
1483 */
1484void owl_function_curmsg_to_popwin(void)
1485{
1486  const owl_view *v;
1487  const owl_message *m;
1488  const owl_style *s;
1489  owl_fmtext fm;
1490
1491  v=owl_global_get_current_view(&g);
1492  s=owl_global_get_style_by_name(&g, "default");
1493
1494  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
1495
1496  if (!m || owl_view_get_size(v)==0) {
1497    owl_function_error("No current message");
1498    return;
1499  }
1500
1501  owl_fmtext_init_null(&fm);
1502  owl_style_get_formattext(s, &fm, m);
1503
1504  owl_function_popless_fmtext(&fm);
1505  owl_fmtext_cleanup(&fm);
1506}
1507
1508void owl_function_page_curmsg(int step)
1509{
1510  /* scroll down or up within the current message IF the message is truncated */
1511
1512  int offset, curmsg, lines;
1513  const owl_view *v;
1514  owl_message *m;
1515
1516  offset=owl_global_get_curmsg_vert_offset(&g);
1517  v=owl_global_get_current_view(&g);
1518  curmsg=owl_global_get_curmsg(&g);
1519  m=owl_view_get_element(v, curmsg);
1520  if (!m || owl_view_get_size(v)==0) return;
1521  lines=owl_message_get_numlines(m);
1522
1523  if (offset==0) {
1524    /* Bail if the curmsg isn't the last one displayed */
1525    if (curmsg != owl_mainwin_get_last_msg(owl_global_get_mainwin(&g))) {
1526      owl_function_makemsg("The entire message is already displayed");
1527      return;
1528    }
1529   
1530    /* Bail if we're not truncated */
1531    if (!owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) {
1532      owl_function_makemsg("The entire message is already displayed");
1533      return;
1534    }
1535  }
1536 
1537 
1538  /* don't scroll past the last line */
1539  if (step>0) {
1540    if (offset+step > lines-1) {
1541      owl_global_set_curmsg_vert_offset(&g, lines-1);
1542    } else {
1543      owl_global_set_curmsg_vert_offset(&g, offset+step);
1544    }
1545  }
1546
1547  /* would we be before the beginning of the message? */
1548  if (step<0) {
1549    if (offset+step<0) {
1550      owl_global_set_curmsg_vert_offset(&g, 0);
1551    } else {
1552      owl_global_set_curmsg_vert_offset(&g, offset+step);
1553    }
1554  }
1555 
1556  /* redisplay */
1557  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1558}
1559
1560void owl_function_resize_typwin(int newsize)
1561{
1562  owl_global_set_typwin_lines(&g, newsize);
1563  owl_mainpanel_layout_contents(&g.mainpanel);
1564}
1565
1566void owl_function_mainwin_pagedown(void)
1567{
1568  int i;
1569
1570  i=owl_mainwin_get_last_msg(owl_global_get_mainwin(&g));
1571  if (i<0) return;
1572  if (owl_mainwin_is_last_msg_truncated(owl_global_get_mainwin(&g))
1573      && (owl_global_get_curmsg(&g) < i)
1574      && (i>0)) {
1575    i--;
1576  }
1577  owl_global_set_curmsg(&g, i);
1578  owl_function_nextmsg();
1579}
1580
1581void owl_function_mainwin_pageup(void)
1582{
1583  owl_global_set_curmsg(&g, owl_global_get_topmsg(&g));
1584  owl_function_prevmsg();
1585}
1586
1587void owl_function_getsubs(void)
1588{
1589  char *buff;
1590
1591  buff=owl_zephyr_getsubs();
1592
1593  if (buff) {
1594    owl_function_popless_text(buff);
1595  } else {
1596    owl_function_popless_text("Error getting subscriptions");
1597  }
1598           
1599  g_free(buff);
1600}
1601
1602void owl_function_printallvars(void)
1603{
1604  const char *name;
1605  char *var;
1606  owl_list varnames;
1607  int i, numvarnames;
1608  GString *str   = g_string_new("");
1609
1610  g_string_append_printf(str, "%-20s = %s\n", "VARIABLE", "VALUE");
1611  g_string_append_printf(str, "%-20s   %s\n",  "--------", "-----");
1612  owl_list_create(&varnames);
1613  owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames);
1614  numvarnames = owl_list_get_size(&varnames);
1615  for (i=0; i<numvarnames; i++) {
1616    name = owl_list_get_element(&varnames, i);
1617    if (name && name[0]!='_') {
1618      g_string_append_printf(str, "\n%-20s = ", name);
1619      var = owl_variable_get_tostring(owl_global_get_vardict(&g), name);
1620      if (var) {
1621        g_string_append(str, var);
1622        g_free(var);
1623      }
1624    }
1625  }
1626  g_string_append(str, "\n");
1627  owl_list_cleanup(&varnames, g_free);
1628
1629  owl_function_popless_text(str->str);
1630  g_string_free(str, true);
1631}
1632
1633void owl_function_show_variables(void)
1634{
1635  owl_list varnames;
1636  owl_fmtext fm; 
1637  int i, numvarnames;
1638  const char *varname;
1639
1640  owl_fmtext_init_null(&fm);
1641  owl_fmtext_append_bold(&fm, 
1642      "Variables: (use 'show variable <name>' for details)\n");
1643  owl_list_create(&varnames);
1644  owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames);
1645  numvarnames = owl_list_get_size(&varnames);
1646  for (i=0; i<numvarnames; i++) {
1647    varname = owl_list_get_element(&varnames, i);
1648    if (varname && varname[0]!='_') {
1649      owl_variable_describe(owl_global_get_vardict(&g), varname, &fm);
1650    }
1651  }
1652  owl_list_cleanup(&varnames, g_free);
1653  owl_function_popless_fmtext(&fm);
1654  owl_fmtext_cleanup(&fm);
1655}
1656
1657void owl_function_show_variable(const char *name)
1658{
1659  owl_fmtext fm; 
1660
1661  owl_fmtext_init_null(&fm);
1662  owl_variable_get_help(owl_global_get_vardict(&g), name, &fm);
1663  owl_function_popless_fmtext(&fm);
1664  owl_fmtext_cleanup(&fm);
1665}
1666
1667/* note: this applies to global message list, not to view.
1668 * If flag is 1, deletes.  If flag is 0, undeletes. */
1669void owl_function_delete_by_id(int id, int flag)
1670{
1671  const owl_messagelist *ml;
1672  owl_message *m;
1673  ml = owl_global_get_msglist(&g);
1674  m = owl_messagelist_get_by_id(ml, id);
1675  if (m) {
1676    if (flag == 1) {
1677      owl_message_mark_delete(m);
1678    } else if (flag == 0) {
1679      owl_message_unmark_delete(m);
1680    }
1681    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1682  } else {
1683    owl_function_error("No message with id %d: unable to mark for (un)delete",id);
1684  }
1685}
1686
1687void owl_function_delete_automsgs(void)
1688{
1689  /* mark for deletion all messages in the current view that match the
1690   * 'trash' filter */
1691
1692  int i, j, count;
1693  owl_message *m;
1694  const owl_view *v;
1695  const owl_filter *f;
1696
1697  /* get the trash filter */
1698  f=owl_global_get_filter(&g, "trash");
1699  if (!f) {
1700    owl_function_error("No trash filter defined");
1701    return;
1702  }
1703
1704  v=owl_global_get_current_view(&g);
1705
1706  count=0;
1707  j=owl_view_get_size(v);
1708  for (i=0; i<j; i++) {
1709    m=owl_view_get_element(v, i);
1710    if (owl_filter_message_match(f, m)) {
1711      count++;
1712      owl_message_mark_delete(m);
1713    }
1714  }
1715  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1716  owl_function_makemsg("%i messages marked for deletion", count);
1717}
1718
1719void owl_function_status(void)
1720{
1721  char buff[MAXPATHLEN+1];
1722  time_t start;
1723  int up, days, hours, minutes;
1724  owl_fmtext fm;
1725
1726  owl_fmtext_init_null(&fm);
1727
1728  start=owl_global_get_starttime(&g);
1729
1730  owl_fmtext_append_normal(&fm, "General Information:\n");
1731
1732  owl_fmtext_append_normal(&fm, "  Version: ");
1733  owl_fmtext_append_normal(&fm, OWL_VERSION_STRING);
1734  owl_fmtext_append_normal(&fm, "\n");
1735
1736  owl_fmtext_append_normal(&fm, "  Startup Arguments: ");
1737  owl_fmtext_append_normal(&fm, owl_global_get_startupargs(&g));
1738  owl_fmtext_append_normal(&fm, "\n");
1739
1740  owl_fmtext_append_normal(&fm, "  Current Directory: ");
1741  if(getcwd(buff, MAXPATHLEN) == NULL) {
1742    owl_fmtext_append_normal(&fm, "<Error in getcwd>");
1743  } else {
1744    owl_fmtext_append_normal(&fm, buff);
1745  }
1746  owl_fmtext_append_normal(&fm, "\n");
1747
1748  owl_fmtext_appendf_normal(&fm, "  Startup Time: %s", ctime(&start));
1749
1750  up=owl_global_get_runtime(&g);
1751  days=up/86400;
1752  up-=days*86400;
1753  hours=up/3600;
1754  up-=hours*3600;
1755  minutes=up/60;
1756  up-=minutes*60;
1757  owl_fmtext_appendf_normal(&fm, "  Run Time: %i days %2.2i:%2.2i:%2.2i\n", days, hours, minutes, up);
1758
1759  owl_fmtext_append_normal(&fm, "\nProtocol Options:\n");
1760  owl_fmtext_append_normal(&fm, "  Zephyr included    : ");
1761  if (owl_global_is_havezephyr(&g)) {
1762    owl_fmtext_append_normal(&fm, "yes\n");
1763  } else {
1764    owl_fmtext_append_normal(&fm, "no\n");
1765  }
1766  owl_fmtext_append_normal(&fm, "  AIM included       : yes\n");
1767  owl_fmtext_append_normal(&fm, "  Loopback included  : yes\n");
1768
1769
1770  owl_fmtext_append_normal(&fm, "\nBuild Options:\n");
1771  owl_fmtext_append_normal(&fm, "  Stderr redirection : ");
1772#if OWL_STDERR_REDIR
1773  owl_fmtext_append_normal(&fm, "yes\n");
1774#else
1775  owl_fmtext_append_normal(&fm, "no\n");
1776#endif
1777 
1778
1779  owl_fmtext_append_normal(&fm, "\nAIM Status:\n");
1780  owl_fmtext_append_normal(&fm, "  Logged in: ");
1781  if (owl_global_is_aimloggedin(&g)) {
1782    owl_fmtext_append_normal(&fm, owl_global_get_aim_screenname(&g));
1783    owl_fmtext_append_normal(&fm, "\n");
1784  } else {
1785    owl_fmtext_append_normal(&fm, "(not logged in)\n");
1786  }
1787
1788  owl_fmtext_append_normal(&fm, "  Processing events: ");
1789  if (owl_global_is_doaimevents(&g)) {
1790    owl_fmtext_append_normal(&fm, "yes\n");
1791  } else {
1792    owl_fmtext_append_normal(&fm, "no\n");
1793  }
1794
1795  owl_function_popless_fmtext(&fm);
1796  owl_fmtext_cleanup(&fm);
1797}
1798
1799void owl_function_show_term(void)
1800{
1801  owl_fmtext fm;
1802
1803  owl_fmtext_init_null(&fm);
1804  owl_fmtext_appendf_normal(&fm, "Terminal Lines: %i\nTerminal Columns: %i\n",
1805          owl_global_get_lines(&g),
1806          owl_global_get_cols(&g));
1807
1808  if (has_colors()) {
1809    owl_fmtext_append_normal(&fm, "Color: Yes\n");
1810    owl_fmtext_appendf_normal(&fm, "Number of color pairs: %i\n", owl_util_get_colorpairs());
1811    owl_fmtext_appendf_normal(&fm, "Can change colors: %s\n", can_change_color() ? "yes" : "no");
1812  } else {
1813    owl_fmtext_append_normal(&fm, "Color: No\n");
1814  }
1815
1816  owl_function_popless_fmtext(&fm);
1817  owl_fmtext_cleanup(&fm);
1818}
1819
1820/* if type = 0 then normal reply.
1821 * if type = 1 then it's a reply to sender
1822 * if enter = 0 then allow the command to be edited
1823 * if enter = 1 then don't wait for editing
1824 */
1825void owl_function_reply(int type, int enter)
1826{
1827  char *buff=NULL;
1828  const owl_message *m;
1829  const owl_filter *f;
1830 
1831  if (owl_view_get_size(owl_global_get_current_view(&g))==0) {
1832    owl_function_error("No message selected");
1833  } else {
1834    char *cmd;
1835   
1836    m=owl_view_get_element(owl_global_get_current_view(&g), owl_global_get_curmsg(&g));
1837    if (!m) {
1838      owl_function_error("No message selected");
1839      return;
1840    }
1841
1842    /* first check if we catch the reply-lockout filter */
1843    f=owl_global_get_filter(&g, "reply-lockout");
1844    if (f) {
1845      if (owl_filter_message_match(f, m)) {
1846        owl_function_error("Sorry, replies to this message have been disabled by the reply-lockout filter");
1847        return;
1848      }
1849    }
1850
1851    /* then check if it's a question and just bring up the command prompt */
1852    if (owl_message_is_question(m)) {
1853      owl_function_start_command("");
1854      return;
1855    }
1856
1857    if((type == 0 &&
1858        (cmd=owl_perlconfig_message_call_method(m, "replycmd", 0, NULL))) ||
1859       (type == 1 &&
1860        (cmd=owl_perlconfig_message_call_method(m, "replysendercmd", 0, NULL)))) {
1861      buff = cmd;
1862    }
1863
1864    if(!buff) {
1865        owl_function_error("I don't know how to reply to that message.");
1866        return;
1867    }
1868
1869    if (enter) {
1870      owl_history *hist = owl_global_get_cmd_history(&g);
1871      owl_history_store(hist, buff);
1872      owl_history_reset(hist);
1873      owl_function_command_norv(buff);
1874    } else {
1875      owl_function_start_command(buff);
1876    }
1877    g_free(buff);
1878  }
1879}
1880
1881void owl_function_zlocate(int argc, const char *const *argv, int auth)
1882{
1883  owl_fmtext fm;
1884  char *ptr;
1885  char *result;
1886  int i;
1887
1888  owl_fmtext_init_null(&fm);
1889
1890  for (i=0; i<argc; i++) {
1891    ptr = long_zuser(argv[i]);
1892    result = owl_zephyr_zlocate(ptr, auth);
1893    owl_fmtext_append_normal(&fm, result);
1894    g_free(result);
1895    g_free(ptr);
1896  }
1897
1898  owl_function_popless_fmtext(&fm);
1899  owl_fmtext_cleanup(&fm);
1900}
1901
1902void owl_callback_command(owl_editwin *e)
1903{
1904  char *rv;
1905  const char *line = owl_editwin_get_text(e);
1906
1907  rv = owl_function_command(line);
1908   if (rv) {
1909    owl_function_makemsg("%s", rv);
1910    g_free(rv);
1911  }
1912}
1913
1914void owl_function_start_command(const char *line)
1915{
1916  owl_editwin *tw;
1917  owl_context *ctx;
1918
1919  tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g));
1920
1921  owl_editwin_set_locktext(tw, "command: ");
1922
1923  owl_editwin_insert_string(tw, line);
1924
1925  ctx = owl_editcontext_new(OWL_CTX_EDITLINE, tw, "editline",
1926                            owl_global_deactivate_editcontext, &g);
1927  owl_global_push_context_obj(&g, ctx);
1928  owl_editwin_set_callback(tw, owl_callback_command);
1929}
1930
1931owl_editwin *owl_function_start_question(const char *line)
1932{
1933  owl_editwin *tw;
1934  owl_context *ctx;
1935
1936  tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g));
1937
1938  owl_editwin_set_locktext(tw, line);
1939
1940  ctx = owl_editcontext_new(OWL_CTX_EDITRESPONSE, tw, "editresponse",
1941                            owl_global_deactivate_editcontext, &g);
1942  owl_global_push_context_obj(&g, ctx);
1943  return tw;
1944}
1945
1946owl_editwin *owl_function_start_password(const char *line)
1947{
1948  owl_editwin *tw;
1949  owl_context *ctx;
1950
1951  tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, NULL);
1952
1953  owl_editwin_set_echochar(tw, '*');
1954
1955  owl_editwin_set_locktext(tw, line);
1956
1957  ctx = owl_editcontext_new(OWL_CTX_EDITRESPONSE, tw, "editresponse",
1958                            owl_global_deactivate_editcontext, &g);
1959  owl_global_push_context_obj(&g, ctx);
1960  return tw;
1961}
1962
1963char *owl_function_exec(int argc, const char *const *argv, const char *buff, int type)
1964{
1965  /* if type == 1 display in a popup
1966   * if type == 2 display an admin messages
1967   * if type == 0 return output
1968   * else display in a popup
1969   */
1970  const char *redirect = " 2>&1 < /dev/null";
1971  char *newbuff;
1972  char *out;
1973  FILE *p;
1974
1975#if OWL_STDERR_REDIR
1976  redirect = " < /dev/null";
1977#endif
1978
1979  if (argc<2) {
1980    owl_function_error("Wrong number of arguments to the exec command");
1981    return NULL;
1982  }
1983
1984  buff = skiptokens(buff, 1);
1985  newbuff = g_strdup_printf("exec%s; %s", redirect, buff);
1986
1987  if (type == OWL_OUTPUT_POPUP) {
1988    owl_popexec_new(newbuff);
1989  } else {
1990    p = popen(newbuff, "r");
1991    out = owl_slurp(p);
1992    pclose(p);
1993   
1994    if (type == OWL_OUTPUT_RETURN) {
1995      g_free(newbuff);
1996      return out;
1997    } else if (type == OWL_OUTPUT_ADMINMSG) {
1998      owl_function_adminmsg(buff, out);
1999    }
2000    g_free(out);
2001  }
2002  g_free(newbuff);
2003  return NULL;
2004}
2005
2006char *owl_function_perl(int argc, const char *const *argv, const char *buff, int type)
2007{
2008  /* if type == 1 display in a popup
2009   * if type == 2 display an admin messages
2010   * if type == 0 return output
2011   * else display in a popup
2012   */
2013  char *perlout;
2014
2015  if (argc<2) {
2016    owl_function_error("Wrong number of arguments to perl command");
2017    return NULL;
2018  }
2019
2020  /* consume first token (argv[0]) */
2021  buff = skiptokens(buff, 1);
2022
2023  perlout = owl_perlconfig_execute(buff);
2024  if (perlout) { 
2025    if (type == OWL_OUTPUT_POPUP) {
2026      owl_function_popless_text(perlout);
2027    } else if (type == OWL_OUTPUT_ADMINMSG) {
2028      owl_function_adminmsg(buff, perlout);
2029    } else if (type == OWL_OUTPUT_RETURN) {
2030      return perlout;
2031    }
2032    g_free(perlout);
2033  }
2034  return NULL;
2035}
2036
2037/* Change the filter associated with the current view.
2038 * This also figures out which message in the new filter
2039 * should have the pointer.
2040 */
2041void owl_function_change_currentview_filter(const char *filtname)
2042{
2043  owl_view *v;
2044  owl_filter *f;
2045  int curid=-1, newpos, curmsg;
2046  const owl_message *curm=NULL;
2047
2048  v=owl_global_get_current_view(&g);
2049
2050  curmsg=owl_global_get_curmsg(&g);
2051  if (curmsg==-1) {
2052    owl_function_debugmsg("Hit the curmsg==-1 case in change_view");
2053  } else {
2054    curm=owl_view_get_element(v, curmsg);
2055    if (curm) {
2056      curid=owl_message_get_id(curm);
2057      owl_view_save_curmsgid(v, curid);
2058    }
2059  }
2060
2061  f=owl_global_get_filter(&g, filtname);
2062  if (!f) {
2063    owl_function_error("Unknown filter %s", filtname);
2064    return;
2065  }
2066
2067  owl_view_new_filter(v, f);
2068
2069  /* Figure out what to set the current message to.
2070   * - If the view we're leaving has messages in it, go to the closest message
2071   *   to the last message pointed to in that view.
2072   * - If the view we're leaving is empty, try to restore the position
2073   *   from the last time we were in the new view.  */
2074  if (curm) {
2075    newpos = owl_view_get_nearest_to_msgid(v, curid);
2076  } else {
2077    newpos = owl_view_get_nearest_to_saved(v);
2078  }
2079
2080  owl_global_set_curmsg(&g, newpos);
2081  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
2082  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2083  owl_global_set_direction_downwards(&g);
2084}
2085
2086/* Create a new filter, or replace an existing one
2087 * with a new definition.
2088 */
2089void owl_function_create_filter(int argc, const char *const *argv)
2090{
2091  owl_filter *f;
2092  const owl_view *v;
2093  int inuse = 0;
2094
2095  if (argc < 2) {
2096    owl_function_error("Wrong number of arguments to filter command");
2097    return;
2098  }
2099
2100  owl_function_debugmsg("owl_function_create_filter: starting to create filter named %s", argv[1]);
2101
2102  v=owl_global_get_current_view(&g);
2103
2104  /* don't touch the all filter */
2105  if (!strcmp(argv[1], "all")) {
2106    owl_function_error("You may not change the 'all' filter.");
2107    return;
2108  }
2109
2110  /* deal with the case of trying change the filter color */
2111  if (argc==4 && !strcmp(argv[2], "-c")) {
2112    f=owl_global_get_filter(&g, argv[1]);
2113    if (!f) {
2114      owl_function_error("The filter '%s' does not exist.", argv[1]);
2115      return;
2116    }
2117    if (owl_util_string_to_color(argv[3])==OWL_COLOR_INVALID) {
2118      owl_function_error("The color '%s' is not available.", argv[3]);
2119      return;
2120    }
2121    owl_filter_set_fgcolor(f, owl_util_string_to_color(argv[3]));
2122    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2123    return;
2124  }
2125  if (argc==4 && !strcmp(argv[2], "-b")) {
2126    f=owl_global_get_filter(&g, argv[1]);
2127    if (!f) {
2128      owl_function_error("The filter '%s' does not exist.", argv[1]);
2129      return;
2130    }
2131    if (owl_util_string_to_color(argv[3])==OWL_COLOR_INVALID) {
2132      owl_function_error("The color '%s' is not available.", argv[3]);
2133      return;
2134    }
2135    owl_filter_set_bgcolor(f, owl_util_string_to_color(argv[3]));
2136    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2137    return;
2138  }
2139
2140  /* create the filter and check for errors */
2141  f = owl_filter_new(argv[1], argc-2, argv+2);
2142  if (f == NULL) {
2143    owl_function_error("Invalid filter");
2144    return;
2145  }
2146
2147  /* if the named filter is in use by the current view, remember it */
2148  if (!strcmp(owl_view_get_filtname(v), argv[1])) {
2149    inuse=1;
2150  }
2151
2152  /* if the named filter already exists, nuke it */
2153  if (owl_global_get_filter(&g, argv[1])) {
2154    owl_global_remove_filter(&g, argv[1]);
2155  }
2156
2157  /* add the filter */
2158  owl_global_add_filter(&g, f);
2159
2160  /* if it was in use by the current view then update */
2161  if (inuse) {
2162    owl_function_change_currentview_filter(argv[1]);
2163  }
2164  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2165}
2166
2167/* If 'filtername' does not start with 'not-' create a filter named
2168 * 'not-<filtername>' defined as "not filter <filtername>".  If the
2169 * filter 'not-<filtername>' already exists, do not overwrite it.  If
2170 * 'filtername' begins with 'not-' and a filter 'filtername' already
2171 * exists, then do nothing.  If the filter 'filtername' does not
2172 * exist, create it and define it as 'not filter <filtername>'
2173 *
2174 * Returns the name of the negated filter, which the caller must free.
2175 */
2176char *owl_function_create_negative_filter(const char *filtername)
2177{
2178  char *newname;
2179  const owl_filter *tmpfilt;
2180  const char *argv[5];
2181
2182  owl_function_debugmsg("owl_function_create_negative_filter");
2183 
2184  if (!strncmp(filtername, "not-", 4)) {
2185    newname=g_strdup(filtername+4);
2186  } else {
2187    newname=g_strdup_printf("not-%s", filtername);
2188  }
2189
2190  tmpfilt=owl_global_get_filter(&g, newname);
2191  if (!tmpfilt) {
2192    argv[0]="filter"; /* anything is fine here */
2193    argv[1]=newname;
2194    argv[2]="not";
2195    argv[3]="filter";
2196    argv[4]=filtername;
2197    owl_function_create_filter(5, argv);
2198  }
2199
2200  owl_function_debugmsg("owl_function_create_negative_filter: returning with %s", newname);
2201  return(newname);
2202}
2203
2204void owl_function_show_filters(void)
2205{
2206  const owl_filter *f;
2207  GList *fl;
2208  owl_fmtext fm;
2209
2210  owl_fmtext_init_null(&fm);
2211
2212  owl_fmtext_append_bold(&fm, "Filters:\n");
2213
2214  for (fl = g.filterlist; fl; fl = g_list_next(fl)) {
2215    f = fl->data;
2216    owl_fmtext_append_normal(&fm, "   ");
2217    owl_fmtext_append_normal_color(&fm, owl_filter_get_name(f),
2218                                   owl_filter_get_fgcolor(f),
2219                                   owl_filter_get_bgcolor(f));
2220    owl_fmtext_append_normal(&fm, "\n");
2221  }
2222  owl_function_popless_fmtext(&fm);
2223  owl_fmtext_cleanup(&fm);
2224}
2225
2226void owl_function_show_filter(const char *name)
2227{
2228  const owl_filter *f;
2229  char *buff, *tmp;
2230
2231  f=owl_global_get_filter(&g, name);
2232  if (!f) {
2233    owl_function_error("There is no filter named %s", name);
2234    return;
2235  }
2236  tmp = owl_filter_print(f);
2237  buff = g_strdup_printf("%s: %s", owl_filter_get_name(f), tmp);
2238  owl_function_popless_text(buff);
2239  g_free(buff);
2240  g_free(tmp);
2241}
2242
2243void owl_function_show_zpunts(void)
2244{
2245  const owl_filter *f;
2246  const owl_list *fl;
2247  char *tmp;
2248  owl_fmtext fm;
2249  int i, j;
2250
2251  owl_fmtext_init_null(&fm);
2252
2253  fl=owl_global_get_puntlist(&g);
2254  j=owl_list_get_size(fl);
2255  owl_fmtext_append_bold(&fm, "Active zpunt filters:\n");
2256
2257  for (i=0; i<j; i++) {
2258    f=owl_list_get_element(fl, i);
2259    owl_fmtext_appendf_normal(&fm, "[% 2d] ", i+1);
2260    tmp = owl_filter_print(f);
2261    owl_fmtext_append_normal(&fm, tmp);
2262    g_free(tmp);
2263  }
2264  owl_function_popless_fmtext(&fm);
2265  owl_fmtext_cleanup(&fm);
2266}
2267
2268/* Create a filter for a class, instance if one doesn't exist.  If
2269 * instance is NULL then catch all messgaes in the class.  Returns the
2270 * name of the filter or null.  The caller must free this name.
2271 * If 'related' is nonzero, encompass unclasses and .d classes as well.
2272 */
2273char *owl_function_classinstfilt(const char *c, const char *i, int related) 
2274{
2275  owl_filter *f;
2276  char *filtname;
2277  char *tmpclass, *tmpinstance = NULL;
2278  char *class, *instance = NULL;
2279  GString *buf;
2280
2281  if (related) {
2282    class = owl_util_baseclass(c);
2283    if (i) {
2284      instance = owl_util_baseclass(i);
2285    }
2286  } else {
2287    class = g_strdup(c);
2288    if (i) {
2289      instance = g_strdup(i);
2290    }
2291  }
2292
2293  /* name for the filter */
2294  if (!instance) {
2295    filtname = g_strdup_printf("%sclass-%s", related ? "related-" : "", class);
2296  } else {
2297    filtname = g_strdup_printf("%sclass-%s-instance-%s", related ? "related-" : "", class, instance);
2298  }
2299  /* downcase it */
2300  {
2301    char *temp = g_utf8_strdown(filtname, -1);
2302    if (temp) {
2303      g_free(filtname);
2304      filtname = temp;
2305    }
2306  }
2307 
2308  /* if it already exists then go with it.  This lets users override */
2309  if (owl_global_get_filter(&g, filtname)) {
2310    goto done;
2311  }
2312
2313  /* create the new filter */
2314  tmpclass=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2315  if (instance) {
2316    tmpinstance=owl_text_quote(instance, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2317  }
2318
2319  buf = g_string_new("");
2320  owl_string_appendf_quoted(buf,
2321                            related ? "class ^(un)*%q(\\.d)*$" : "class ^%q$",
2322                            tmpclass);
2323
2324  if (tmpinstance) {
2325    owl_string_appendf_quoted(buf,
2326                              related ?
2327                              " and ( instance ^(un)*%q(\\.d)*$ )" :
2328                              " and instance ^%q$",
2329                              tmpinstance);
2330  }
2331  g_free(tmpclass);
2332  g_free(tmpinstance);
2333
2334  f = owl_filter_new_fromstring(filtname, buf->str);
2335  g_string_free(buf, true);
2336  if (f == NULL) {
2337    /* Couldn't make a filter for some reason. Return NULL. */
2338    owl_function_error("Error creating filter '%s'", filtname);
2339    g_free(filtname);
2340    filtname = NULL;
2341    goto done;
2342  }
2343
2344  /* add it to the global list */
2345  owl_global_add_filter(&g, f);
2346
2347done:
2348  g_free(class);
2349  g_free(instance);
2350  return(filtname);
2351}
2352
2353/* Create a filter for personal zephyrs to or from the specified
2354 * zephyr user.  Includes login/logout notifications for the user.
2355 * The name of the filter will be 'user-<shortuser>'.  If a filter already
2356 * exists with this name, no new filter will be created.  This allows
2357 * the configuration to override this function.  Returns the name of
2358 * the filter, which the caller must free.
2359 */
2360char *owl_function_zuserfilt(const char *longuser)
2361{
2362  owl_filter *f;
2363  char *argbuff, *esclonguser, *shortuser, *filtname;
2364
2365  /* name for the filter */
2366  shortuser = short_zuser(longuser);
2367  filtname = g_strdup_printf("user-%s", shortuser);
2368  g_free(shortuser);
2369
2370  /* if it already exists then go with it.  This lets users override */
2371  if (owl_global_get_filter(&g, filtname)) {
2372    return filtname;
2373  }
2374
2375  /* create the new-internal filter */
2376  esclonguser = owl_text_quote(longuser, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2377
2378  argbuff=owl_string_build_quoted("( type ^zephyr$ and filter personal and "
2379      "( ( direction ^in$ and sender ^%q$ ) or ( direction ^out$ and "
2380      "recipient ^%q$ ) ) ) or ( ( class ^login$ ) and ( sender ^%q$ ) )",
2381      esclonguser, esclonguser, esclonguser);
2382  g_free(esclonguser);
2383
2384  f = owl_filter_new_fromstring(filtname, argbuff);
2385  g_free(argbuff);
2386
2387  if (f == NULL) {
2388    /* Couldn't make a filter for some reason. Return NULL. */
2389    owl_function_error("Error creating filter '%s'", filtname);
2390    g_free(filtname);
2391    return NULL;
2392  }
2393
2394  /* add it to the global list */
2395  owl_global_add_filter(&g, f);
2396
2397  return(filtname);
2398}
2399
2400/* Create a filter for AIM IM messages to or from the specified
2401 * screenname.  The name of the filter will be 'aimuser-<user>'.  If a
2402 * filter already exists with this name, no new filter will be
2403 * created.  This allows the configuration to override this function.
2404 * Returns the name of the filter, which the caller must free.
2405 */
2406char *owl_function_aimuserfilt(const char *user)
2407{
2408  owl_filter *f;
2409  char *argbuff, *filtname;
2410  char *escuser;
2411
2412  /* name for the filter */
2413  filtname=g_strdup_printf("aimuser-%s", user);
2414
2415  /* if it already exists then go with it.  This lets users override */
2416  if (owl_global_get_filter(&g, filtname)) {
2417    return(g_strdup(filtname));
2418  }
2419
2420  /* create the new-internal filter */
2421  escuser = owl_text_quote(user, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2422
2423  argbuff = g_strdup_printf(
2424      "( type ^aim$ and ( ( sender ^%1$s$ and recipient ^%2$s$ ) or "
2425      "( sender ^%2$s$ and recipient ^%1$s$ ) ) )",
2426      escuser, owl_global_get_aim_screenname_for_filters(&g));
2427  g_free(escuser);
2428
2429  f = owl_filter_new_fromstring(filtname, argbuff);
2430  g_free(argbuff);
2431
2432  if (f == NULL) {
2433    owl_function_error("Error creating filter '%s'", filtname);
2434    g_free(filtname);
2435    return NULL;
2436  }
2437
2438  /* add it to the global list */
2439  owl_global_add_filter(&g, f);
2440
2441  return(filtname);
2442}
2443
2444char *owl_function_typefilt(const char *type)
2445{
2446  owl_filter *f;
2447  char *argbuff, *filtname, *esctype;
2448
2449  /* name for the filter */
2450  filtname=g_strdup_printf("type-%s", type);
2451
2452  /* if it already exists then go with it.  This lets users override */
2453  if (owl_global_get_filter(&g, filtname)) {
2454    return filtname;
2455  }
2456
2457  /* create the new-internal filter */
2458  esctype = owl_text_quote(type, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2459
2460  argbuff = owl_string_build_quoted("type ^%q$", esctype);
2461  g_free(esctype);
2462
2463  f = owl_filter_new_fromstring(filtname, argbuff);
2464  g_free(argbuff);
2465
2466  if (f == NULL) {
2467    owl_function_error("Error creating filter '%s'", filtname);
2468    g_free(filtname);
2469    return NULL;
2470  }
2471
2472  /* add it to the global list */
2473  owl_global_add_filter(&g, f);
2474
2475  return filtname;
2476}
2477
2478/* If flag is 1, marks for deletion.  If flag is 0,
2479 * unmarks for deletion. */
2480void owl_function_delete_curview_msgs(int flag)
2481{
2482  const owl_view *v;
2483  int i, j;
2484
2485  v=owl_global_get_current_view(&g);
2486  j=owl_view_get_size(v);
2487  for (i=0; i<j; i++) {
2488    if (flag == 1) {
2489      owl_message_mark_delete(owl_view_get_element(v, i));
2490    } else if (flag == 0) {
2491      owl_message_unmark_delete(owl_view_get_element(v, i));
2492    }
2493  }
2494
2495  owl_function_makemsg("%i messages marked for %sdeletion", j, flag?"":"un");
2496
2497  owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 
2498}
2499
2500static char *owl_function_smartfilter_cc(const owl_message *m) {
2501  const char *ccs;
2502  char *ccs_quoted;
2503  char *filtname;
2504  owl_filter *f;
2505  GString *buf;
2506
2507  ccs = owl_message_get_attribute_value(m, "zephyr_ccs");
2508
2509  filtname = g_strdup_printf("conversation-%s", ccs);
2510  g_strdelimit(filtname, " ", '-');
2511
2512  if (owl_global_get_filter(&g, filtname)) {
2513    return filtname;
2514  }
2515
2516  buf = g_string_new("type ^zephyr$ and filter personal and "
2517                     "zephyr_ccs ^");
2518  ccs_quoted = owl_text_quote(ccs, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2519  owl_string_append_quoted_arg(buf, ccs_quoted);
2520  g_string_append_c(buf, '$');
2521  g_free(ccs_quoted);
2522
2523  f = owl_filter_new_fromstring(filtname, buf->str);
2524  g_string_free(buf, true);
2525
2526  if (f == NULL) {
2527    owl_function_error("Error creating filter '%s'", filtname);
2528    g_free(filtname);
2529    return NULL;
2530  }
2531
2532  owl_global_add_filter(&g, f);
2533
2534  return filtname;
2535}
2536
2537/* Create a filter based on the current message.  Returns the name of
2538 * a filter or null.  The caller must free this name.
2539 *
2540 * if the curmsg is a personal zephyr return a filter name
2541 *    to the zephyr conversation with that user.
2542 * If the curmsg is a zephyr class message, instance foo, recip *,
2543 *    return a filter name to the class, inst.
2544 * If the curmsg is a zephyr class message and type==0 then
2545 *    return a filter name for just the class.
2546 * If the curmsg is a zephyr class message and type==1 then
2547 *    return a filter name for the class and instance.
2548 * If the curmsg is a personal AIM message returna  filter
2549 *    name to the AIM conversation with that user
2550 */
2551char *owl_function_smartfilter(int type, int invert_related)
2552{
2553  const owl_view *v;
2554  const owl_message *m;
2555  char *filtname = NULL;
2556  const char *argv[2], *zperson;
2557  int related = owl_global_is_narrow_related(&g) ^ invert_related;
2558
2559  v=owl_global_get_current_view(&g);
2560  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
2561
2562  if (!m || owl_view_get_size(v)==0) {
2563    owl_function_error("No message selected\n");
2564    return(NULL);
2565  }
2566
2567  /* very simple handling of admin messages for now */
2568  if (owl_message_is_type_admin(m)) {
2569    return(owl_function_typefilt("admin"));
2570  }
2571
2572  /* very simple handling of loopback messages for now */
2573  if (owl_message_is_type_loopback(m)) {
2574    return(owl_function_typefilt("loopback"));
2575  }
2576
2577  /* aim messages */
2578  if (owl_message_is_type_aim(m)) {
2579    if (owl_message_is_direction_in(m)) {
2580      filtname=owl_function_aimuserfilt(owl_message_get_sender(m));
2581    } else if (owl_message_is_direction_out(m)) {
2582      filtname=owl_function_aimuserfilt(owl_message_get_recipient(m));
2583    }
2584    return(filtname);
2585  }
2586
2587  /* narrow personal and login messages to the sender or recip as appropriate */
2588  if (owl_message_is_type_zephyr(m)) {
2589    if (owl_message_is_personal(m) || owl_message_is_loginout(m)) {
2590      if (owl_message_get_attribute_value(m, "zephyr_ccs") != NULL) {
2591        return owl_function_smartfilter_cc(m);
2592      }
2593
2594      if (owl_message_is_direction_in(m)) {
2595        zperson = owl_message_get_sender(m);
2596      } else {
2597        zperson = owl_message_get_recipient(m);
2598      }
2599      filtname = owl_function_zuserfilt(zperson);
2600      return filtname;
2601    }
2602
2603    /* narrow class MESSAGE, instance foo, recip * messages to class, inst */
2604    if (!strcasecmp(owl_message_get_class(m), "message")) {
2605      filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m), related);
2606      return(filtname);
2607    }
2608
2609    /* otherwise narrow to the class */
2610    if (type==0) {
2611      filtname=owl_function_classinstfilt(owl_message_get_class(m), NULL, related);
2612    } else if (type==1) {
2613      filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m), related);
2614    }
2615    return(filtname);
2616  }
2617
2618  /* pass it off to perl */
2619  argv[0] = type ? "1" : "0";
2620  argv[1] = related ? "1" : "0";
2621  return owl_perlconfig_message_call_method(m, "smartfilter", 2, argv);
2622}
2623
2624void owl_function_smartzpunt(int type)
2625{
2626  /* Starts a zpunt command based on the current class,instance pair.
2627   * If type=0, uses just class.  If type=1, uses instance as well. */
2628  const owl_view *v;
2629  const owl_message *m;
2630  const char *mclass, *minst;
2631  GString *buf;
2632 
2633  v=owl_global_get_current_view(&g);
2634  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
2635
2636  if (!m || owl_view_get_size(v)==0) {
2637    owl_function_error("No message selected\n");
2638    return;
2639  }
2640
2641  /* for now we skip admin messages. */
2642  if (owl_message_is_type_admin(m)
2643      || owl_message_is_loginout(m)
2644      || !owl_message_is_type_zephyr(m)) {
2645    owl_function_error("smartzpunt doesn't support this message type.");
2646    return;
2647  }
2648
2649  mclass = owl_message_get_class(m);
2650  minst = owl_message_get_instance(m);
2651  if (!mclass || !*mclass || *mclass==' '
2652      || (!strcasecmp(mclass, "message") && !strcasecmp(minst, "personal"))
2653      || (type && (!minst || !*minst|| *minst==' '))) {
2654    owl_function_error("smartzpunt can't safely do this for <%s,%s>",
2655                         mclass, minst);
2656  } else {
2657    buf = g_string_new("start-command zpunt ");
2658    owl_string_append_quoted_arg(buf, mclass);
2659    if (type) {
2660      g_string_append_c(buf, ' ');
2661      owl_string_append_quoted_arg(buf, minst);
2662    } else {
2663      g_string_append(buf, " *");
2664    }
2665    owl_function_command_norv(buf->str);
2666    g_string_free(buf, true);
2667  }
2668}
2669
2670/* Set the color of the current view's filter to
2671 * be 'color'
2672 */
2673void owl_function_color_current_filter(const char *fgcolor, const char *bgcolor)
2674{
2675  const char *name;
2676
2677  name=owl_view_get_filtname(owl_global_get_current_view(&g));
2678  owl_function_color_filter(name, fgcolor, bgcolor);
2679}
2680
2681/* Set the color of the filter 'filter' to be 'color'.  If the color
2682 * name does not exist, return -1, if the filter does not exist or is
2683 * the "all" filter, return -2.  Return 0 on success
2684 */
2685int owl_function_color_filter(const char *filtname, const char *fgcolor, const char *bgcolor)
2686{
2687  owl_filter *f;
2688
2689  f=owl_global_get_filter(&g, filtname);
2690  if (!f) {
2691    owl_function_error("Unknown filter");
2692    return(-2);
2693  }
2694
2695  /* don't touch the all filter */
2696  if (!strcmp(filtname, "all")) {
2697    owl_function_error("You may not change the 'all' filter.");
2698    return(-2);
2699  }
2700
2701  if (owl_util_string_to_color(fgcolor)==OWL_COLOR_INVALID) {
2702    owl_function_error("No color named '%s' avilable.", fgcolor);
2703    return(-1);
2704  }
2705
2706
2707  if (bgcolor != NULL) {
2708    if (owl_util_string_to_color(bgcolor)==OWL_COLOR_INVALID) {
2709      owl_function_error("No color named '%s' avilable.", bgcolor);
2710      return(-1);
2711    }
2712    owl_filter_set_bgcolor(f, owl_util_string_to_color(bgcolor));
2713  }
2714  owl_filter_set_fgcolor(f, owl_util_string_to_color(fgcolor));
2715 
2716  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2717  return(0);
2718}
2719
2720void owl_function_show_colors(void)
2721{
2722  owl_fmtext fm;
2723  int i; 
2724 
2725  owl_fmtext_init_null(&fm);
2726  owl_fmtext_append_normal(&fm,"default:  ");
2727  owl_fmtext_append_normal_color(&fm, "default\n", OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
2728
2729  owl_fmtext_append_normal(&fm,"black:    ");
2730  owl_fmtext_append_normal_color(&fm, "black\n", OWL_COLOR_BLACK, OWL_COLOR_DEFAULT);
2731
2732  owl_fmtext_append_normal(&fm,"red:      ");
2733  owl_fmtext_append_normal_color(&fm, "red\n", OWL_COLOR_RED, OWL_COLOR_DEFAULT);
2734
2735  owl_fmtext_append_normal(&fm,"green:    ");
2736  owl_fmtext_append_normal_color(&fm, "green\n", OWL_COLOR_GREEN, OWL_COLOR_DEFAULT);
2737
2738  owl_fmtext_append_normal(&fm,"yellow:   ");
2739  owl_fmtext_append_normal_color(&fm, "yellow\n", OWL_COLOR_YELLOW, OWL_COLOR_DEFAULT);
2740
2741  owl_fmtext_append_normal(&fm,"blue:     ");
2742  owl_fmtext_append_normal_color(&fm, "blue\n", OWL_COLOR_BLUE, OWL_COLOR_DEFAULT);
2743
2744  owl_fmtext_append_normal(&fm,"magenta:  ");
2745  owl_fmtext_append_normal_color(&fm, "magenta\n", OWL_COLOR_MAGENTA, OWL_COLOR_DEFAULT);
2746
2747  owl_fmtext_append_normal(&fm,"cyan:     ");
2748  owl_fmtext_append_normal_color(&fm, "cyan\n", OWL_COLOR_CYAN, OWL_COLOR_DEFAULT);
2749
2750  owl_fmtext_append_normal(&fm,"white:    ");
2751  owl_fmtext_append_normal_color(&fm, "white\n", OWL_COLOR_WHITE, OWL_COLOR_DEFAULT);
2752
2753  for(i = 8; i < COLORS; ++i) {
2754    char* str1 = g_strdup_printf("%4i:     ",i);
2755    char* str2 = g_strdup_printf("%i\n",i);
2756    owl_fmtext_append_normal(&fm,str1);
2757    owl_fmtext_append_normal_color(&fm, str2, i, OWL_COLOR_DEFAULT);
2758    g_free(str1);
2759     g_free(str2);
2760  }
2761 
2762  owl_function_popless_fmtext(&fm);
2763  owl_fmtext_cleanup(&fm);
2764}
2765
2766/* add the given class, inst, recip to the punt list for filtering.
2767 *   if direction==0 then punt
2768 *   if direction==1 then unpunt
2769 */
2770void owl_function_zpunt(const char *class, const char *inst, const char *recip, int direction)
2771{
2772  GPtrArray *argv;
2773  char *quoted;
2774
2775  argv = g_ptr_array_new();
2776  if (!strcmp(class, "*")) {
2777    g_ptr_array_add(argv, g_strdup("class"));
2778    g_ptr_array_add(argv, g_strdup(".*"));
2779  } else {
2780    quoted=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2781    g_ptr_array_add(argv, g_strdup("class"));
2782    g_ptr_array_add(argv, g_strdup_printf("^(un)*%s(\\.d)*$", quoted));
2783    g_free(quoted);
2784  }
2785  if (!strcmp(inst, "*")) {
2786    g_ptr_array_add(argv, g_strdup("and"));
2787    g_ptr_array_add(argv, g_strdup("instance"));
2788    g_ptr_array_add(argv, g_strdup(".*"));
2789  } else {
2790    quoted=owl_text_quote(inst, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2791    g_ptr_array_add(argv, g_strdup("and"));
2792    g_ptr_array_add(argv, g_strdup("instance"));
2793    g_ptr_array_add(argv, g_strdup_printf("^(un)*%s(\\.d)*$", quoted));
2794    g_free(quoted);
2795  }
2796  if (!strcmp(recip, "*")) {
2797    /* nothing */
2798  } else {
2799    if(!strcmp(recip, "%me%")) {
2800      recip = owl_zephyr_get_sender();
2801    }
2802    quoted=owl_text_quote(recip, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2803    g_ptr_array_add(argv, g_strdup("and"));
2804    g_ptr_array_add(argv, g_strdup("recipient"));
2805    g_ptr_array_add(argv, g_strdup_printf("^%s$", quoted));
2806    g_free(quoted);
2807  }
2808
2809  owl_function_punt(argv->len, (const char *const*) argv->pdata, direction);
2810  g_ptr_array_foreach(argv, (GFunc)g_free, NULL);
2811  g_ptr_array_free(argv, true);
2812}
2813
2814void owl_function_punt(int argc, const char *const *argv, int direction)
2815{
2816  owl_filter *f;
2817  owl_list *fl;
2818  int i, j;
2819  fl=owl_global_get_puntlist(&g);
2820
2821  /* first, create the filter */
2822  f = owl_filter_new("punt-filter", argc, argv);
2823  if (f == NULL) {
2824    owl_function_error("Error creating filter for zpunt");
2825    return;
2826  }
2827
2828  /* Check for an identical filter */
2829  j=owl_list_get_size(fl);
2830  for (i=0; i<j; i++) {
2831    if (owl_filter_equiv(f, owl_list_get_element(fl, i))) {
2832      owl_function_debugmsg("found an equivalent punt filter");
2833      /* if we're punting, then just silently bow out on this duplicate */
2834      if (direction==0) {
2835        owl_filter_delete(f);
2836        return;
2837      }
2838
2839      /* if we're unpunting, then remove this filter from the puntlist */
2840      if (direction==1) {
2841        owl_filter_delete(owl_list_get_element(fl, i));
2842        owl_list_remove_element(fl, i);
2843        owl_filter_delete(f);
2844        return;
2845      }
2846    }
2847  }
2848
2849  if (direction == 0) {
2850    owl_function_debugmsg("punting");
2851    /* If we're punting, add the filter to the global punt list */
2852    owl_list_append_element(fl, f);
2853  } else if (direction == 1) {
2854    owl_function_makemsg("No matching punt filter");
2855 }
2856}
2857
2858void owl_function_show_keymaps(void)
2859{
2860  owl_list l;
2861  owl_fmtext fm;
2862  const owl_keymap *km;
2863  const owl_keyhandler *kh;
2864  int i, numkm;
2865  const char *kmname;
2866
2867  kh = owl_global_get_keyhandler(&g);
2868  owl_fmtext_init_null(&fm);
2869  owl_fmtext_append_bold(&fm, "Keymaps:   ");
2870  owl_fmtext_append_normal(&fm, "(use 'show keymap <name>' for details)\n");
2871  owl_list_create(&l);
2872  owl_keyhandler_get_keymap_names(kh, &l);
2873  owl_fmtext_append_list(&fm, &l, "\n", owl_function_keymap_summary);
2874  owl_fmtext_append_normal(&fm, "\n");
2875
2876  numkm = owl_list_get_size(&l);
2877  for (i=0; i<numkm; i++) {
2878    kmname = owl_list_get_element(&l, i);
2879    km = owl_keyhandler_get_keymap(kh, kmname);
2880    owl_fmtext_append_bold(&fm, "\n\n----------------------------------------------------------------------------------------------------\n\n");
2881    owl_keymap_get_details(km, &fm, 0);
2882  }
2883  owl_fmtext_append_normal(&fm, "\n");
2884 
2885  owl_function_popless_fmtext(&fm);
2886  owl_list_cleanup(&l, g_free);
2887  owl_fmtext_cleanup(&fm);
2888}
2889
2890char *owl_function_keymap_summary(const char *name)
2891{
2892  const owl_keymap *km
2893    = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name);
2894  if (km) return owl_keymap_summary(km);
2895  else return(NULL);
2896}
2897
2898/* TODO: implement for real */
2899void owl_function_show_keymap(const char *name)
2900{
2901  owl_fmtext fm;
2902  const owl_keymap *km;
2903
2904  owl_fmtext_init_null(&fm);
2905  km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name);
2906  if (km) {
2907    owl_keymap_get_details(km, &fm, 1);
2908  } else {
2909    owl_fmtext_append_normal(&fm, "No such keymap...\n");
2910  } 
2911  owl_function_popless_fmtext(&fm);
2912  owl_fmtext_cleanup(&fm);
2913}
2914
2915void owl_function_help_for_command(const char *cmdname)
2916{
2917  owl_fmtext fm;
2918
2919  owl_fmtext_init_null(&fm);
2920  owl_cmd_get_help(owl_global_get_cmddict(&g), cmdname, &fm);
2921  owl_function_popless_fmtext(&fm); 
2922  owl_fmtext_cleanup(&fm);
2923}
2924
2925void owl_function_set_search(const char *string)
2926{
2927  owl_regex re;
2928
2929  if (string && owl_regex_create_quoted(&re, string) == 0) {
2930    owl_global_set_search_re(&g, &re);
2931    owl_regex_cleanup(&re);
2932  } else {
2933    owl_global_set_search_re(&g, NULL);
2934  }
2935}
2936
2937void owl_function_search_helper(int consider_current, int direction)
2938{
2939  /* move to a message that contains the string.  If direction is
2940   * OWL_DIRECTION_DOWNWARDS then search fowards, if direction is
2941   * OWL_DIRECTION_UPWARDS then search backwards.
2942   *
2943   * If consider_current is true then it will stay on the
2944   * current message if it contains the string.
2945   */
2946
2947  const owl_view *v;
2948  int viewsize, i, curmsg, start;
2949  owl_message *m;
2950
2951  v=owl_global_get_current_view(&g);
2952  viewsize=owl_view_get_size(v);
2953  curmsg=owl_global_get_curmsg(&g);
2954 
2955  if (viewsize==0) {
2956    owl_function_makemsg("No messages present");
2957    return;
2958  }
2959
2960  if (consider_current) {
2961    start=curmsg;
2962  } else if (direction==OWL_DIRECTION_DOWNWARDS) {
2963    start=curmsg+1;
2964  } else {
2965    start=curmsg-1;
2966  }
2967
2968  /* bounds check */
2969  if (start>=viewsize || start<0) {
2970    owl_function_makemsg("No further matches found");
2971    return;
2972  }
2973
2974  for (i=start; i<viewsize && i>=0;) {
2975    m=owl_view_get_element(v, i);
2976    if (owl_message_search(m, owl_global_get_search_re(&g))) {
2977      owl_global_set_curmsg(&g, i);
2978      owl_function_calculate_topmsg(direction);
2979      owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2980      if (direction==OWL_DIRECTION_DOWNWARDS) {
2981        owl_global_set_direction_downwards(&g);
2982      } else {
2983        owl_global_set_direction_upwards(&g);
2984      }
2985      return;
2986    }
2987    if (direction==OWL_DIRECTION_DOWNWARDS) {
2988      i++;
2989    } else {
2990      i--;
2991    }
2992    if (owl_global_take_interrupt(&g)) {
2993      owl_function_makemsg("Search interrupted!");
2994      owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2995      return;
2996    }
2997  }
2998  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2999  owl_function_makemsg("No matches found");
3000}
3001
3002/* strips formatting from ztext and returns the unformatted text.
3003 * caller is responsible for freeing. */
3004char *owl_function_ztext_stylestrip(const char *zt)
3005{
3006  owl_fmtext fm;
3007  char *plaintext;
3008
3009  owl_fmtext_init_null(&fm);
3010  owl_fmtext_append_ztext(&fm, zt);
3011  plaintext = owl_fmtext_print_plain(&fm);
3012  owl_fmtext_cleanup(&fm);
3013  return(plaintext);
3014}
3015
3016/* Popup a buddylisting.  If filename is NULL use the default .anyone */
3017void owl_function_buddylist(int aim, int zephyr, const char *filename)
3018{
3019  int i, j, idle;
3020  int interrupted = 0;
3021  owl_fmtext fm;
3022  const owl_buddylist *bl;
3023  const owl_buddy *b;
3024  char *timestr;
3025#ifdef HAVE_LIBZEPHYR
3026  int x;
3027  owl_list anyone;
3028  const char *user;
3029  char *tmp;
3030  ZLocations_t location[200];
3031  int numlocs, ret;
3032#endif
3033
3034  owl_fmtext_init_null(&fm);
3035
3036  /* AIM first */
3037  if (aim && owl_global_is_aimloggedin(&g)) {
3038    bl=owl_global_get_buddylist(&g);
3039
3040    owl_fmtext_append_bold(&fm, "AIM users logged in:\n");
3041    /* we're assuming AIM for now */
3042    j=owl_buddylist_get_size(bl);
3043    for (i=0; i<j; i++) {
3044      b=owl_buddylist_get_buddy_n(bl, i);
3045      idle=owl_buddy_get_idle_time(b);
3046      if (idle!=0) {
3047        timestr=owl_util_minutes_to_timestr(idle);
3048      } else {
3049        timestr=g_strdup("");
3050      }
3051      owl_fmtext_appendf_normal(&fm, "  %-20.20s %-12.12s\n", owl_buddy_get_name(b), timestr);
3052      g_free(timestr);
3053    }
3054  }
3055
3056#ifdef HAVE_LIBZEPHYR
3057  if (zephyr) {
3058    if(!owl_global_is_havezephyr(&g)) {
3059      owl_function_error("Zephyr currently not available.");
3060    } else {
3061      owl_fmtext_append_bold(&fm, "Zephyr users logged in:\n");
3062      owl_list_create(&anyone);
3063      ret=owl_zephyr_get_anyone_list(&anyone, filename);
3064      if (ret) {
3065        if (errno == ENOENT) {
3066          owl_fmtext_append_normal(&fm, " You have not added any zephyr buddies.  Use the\n");
3067          owl_fmtext_append_normal(&fm, " command ':addbuddy zephyr ");
3068          owl_fmtext_append_bold(  &fm, "<username>");
3069          owl_fmtext_append_normal(&fm, "'.\n");
3070        } else {
3071          owl_fmtext_append_normal(&fm, " Could not read zephyr buddies from the .anyone file.\n");
3072        }
3073      } else {
3074        j=owl_list_get_size(&anyone);
3075        for (i=0; i<j; i++) {
3076          user=owl_list_get_element(&anyone, i);
3077          ret=ZLocateUser(zstr(user), &numlocs, ZAUTH);
3078
3079          if (owl_global_take_interrupt(&g)) {
3080            interrupted = 1;
3081            owl_function_makemsg("Interrupted!");
3082            break;
3083          }
3084
3085          if (ret!=ZERR_NONE) {
3086            owl_function_error("Error getting location for %s", user);
3087            continue;
3088          }
3089
3090          numlocs=200;
3091          ret=ZGetLocations(location, &numlocs);
3092          if (ret==0) {
3093            for (x=0; x<numlocs; x++) {
3094              tmp=short_zuser(user);
3095              owl_fmtext_appendf_normal(&fm, "  %-10.10s %-24.24s %-12.12s  %20.20s\n",
3096                                        tmp,
3097                                        location[x].host,
3098                                        location[x].tty,
3099                                        location[x].time);
3100              g_free(tmp);
3101            }
3102            if (numlocs>=200) {
3103              owl_fmtext_append_normal(&fm, "  Too many locations found for this user, truncating.\n");
3104            }
3105          }
3106        }
3107      }
3108      owl_list_cleanup(&anyone, g_free);
3109    }
3110  }
3111#endif
3112
3113  if (aim && zephyr) {
3114    if (owl_perlconfig_is_function("BarnOwl::Hooks::_get_blist")) {
3115      char * perlblist = owl_perlconfig_execute("BarnOwl::Hooks::_get_blist()");
3116      if (perlblist) {
3117        owl_fmtext_append_ztext(&fm, perlblist);
3118        g_free(perlblist);
3119      }
3120    }
3121  }
3122
3123  if(!interrupted) {
3124    owl_function_popless_fmtext(&fm);
3125  }
3126  owl_fmtext_cleanup(&fm);
3127}
3128
3129/* Dump messages in the current view to the file 'filename'. */
3130void owl_function_dump(const char *filename) 
3131{
3132  int i, j;
3133  owl_message *m;
3134  const owl_view *v;
3135  FILE *file;
3136  char *plaintext;
3137
3138  v=owl_global_get_current_view(&g);
3139
3140  /* in the future make it ask yes/no */
3141  /*
3142  ret=stat(filename, &sbuf);
3143  if (!ret) {
3144    ret=owl_function_askyesno("File exists, continue? [Y/n]");
3145    if (!ret) return;
3146  }
3147  */
3148
3149  file=fopen(filename, "w");
3150  if (!file) {
3151    owl_function_error("Error opening file");
3152    return;
3153  }
3154
3155  j=owl_view_get_size(v);
3156  for (i=0; i<j; i++) {
3157    m=owl_view_get_element(v, i);
3158    plaintext = owl_strip_format_chars(owl_message_get_text(m));
3159    if (plaintext) {
3160      fputs(plaintext, file);
3161      g_free(plaintext);
3162    }
3163  }
3164  fclose(file);
3165  owl_function_makemsg("Messages dumped to %s", filename);
3166}
3167
3168void owl_function_do_newmsgproc(void)
3169{
3170  if (owl_global_get_newmsgproc(&g) && strcmp(owl_global_get_newmsgproc(&g), "")) {
3171    /* if there's a process out there, we need to check on it */
3172    if (owl_global_get_newmsgproc_pid(&g)) {
3173      owl_function_debugmsg("Checking on newmsgproc pid==%i", owl_global_get_newmsgproc_pid(&g));
3174      owl_function_debugmsg("Waitpid return is %i", waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG));
3175      waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG);
3176      if (waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG)==-1) {
3177        /* it exited */
3178        owl_global_set_newmsgproc_pid(&g, 0);
3179        owl_function_debugmsg("newmsgproc exited");
3180      } else {
3181        owl_function_debugmsg("newmsgproc did not exit");
3182      }
3183    }
3184   
3185    /* if it exited, fork & exec a new one */
3186    if (owl_global_get_newmsgproc_pid(&g)==0) {
3187      pid_t i;
3188      int myargc;
3189      i=fork();
3190      if (i) {
3191        /* parent set the child's pid */
3192        owl_global_set_newmsgproc_pid(&g, i);
3193        owl_function_debugmsg("I'm the parent and I started a new newmsgproc with pid %i", i);
3194      } else {
3195        /* child exec's the program */
3196        char **parsed;
3197        parsed=owl_parseline(owl_global_get_newmsgproc(&g), &myargc);
3198        if (myargc < 0) {
3199          owl_function_debugmsg("Could not parse newmsgproc '%s': unbalanced quotes?", owl_global_get_newmsgproc(&g));
3200        }
3201        if (myargc <= 0) {
3202          _exit(127);
3203        }
3204        owl_function_debugmsg("About to exec \"%s\" with %d arguments", parsed[0], myargc);
3205       
3206        execvp(parsed[0], parsed);
3207       
3208       
3209        /* was there an error exec'ing? */
3210        owl_function_debugmsg("Cannot run newmsgproc '%s': cannot exec '%s': %s", 
3211                              owl_global_get_newmsgproc(&g), parsed[0], strerror(errno));
3212        _exit(127);
3213      }
3214    }
3215  }
3216}
3217
3218/* print the xterm escape sequence to raise the window */
3219void owl_function_xterm_raise(void)
3220{
3221  printf("\033[5t");
3222}
3223
3224/* print the xterm escape sequence to deiconify the window */
3225void owl_function_xterm_deiconify(void)
3226{
3227  printf("\033[1t");
3228}
3229
3230/* Add the specified command to the startup file.  Eventually this
3231 * should be clever, and rewriting settings that will obviosly
3232 * override earlier settings with 'set' 'bindkey' and 'alias'
3233 * commands.  For now though we just remove any line that would
3234 * duplicate this one and then append this line to the end of
3235 * startupfile.
3236 */
3237void owl_function_addstartup(const char *buff)
3238{
3239  FILE *file;
3240  const char *filename;
3241
3242  filename=owl_global_get_startupfile(&g);
3243
3244  /* delete earlier copies, if the file exists */
3245  if (g_file_test(filename, G_FILE_TEST_EXISTS))
3246    owl_util_file_deleteline(filename, buff, 1);
3247
3248  file=fopen(filename, "a");
3249  if (!file) {
3250    owl_function_error("Error opening startupfile for new command");
3251    return;
3252  }
3253
3254  /* add this line */
3255  fprintf(file, "%s\n", buff);
3256
3257  fclose(file);
3258}
3259
3260/* Remove the specified command from the startup file. */
3261void owl_function_delstartup(const char *buff)
3262{
3263  const char *filename;
3264  filename=owl_global_get_startupfile(&g);
3265  owl_util_file_deleteline(filename, buff, 1);
3266}
3267
3268/* Execute owl commands from the given filename.  If the filename
3269 * is NULL, use the default owl startup commands file.
3270 */
3271void owl_function_source(const char *filename)
3272{
3273  char *path;
3274  FILE *file;
3275  char *s = NULL;
3276  int fail_silent = 0;
3277
3278  if (!filename) {
3279    fail_silent = 1;
3280    path = g_strdup(owl_global_get_startupfile(&g));
3281  } else {
3282    path = owl_util_makepath(filename);
3283  }
3284  file = fopen(path, "r");
3285  g_free(path);
3286  if (!file) {
3287    if (!fail_silent) {
3288      owl_function_error("Error opening file: %s", filename);
3289    }
3290    return;
3291  }
3292  while (owl_getline_chomp(&s, file)) {
3293    if (s[0] == '\0' || s[0] == '#')
3294      continue;
3295    owl_function_command_norv(s);
3296  }
3297
3298  g_free(s);
3299  fclose(file);
3300}
3301
3302void owl_function_change_style(owl_view *v, const char *stylename)
3303{
3304  const owl_style *s;
3305
3306  s=owl_global_get_style_by_name(&g, stylename);
3307  if (!s) {
3308    owl_function_error("No style named %s", stylename);
3309    return;
3310  }
3311  owl_view_set_style(v, s);
3312  owl_messagelist_invalidate_formats(owl_global_get_msglist(&g));
3313  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
3314  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3315}
3316
3317void owl_function_toggleoneline(void)
3318{
3319  owl_view *v;
3320  const owl_style *s;
3321
3322  v=owl_global_get_current_view(&g);
3323  s=owl_view_get_style(v);
3324
3325  if (!owl_style_matches_name(s, "oneline")) {
3326    owl_function_change_style(v, "oneline");
3327  } else {
3328    owl_function_change_style(v, owl_global_get_default_style(&g));
3329  }
3330
3331  owl_messagelist_invalidate_formats(owl_global_get_msglist(&g));
3332  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
3333  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3334}
3335
3336void G_GNUC_PRINTF(1, 2) owl_function_error(const char *fmt, ...)
3337{
3338  static int in_error = 0;
3339  va_list ap;
3340  char *buff;
3341  const char *nl;
3342
3343  if (++in_error > 2) {
3344    /* More than two nested errors, bail immediately. */
3345    in_error--;
3346    return;
3347  }
3348
3349  va_start(ap, fmt);
3350  buff = g_strdup_vprintf(fmt, ap);
3351  va_end(ap);
3352
3353  owl_function_debugmsg("ERROR: %s", buff);
3354  owl_function_log_err(buff);
3355
3356  nl = strchr(buff, '\n');
3357
3358  /*
3359    Showing admin messages triggers a lot of code. If we have a
3360    recursive error call, that's the most likely candidate, so
3361    suppress the call in that case, to try to avoid infinite looping.
3362  */
3363
3364  if(nl && *(nl + 1) && in_error == 1) {
3365    /* Multiline error */
3366    owl_function_adminmsg("ERROR", buff);
3367  } else {
3368    owl_function_makemsg("[Error] %s", buff);
3369  }
3370
3371  g_free(buff);
3372
3373  in_error--;
3374}
3375
3376void owl_function_log_err(const char *string)
3377{
3378  char *date;
3379  time_t now;
3380  char *buff;
3381
3382  now=time(NULL);
3383  date=g_strdup(ctime(&now));
3384  date[strlen(date)-1]='\0';
3385
3386  buff = g_strdup_printf("%s %s", date, string);
3387
3388  owl_errqueue_append_err(owl_global_get_errqueue(&g), buff);
3389
3390  g_free(buff);
3391  g_free(date);
3392}
3393
3394void owl_function_showerrs(void)
3395{
3396  owl_fmtext fm;
3397
3398  owl_fmtext_init_null(&fm);
3399  owl_fmtext_append_normal(&fm, "Errors:\n\n");
3400  owl_errqueue_to_fmtext(owl_global_get_errqueue(&g), &fm);
3401  owl_function_popless_fmtext(&fm);
3402}
3403
3404void G_GNUC_PRINTF(1, 2) owl_function_makemsg(const char *fmt, ...)
3405{
3406  va_list ap;
3407  char *str;
3408
3409  va_start(ap, fmt);
3410  str = g_strdup_vprintf(fmt, ap);
3411  va_end(ap);
3412
3413  owl_function_debugmsg("makemsg: %s", str);
3414  owl_msgwin_set_text_nocopy(&g.msgwin, str);
3415}
3416
3417/* get locations for everyone in .anyone.  If 'notify' is '1' then
3418 * send a pseudo login or logout message for everyone not in sync with
3419 * the global zephyr buddy list.  The list is updated regardless of
3420 * the status of 'notify'.
3421 */
3422void owl_function_zephyr_buddy_check(int notify)
3423{
3424#ifdef HAVE_LIBZEPHYR
3425  int i, j;
3426  owl_list anyone;
3427  GList **zaldlist;
3428  GList *zaldptr;
3429  ZAsyncLocateData_t *zald;
3430  const char *user;
3431
3432  if (!owl_global_is_havezephyr(&g)) return;
3433  owl_global_set_pseudologin_notify(&g, notify);
3434  zaldlist = owl_global_get_zaldlist(&g);
3435
3436  /* Clear the existing ZALDs first. */
3437  zaldptr = g_list_first(*zaldlist);
3438  while (zaldptr) {
3439    ZFreeALD(zaldptr->data);
3440    g_free(zaldptr->data);
3441    zaldptr = g_list_next(zaldptr);
3442  }
3443  g_list_free(*zaldlist);
3444  *zaldlist = NULL;
3445
3446  owl_list_create(&anyone);
3447  owl_zephyr_get_anyone_list(&anyone, NULL);
3448  j = owl_list_get_size(&anyone);
3449  for (i = 0; i < j; i++) {
3450    user = owl_list_get_element(&anyone, i);
3451    zald = g_new(ZAsyncLocateData_t, 1);
3452    if (ZRequestLocations(zstr(user), zald, UNACKED, ZAUTH) == ZERR_NONE) {
3453      *zaldlist = g_list_append(*zaldlist, zald);
3454    } else {
3455      g_free(zald);
3456    }
3457  }
3458
3459  owl_list_cleanup(&anyone, g_free);
3460#endif
3461}
3462
3463void owl_function_aimsearch_results(const char *email, owl_list *namelist)
3464{
3465  owl_fmtext fm;
3466  int i, j;
3467
3468  owl_fmtext_init_null(&fm);
3469  owl_fmtext_append_normal(&fm, "AIM screennames associated with ");
3470  owl_fmtext_append_normal(&fm, email);
3471  owl_fmtext_append_normal(&fm, ":\n");
3472
3473  j=owl_list_get_size(namelist);
3474  for (i=0; i<j; i++) {
3475    owl_fmtext_append_normal(&fm, "  ");
3476    owl_fmtext_append_normal(&fm, owl_list_get_element(namelist, i));
3477    owl_fmtext_append_normal(&fm, "\n");
3478  }
3479
3480  owl_function_popless_fmtext(&fm);
3481  owl_fmtext_cleanup(&fm);
3482}
3483
3484int owl_function_get_color_count(void)
3485{
3486     return COLORS;
3487}
3488
3489void _owl_function_mark_message(const owl_message *m)
3490{
3491  if (m) {
3492    owl_global_set_markedmsgid(&g, owl_message_get_id(m));
3493    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3494  }
3495}
3496
3497void owl_function_mark_message(void)
3498{
3499  const owl_message *m;
3500  const owl_view *v;
3501
3502  v=owl_global_get_current_view(&g);
3503
3504  /* bail if there's no current message */
3505  if (owl_view_get_size(v) < 1) {
3506    owl_function_error("No messages to mark");
3507    return;
3508  }
3509
3510  /* mark the message */
3511  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
3512  _owl_function_mark_message(m);
3513  owl_function_makemsg("Mark set");
3514}
3515
3516void owl_function_swap_cur_marked(void)
3517{
3518  int marked_id;
3519  const owl_message *m;
3520  const owl_view *v;
3521
3522  marked_id=owl_global_get_markedmsgid(&g);
3523  if (marked_id == -1) {
3524    owl_function_error("Mark not set.");
3525    return;
3526  }
3527
3528  v=owl_global_get_current_view(&g);
3529  /* bail if there's no current message */
3530  if (owl_view_get_size(v) < 1) {
3531    return;
3532  }
3533
3534  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
3535  _owl_function_mark_message(m);
3536  owl_global_set_curmsg(&g, owl_view_get_nearest_to_msgid(v, marked_id));
3537  owl_function_calculate_topmsg(OWL_DIRECTION_NONE);
3538  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3539  owl_global_set_direction_downwards(&g);
3540}
Note: See TracBrowser for help on using the repository browser.