source: message.c @ 7a1c90d

barnowl_perlaim
Last change on this file since 7a1c90d was c453ada, checked in by Geoffrey Thomas <geofft@mit.edu>, 16 years ago
Remove aim.c. buddylist.c, buddy.c, libfaim, and everything that uses them.
  • Property mode set to 100644
File size: 23.2 KB
Line 
1#include <stdlib.h>
2#include <unistd.h>
3#include <string.h>
4#include <sys/socket.h>
5#include <netdb.h>
6#include <sys/types.h>
7#include <sys/socket.h>
8#include <netinet/in.h>
9#include <arpa/inet.h>
10#include <time.h>
11#include "owl.h"
12
13static const char fileIdent[] = "$Id$";
14
15static owl_fmtext_cache fmtext_cache[OWL_FMTEXT_CACHE_SIZE];
16static owl_fmtext_cache * fmtext_cache_next = fmtext_cache;
17
18void owl_message_init_fmtext_cache ()
19{
20    int i;
21    for(i = 0; i < OWL_FMTEXT_CACHE_SIZE; i++) {
22        owl_fmtext_init_null(&(fmtext_cache[i].fmtext));
23        fmtext_cache[i].message = NULL;
24    }
25}
26
27owl_fmtext_cache * owl_message_next_fmtext() /*noproto*/
28{
29    owl_fmtext_cache * f = fmtext_cache_next;
30    if(fmtext_cache_next->message != NULL) {
31        owl_message_invalidate_format(fmtext_cache_next->message);
32    }
33    fmtext_cache_next++;
34    if(fmtext_cache_next - fmtext_cache == OWL_FMTEXT_CACHE_SIZE)
35        fmtext_cache_next = fmtext_cache;
36    return f;
37}
38
39void owl_message_init(owl_message *m)
40{
41  m->id=owl_global_get_nextmsgid(&g);
42  owl_message_set_direction_none(m);
43  m->delete=0;
44  m->zwriteline=NULL;
45
46  owl_message_set_hostname(m, "");
47  owl_list_create(&(m->attributes));
48 
49  /* save the time */
50  m->time=time(NULL);
51  m->timestr=owl_strdup(ctime(&(m->time)));
52  m->timestr[strlen(m->timestr)-1]='\0';
53
54  m->fmtext = NULL;
55}
56
57/* add the named attribute to the message.  If an attribute with the
58 * name already exists, replace the old value with the new value
59 */
60void owl_message_set_attribute(owl_message *m, char *attrname, char *attrvalue)
61{
62  int i, j;
63  owl_pair *p = NULL, *pair = NULL;
64
65  /* look for an existing pair with this key, */
66  j=owl_list_get_size(&(m->attributes));
67  for (i=0; i<j; i++) {
68    p=owl_list_get_element(&(m->attributes), i);
69    if (!strcmp(owl_pair_get_key(p), attrname)) {
70      owl_free(owl_pair_get_value(p));
71      pair = p;
72      break;
73    }
74  }
75
76  if(pair ==  NULL) {
77    pair = owl_malloc(sizeof(owl_pair));
78    owl_pair_create(pair, owl_global_intern(&g, attrname), NULL);
79    owl_list_append_element(&(m->attributes), pair);
80  }
81  owl_pair_set_value(pair, owl_validate_or_convert(attrvalue));
82}
83
84/* return the value associated with the named attribute, or NULL if
85 * the attribute does not exist
86 */
87char *owl_message_get_attribute_value(owl_message *m, char *attrname)
88{
89  int i, j;
90  owl_pair *p;
91
92  j=owl_list_get_size(&(m->attributes));
93  for (i=0; i<j; i++) {
94    p=owl_list_get_element(&(m->attributes), i);
95    if (!strcmp(owl_pair_get_key(p), attrname)) {
96      return(owl_pair_get_value(p));
97    }
98  }
99
100  /*
101  owl_function_debugmsg("No attribute %s found for message %i",
102                        attrname,
103                        owl_message_get_id(m));
104  */
105  return(NULL);
106}
107
108/* We cheat and indent it for now, since we really want this for
109 * the 'info' function.  Later there should just be a generic
110 * function to indent fmtext.
111 */
112void owl_message_attributes_tofmtext(owl_message *m, owl_fmtext *fm) {
113  int i, j;
114  owl_pair *p;
115  char *buff;
116
117  owl_fmtext_init_null(fm);
118
119  j=owl_list_get_size(&(m->attributes));
120  for (i=0; i<j; i++) {
121    p=owl_list_get_element(&(m->attributes), i);
122    buff=owl_sprintf("  %-15.15s: %-35.35s\n", owl_pair_get_key(p), owl_pair_get_value(p));
123    if(buff == NULL) {
124      buff=owl_sprintf("  %-15.15s: %-35.35s\n", owl_pair_get_key(p), "<error>");
125      if(buff == NULL)
126        buff=owl_strdup("   <error>\n");
127    }
128    owl_fmtext_append_normal(fm, buff);
129    owl_free(buff);
130  }
131}
132
133void owl_message_invalidate_format(owl_message *m)
134{
135  if(m->fmtext) {
136    m->fmtext->message = NULL;
137    owl_fmtext_clear(&(m->fmtext->fmtext));
138    m->fmtext=NULL;
139  }
140}
141
142owl_fmtext *owl_message_get_fmtext(owl_message *m)
143{
144  owl_message_format(m);
145  return(&(m->fmtext->fmtext));
146}
147
148void owl_message_format(owl_message *m)
149{
150  owl_style *s;
151  owl_view *v;
152
153  if (!m->fmtext) {
154    m->fmtext = owl_message_next_fmtext();
155    m->fmtext->message = m;
156    /* for now we assume there's just the one view and use that style */
157    v=owl_global_get_current_view(&g);
158    s=owl_view_get_style(v);
159
160    owl_style_get_formattext(s, &(m->fmtext->fmtext), m);
161  }
162}
163
164void owl_message_set_class(owl_message *m, char *class)
165{
166  owl_message_set_attribute(m, "class", class);
167}
168
169char *owl_message_get_class(owl_message *m)
170{
171  char *class;
172
173  class=owl_message_get_attribute_value(m, "class");
174  if (!class) return("");
175  return(class);
176}
177
178void owl_message_set_instance(owl_message *m, char *inst)
179{
180  owl_message_set_attribute(m, "instance", inst);
181}
182
183char *owl_message_get_instance(owl_message *m)
184{
185  char *instance;
186
187  instance=owl_message_get_attribute_value(m, "instance");
188  if (!instance) return("");
189  return(instance);
190}
191
192void owl_message_set_sender(owl_message *m, char *sender)
193{
194  owl_message_set_attribute(m, "sender", sender);
195}
196
197char *owl_message_get_sender(owl_message *m)
198{
199  char *sender;
200
201  sender=owl_message_get_attribute_value(m, "sender");
202  if (!sender) return("");
203  return(sender);
204}
205
206void owl_message_set_zsig(owl_message *m, char *zsig)
207{
208  owl_message_set_attribute(m, "zsig", zsig);
209}
210
211char *owl_message_get_zsig(owl_message *m)
212{
213  char *zsig;
214
215  zsig=owl_message_get_attribute_value(m, "zsig");
216  if (!zsig) return("");
217  return(zsig);
218}
219
220void owl_message_set_recipient(owl_message *m, char *recip)
221{
222  owl_message_set_attribute(m, "recipient", recip);
223}
224
225char *owl_message_get_recipient(owl_message *m)
226{
227  /* this is stupid for outgoing messages, we need to fix it. */
228
229  char *recip;
230
231  recip=owl_message_get_attribute_value(m, "recipient");
232  if (!recip) return("");
233  return(recip);
234}
235
236void owl_message_set_realm(owl_message *m, char *realm)
237{
238  owl_message_set_attribute(m, "realm", realm);
239}
240
241char *owl_message_get_realm(owl_message *m)
242{
243  char *realm;
244 
245  realm=owl_message_get_attribute_value(m, "realm");
246  if (!realm) return("");
247  return(realm);
248}
249
250void owl_message_set_body(owl_message *m, char *body)
251{
252  owl_message_set_attribute(m, "body", body);
253}
254
255char *owl_message_get_body(owl_message *m)
256{
257  char *body;
258
259  body=owl_message_get_attribute_value(m, "body");
260  if (!body) return("");
261  return(body);
262}
263
264
265void owl_message_set_opcode(owl_message *m, char *opcode)
266{
267  owl_message_set_attribute(m, "opcode", opcode);
268}
269
270char *owl_message_get_opcode(owl_message *m)
271{
272  char *opcode;
273
274  opcode=owl_message_get_attribute_value(m, "opcode");
275  if (!opcode) return("");
276  return(opcode);
277}
278
279
280void owl_message_set_islogin(owl_message *m)
281{
282  owl_message_set_attribute(m, "loginout", "login");
283}
284
285
286void owl_message_set_islogout(owl_message *m)
287{
288  owl_message_set_attribute(m, "loginout", "logout");
289}
290
291int owl_message_is_loginout(owl_message *m)
292{
293  char *res;
294
295  res=owl_message_get_attribute_value(m, "loginout");
296  if (!res) return(0);
297  return(1);
298}
299
300int owl_message_is_login(owl_message *m)
301{
302  char *res;
303
304  res=owl_message_get_attribute_value(m, "loginout");
305  if (!res) return(0);
306  if (!strcmp(res, "login")) return(1);
307  return(0);
308}
309
310
311int owl_message_is_logout(owl_message *m)
312{
313  char *res;
314
315  res=owl_message_get_attribute_value(m, "loginout");
316  if (!res) return(0);
317  if (!strcmp(res, "logout")) return(1);
318  return(0);
319}
320
321void owl_message_set_isprivate(owl_message *m)
322{
323  owl_message_set_attribute(m, "isprivate", "true");
324}
325
326int owl_message_is_private(owl_message *m)
327{
328  char *res;
329
330  res=owl_message_get_attribute_value(m, "isprivate");
331  if (!res) return(0);
332  return !strcmp(res, "true");
333}
334
335char *owl_message_get_timestr(owl_message *m)
336{
337  if (m->timestr) return(m->timestr);
338  return("");
339}
340
341/* caller must free the return */
342char *owl_message_get_shorttimestr(owl_message *m)
343{
344  struct tm *tmstruct;
345  char *out;
346
347  tmstruct=localtime(&(m->time));
348  out=owl_sprintf("%2.2i:%2.2i", tmstruct->tm_hour, tmstruct->tm_min);
349  if (out) return(out);
350  return("??:??");
351}
352
353void owl_message_set_type_admin(owl_message *m)
354{
355  owl_message_set_attribute(m, "type", "admin");
356}
357
358void owl_message_set_type_loopback(owl_message *m)
359{
360  owl_message_set_attribute(m, "type", "loopback");
361}
362
363void owl_message_set_type_zephyr(owl_message *m)
364{
365  owl_message_set_attribute(m, "type", "zephyr");
366}
367
368void owl_message_set_type_aim(owl_message *m)
369{
370  owl_message_set_attribute(m, "type", "AIM");
371}
372
373void owl_message_set_type(owl_message *m, char* type)
374{
375  owl_message_set_attribute(m, "type", type);
376}
377
378int owl_message_is_type(owl_message *m, char *type) {
379  char * t = owl_message_get_attribute_value(m, "type");
380  if(!t) return 0;
381  return !strcasecmp(t, type);
382}
383                                               
384int owl_message_is_type_admin(owl_message *m)
385{
386  return owl_message_is_type(m, "admin");
387}
388
389int owl_message_is_type_generic(owl_message *m)
390{
391  char * t = owl_message_get_attribute_value(m, "type");
392  return (t == NULL);
393}
394
395int owl_message_is_type_zephyr(owl_message *m)
396{
397  return owl_message_is_type(m, "zephyr");
398}
399
400int owl_message_is_type_aim(owl_message *m)
401{
402  return owl_message_is_type(m, "aim");
403}
404
405/* XXX TODO: deprecate this */
406int owl_message_is_type_jabber(owl_message *m)
407{
408  return owl_message_is_type(m, "jabber");
409}
410
411int owl_message_is_type_loopback(owl_message *m)
412{
413  return owl_message_is_type(m, "loopback");
414}
415
416int owl_message_is_pseudo(owl_message *m)
417{
418  if (owl_message_get_attribute_value(m, "pseudo")) return(1);
419  return(0);
420}
421
422char *owl_message_get_text(owl_message *m)
423{
424  owl_message_format(m);
425  return(owl_fmtext_get_text(&(m->fmtext->fmtext)));
426}
427
428void owl_message_set_direction_in(owl_message *m)
429{
430  m->direction=OWL_MESSAGE_DIRECTION_IN;
431}
432
433void owl_message_set_direction_out(owl_message *m)
434{
435  m->direction=OWL_MESSAGE_DIRECTION_OUT;
436}
437
438void owl_message_set_direction_none(owl_message *m)
439{
440  m->direction=OWL_MESSAGE_DIRECTION_NONE;
441}
442
443void owl_message_set_direction(owl_message *m, int direction)
444{
445  m->direction=direction;
446}
447
448int owl_message_is_direction_in(owl_message *m)
449{
450  if (m->direction==OWL_MESSAGE_DIRECTION_IN) return(1);
451  return(0);
452}
453
454int owl_message_is_direction_out(owl_message *m)
455{
456  if (m->direction==OWL_MESSAGE_DIRECTION_OUT) return(1);
457  return(0);
458}
459
460int owl_message_is_direction_none(owl_message *m)
461{
462  if (m->direction==OWL_MESSAGE_DIRECTION_NONE) return(1);
463  return(0);
464}
465
466int owl_message_get_numlines(owl_message *m)
467{
468  if (m == NULL) return(0);
469  owl_message_format(m);
470  return(owl_fmtext_num_lines(&(m->fmtext->fmtext)));
471}
472
473void owl_message_mark_delete(owl_message *m)
474{
475  if (m == NULL) return;
476  m->delete=1;
477}
478
479void owl_message_unmark_delete(owl_message *m)
480{
481  if (m == NULL) return;
482  m->delete=0;
483}
484
485char *owl_message_get_zwriteline(owl_message *m)
486{
487  if(!m->zwriteline)
488    return "";
489  return(m->zwriteline);
490}
491
492void owl_message_set_zwriteline(owl_message *m, char *line)
493{
494  if(m->zwriteline) owl_free(m->zwriteline);
495  m->zwriteline=owl_strdup(line);
496}
497
498int owl_message_is_delete(owl_message *m)
499{
500  if (m == NULL) return(0);
501  if (m->delete==1) return(1);
502  return(0);
503}
504
505#ifdef HAVE_LIBZEPHYR
506ZNotice_t *owl_message_get_notice(owl_message *m)
507{
508  return(&(m->notice));
509}
510#else
511void *owl_message_get_notice(owl_message *m)
512{
513  return(NULL);
514}
515#endif
516
517void owl_message_set_hostname(owl_message *m, char *hostname)
518{
519  m->hostname=owl_global_intern(&g, hostname);
520}
521
522char *owl_message_get_hostname(owl_message *m)
523{
524  return(m->hostname);
525}
526
527void owl_message_curs_waddstr(owl_message *m, WINDOW *win, int aline, int bline, int acol, int bcol, int fgcolor, int bgcolor)
528{
529  owl_fmtext a, b;
530
531  /* this will ensure that our cached copy is up to date */
532  owl_message_format(m);
533
534  owl_fmtext_init_null(&a);
535  owl_fmtext_init_null(&b);
536 
537  owl_fmtext_truncate_lines(&(m->fmtext->fmtext), aline, bline-aline, &a);
538  owl_fmtext_truncate_cols(&a, acol, bcol, &b);
539  owl_fmtext_colorize(&b, fgcolor);
540  owl_fmtext_colorizebg(&b, bgcolor);
541
542  owl_fmtext_curs_waddstr(&b, win);
543
544  owl_fmtext_free(&a);
545  owl_fmtext_free(&b);
546}
547
548int owl_message_is_personal(owl_message *m)
549{
550  owl_filter * f = owl_global_get_filter(&g, "personal");
551  if(!f) {
552      owl_function_error("personal filter is not defined");
553      return (0);
554  }
555  return owl_filter_message_match(f, m);
556}
557
558int owl_message_is_question(owl_message *m)
559{
560  if(!owl_message_is_type_admin(m)) return 0;
561  if(owl_message_get_attribute_value(m, "question") != NULL) return 1;
562  return 0;
563}
564
565int owl_message_is_answered(owl_message *m) {
566  char *q;
567  if(!owl_message_is_question(m)) return 0;
568  q = owl_message_get_attribute_value(m, "question");
569  if(!q) return 0;
570  return !strcmp(q, "answered");
571}
572
573void owl_message_set_isanswered(owl_message *m) {
574  owl_message_set_attribute(m, "question", "answered");
575}
576
577int owl_message_is_mail(owl_message *m)
578{
579  if (owl_message_is_type_zephyr(m)) {
580    if (!strcasecmp(owl_message_get_class(m), "mail") && owl_message_is_private(m)) {
581      return(1);
582    } else {
583      return(0);
584    }
585  }
586  return(0);
587}
588
589int owl_message_is_ping(owl_message *m)
590{
591  if (owl_message_is_type_zephyr(m)) {
592    if (!strcasecmp(owl_message_get_opcode(m), "ping")) {
593      return(1);
594    } else {
595      return(0);
596    }
597  }
598  return(0);
599}
600
601/* caller must free return value. */
602char *owl_message_get_cc(owl_message *m)
603{
604  char *cur, *out, *end;
605
606  cur = owl_message_get_body(m);
607  while (*cur && *cur==' ') cur++;
608  if (strncasecmp(cur, "cc:", 3)) return(NULL);
609  cur+=3;
610  while (*cur && *cur==' ') cur++;
611  out = owl_strdup(cur);
612  end = strchr(out, '\n');
613  if (end) end[0] = '\0';
614  return(out);
615}
616
617/* caller must free return value */
618char *owl_message_get_cc_without_recipient(owl_message *m)
619{
620  char *cc, *out, *end, *user, *shortuser, *recip;
621
622  cc = owl_message_get_cc(m);
623  if (cc == NULL)
624    return NULL;
625
626  recip = short_zuser(owl_message_get_recipient(m));
627  out = owl_malloc(strlen(cc));
628  end = out;
629
630  user = strtok(cc, " ");
631  while (user != NULL) {
632    shortuser = short_zuser(user);
633    if (strcasecmp(shortuser, recip) != 0) {
634      strcpy(end, user);
635      end[strlen(user)] = ' ';
636      end += strlen(user) + 1;
637    }
638    free(shortuser);
639    user = strtok(NULL, " ");
640  }
641  end[0] = '\0';
642
643  owl_free(recip);
644  owl_free(cc);
645
646  if (strlen(out) == 0) {
647    owl_free(out);
648    out = NULL;
649  }
650
651  return(out);
652}
653
654int owl_message_get_id(owl_message *m)
655{
656  return(m->id);
657}
658
659char *owl_message_get_type(owl_message *m) {
660  char * type = owl_message_get_attribute_value(m, "type");
661  if(!type) {
662    return "generic";
663  }
664  return type;
665}
666
667char *owl_message_get_direction(owl_message *m) {
668  switch (m->direction) {
669  case OWL_MESSAGE_DIRECTION_IN:
670    return("in");
671  case OWL_MESSAGE_DIRECTION_OUT:
672    return("out");
673  case OWL_MESSAGE_DIRECTION_NONE:
674    return("none");
675  default:
676    return("unknown");
677  }
678}
679
680int owl_message_parse_direction(char *d) {
681  if(!strcmp(d, "in")) {
682    return OWL_MESSAGE_DIRECTION_IN;
683  } else if(!strcmp(d, "out")) {
684    return OWL_MESSAGE_DIRECTION_OUT;
685  } else {
686    return OWL_MESSAGE_DIRECTION_NONE;
687  }
688}
689
690
691char *owl_message_get_login(owl_message *m) {
692  if (owl_message_is_login(m)) {
693    return "login";
694  } else if (owl_message_is_logout(m)) {
695    return "logout";
696  } else {
697    return "none";
698  }
699}
700
701
702char *owl_message_get_header(owl_message *m) {
703  return owl_message_get_attribute_value(m, "adminheader");
704}
705
706/* return 1 if the message contains "string", 0 otherwise.  This is
707 * case insensitive because the functions it uses are
708 */
709int owl_message_search(owl_message *m, char *string)
710{
711
712  owl_message_format(m); /* is this necessary? */
713 
714  return (owl_fmtext_search(&(m->fmtext->fmtext), string));
715}
716
717
718/* if loginout == -1 it's a logout message
719 *                 0 it's not a login/logout message
720 *                 1 it's a login message
721 */
722void owl_message_create_aim(owl_message *m, char *sender, char *recipient, char *text, int direction, int loginout)
723{
724  owl_message_init(m);
725  owl_message_set_body(m, text);
726  owl_message_set_sender(m, sender);
727  owl_message_set_recipient(m, recipient);
728  owl_message_set_type_aim(m);
729
730  if (direction==OWL_MESSAGE_DIRECTION_IN) {
731    owl_message_set_direction_in(m);
732  } else if (direction==OWL_MESSAGE_DIRECTION_OUT) {
733    owl_message_set_direction_out(m);
734  }
735
736  /* for now all messages that aren't loginout are private */
737  if (!loginout) {
738    owl_message_set_isprivate(m);
739  }
740
741  if (loginout==-1) {
742    owl_message_set_islogout(m);
743  } else if (loginout==1) {
744    owl_message_set_islogin(m);
745  }
746}
747
748void owl_message_create_admin(owl_message *m, char *header, char *text)
749{
750  owl_message_init(m);
751  owl_message_set_type_admin(m);
752  owl_message_set_body(m, text);
753  owl_message_set_attribute(m, "adminheader", header); /* just a hack for now */
754}
755
756/* caller should set the direction */
757void owl_message_create_loopback(owl_message *m, char *text)
758{
759  owl_message_init(m);
760  owl_message_set_type_loopback(m);
761  owl_message_set_body(m, text);
762  owl_message_set_sender(m, "loopsender");
763  owl_message_set_recipient(m, "looprecip");
764  owl_message_set_isprivate(m);
765}
766
767#ifdef HAVE_LIBZEPHYR
768void owl_message_create_from_znotice(owl_message *m, ZNotice_t *n)
769{
770  struct hostent *hent;
771  char *ptr, *tmp, *tmp2;
772  int len;
773
774  owl_message_init(m);
775 
776  owl_message_set_type_zephyr(m);
777  owl_message_set_direction_in(m);
778 
779  /* first save the full notice */
780  memcpy(&(m->notice), n, sizeof(ZNotice_t));
781
782  /* a little gross, we'll replace \r's with ' ' for now */
783  owl_zephyr_hackaway_cr(&(m->notice));
784 
785  /* save the time, we need to nuke the string saved by message_init */
786  if (m->timestr) owl_free(m->timestr);
787  m->time=n->z_time.tv_sec;
788  m->timestr=owl_strdup(ctime(&(m->time)));
789  m->timestr[strlen(m->timestr)-1]='\0';
790
791  /* set other info */
792  owl_message_set_sender(m, n->z_sender);
793  owl_message_set_class(m, n->z_class);
794  owl_message_set_instance(m, n->z_class_inst);
795  owl_message_set_recipient(m, n->z_recipient);
796  if (n->z_opcode) {
797    owl_message_set_opcode(m, n->z_opcode);
798  } else {
799    owl_message_set_opcode(m, "");
800  }
801  owl_message_set_zsig(m, owl_zephyr_get_zsig(n, &len));
802
803  if ((ptr=strchr(n->z_recipient, '@'))!=NULL) {
804    owl_message_set_realm(m, ptr+1);
805  } else {
806    owl_message_set_realm(m, owl_zephyr_get_realm());
807  }
808
809  /* Set the "isloginout" attribute if it's a login message */
810  if (!strcasecmp(n->z_class, "login") || !strcasecmp(n->z_class, OWL_WEBZEPHYR_CLASS)) {
811    if (!strcasecmp(n->z_opcode, "user_login") || !strcasecmp(n->z_opcode, "user_logout")) {
812      tmp=owl_zephyr_get_field(n, 1);
813      owl_message_set_attribute(m, "loginhost", tmp);
814      owl_free(tmp);
815
816      tmp=owl_zephyr_get_field(n, 3);
817      owl_message_set_attribute(m, "logintty", tmp);
818      owl_free(tmp);
819    }
820
821    if (!strcasecmp(n->z_opcode, "user_login")) {
822      owl_message_set_islogin(m);
823    } else if (!strcasecmp(n->z_opcode, "user_logout")) {
824      owl_message_set_islogout(m);
825    }
826  }
827
828 
829  /* set the "isprivate" attribute if it's a private zephyr.
830   ``private'' means recipient is non-empty and doesn't start wit
831   `@' */
832  if (*n->z_recipient && *n->z_recipient != '@') {
833    owl_message_set_isprivate(m);
834  }
835
836  /* set the "isauto" attribute if it's an autoreply */
837  if (!strcasecmp(n->z_message, "Automated reply:") ||
838      !strcasecmp(n->z_opcode, "auto")) {
839    owl_message_set_attribute(m, "isauto", "");
840  }
841
842  m->zwriteline=owl_strdup("");
843
844  /* save the hostname */
845  owl_function_debugmsg("About to do gethostbyaddr");
846  hent=gethostbyaddr((char *) &(n->z_uid.zuid_addr), sizeof(n->z_uid.zuid_addr), AF_INET);
847  if (hent && hent->h_name) {
848    owl_message_set_hostname(m, hent->h_name);
849  } else {
850    owl_message_set_hostname(m, inet_ntoa(n->z_sender_addr));
851  }
852
853  /* set the body */
854  tmp=owl_zephyr_get_message(n, m);
855  if (owl_global_is_newlinestrip(&g)) {
856    tmp2=owl_util_stripnewlines(tmp);
857    owl_message_set_body(m, tmp2);
858    owl_free(tmp2);
859  } else {
860    owl_message_set_body(m, tmp);
861  }
862  owl_free(tmp);
863
864#ifdef OWL_ENABLE_ZCRYPT
865  /* if zcrypt is enabled try to decrypt the message */
866  if (owl_global_is_zcrypt(&g) && !strcasecmp(n->z_opcode, "crypt")) {
867    char *out;
868    int ret;
869
870    out=owl_malloc(strlen(owl_message_get_body(m))*16+20);
871    ret=owl_zcrypt_decrypt(out, owl_message_get_body(m), owl_message_get_class(m), owl_message_get_instance(m));
872    if (ret==0) {
873      owl_message_set_body(m, out);
874    } else {
875      owl_free(out);
876    }
877  }
878#endif 
879}
880#else
881void owl_message_create_from_znotice(owl_message *m, void *n)
882{
883}
884#endif
885
886/* If 'direction' is '0' it is a login message, '1' is a logout message. */
887void owl_message_create_pseudo_zlogin(owl_message *m, int direction, char *user, char *host, char *time, char *tty)
888{
889  char *longuser, *ptr;
890
891#ifdef HAVE_LIBZEPHYR
892  memset(&(m->notice), 0, sizeof(ZNotice_t));
893#endif
894 
895  longuser=long_zuser(user);
896 
897  owl_message_init(m);
898 
899  owl_message_set_type_zephyr(m);
900  owl_message_set_direction_in(m);
901
902  owl_message_set_attribute(m, "pseudo", "");
903  owl_message_set_attribute(m, "loginhost", host ? host : "");
904  owl_message_set_attribute(m, "logintty", tty ? tty : "");
905
906  owl_message_set_sender(m, longuser);
907  owl_message_set_class(m, "LOGIN");
908  owl_message_set_instance(m, longuser);
909  owl_message_set_recipient(m, "");
910  if (direction==0) {
911    owl_message_set_opcode(m, "USER_LOGIN");
912    owl_message_set_islogin(m);
913  } else if (direction==1) {
914    owl_message_set_opcode(m, "USER_LOGOUT");
915    owl_message_set_islogout(m);
916  }
917
918  if ((ptr=strchr(longuser, '@'))!=NULL) {
919    owl_message_set_realm(m, ptr+1);
920  } else {
921    owl_message_set_realm(m, owl_zephyr_get_realm());
922  }
923
924  m->zwriteline=owl_strdup("");
925
926  owl_message_set_body(m, "<uninitialized>");
927
928  /* save the hostname */
929  owl_function_debugmsg("create_pseudo_login: host is %s", host ? host : "");
930  owl_message_set_hostname(m, host ? host : "");
931  owl_free(longuser);
932}
933
934void owl_message_create_from_zwriteline(owl_message *m, char *line, char *body, char *zsig)
935{
936  owl_zwrite z;
937  int ret;
938  char hostbuff[5000];
939 
940  owl_message_init(m);
941
942  /* create a zwrite for the purpose of filling in other message fields */
943  owl_zwrite_create_from_line(&z, line);
944
945  /* set things */
946  owl_message_set_direction_out(m);
947  owl_message_set_type_zephyr(m);
948  owl_message_set_sender(m, owl_zephyr_get_sender());
949  owl_message_set_class(m, owl_zwrite_get_class(&z));
950  owl_message_set_instance(m, owl_zwrite_get_instance(&z));
951  if (owl_zwrite_get_numrecips(&z)>0) {
952    owl_message_set_recipient(m,
953                              long_zuser(owl_zwrite_get_recip_n(&z, 0))); /* only gets the first user, must fix */
954  }
955  owl_message_set_opcode(m, owl_zwrite_get_opcode(&z));
956  owl_message_set_realm(m, owl_zwrite_get_realm(&z)); /* also a hack, but not here */
957  m->zwriteline=owl_strdup(line);
958  owl_message_set_body(m, body);
959  owl_message_set_zsig(m, zsig);
960 
961  /* save the hostname */
962  ret=gethostname(hostbuff, MAXHOSTNAMELEN);
963  hostbuff[MAXHOSTNAMELEN]='\0';
964  if (ret) {
965    owl_message_set_hostname(m, "localhost");
966  } else {
967    owl_message_set_hostname(m, hostbuff);
968  }
969
970  /* set the "isprivate" attribute if it's a private zephyr. */
971  if (owl_zwrite_is_personal(&z)) {
972    owl_message_set_isprivate(m);
973  }
974
975  owl_zwrite_free(&z);
976}
977
978void owl_message_pretty_zsig(owl_message *m, char *buff)
979{
980  /* stick a one line version of the zsig in buff */
981  char *ptr;
982
983  strcpy(buff, owl_message_get_zsig(m));
984  ptr=strchr(buff, '\n');
985  if (ptr) ptr[0]='\0';
986}
987
988void owl_message_free(owl_message *m)
989{
990  int i, j;
991  owl_pair *p;
992#ifdef HAVE_LIBZEPHYR   
993  if (owl_message_is_type_zephyr(m) && owl_message_is_direction_in(m)) {
994    ZFreeNotice(&(m->notice));
995  }
996#endif
997  if (m->timestr) owl_free(m->timestr);
998  if (m->zwriteline) owl_free(m->zwriteline);
999
1000  /* free all the attributes */
1001  j=owl_list_get_size(&(m->attributes));
1002  for (i=0; i<j; i++) {
1003    p=owl_list_get_element(&(m->attributes), i);
1004    owl_free(owl_pair_get_value(p));
1005    owl_free(p);
1006  }
1007
1008  owl_list_free_simple(&(m->attributes));
1009 
1010  owl_message_invalidate_format(m);
1011}
Note: See TracBrowser for help on using the repository browser.