source: message.c @ 5c7b1b1

barnowl_perlaimdebianowlrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 5c7b1b1 was d309eb3, checked in by James M. Kretchmar <kretch@mit.edu>, 21 years ago
Fixed a memory bug in getsubs Added receive support for zcrypt messages Added the 'zcrypt' variable which controls whether or not zcrypt messages are decrypted 'reply' is disabled for zcrypt until sending zcrypt works Started implementing zcrypt command
  • Property mode set to 100644
File size: 21.7 KB
RevLine 
[7d4fbcd]1#include <zephyr/zephyr.h>
2#include <stdlib.h>
[b45293f]3#include <unistd.h>
[7d4fbcd]4#include <string.h>
5#include <sys/socket.h>
6#include <netdb.h>
7#include <sys/types.h>
8#include <sys/socket.h>
9#include <netinet/in.h>
10#include <arpa/inet.h>
11#include <time.h>
12#include "owl.h"
13
[1aee7d9]14static const char fileIdent[] = "$Id$";
15
[4b464a4]16void owl_message_init_raw(owl_message *m) {
[7d4fbcd]17  time_t t;
18
19  m->id=owl_global_get_nextmsgid(&g);
[4b464a4]20  m->type=OWL_MESSAGE_TYPE_GENERIC;
21  owl_message_set_direction_none(m);
[7d4fbcd]22  m->delete=0;
[4b464a4]23  m->sender=owl_strdup("");
[7d4fbcd]24  m->class=owl_strdup("");
25  m->inst=owl_strdup("");
26  m->recip=owl_strdup("");
27  m->opcode=owl_strdup("");
28  m->realm=owl_strdup("");
[b45293f]29  m->zsig=owl_strdup("");
[7d4fbcd]30  strcpy(m->hostname, "");
31  m->zwriteline=strdup("");
32
33  /* save the time */
34  t=time(NULL);
35  m->time=owl_strdup(ctime(&t));
36  m->time[strlen(m->time)-1]='\0';
[4b464a4]37}
38
39
40owl_fmtext *owl_message_get_fmtext(owl_message *m) {
41  return(&(m->fmtext));
42}
43
44void owl_message_set_class(owl_message *m, char *class) {
45  if (m->class) owl_free(m->class);
46  m->class=owl_strdup(class);
47}
48
49char *owl_message_get_class(owl_message *m) {
50  return(m->class);
51}
52
53void owl_message_set_instance(owl_message *m, char *inst) {
54  if (m->inst) owl_free(m->inst);
55  m->inst=owl_strdup(inst);
56}
57
58char *owl_message_get_instance(owl_message *m) {
59  return(m->inst);
60}
61
62void owl_message_set_sender(owl_message *m, char *sender) {
63  if (m->sender) owl_free(m->sender);
64  m->sender=owl_strdup(sender);
65}
66
67char *owl_message_get_sender(owl_message *m) {
68  return(m->sender);
69}
70
[b45293f]71void owl_message_set_zsig(owl_message *m, char *zsig) {
72  if (m->zsig) owl_free(m->zsig);
73  m->zsig=owl_strdup(zsig);
74}
75
76char *owl_message_get_zsig(owl_message *m) {
77  return(m->zsig);
78}
79
[4b464a4]80void owl_message_set_recipient(owl_message *m, char *recip) {
81  if (m->recip) owl_free(m->recip);
82  m->recip=owl_strdup(recip);
83}
84
85char *owl_message_get_recipient(owl_message *m) {
86  /* this is stupid for outgoing messages, we need to fix it. */
87     
88  if (m->type==OWL_MESSAGE_TYPE_ZEPHYR) {
89    return(m->recip);
90  } else if (owl_message_is_direction_out(m)) {
91    return(m->zwriteline);
92  } else {
93    return(m->recip);
94  }
95}
96
97void owl_message_set_realm(owl_message *m, char *realm) {
98  if (m->realm) owl_free(m->realm);
99  m->realm=owl_strdup(realm);
100}
101
102char *owl_message_get_realm(owl_message *m) {
103  return(m->realm);
104}
105
106void owl_message_set_opcode(owl_message *m, char *opcode) {
107  if (m->opcode) free(m->opcode);
108  m->opcode=owl_strdup(opcode);
109}
110
111char *owl_message_get_opcode(owl_message *m) {
112  return(m->opcode);
113}
114
115char *owl_message_get_timestr(owl_message *m) {
116  return(m->time);
117}
118
119void owl_message_set_type_admin(owl_message *m) {
120  m->type=OWL_MESSAGE_TYPE_ADMIN;
121}
122
123void owl_message_set_type_zephyr(owl_message *m) {
124  m->type=OWL_MESSAGE_TYPE_ZEPHYR;
125}
126                                               
127int owl_message_is_type_admin(owl_message *m) {
128  if (m->type==OWL_MESSAGE_TYPE_ADMIN) return(1);
129  return(0);
130}
131
132int owl_message_is_type_zephyr(owl_message *m) {
133  if (m->type==OWL_MESSAGE_TYPE_ZEPHYR) return(1);
134  return(0);
135}
136
137int owl_message_is_type_generic(owl_message *m) {
138  if (m->type==OWL_MESSAGE_TYPE_GENERIC) return(1);
139  return(0);
140}
141
142char *owl_message_get_text(owl_message *m) {
143  return(owl_fmtext_get_text(&(m->fmtext)));
144}
145
146char *owl_message_get_body(owl_message *m) {
147  return(m->body);
148}
149
150void owl_message_set_direction_in(owl_message *m) {
151  m->direction=OWL_MESSAGE_DIRECTION_IN;
152}
153
154void owl_message_set_direction_out(owl_message *m) {
155  m->direction=OWL_MESSAGE_DIRECTION_OUT;
156}
157
158void owl_message_set_direction_none(owl_message *m) {
159  m->direction=OWL_MESSAGE_DIRECTION_NONE;
160}
161
162int owl_message_is_direction_in(owl_message *m) {
163  if (m->direction==OWL_MESSAGE_DIRECTION_IN) return(1);
164  return(0);
165}
166
167int owl_message_is_direction_out(owl_message *m) {
168  if (m->direction==OWL_MESSAGE_DIRECTION_OUT) return(1);
169  return(0);
170}
171
172int owl_message_is_direction_none(owl_message *m) {
173  if (m->direction==OWL_MESSAGE_DIRECTION_NONE) return(1);
174  return(0);
175}
176
177int owl_message_get_numlines(owl_message *m) {
178  if (m == NULL) return(0);
179  return(owl_fmtext_num_lines(&(m->fmtext)));
180}
181
182void owl_message_mark_delete(owl_message *m) {
183  if (m == NULL) return;
184  m->delete=1;
185}
186
187void owl_message_unmark_delete(owl_message *m) {
188  if (m == NULL) return;
189  m->delete=0;
190}
191
192char *owl_message_get_zwriteline(owl_message *m) {
193  return(m->zwriteline);
194}
195
196void owl_message_set_zwriteline(owl_message *m, char *line) {
197  m->zwriteline=strdup(line);
198}
199
200int owl_message_is_delete(owl_message *m) {
201  if (m == NULL) return(0);
202  if (m->delete==1) return(1);
203  return(0);
204}
205
206ZNotice_t *owl_message_get_notice(owl_message *m) {
207  return(&(m->notice));
208}
209
210char *owl_message_get_hostname(owl_message *m) {
211  return(m->hostname);
212}
213
214
215void owl_message_curs_waddstr(owl_message *m, WINDOW *win, int aline, int bline, int acol, int bcol, int color) {
216  owl_fmtext a, b;
217
[af2ca19]218  owl_fmtext_init_null(&a);
219  owl_fmtext_init_null(&b);
220 
[4b464a4]221  owl_fmtext_truncate_lines(&(m->fmtext), aline, bline-aline+1, &a);
222  owl_fmtext_truncate_cols(&a, acol, bcol, &b);
223  if (color!=OWL_COLOR_DEFAULT) {
224    owl_fmtext_colorize(&b, color);
225  }
226
227  if (owl_global_is_search_active(&g)) {
228    owl_fmtext_search_and_highlight(&b, owl_global_get_search_string(&g));
229  }
230     
231  owl_fmtext_curs_waddstr(&b, win);
232
233  owl_fmtext_free(&a);
234  owl_fmtext_free(&b);
235}
236
237int owl_message_is_personal(owl_message *m) {
238  if (strcasecmp(owl_message_get_class(m), "message")) return(0);
239  if (strcasecmp(owl_message_get_instance(m), "personal")) return(0);
240  if (!strcmp(owl_message_get_recipient(m), ZGetSender()) ||
241      !strcmp(owl_message_get_sender(m), ZGetSender())) {
242    return(1);
243  }
244  return(0);
245}
246
247int owl_message_is_private(owl_message *m) {
248  if (!strcmp(owl_message_get_recipient(m), ZGetSender())) return(1);
249  return(0);
250}
251
252int owl_message_is_mail(owl_message *m) {
253  if (!strcasecmp(owl_message_get_class(m), "mail") && owl_message_is_private(m)) {
254    return(1);
255  }
256  return(0);
257}
258
259int owl_message_is_ping(owl_message *m) {
260  if (!strcasecmp(owl_message_get_opcode(m), "ping")) return(1);
261  return(0);
262}
263
264int owl_message_is_login(owl_message *m) {
265  if (!strcasecmp(owl_message_get_class(m), "login")) return(1);
266  return(0);
267  /* is this good enough? */
268}
269
270int owl_message_is_burningears(owl_message *m) {
271  /* we should add a global to cache the short zsender */
272  char sender[LINE], *ptr;
273
274  /* if the message is from us or to us, it doesn't count */
275  if (!strcasecmp(ZGetSender(), owl_message_get_sender(m))) return(0);
276  if (!strcasecmp(ZGetSender(), owl_message_get_recipient(m))) return(0);
277
278  strcpy(sender, ZGetSender());
279  ptr=strchr(sender, '@');
280  if (ptr) *ptr='\0';
281
282  if (stristr(owl_message_get_body(m), sender)) {
283    return(1);
284  }
285  return(0);
286}
287
288/* caller must free return value. */
289char *owl_message_get_cc(owl_message *m) {
290  char *cur, *out, *end;
291
292  cur = owl_message_get_body(m);
293  while (*cur && *cur==' ') cur++;
294  if (strncasecmp(cur, "cc:", 2)) return(NULL);
295  cur+=3;
296  while (*cur && *cur==' ') cur++;
297  out = owl_strdup(cur);
298  end = strchr(out, '\n');
299  if (end) end[0] = '\0';
300  return(out);
301}
302
303int owl_message_get_id(owl_message *m) {
304  return(m->id);
305}
306                                       
307int owl_message_search(owl_message *m, char *string) {
308  /* return 1 if the message contains "string", 0 otherwise.  This is
309   * case insensitive because the functions it uses are */
310
311  return (owl_fmtext_search(&(m->fmtext), string));
312}
313
314void owl_message_create(owl_message *m, char *header, char *text) {
315  char *indent;
316
317  owl_message_init_raw(m);
318
319  m->body=owl_strdup(text);
320
321  indent=owl_malloc(strlen(text)+owl_text_num_lines(text)*OWL_MSGTAB+10);
322  owl_text_indent(indent, text, OWL_MSGTAB);
323  owl_fmtext_init_null(&(m->fmtext));
324  owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR);
325  owl_fmtext_append_ztext(&(m->fmtext), header);
326  owl_fmtext_append_normal(&(m->fmtext), "\n");
327  owl_fmtext_append_ztext(&(m->fmtext), indent);
328  if (text[strlen(text)-1]!='\n') {
329    owl_fmtext_append_normal(&(m->fmtext), "\n");
330  }
331
332  owl_free(indent);
333}
334
335void owl_message_create_admin(owl_message *m, char *header, char *text) {
336  char *indent;
337
338  owl_message_init_raw(m);
339  owl_message_set_type_admin(m);
[7d4fbcd]340
341  m->body=owl_strdup(text);
342
343  /* do something to make it clear the notice shouldn't be used for now */
344
345  indent=owl_malloc(strlen(text)+owl_text_num_lines(text)*OWL_MSGTAB+10);
346  owl_text_indent(indent, text, OWL_MSGTAB);
347  owl_fmtext_init_null(&(m->fmtext));
348  owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR);
349  owl_fmtext_append_bold(&(m->fmtext), "OWL ADMIN ");
350  owl_fmtext_append_ztext(&(m->fmtext), header);
351  owl_fmtext_append_normal(&(m->fmtext), "\n");
352  owl_fmtext_append_ztext(&(m->fmtext), indent);
353  if (text[strlen(text)-1]!='\n') {
354    owl_fmtext_append_normal(&(m->fmtext), "\n");
355  }
356
357  owl_free(indent);
358}
359
[b45293f]360void owl_message_create_from_znotice(owl_message *m, ZNotice_t *n) {
[7d4fbcd]361  struct hostent *hent;
362  int k;
363  char *ptr;
364
365  m->id=owl_global_get_nextmsgid(&g);
[4b464a4]366  owl_message_set_type_zephyr(m);
367  owl_message_set_direction_in(m);
[7d4fbcd]368 
369  /* first save the full notice */
370  memcpy(&(m->notice), n, sizeof(ZNotice_t));
371
372  /* a little gross, we'll reaplace \r's with ' ' for now */
373  owl_zephyr_hackaway_cr(&(m->notice));
374 
375  m->delete=0;
376
377  /* set other info */
378  m->sender=owl_strdup(n->z_sender);
379  m->class=owl_strdup(n->z_class);
380  m->inst=owl_strdup(n->z_class_inst);
381  m->recip=owl_strdup(n->z_recipient);
382  if (n->z_opcode) {
383    m->opcode=owl_strdup(n->z_opcode);
384  } else {
385    n->z_opcode=owl_strdup("");
386  }
[b45293f]387  m->zsig=owl_strdup(n->z_message);
[7d4fbcd]388
389  if ((ptr=strchr(n->z_recipient, '@'))!=NULL) {
390    m->realm=owl_strdup(ptr+1);
391  } else {
392    m->realm=owl_strdup(ZGetRealm());
393  }
394
395  m->zwriteline=strdup("");
396
[b45293f]397  /* set the body */
[7d4fbcd]398  ptr=owl_zephyr_get_message(n, &k);
399  m->body=owl_malloc(k+10);
400  memcpy(m->body, ptr, k);
401  m->body[k]='\0';
402
[d309eb3]403  /* if zcrypt is enabled try to decrypt the message */
404  if (owl_global_is_zcrypt(&g) && !strcasecmp(n->z_opcode, "crypt")) {
405    char *out;
406
407    out=owl_malloc(strlen(m->body)*16+20);
408    zcrypt_decrypt(out, m->body, m->class, m->inst);
409    owl_free(m->body);
410    m->body=out;
411  }
412
[7d4fbcd]413  /* save the hostname */
[3a2daac]414  owl_function_debugmsg("About to do gethostbyaddr");
[7d4fbcd]415  hent=gethostbyaddr((char *) &(n->z_uid.zuid_addr), sizeof(n->z_uid.zuid_addr), AF_INET);
416  if (hent && hent->h_name) {
417    strcpy(m->hostname, hent->h_name);
418  } else {
419    strcpy(m->hostname, inet_ntoa(n->z_sender_addr));
420  }
421
422  /* save the time */
423  m->time=owl_strdup(ctime((time_t *) &n->z_time.tv_sec));
424  m->time[strlen(m->time)-1]='\0';
425
426  /* create the formatted message */
427  if (owl_global_is_config_format(&g)) {
428    _owl_message_make_text_from_config(m);
429  } else if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) {
430    _owl_message_make_text_from_notice_standard(m);
431  } else {
432    _owl_message_make_text_from_notice_simple(m);
433  }
434
435}
436
[b45293f]437void owl_message_create_from_zwriteline(owl_message *m, char *line, char *body, char *zsig) {
438  owl_zwrite z;
439  int ret;
440 
441  owl_message_init_raw(m);
442
443  /* create a zwrite for the purpose of filling in other message fields */
444  owl_zwrite_create_from_line(&z, line);
445
446  /* set things */
447  owl_message_set_direction_out(m);
448  owl_message_set_type_zephyr(m);
[8fec514]449  owl_message_set_sender(m, ZGetSender());
450  owl_message_set_class(m, owl_zwrite_get_class(&z));
451  owl_message_set_instance(m, owl_zwrite_get_instance(&z));
[b45293f]452  m->recip=long_zuser(owl_zwrite_get_recip_n(&z, 0)); /* only gets the first user, must fix */
[8fec514]453  owl_message_set_opcode(m, owl_zwrite_get_opcode(&z));
[b45293f]454  m->realm=owl_strdup(owl_zwrite_get_realm(&z)); /* also a hack, but not here */
455  m->zwriteline=owl_strdup(line);
456  m->body=owl_strdup(body);
[8fec514]457  owl_message_set_zsig(m, zsig);
[b45293f]458 
459  /* save the hostname */
460  ret=gethostname(m->hostname, MAXHOSTNAMELEN);
461  if (ret) {
462    strcpy(m->hostname, "localhost");
463  }
464
465  /* create the formatted message */
466  if (owl_global_is_config_format(&g)) {
467    _owl_message_make_text_from_config(m);
468  } else if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) {
469    _owl_message_make_text_from_zwriteline_standard(m);
470  } else {
471    _owl_message_make_text_from_zwriteline_simple(m);
472  }
473
474  owl_zwrite_free(&z);
475}
[7d4fbcd]476
477void _owl_message_make_text_from_config(owl_message *m) {
478  char *body, *indent;
479 
480  owl_fmtext_init_null(&(m->fmtext));
481
482  /* get body from the config */
483  body=owl_config_getmsg(m, 1);
484 
485  /* indent */
486  indent=owl_malloc(strlen(body)+owl_text_num_lines(body)*OWL_TAB+10);
487  owl_text_indent(indent, body, OWL_TAB);
488
489  /* fmtext_append.  This needs to change */
490  owl_fmtext_append_ztext(&(m->fmtext), indent);
491
492  owl_free(indent);
493  owl_free(body);
494}
495
[b45293f]496void _owl_message_make_text_from_zwriteline_standard(owl_message *m) {
[be97670]497  char *indent, *text, *zsigbuff, *foo;
[b45293f]498
499  text=owl_message_get_body(m);
500
501  indent=owl_malloc(strlen(text)+owl_text_num_lines(text)*OWL_MSGTAB+10);
502  owl_text_indent(indent, text, OWL_MSGTAB);
503  owl_fmtext_init_null(&(m->fmtext));
504  owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR);
505  owl_fmtext_append_normal(&(m->fmtext), "Zephyr sent to ");
[be97670]506  foo=short_zuser(owl_message_get_recipient(m));
507  owl_fmtext_append_normal(&(m->fmtext), foo);
508  owl_free(foo);
[b45293f]509  owl_fmtext_append_normal(&(m->fmtext), "  (Zsig: ");
510
[8fec514]511  zsigbuff=owl_malloc(strlen(owl_message_get_zsig(m))+30);
[b45293f]512  owl_message_pretty_zsig(m, zsigbuff);
513  owl_fmtext_append_ztext(&(m->fmtext), zsigbuff);
514  owl_free(zsigbuff);
515 
516  owl_fmtext_append_normal(&(m->fmtext), ")");
517  owl_fmtext_append_normal(&(m->fmtext), "\n");
518  owl_fmtext_append_ztext(&(m->fmtext), indent);
519  if (text[strlen(text)-1]!='\n') {
520    owl_fmtext_append_normal(&(m->fmtext), "\n");
521  }
522
523  owl_free(indent);
524}
525
526void _owl_message_make_text_from_zwriteline_simple(owl_message *m) {
[b12c219]527  char *indent, *text, *zsigbuff, *foo;
528
529  text=owl_message_get_body(m);
530
531  indent=owl_malloc(strlen(text)+owl_text_num_lines(text)*OWL_MSGTAB+10);
532  owl_text_indent(indent, text, OWL_MSGTAB);
533  owl_fmtext_init_null(&(m->fmtext));
534  owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR);
535  owl_fmtext_append_normal(&(m->fmtext), "To: ");
536  foo=short_zuser(owl_message_get_recipient(m));
537  owl_fmtext_append_normal(&(m->fmtext), foo);
538  owl_free(foo);
539  owl_fmtext_append_normal(&(m->fmtext), "  (Zsig: ");
540
[a3ba748]541  zsigbuff=owl_malloc(strlen(owl_message_get_zsig(m))+30);
[b12c219]542  owl_message_pretty_zsig(m, zsigbuff);
543  owl_fmtext_append_ztext(&(m->fmtext), zsigbuff);
544  owl_free(zsigbuff);
545 
546  owl_fmtext_append_normal(&(m->fmtext), ")");
547  owl_fmtext_append_normal(&(m->fmtext), "\n");
548  owl_fmtext_append_ztext(&(m->fmtext), indent);
549  if (text[strlen(text)-1]!='\n') {
550    owl_fmtext_append_normal(&(m->fmtext), "\n");
551  }
552
553  owl_free(indent);
[b45293f]554}
555
[7d4fbcd]556void _owl_message_make_text_from_notice_standard(owl_message *m) {
[b45293f]557  char *body, *indent, *ptr, *zsigbuff, frombuff[LINE];
[7d4fbcd]558  ZNotice_t *n;
559
560  n=&(m->notice);
[d309eb3]561 
562  /* get the body */
563  body=owl_malloc(strlen(m->body)+30);
564  strcpy(body, m->body);
[7d4fbcd]565
566  /* add a newline if we need to */
567  if (body[0]!='\0' && body[strlen(body)-1]!='\n') {
568    strcat(body, "\n");
569  }
570
571  /* do the indenting into indent */
572  indent=owl_malloc(strlen(body)+owl_text_num_lines(body)*OWL_MSGTAB+10);
573  owl_text_indent(indent, body, OWL_MSGTAB);
574
575  /* edit the from addr for printing */
576  strcpy(frombuff, m->sender);
577  ptr=strchr(frombuff, '@');
578  if (ptr && !strncmp(ptr+1, ZGetRealm(), strlen(ZGetRealm()))) {
579    *ptr='\0';
580  }
581
582  /* set the message for printing */
583  owl_fmtext_init_null(&(m->fmtext));
584  owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR);
585
586  if (!strcasecmp(n->z_opcode, "ping")) {
587    owl_fmtext_append_bold(&(m->fmtext), "PING");
588    owl_fmtext_append_normal(&(m->fmtext), " from ");
589    owl_fmtext_append_bold(&(m->fmtext), frombuff);
590    owl_fmtext_append_normal(&(m->fmtext), "\n");
591  } else if (!strcasecmp(n->z_class, "login")) {
592    char *ptr, host[LINE], tty[LINE];
593    int len;
594
595    ptr=owl_zephyr_get_field(n, 1, &len);
596    strncpy(host, ptr, len);
597    host[len]='\0';
598    ptr=owl_zephyr_get_field(n, 3, &len);
599    strncpy(tty, ptr, len);
600    tty[len]='\0';
601   
602    if (!strcasecmp(n->z_opcode, "user_login")) {
603      owl_fmtext_append_bold(&(m->fmtext), "LOGIN");
604    } else if (!strcasecmp(n->z_opcode, "user_logout")) {
605      owl_fmtext_append_bold(&(m->fmtext), "LOGOUT");
606    }
607    owl_fmtext_append_normal(&(m->fmtext), " for ");
[4b464a4]608    ptr=short_zuser(n->z_class_inst);
[7d4fbcd]609    owl_fmtext_append_bold(&(m->fmtext), ptr);
610    owl_free(ptr);
611    owl_fmtext_append_normal(&(m->fmtext), " at ");
612    owl_fmtext_append_normal(&(m->fmtext), host);
613    owl_fmtext_append_normal(&(m->fmtext), " ");
614    owl_fmtext_append_normal(&(m->fmtext), tty);
615    owl_fmtext_append_normal(&(m->fmtext), "\n");
616  } else {
617    owl_fmtext_append_normal(&(m->fmtext), m->class);
618    owl_fmtext_append_normal(&(m->fmtext), " / ");
619    owl_fmtext_append_normal(&(m->fmtext), m->inst);
620    owl_fmtext_append_normal(&(m->fmtext), " / ");
621    owl_fmtext_append_bold(&(m->fmtext), frombuff);
622    if (strcasecmp(owl_message_get_realm(m), ZGetRealm())) {
623      owl_fmtext_append_normal(&(m->fmtext), " {");
624      owl_fmtext_append_normal(&(m->fmtext), owl_message_get_realm(m));
625      owl_fmtext_append_normal(&(m->fmtext), "} ");
626    }
627    if (n->z_opcode[0]!='\0') {
628      owl_fmtext_append_normal(&(m->fmtext), " [");
629      owl_fmtext_append_normal(&(m->fmtext), n->z_opcode);
630      owl_fmtext_append_normal(&(m->fmtext), "] ");
631    }
632
633    /* stick on the zsig */
[a3ba748]634    zsigbuff=owl_malloc(strlen(owl_message_get_zsig(m))+30);
[b45293f]635    owl_message_pretty_zsig(m, zsigbuff);
636    owl_fmtext_append_normal(&(m->fmtext), "    (");
637    owl_fmtext_append_ztext(&(m->fmtext), zsigbuff);
638    owl_fmtext_append_normal(&(m->fmtext), ")");
[7d4fbcd]639    owl_fmtext_append_normal(&(m->fmtext), "\n");
[b45293f]640    owl_free(zsigbuff);
641
642    /* then the indented message */
[7d4fbcd]643    owl_fmtext_append_ztext(&(m->fmtext), indent);
644
645    /* make personal messages bold for smaat users */
646    if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) {
647      if (owl_message_is_personal(m)) {
648        owl_fmtext_addattr((&m->fmtext), OWL_FMTEXT_ATTR_BOLD);
649      }
650    }
651  }
652
653  owl_free(body);
654  owl_free(indent);
655}
656
657void _owl_message_make_text_from_notice_simple(owl_message *m) {
[b45293f]658  char *body, *indent, *ptr, *zsigbuff, frombuff[LINE];
[7d4fbcd]659  ZNotice_t *n;
660
661  n=&(m->notice);
[d309eb3]662
663  /* get the body */
664  body=owl_malloc(strlen(m->body)+30);
665  strcpy(body, m->body);
[7d4fbcd]666
667  /* add a newline if we need to */
668  if (body[0]!='\0' && body[strlen(body)-1]!='\n') {
669    strcat(body, "\n");
670  }
671
672  /* do the indenting into indent */
673  indent=owl_malloc(strlen(body)+owl_text_num_lines(body)*OWL_MSGTAB+10);
674  owl_text_indent(indent, body, OWL_MSGTAB);
675
676  /* edit the from addr for printing */
677  strcpy(frombuff, m->sender);
678  ptr=strchr(frombuff, '@');
679  if (ptr && !strncmp(ptr+1, ZGetRealm(), strlen(ZGetRealm()))) {
680    *ptr='\0';
681  }
682
683  /* set the message for printing */
684  owl_fmtext_init_null(&(m->fmtext));
685  owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR);
686
687  if (!strcasecmp(n->z_opcode, "ping")) {
688    owl_fmtext_append_bold(&(m->fmtext), "PING");
689    owl_fmtext_append_normal(&(m->fmtext), " from ");
690    owl_fmtext_append_bold(&(m->fmtext), frombuff);
691    owl_fmtext_append_normal(&(m->fmtext), "\n");
692  } else if (!strcasecmp(n->z_class, "login")) {
693    char *ptr, host[LINE], tty[LINE];
694    int len;
695
696    ptr=owl_zephyr_get_field(n, 1, &len);
697    strncpy(host, ptr, len);
698    host[len]='\0';
699    ptr=owl_zephyr_get_field(n, 3, &len);
700    strncpy(tty, ptr, len);
701    tty[len]='\0';
702   
703    if (!strcasecmp(n->z_opcode, "user_login")) {
704      owl_fmtext_append_bold(&(m->fmtext), "LOGIN");
705    } else if (!strcasecmp(n->z_opcode, "user_logout")) {
706      owl_fmtext_append_bold(&(m->fmtext), "LOGOUT");
707    }
708    owl_fmtext_append_normal(&(m->fmtext), " for ");
[4b464a4]709    ptr=short_zuser(n->z_class_inst);
[7d4fbcd]710    owl_fmtext_append_bold(&(m->fmtext), ptr);
711    owl_free(ptr);
712    owl_fmtext_append_normal(&(m->fmtext), " at ");
713    owl_fmtext_append_normal(&(m->fmtext), host);
714    owl_fmtext_append_normal(&(m->fmtext), " ");
715    owl_fmtext_append_normal(&(m->fmtext), tty);
716    owl_fmtext_append_normal(&(m->fmtext), "\n");
717  } else {
718    owl_fmtext_append_normal(&(m->fmtext), "From: ");
719    if (strcasecmp(m->class, "message")) {
720      owl_fmtext_append_normal(&(m->fmtext), "Class ");
721      owl_fmtext_append_normal(&(m->fmtext), m->class);
722      owl_fmtext_append_normal(&(m->fmtext), " / Instance ");
723      owl_fmtext_append_normal(&(m->fmtext), m->inst);
724      owl_fmtext_append_normal(&(m->fmtext), " / ");
725    }
726    owl_fmtext_append_normal(&(m->fmtext), frombuff);
727    if (strcasecmp(owl_message_get_realm(m), ZGetRealm())) {
728      owl_fmtext_append_normal(&(m->fmtext), " {");
729      owl_fmtext_append_normal(&(m->fmtext), owl_message_get_realm(m));
730      owl_fmtext_append_normal(&(m->fmtext), "} ");
731    }
732
733    /* stick on the zsig */
[a3ba748]734    zsigbuff=owl_malloc(strlen(owl_message_get_zsig(m))+30);
[b45293f]735    owl_message_pretty_zsig(m, zsigbuff);
736    owl_fmtext_append_normal(&(m->fmtext), "    (");
737    owl_fmtext_append_ztext(&(m->fmtext), zsigbuff);
738    owl_fmtext_append_normal(&(m->fmtext), ")");
[7d4fbcd]739    owl_fmtext_append_normal(&(m->fmtext), "\n");
[b45293f]740    owl_free(zsigbuff);
741
742    /* then the indented message */
[7d4fbcd]743    owl_fmtext_append_ztext(&(m->fmtext), indent);
744
745    /* make personal messages bold for smaat users */
746    if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) {
747      if (owl_message_is_personal(m)) {
748        owl_fmtext_addattr((&m->fmtext), OWL_FMTEXT_ATTR_BOLD);
749      }
750    }
751  }
752
753  owl_free(body);
754  owl_free(indent);
755}
756
[b45293f]757void owl_message_pretty_zsig(owl_message *m, char *buff) {
758  /* stick a one line version of the zsig in buff */
[7d4fbcd]759  char *ptr;
760
[b45293f]761  strcpy(buff, m->zsig);
762  ptr=strchr(buff, '\n');
763  if (ptr) ptr[0]='\0';
[7d4fbcd]764}
765
766void owl_message_free(owl_message *m) {
[4b464a4]767  if (owl_message_is_type_zephyr(m) && owl_message_is_direction_in(m)) {
[7d4fbcd]768    ZFreeNotice(&(m->notice));
769  }
770  if (m->sender) owl_free(m->sender);
771  if (m->recip) owl_free(m->recip);
772  if (m->class) owl_free(m->class);
773  if (m->inst) owl_free(m->inst);
774  if (m->opcode) owl_free(m->opcode);
775  if (m->time) owl_free(m->time);
776  if (m->realm) owl_free(m->realm);
777  if (m->body) owl_free(m->body);
778  if (m->zwriteline) owl_free(m->zwriteline);
779 
780  owl_fmtext_free(&(m->fmtext));
781}
782
Note: See TracBrowser for help on using the repository browser.