[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] | 14 | static const char fileIdent[] = "$Id$"; |
---|
| 15 | |
---|
[4b464a4] | 16 | void 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 | |
---|
| 40 | owl_fmtext *owl_message_get_fmtext(owl_message *m) { |
---|
| 41 | return(&(m->fmtext)); |
---|
| 42 | } |
---|
| 43 | |
---|
| 44 | void 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 | |
---|
| 49 | char *owl_message_get_class(owl_message *m) { |
---|
| 50 | return(m->class); |
---|
| 51 | } |
---|
| 52 | |
---|
| 53 | void 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 | |
---|
| 58 | char *owl_message_get_instance(owl_message *m) { |
---|
| 59 | return(m->inst); |
---|
| 60 | } |
---|
| 61 | |
---|
| 62 | void 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 | |
---|
| 67 | char *owl_message_get_sender(owl_message *m) { |
---|
| 68 | return(m->sender); |
---|
| 69 | } |
---|
| 70 | |
---|
[b45293f] | 71 | void 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 | |
---|
| 76 | char *owl_message_get_zsig(owl_message *m) { |
---|
| 77 | return(m->zsig); |
---|
| 78 | } |
---|
| 79 | |
---|
[4b464a4] | 80 | void 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 | |
---|
| 85 | char *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 | |
---|
| 97 | void 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 | |
---|
| 102 | char *owl_message_get_realm(owl_message *m) { |
---|
| 103 | return(m->realm); |
---|
| 104 | } |
---|
| 105 | |
---|
| 106 | void owl_message_set_opcode(owl_message *m, char *opcode) { |
---|
| 107 | if (m->opcode) free(m->opcode); |
---|
| 108 | m->opcode=owl_strdup(opcode); |
---|
| 109 | } |
---|
| 110 | |
---|
| 111 | char *owl_message_get_opcode(owl_message *m) { |
---|
| 112 | return(m->opcode); |
---|
| 113 | } |
---|
| 114 | |
---|
| 115 | char *owl_message_get_timestr(owl_message *m) { |
---|
| 116 | return(m->time); |
---|
| 117 | } |
---|
| 118 | |
---|
| 119 | void owl_message_set_type_admin(owl_message *m) { |
---|
| 120 | m->type=OWL_MESSAGE_TYPE_ADMIN; |
---|
| 121 | } |
---|
| 122 | |
---|
| 123 | void owl_message_set_type_zephyr(owl_message *m) { |
---|
| 124 | m->type=OWL_MESSAGE_TYPE_ZEPHYR; |
---|
| 125 | } |
---|
| 126 | |
---|
| 127 | int owl_message_is_type_admin(owl_message *m) { |
---|
| 128 | if (m->type==OWL_MESSAGE_TYPE_ADMIN) return(1); |
---|
| 129 | return(0); |
---|
| 130 | } |
---|
| 131 | |
---|
| 132 | int owl_message_is_type_zephyr(owl_message *m) { |
---|
| 133 | if (m->type==OWL_MESSAGE_TYPE_ZEPHYR) return(1); |
---|
| 134 | return(0); |
---|
| 135 | } |
---|
| 136 | |
---|
| 137 | int owl_message_is_type_generic(owl_message *m) { |
---|
| 138 | if (m->type==OWL_MESSAGE_TYPE_GENERIC) return(1); |
---|
| 139 | return(0); |
---|
| 140 | } |
---|
| 141 | |
---|
| 142 | char *owl_message_get_text(owl_message *m) { |
---|
| 143 | return(owl_fmtext_get_text(&(m->fmtext))); |
---|
| 144 | } |
---|
| 145 | |
---|
| 146 | char *owl_message_get_body(owl_message *m) { |
---|
| 147 | return(m->body); |
---|
| 148 | } |
---|
| 149 | |
---|
| 150 | void owl_message_set_direction_in(owl_message *m) { |
---|
| 151 | m->direction=OWL_MESSAGE_DIRECTION_IN; |
---|
| 152 | } |
---|
| 153 | |
---|
| 154 | void owl_message_set_direction_out(owl_message *m) { |
---|
| 155 | m->direction=OWL_MESSAGE_DIRECTION_OUT; |
---|
| 156 | } |
---|
| 157 | |
---|
| 158 | void owl_message_set_direction_none(owl_message *m) { |
---|
| 159 | m->direction=OWL_MESSAGE_DIRECTION_NONE; |
---|
| 160 | } |
---|
| 161 | |
---|
| 162 | int owl_message_is_direction_in(owl_message *m) { |
---|
| 163 | if (m->direction==OWL_MESSAGE_DIRECTION_IN) return(1); |
---|
| 164 | return(0); |
---|
| 165 | } |
---|
| 166 | |
---|
| 167 | int owl_message_is_direction_out(owl_message *m) { |
---|
| 168 | if (m->direction==OWL_MESSAGE_DIRECTION_OUT) return(1); |
---|
| 169 | return(0); |
---|
| 170 | } |
---|
| 171 | |
---|
| 172 | int owl_message_is_direction_none(owl_message *m) { |
---|
| 173 | if (m->direction==OWL_MESSAGE_DIRECTION_NONE) return(1); |
---|
| 174 | return(0); |
---|
| 175 | } |
---|
| 176 | |
---|
| 177 | int owl_message_get_numlines(owl_message *m) { |
---|
| 178 | if (m == NULL) return(0); |
---|
| 179 | return(owl_fmtext_num_lines(&(m->fmtext))); |
---|
| 180 | } |
---|
| 181 | |
---|
| 182 | void owl_message_mark_delete(owl_message *m) { |
---|
| 183 | if (m == NULL) return; |
---|
| 184 | m->delete=1; |
---|
| 185 | } |
---|
| 186 | |
---|
| 187 | void owl_message_unmark_delete(owl_message *m) { |
---|
| 188 | if (m == NULL) return; |
---|
| 189 | m->delete=0; |
---|
| 190 | } |
---|
| 191 | |
---|
| 192 | char *owl_message_get_zwriteline(owl_message *m) { |
---|
| 193 | return(m->zwriteline); |
---|
| 194 | } |
---|
| 195 | |
---|
| 196 | void owl_message_set_zwriteline(owl_message *m, char *line) { |
---|
| 197 | m->zwriteline=strdup(line); |
---|
| 198 | } |
---|
| 199 | |
---|
| 200 | int 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 | |
---|
| 206 | ZNotice_t *owl_message_get_notice(owl_message *m) { |
---|
| 207 | return(&(m->notice)); |
---|
| 208 | } |
---|
| 209 | |
---|
| 210 | char *owl_message_get_hostname(owl_message *m) { |
---|
| 211 | return(m->hostname); |
---|
| 212 | } |
---|
| 213 | |
---|
| 214 | |
---|
| 215 | void 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 | |
---|
| 237 | int 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 | |
---|
| 247 | int owl_message_is_private(owl_message *m) { |
---|
| 248 | if (!strcmp(owl_message_get_recipient(m), ZGetSender())) return(1); |
---|
| 249 | return(0); |
---|
| 250 | } |
---|
| 251 | |
---|
| 252 | int 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 | |
---|
| 259 | int owl_message_is_ping(owl_message *m) { |
---|
| 260 | if (!strcasecmp(owl_message_get_opcode(m), "ping")) return(1); |
---|
| 261 | return(0); |
---|
| 262 | } |
---|
| 263 | |
---|
| 264 | int 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 | |
---|
| 270 | int 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. */ |
---|
| 289 | char *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 | |
---|
| 303 | int owl_message_get_id(owl_message *m) { |
---|
| 304 | return(m->id); |
---|
| 305 | } |
---|
| 306 | |
---|
| 307 | int 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 | |
---|
| 314 | void 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 | |
---|
| 335 | void 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] | 360 | void 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 | |
---|
| 403 | /* save the hostname */ |
---|
[3a2daac] | 404 | owl_function_debugmsg("About to do gethostbyaddr"); |
---|
[7d4fbcd] | 405 | hent=gethostbyaddr((char *) &(n->z_uid.zuid_addr), sizeof(n->z_uid.zuid_addr), AF_INET); |
---|
| 406 | if (hent && hent->h_name) { |
---|
| 407 | strcpy(m->hostname, hent->h_name); |
---|
| 408 | } else { |
---|
| 409 | strcpy(m->hostname, inet_ntoa(n->z_sender_addr)); |
---|
| 410 | } |
---|
| 411 | |
---|
| 412 | /* save the time */ |
---|
| 413 | m->time=owl_strdup(ctime((time_t *) &n->z_time.tv_sec)); |
---|
| 414 | m->time[strlen(m->time)-1]='\0'; |
---|
| 415 | |
---|
| 416 | /* create the formatted message */ |
---|
| 417 | if (owl_global_is_config_format(&g)) { |
---|
| 418 | _owl_message_make_text_from_config(m); |
---|
| 419 | } else if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) { |
---|
| 420 | _owl_message_make_text_from_notice_standard(m); |
---|
| 421 | } else { |
---|
| 422 | _owl_message_make_text_from_notice_simple(m); |
---|
| 423 | } |
---|
| 424 | |
---|
| 425 | } |
---|
| 426 | |
---|
[b45293f] | 427 | void owl_message_create_from_zwriteline(owl_message *m, char *line, char *body, char *zsig) { |
---|
| 428 | owl_zwrite z; |
---|
| 429 | int ret; |
---|
| 430 | |
---|
| 431 | owl_message_init_raw(m); |
---|
| 432 | |
---|
| 433 | /* create a zwrite for the purpose of filling in other message fields */ |
---|
| 434 | owl_zwrite_create_from_line(&z, line); |
---|
| 435 | |
---|
| 436 | /* set things */ |
---|
| 437 | owl_message_set_direction_out(m); |
---|
| 438 | owl_message_set_type_zephyr(m); |
---|
| 439 | m->sender=owl_strdup(ZGetSender()); |
---|
| 440 | m->class=owl_strdup(owl_zwrite_get_class(&z)); |
---|
| 441 | m->inst=owl_strdup(owl_zwrite_get_instance(&z)); |
---|
| 442 | m->recip=long_zuser(owl_zwrite_get_recip_n(&z, 0)); /* only gets the first user, must fix */ |
---|
| 443 | m->opcode=owl_strdup(owl_zwrite_get_opcode(&z)); |
---|
| 444 | m->realm=owl_strdup(owl_zwrite_get_realm(&z)); /* also a hack, but not here */ |
---|
| 445 | m->zwriteline=owl_strdup(line); |
---|
| 446 | m->body=owl_strdup(body); |
---|
| 447 | m->zsig=owl_strdup(zsig); |
---|
| 448 | |
---|
| 449 | /* save the hostname */ |
---|
| 450 | ret=gethostname(m->hostname, MAXHOSTNAMELEN); |
---|
| 451 | if (ret) { |
---|
| 452 | strcpy(m->hostname, "localhost"); |
---|
| 453 | } |
---|
| 454 | |
---|
| 455 | /* create the formatted message */ |
---|
| 456 | if (owl_global_is_config_format(&g)) { |
---|
| 457 | _owl_message_make_text_from_config(m); |
---|
| 458 | } else if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) { |
---|
| 459 | _owl_message_make_text_from_zwriteline_standard(m); |
---|
| 460 | } else { |
---|
| 461 | _owl_message_make_text_from_zwriteline_simple(m); |
---|
| 462 | } |
---|
| 463 | |
---|
| 464 | owl_zwrite_free(&z); |
---|
| 465 | } |
---|
[7d4fbcd] | 466 | |
---|
| 467 | void _owl_message_make_text_from_config(owl_message *m) { |
---|
| 468 | char *body, *indent; |
---|
| 469 | |
---|
| 470 | owl_fmtext_init_null(&(m->fmtext)); |
---|
| 471 | |
---|
| 472 | /* get body from the config */ |
---|
| 473 | body=owl_config_getmsg(m, 1); |
---|
| 474 | |
---|
| 475 | /* indent */ |
---|
| 476 | indent=owl_malloc(strlen(body)+owl_text_num_lines(body)*OWL_TAB+10); |
---|
| 477 | owl_text_indent(indent, body, OWL_TAB); |
---|
| 478 | |
---|
| 479 | /* fmtext_append. This needs to change */ |
---|
| 480 | owl_fmtext_append_ztext(&(m->fmtext), indent); |
---|
| 481 | |
---|
| 482 | owl_free(indent); |
---|
| 483 | owl_free(body); |
---|
| 484 | } |
---|
| 485 | |
---|
[b45293f] | 486 | void _owl_message_make_text_from_zwriteline_standard(owl_message *m) { |
---|
[be97670] | 487 | char *indent, *text, *zsigbuff, *foo; |
---|
[b45293f] | 488 | |
---|
| 489 | text=owl_message_get_body(m); |
---|
| 490 | |
---|
| 491 | indent=owl_malloc(strlen(text)+owl_text_num_lines(text)*OWL_MSGTAB+10); |
---|
| 492 | owl_text_indent(indent, text, OWL_MSGTAB); |
---|
| 493 | owl_fmtext_init_null(&(m->fmtext)); |
---|
| 494 | owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR); |
---|
| 495 | owl_fmtext_append_normal(&(m->fmtext), "Zephyr sent to "); |
---|
[be97670] | 496 | foo=short_zuser(owl_message_get_recipient(m)); |
---|
| 497 | owl_fmtext_append_normal(&(m->fmtext), foo); |
---|
| 498 | owl_free(foo); |
---|
[b45293f] | 499 | owl_fmtext_append_normal(&(m->fmtext), " (Zsig: "); |
---|
| 500 | |
---|
| 501 | zsigbuff=owl_malloc(strlen(owl_message_get_zsig(m))); |
---|
| 502 | owl_message_pretty_zsig(m, zsigbuff); |
---|
| 503 | owl_fmtext_append_ztext(&(m->fmtext), zsigbuff); |
---|
| 504 | owl_free(zsigbuff); |
---|
| 505 | |
---|
| 506 | owl_fmtext_append_normal(&(m->fmtext), ")"); |
---|
| 507 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
| 508 | owl_fmtext_append_ztext(&(m->fmtext), indent); |
---|
| 509 | if (text[strlen(text)-1]!='\n') { |
---|
| 510 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
| 511 | } |
---|
| 512 | |
---|
| 513 | owl_free(indent); |
---|
| 514 | } |
---|
| 515 | |
---|
| 516 | void _owl_message_make_text_from_zwriteline_simple(owl_message *m) { |
---|
| 517 | _owl_message_make_text_from_zwriteline_standard(m); |
---|
| 518 | } |
---|
| 519 | |
---|
[7d4fbcd] | 520 | void _owl_message_make_text_from_notice_standard(owl_message *m) { |
---|
[b45293f] | 521 | char *body, *indent, *ptr, *zsigbuff, frombuff[LINE]; |
---|
[7d4fbcd] | 522 | ZNotice_t *n; |
---|
| 523 | int len; |
---|
| 524 | |
---|
| 525 | /* get the body */ |
---|
| 526 | n=&(m->notice); |
---|
| 527 | ptr=(owl_zephyr_get_message(n, &len)); |
---|
| 528 | body=owl_malloc(len+20); |
---|
| 529 | strncpy(body, ptr, len); |
---|
| 530 | body[len]='\0'; |
---|
| 531 | |
---|
| 532 | /* add a newline if we need to */ |
---|
| 533 | if (body[0]!='\0' && body[strlen(body)-1]!='\n') { |
---|
| 534 | strcat(body, "\n"); |
---|
| 535 | } |
---|
| 536 | |
---|
| 537 | /* do the indenting into indent */ |
---|
| 538 | indent=owl_malloc(strlen(body)+owl_text_num_lines(body)*OWL_MSGTAB+10); |
---|
| 539 | owl_text_indent(indent, body, OWL_MSGTAB); |
---|
| 540 | |
---|
| 541 | /* edit the from addr for printing */ |
---|
| 542 | strcpy(frombuff, m->sender); |
---|
| 543 | ptr=strchr(frombuff, '@'); |
---|
| 544 | if (ptr && !strncmp(ptr+1, ZGetRealm(), strlen(ZGetRealm()))) { |
---|
| 545 | *ptr='\0'; |
---|
| 546 | } |
---|
| 547 | |
---|
| 548 | /* set the message for printing */ |
---|
| 549 | owl_fmtext_init_null(&(m->fmtext)); |
---|
| 550 | owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR); |
---|
| 551 | |
---|
| 552 | if (!strcasecmp(n->z_opcode, "ping")) { |
---|
| 553 | owl_fmtext_append_bold(&(m->fmtext), "PING"); |
---|
| 554 | owl_fmtext_append_normal(&(m->fmtext), " from "); |
---|
| 555 | owl_fmtext_append_bold(&(m->fmtext), frombuff); |
---|
| 556 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
| 557 | } else if (!strcasecmp(n->z_class, "login")) { |
---|
| 558 | char *ptr, host[LINE], tty[LINE]; |
---|
| 559 | int len; |
---|
| 560 | |
---|
| 561 | ptr=owl_zephyr_get_field(n, 1, &len); |
---|
| 562 | strncpy(host, ptr, len); |
---|
| 563 | host[len]='\0'; |
---|
| 564 | ptr=owl_zephyr_get_field(n, 3, &len); |
---|
| 565 | strncpy(tty, ptr, len); |
---|
| 566 | tty[len]='\0'; |
---|
| 567 | |
---|
| 568 | if (!strcasecmp(n->z_opcode, "user_login")) { |
---|
| 569 | owl_fmtext_append_bold(&(m->fmtext), "LOGIN"); |
---|
| 570 | } else if (!strcasecmp(n->z_opcode, "user_logout")) { |
---|
| 571 | owl_fmtext_append_bold(&(m->fmtext), "LOGOUT"); |
---|
| 572 | } |
---|
| 573 | owl_fmtext_append_normal(&(m->fmtext), " for "); |
---|
[4b464a4] | 574 | ptr=short_zuser(n->z_class_inst); |
---|
[7d4fbcd] | 575 | owl_fmtext_append_bold(&(m->fmtext), ptr); |
---|
| 576 | owl_free(ptr); |
---|
| 577 | owl_fmtext_append_normal(&(m->fmtext), " at "); |
---|
| 578 | owl_fmtext_append_normal(&(m->fmtext), host); |
---|
| 579 | owl_fmtext_append_normal(&(m->fmtext), " "); |
---|
| 580 | owl_fmtext_append_normal(&(m->fmtext), tty); |
---|
| 581 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
| 582 | } else { |
---|
| 583 | owl_fmtext_append_normal(&(m->fmtext), m->class); |
---|
| 584 | owl_fmtext_append_normal(&(m->fmtext), " / "); |
---|
| 585 | owl_fmtext_append_normal(&(m->fmtext), m->inst); |
---|
| 586 | owl_fmtext_append_normal(&(m->fmtext), " / "); |
---|
| 587 | owl_fmtext_append_bold(&(m->fmtext), frombuff); |
---|
| 588 | if (strcasecmp(owl_message_get_realm(m), ZGetRealm())) { |
---|
| 589 | owl_fmtext_append_normal(&(m->fmtext), " {"); |
---|
| 590 | owl_fmtext_append_normal(&(m->fmtext), owl_message_get_realm(m)); |
---|
| 591 | owl_fmtext_append_normal(&(m->fmtext), "} "); |
---|
| 592 | } |
---|
| 593 | if (n->z_opcode[0]!='\0') { |
---|
| 594 | owl_fmtext_append_normal(&(m->fmtext), " ["); |
---|
| 595 | owl_fmtext_append_normal(&(m->fmtext), n->z_opcode); |
---|
| 596 | owl_fmtext_append_normal(&(m->fmtext), "] "); |
---|
| 597 | } |
---|
| 598 | |
---|
| 599 | /* stick on the zsig */ |
---|
[b45293f] | 600 | zsigbuff=owl_malloc(strlen(owl_message_get_zsig(m))); |
---|
| 601 | owl_message_pretty_zsig(m, zsigbuff); |
---|
| 602 | owl_fmtext_append_normal(&(m->fmtext), " ("); |
---|
| 603 | owl_fmtext_append_ztext(&(m->fmtext), zsigbuff); |
---|
| 604 | owl_fmtext_append_normal(&(m->fmtext), ")"); |
---|
[7d4fbcd] | 605 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
[b45293f] | 606 | owl_free(zsigbuff); |
---|
| 607 | |
---|
| 608 | /* then the indented message */ |
---|
[7d4fbcd] | 609 | owl_fmtext_append_ztext(&(m->fmtext), indent); |
---|
| 610 | |
---|
| 611 | /* make personal messages bold for smaat users */ |
---|
| 612 | if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) { |
---|
| 613 | if (owl_message_is_personal(m)) { |
---|
| 614 | owl_fmtext_addattr((&m->fmtext), OWL_FMTEXT_ATTR_BOLD); |
---|
| 615 | } |
---|
| 616 | } |
---|
| 617 | } |
---|
| 618 | |
---|
| 619 | owl_free(body); |
---|
| 620 | owl_free(indent); |
---|
| 621 | } |
---|
| 622 | |
---|
| 623 | void _owl_message_make_text_from_notice_simple(owl_message *m) { |
---|
[b45293f] | 624 | char *body, *indent, *ptr, *zsigbuff, frombuff[LINE]; |
---|
[7d4fbcd] | 625 | ZNotice_t *n; |
---|
| 626 | int len; |
---|
| 627 | |
---|
| 628 | /* get the body */ |
---|
| 629 | n=&(m->notice); |
---|
| 630 | ptr=(owl_zephyr_get_message(n, &len)); |
---|
| 631 | body=owl_malloc(len+20); |
---|
| 632 | strncpy(body, ptr, len); |
---|
| 633 | body[len]='\0'; |
---|
| 634 | |
---|
| 635 | /* add a newline if we need to */ |
---|
| 636 | if (body[0]!='\0' && body[strlen(body)-1]!='\n') { |
---|
| 637 | strcat(body, "\n"); |
---|
| 638 | } |
---|
| 639 | |
---|
| 640 | /* do the indenting into indent */ |
---|
| 641 | indent=owl_malloc(strlen(body)+owl_text_num_lines(body)*OWL_MSGTAB+10); |
---|
| 642 | owl_text_indent(indent, body, OWL_MSGTAB); |
---|
| 643 | |
---|
| 644 | /* edit the from addr for printing */ |
---|
| 645 | strcpy(frombuff, m->sender); |
---|
| 646 | ptr=strchr(frombuff, '@'); |
---|
| 647 | if (ptr && !strncmp(ptr+1, ZGetRealm(), strlen(ZGetRealm()))) { |
---|
| 648 | *ptr='\0'; |
---|
| 649 | } |
---|
| 650 | |
---|
| 651 | /* set the message for printing */ |
---|
| 652 | owl_fmtext_init_null(&(m->fmtext)); |
---|
| 653 | owl_fmtext_append_normal(&(m->fmtext), OWL_TABSTR); |
---|
| 654 | |
---|
| 655 | if (!strcasecmp(n->z_opcode, "ping")) { |
---|
| 656 | owl_fmtext_append_bold(&(m->fmtext), "PING"); |
---|
| 657 | owl_fmtext_append_normal(&(m->fmtext), " from "); |
---|
| 658 | owl_fmtext_append_bold(&(m->fmtext), frombuff); |
---|
| 659 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
| 660 | } else if (!strcasecmp(n->z_class, "login")) { |
---|
| 661 | char *ptr, host[LINE], tty[LINE]; |
---|
| 662 | int len; |
---|
| 663 | |
---|
| 664 | ptr=owl_zephyr_get_field(n, 1, &len); |
---|
| 665 | strncpy(host, ptr, len); |
---|
| 666 | host[len]='\0'; |
---|
| 667 | ptr=owl_zephyr_get_field(n, 3, &len); |
---|
| 668 | strncpy(tty, ptr, len); |
---|
| 669 | tty[len]='\0'; |
---|
| 670 | |
---|
| 671 | if (!strcasecmp(n->z_opcode, "user_login")) { |
---|
| 672 | owl_fmtext_append_bold(&(m->fmtext), "LOGIN"); |
---|
| 673 | } else if (!strcasecmp(n->z_opcode, "user_logout")) { |
---|
| 674 | owl_fmtext_append_bold(&(m->fmtext), "LOGOUT"); |
---|
| 675 | } |
---|
| 676 | owl_fmtext_append_normal(&(m->fmtext), " for "); |
---|
[4b464a4] | 677 | ptr=short_zuser(n->z_class_inst); |
---|
[7d4fbcd] | 678 | owl_fmtext_append_bold(&(m->fmtext), ptr); |
---|
| 679 | owl_free(ptr); |
---|
| 680 | owl_fmtext_append_normal(&(m->fmtext), " at "); |
---|
| 681 | owl_fmtext_append_normal(&(m->fmtext), host); |
---|
| 682 | owl_fmtext_append_normal(&(m->fmtext), " "); |
---|
| 683 | owl_fmtext_append_normal(&(m->fmtext), tty); |
---|
| 684 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
| 685 | } else { |
---|
| 686 | owl_fmtext_append_normal(&(m->fmtext), "From: "); |
---|
| 687 | if (strcasecmp(m->class, "message")) { |
---|
| 688 | owl_fmtext_append_normal(&(m->fmtext), "Class "); |
---|
| 689 | owl_fmtext_append_normal(&(m->fmtext), m->class); |
---|
| 690 | owl_fmtext_append_normal(&(m->fmtext), " / Instance "); |
---|
| 691 | owl_fmtext_append_normal(&(m->fmtext), m->inst); |
---|
| 692 | owl_fmtext_append_normal(&(m->fmtext), " / "); |
---|
| 693 | } |
---|
| 694 | owl_fmtext_append_normal(&(m->fmtext), frombuff); |
---|
| 695 | if (strcasecmp(owl_message_get_realm(m), ZGetRealm())) { |
---|
| 696 | owl_fmtext_append_normal(&(m->fmtext), " {"); |
---|
| 697 | owl_fmtext_append_normal(&(m->fmtext), owl_message_get_realm(m)); |
---|
| 698 | owl_fmtext_append_normal(&(m->fmtext), "} "); |
---|
| 699 | } |
---|
| 700 | |
---|
| 701 | /* stick on the zsig */ |
---|
[b45293f] | 702 | zsigbuff=owl_malloc(strlen(owl_message_get_zsig(m))); |
---|
| 703 | owl_message_pretty_zsig(m, zsigbuff); |
---|
| 704 | owl_fmtext_append_normal(&(m->fmtext), " ("); |
---|
| 705 | owl_fmtext_append_ztext(&(m->fmtext), zsigbuff); |
---|
| 706 | owl_fmtext_append_normal(&(m->fmtext), ")"); |
---|
[7d4fbcd] | 707 | owl_fmtext_append_normal(&(m->fmtext), "\n"); |
---|
[b45293f] | 708 | owl_free(zsigbuff); |
---|
| 709 | |
---|
| 710 | /* then the indented message */ |
---|
[7d4fbcd] | 711 | owl_fmtext_append_ztext(&(m->fmtext), indent); |
---|
| 712 | |
---|
| 713 | /* make personal messages bold for smaat users */ |
---|
| 714 | if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) { |
---|
| 715 | if (owl_message_is_personal(m)) { |
---|
| 716 | owl_fmtext_addattr((&m->fmtext), OWL_FMTEXT_ATTR_BOLD); |
---|
| 717 | } |
---|
| 718 | } |
---|
| 719 | } |
---|
| 720 | |
---|
| 721 | owl_free(body); |
---|
| 722 | owl_free(indent); |
---|
| 723 | } |
---|
| 724 | |
---|
[b45293f] | 725 | void owl_message_pretty_zsig(owl_message *m, char *buff) { |
---|
| 726 | /* stick a one line version of the zsig in buff */ |
---|
[7d4fbcd] | 727 | char *ptr; |
---|
| 728 | |
---|
[b45293f] | 729 | strcpy(buff, m->zsig); |
---|
| 730 | ptr=strchr(buff, '\n'); |
---|
| 731 | if (ptr) ptr[0]='\0'; |
---|
[7d4fbcd] | 732 | } |
---|
| 733 | |
---|
| 734 | void owl_message_free(owl_message *m) { |
---|
[4b464a4] | 735 | if (owl_message_is_type_zephyr(m) && owl_message_is_direction_in(m)) { |
---|
[7d4fbcd] | 736 | ZFreeNotice(&(m->notice)); |
---|
| 737 | } |
---|
| 738 | if (m->sender) owl_free(m->sender); |
---|
| 739 | if (m->recip) owl_free(m->recip); |
---|
| 740 | if (m->class) owl_free(m->class); |
---|
| 741 | if (m->inst) owl_free(m->inst); |
---|
| 742 | if (m->opcode) owl_free(m->opcode); |
---|
| 743 | if (m->time) owl_free(m->time); |
---|
| 744 | if (m->realm) owl_free(m->realm); |
---|
| 745 | if (m->body) owl_free(m->body); |
---|
| 746 | if (m->zwriteline) owl_free(m->zwriteline); |
---|
| 747 | |
---|
| 748 | owl_fmtext_free(&(m->fmtext)); |
---|
| 749 | } |
---|
| 750 | |
---|