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