[7d4fbcd] | 1 | #include "owl.h" |
---|
| 2 | |
---|
[d953ede] | 3 | CALLER_OWN owl_zwrite *owl_zwrite_new_from_line(const char *line) |
---|
[987cf3f] | 4 | { |
---|
[96828e4] | 5 | owl_zwrite *z = g_new(owl_zwrite, 1); |
---|
[ef4074b] | 6 | if (owl_zwrite_create_from_line(z, line) != 0) { |
---|
| 7 | g_free(z); |
---|
[987cf3f] | 8 | return NULL; |
---|
| 9 | } |
---|
| 10 | return z; |
---|
| 11 | } |
---|
| 12 | |
---|
[6329cd5] | 13 | CALLER_OWN owl_zwrite *owl_zwrite_new(int argc, const char *const *argv) |
---|
| 14 | { |
---|
| 15 | owl_zwrite *z = g_new(owl_zwrite, 1); |
---|
[ef4074b] | 16 | if (owl_zwrite_create(z, argc, argv) != 0) { |
---|
| 17 | g_free(z); |
---|
[6329cd5] | 18 | return NULL; |
---|
| 19 | } |
---|
| 20 | return z; |
---|
| 21 | } |
---|
| 22 | |
---|
[d427f08] | 23 | G_GNUC_WARN_UNUSED_RESULT int owl_zwrite_create_from_line(owl_zwrite *z, const char *line) |
---|
[ce7db4d] | 24 | { |
---|
[6329cd5] | 25 | int argc; |
---|
[65b2173] | 26 | char **argv; |
---|
[6329cd5] | 27 | int ret; |
---|
[7d4fbcd] | 28 | |
---|
[6329cd5] | 29 | /* parse the command line for options */ |
---|
| 30 | argv = owl_parseline(line, &argc); |
---|
| 31 | if (argc < 0) { |
---|
| 32 | owl_function_error("Unbalanced quotes in zwrite"); |
---|
| 33 | return -1; |
---|
| 34 | } |
---|
| 35 | ret = owl_zwrite_create(z, argc, strs(argv)); |
---|
| 36 | g_strfreev(argv); |
---|
| 37 | return ret; |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | G_GNUC_WARN_UNUSED_RESULT int owl_zwrite_create(owl_zwrite *z, int argc, const char *const *argv) |
---|
| 41 | { |
---|
| 42 | int badargs = 0; |
---|
| 43 | char *msg = NULL; |
---|
[7d4fbcd] | 44 | |
---|
[69f89c7] | 45 | /* start with null entries */ |
---|
[987cf3f] | 46 | z->cmd=NULL; |
---|
[ce7db4d] | 47 | z->realm=NULL; |
---|
| 48 | z->class=NULL; |
---|
| 49 | z->inst=NULL; |
---|
| 50 | z->opcode=NULL; |
---|
| 51 | z->zsig=NULL; |
---|
| 52 | z->message=NULL; |
---|
[7d4fbcd] | 53 | z->cc=0; |
---|
| 54 | z->noping=0; |
---|
[12294d2] | 55 | z->recips = g_ptr_array_new(); |
---|
[6329cd5] | 56 | z->zwriteline = owl_argv_quote(argc, argv); |
---|
[7d4fbcd] | 57 | |
---|
[6329cd5] | 58 | if (argc && *(argv[0])!='-') { |
---|
| 59 | z->cmd=g_strdup(argv[0]); |
---|
| 60 | argc--; |
---|
| 61 | argv++; |
---|
[e1c4636] | 62 | } |
---|
[6329cd5] | 63 | while (argc) { |
---|
| 64 | if (!strcmp(argv[0], "-c")) { |
---|
| 65 | if (argc<2) { |
---|
[7d4fbcd] | 66 | badargs=1; |
---|
| 67 | break; |
---|
| 68 | } |
---|
[6329cd5] | 69 | z->class=owl_validate_utf8(argv[1]); |
---|
| 70 | argv+=2; |
---|
| 71 | argc-=2; |
---|
| 72 | } else if (!strcmp(argv[0], "-i")) { |
---|
| 73 | if (argc<2) { |
---|
[7d4fbcd] | 74 | badargs=1; |
---|
| 75 | break; |
---|
| 76 | } |
---|
[6329cd5] | 77 | z->inst=owl_validate_utf8(argv[1]); |
---|
| 78 | argv+=2; |
---|
| 79 | argc-=2; |
---|
| 80 | } else if (!strcmp(argv[0], "-r")) { |
---|
| 81 | if (argc<2) { |
---|
[7d4fbcd] | 82 | badargs=1; |
---|
| 83 | break; |
---|
| 84 | } |
---|
[6329cd5] | 85 | z->realm=owl_validate_utf8(argv[1]); |
---|
| 86 | argv+=2; |
---|
| 87 | argc-=2; |
---|
| 88 | } else if (!strcmp(argv[0], "-s")) { |
---|
| 89 | if (argc<2) { |
---|
[ce7db4d] | 90 | badargs=1; |
---|
| 91 | break; |
---|
| 92 | } |
---|
[6329cd5] | 93 | z->zsig=owl_validate_utf8(argv[1]); |
---|
| 94 | argv+=2; |
---|
| 95 | argc-=2; |
---|
| 96 | } else if (!strcmp(argv[0], "-O")) { |
---|
| 97 | if (argc<2) { |
---|
[7d4fbcd] | 98 | badargs=1; |
---|
| 99 | break; |
---|
| 100 | } |
---|
[6329cd5] | 101 | z->opcode=owl_validate_utf8(argv[1]); |
---|
| 102 | argv+=2; |
---|
| 103 | argc-=2; |
---|
| 104 | } else if (!strcmp(argv[0], "-m")) { |
---|
| 105 | if (argc<2) { |
---|
[ce7db4d] | 106 | badargs=1; |
---|
| 107 | break; |
---|
| 108 | } |
---|
[69f89c7] | 109 | /* we must already have users or a class or an instance */ |
---|
[12294d2] | 110 | if (z->recips->len < 1 && (!z->class) && (!z->inst)) { |
---|
[ce7db4d] | 111 | badargs=1; |
---|
| 112 | break; |
---|
| 113 | } |
---|
| 114 | |
---|
| 115 | /* Once we have -m, gobble up everything else on the line */ |
---|
[6329cd5] | 116 | argv++; |
---|
| 117 | argc--; |
---|
| 118 | msg = g_strjoinv(" ", (char**)argv); |
---|
[ce7db4d] | 119 | break; |
---|
[6329cd5] | 120 | } else if (!strcmp(argv[0], "-C")) { |
---|
[7d4fbcd] | 121 | z->cc=1; |
---|
[6329cd5] | 122 | argv++; |
---|
| 123 | argc--; |
---|
| 124 | } else if (!strcmp(argv[0], "-n")) { |
---|
[7d4fbcd] | 125 | z->noping=1; |
---|
[6329cd5] | 126 | argv++; |
---|
| 127 | argc--; |
---|
[7d4fbcd] | 128 | } else { |
---|
| 129 | /* anything unattached is a recipient */ |
---|
[6329cd5] | 130 | g_ptr_array_add(z->recips, owl_validate_utf8(argv[0])); |
---|
| 131 | argv++; |
---|
| 132 | argc--; |
---|
[7d4fbcd] | 133 | } |
---|
| 134 | } |
---|
| 135 | |
---|
| 136 | if (badargs) { |
---|
[ef4074b] | 137 | owl_zwrite_cleanup(z); |
---|
[7d4fbcd] | 138 | return(-1); |
---|
| 139 | } |
---|
| 140 | |
---|
[1fe100c] | 141 | if (z->class == NULL && |
---|
| 142 | z->inst == NULL && |
---|
[12294d2] | 143 | z->recips->len == 0) { |
---|
[1fe100c] | 144 | owl_function_error("You must specify a recipient for zwrite"); |
---|
[ef4074b] | 145 | owl_zwrite_cleanup(z); |
---|
[1fe100c] | 146 | return(-1); |
---|
| 147 | } |
---|
| 148 | |
---|
[ce7db4d] | 149 | /* now deal with defaults */ |
---|
[d4927a7] | 150 | if (z->class==NULL) z->class=g_strdup("message"); |
---|
| 151 | if (z->inst==NULL) z->inst=g_strdup("personal"); |
---|
| 152 | if (z->realm==NULL) z->realm=g_strdup(""); |
---|
| 153 | if (z->opcode==NULL) z->opcode=g_strdup(""); |
---|
[ce7db4d] | 154 | /* z->message is allowed to stay NULL */ |
---|
[a52d13a] | 155 | |
---|
| 156 | if(msg) { |
---|
| 157 | owl_zwrite_set_message(z, msg); |
---|
[ddbbcffa] | 158 | g_free(msg); |
---|
[a52d13a] | 159 | } |
---|
| 160 | |
---|
[3f3ee61] | 161 | return(0); |
---|
| 162 | } |
---|
| 163 | |
---|
| 164 | void owl_zwrite_populate_zsig(owl_zwrite *z) |
---|
| 165 | { |
---|
[ce7db4d] | 166 | /* get a zsig, if not given */ |
---|
[de3f641] | 167 | if (z->zsig != NULL) |
---|
| 168 | return; |
---|
[ce7db4d] | 169 | |
---|
[de3f641] | 170 | z->zsig = owl_perlconfig_execute(owl_global_get_zsigfunc(&g)); |
---|
[7d4fbcd] | 171 | } |
---|
| 172 | |
---|
[a352029b] | 173 | void owl_zwrite_send_ping(const owl_zwrite *z) |
---|
[ce7db4d] | 174 | { |
---|
[12294d2] | 175 | int i; |
---|
[44a61ac] | 176 | char *to; |
---|
[7d4fbcd] | 177 | |
---|
| 178 | if (z->noping) return; |
---|
| 179 | |
---|
[3ef779b] | 180 | if (strcasecmp(z->class, "message")) { |
---|
[7d4fbcd] | 181 | return; |
---|
| 182 | } |
---|
| 183 | |
---|
| 184 | /* if there are no recipients we won't send a ping, which |
---|
| 185 | is what we want */ |
---|
[12294d2] | 186 | for (i = 0; i < z->recips->len; i++) { |
---|
[3f52e14] | 187 | to = owl_zwrite_get_recip_n_with_realm(z, i); |
---|
[3ef779b] | 188 | send_ping(to, z->class, z->inst); |
---|
[ddbbcffa] | 189 | g_free(to); |
---|
[7d4fbcd] | 190 | } |
---|
| 191 | |
---|
| 192 | } |
---|
| 193 | |
---|
[7bfc613] | 194 | /* Set the message with no post-processing*/ |
---|
| 195 | void owl_zwrite_set_message_raw(owl_zwrite *z, const char *msg) |
---|
| 196 | { |
---|
[3b8a563] | 197 | g_free(z->message); |
---|
[7bfc613] | 198 | z->message = owl_validate_utf8(msg); |
---|
| 199 | } |
---|
| 200 | |
---|
[e19eb97] | 201 | void owl_zwrite_set_message(owl_zwrite *z, const char *msg) |
---|
[ce7db4d] | 202 | { |
---|
[12294d2] | 203 | int i; |
---|
[3f52e14] | 204 | GString *message; |
---|
[a52d13a] | 205 | char *tmp = NULL, *tmp2; |
---|
[db2dd3d] | 206 | |
---|
[3b8a563] | 207 | g_free(z->message); |
---|
[db2dd3d] | 208 | |
---|
[12294d2] | 209 | if (z->recips->len > 0 && z->cc) { |
---|
[3f52e14] | 210 | message = g_string_new("CC: "); |
---|
[12294d2] | 211 | for (i = 0; i < z->recips->len; i++) { |
---|
[3f52e14] | 212 | tmp = owl_zwrite_get_recip_n_with_realm(z, i); |
---|
| 213 | g_string_append_printf(message, "%s ", tmp); |
---|
[ddbbcffa] | 214 | g_free(tmp); |
---|
[3538bc8] | 215 | tmp = NULL; |
---|
[db2dd3d] | 216 | } |
---|
[4b17a6c] | 217 | tmp = owl_validate_utf8(msg); |
---|
[a52d13a] | 218 | tmp2 = owl_text_expand_tabs(tmp); |
---|
[3f52e14] | 219 | g_string_append_printf(message, "\n%s", tmp2); |
---|
| 220 | z->message = g_string_free(message, false); |
---|
[ddbbcffa] | 221 | g_free(tmp); |
---|
| 222 | g_free(tmp2); |
---|
[db2dd3d] | 223 | } else { |
---|
[a52d13a] | 224 | tmp=owl_validate_utf8(msg); |
---|
| 225 | z->message=owl_text_expand_tabs(tmp); |
---|
[ddbbcffa] | 226 | g_free(tmp); |
---|
[db2dd3d] | 227 | } |
---|
[ce7db4d] | 228 | } |
---|
| 229 | |
---|
[a352029b] | 230 | const char *owl_zwrite_get_message(const owl_zwrite *z) |
---|
[ce7db4d] | 231 | { |
---|
| 232 | if (z->message) return(z->message); |
---|
| 233 | return(""); |
---|
| 234 | } |
---|
| 235 | |
---|
[a352029b] | 236 | int owl_zwrite_is_message_set(const owl_zwrite *z) |
---|
[ce7db4d] | 237 | { |
---|
| 238 | if (z->message) return(1); |
---|
| 239 | return(0); |
---|
| 240 | } |
---|
| 241 | |
---|
[a352029b] | 242 | int owl_zwrite_send_message(const owl_zwrite *z) |
---|
[ce7db4d] | 243 | { |
---|
[12294d2] | 244 | int i, ret = 0; |
---|
[823671c] | 245 | char *to = NULL; |
---|
[7d4fbcd] | 246 | |
---|
[ce7db4d] | 247 | if (z->message==NULL) return(-1); |
---|
| 248 | |
---|
[12294d2] | 249 | if (z->recips->len > 0) { |
---|
| 250 | for (i = 0; i < z->recips->len; i++) { |
---|
[3f52e14] | 251 | to = owl_zwrite_get_recip_n_with_realm(z, i); |
---|
[0743696] | 252 | ret = send_zephyr(z->opcode, z->zsig, z->class, z->inst, to, z->message); |
---|
| 253 | /* Abort on the first error, to match the zwrite binary. */ |
---|
| 254 | if (ret != 0) |
---|
| 255 | break; |
---|
[ddbbcffa] | 256 | g_free(to); |
---|
[823671c] | 257 | to = NULL; |
---|
[7d4fbcd] | 258 | } |
---|
| 259 | } else { |
---|
[3472845] | 260 | to = g_strdup_printf( "@%s", z->realm); |
---|
[0743696] | 261 | ret = send_zephyr(z->opcode, z->zsig, z->class, z->inst, to, z->message); |
---|
[ce7db4d] | 262 | } |
---|
[ddbbcffa] | 263 | g_free(to); |
---|
[0743696] | 264 | return ret; |
---|
[ce7db4d] | 265 | } |
---|
| 266 | |
---|
[e19eb97] | 267 | int owl_zwrite_create_and_send_from_line(const char *cmd, const char *msg) |
---|
[ce7db4d] | 268 | { |
---|
| 269 | owl_zwrite z; |
---|
| 270 | int rv; |
---|
[ef4074b] | 271 | rv = owl_zwrite_create_from_line(&z, cmd); |
---|
| 272 | if (rv != 0) return rv; |
---|
[ce7db4d] | 273 | if (!owl_zwrite_is_message_set(&z)) { |
---|
| 274 | owl_zwrite_set_message(&z, msg); |
---|
[7d4fbcd] | 275 | } |
---|
[3f3ee61] | 276 | owl_zwrite_populate_zsig(&z); |
---|
[ce7db4d] | 277 | owl_zwrite_send_message(&z); |
---|
[c230bc1] | 278 | owl_zwrite_cleanup(&z); |
---|
[ce7db4d] | 279 | return(0); |
---|
[7d4fbcd] | 280 | } |
---|
| 281 | |
---|
[a352029b] | 282 | const char *owl_zwrite_get_class(const owl_zwrite *z) |
---|
[ce7db4d] | 283 | { |
---|
[7d4fbcd] | 284 | return(z->class); |
---|
| 285 | } |
---|
| 286 | |
---|
[a352029b] | 287 | const char *owl_zwrite_get_instance(const owl_zwrite *z) |
---|
[ce7db4d] | 288 | { |
---|
[7d4fbcd] | 289 | return(z->inst); |
---|
| 290 | } |
---|
| 291 | |
---|
[a352029b] | 292 | const char *owl_zwrite_get_opcode(const owl_zwrite *z) |
---|
[ce7db4d] | 293 | { |
---|
[4b464a4] | 294 | return(z->opcode); |
---|
| 295 | } |
---|
| 296 | |
---|
[e19eb97] | 297 | void owl_zwrite_set_opcode(owl_zwrite *z, const char *opcode) |
---|
[9ceee9d] | 298 | { |
---|
[3b8a563] | 299 | g_free(z->opcode); |
---|
[4b17a6c] | 300 | z->opcode=owl_validate_utf8(opcode); |
---|
[9ceee9d] | 301 | } |
---|
| 302 | |
---|
[a352029b] | 303 | const char *owl_zwrite_get_realm(const owl_zwrite *z) |
---|
[ce7db4d] | 304 | { |
---|
[7d4fbcd] | 305 | return(z->realm); |
---|
| 306 | } |
---|
| 307 | |
---|
[a352029b] | 308 | const char *owl_zwrite_get_zsig(const owl_zwrite *z) |
---|
[ce7db4d] | 309 | { |
---|
| 310 | if (z->zsig) return(z->zsig); |
---|
| 311 | return(""); |
---|
[56330ff] | 312 | } |
---|
| 313 | |
---|
[24ccc01] | 314 | void owl_zwrite_set_zsig(owl_zwrite *z, const char *zsig) |
---|
| 315 | { |
---|
[3b8a563] | 316 | g_free(z->zsig); |
---|
[d4927a7] | 317 | z->zsig = g_strdup(zsig); |
---|
[24ccc01] | 318 | } |
---|
| 319 | |
---|
[a352029b] | 320 | int owl_zwrite_get_numrecips(const owl_zwrite *z) |
---|
[ce7db4d] | 321 | { |
---|
[12294d2] | 322 | return z->recips->len; |
---|
[7d4fbcd] | 323 | } |
---|
| 324 | |
---|
[a352029b] | 325 | const char *owl_zwrite_get_recip_n(const owl_zwrite *z, int n) |
---|
[ce7db4d] | 326 | { |
---|
[12294d2] | 327 | return z->recips->pdata[n]; |
---|
[7d4fbcd] | 328 | } |
---|
| 329 | |
---|
[3f52e14] | 330 | /* Caller must free the result. */ |
---|
[6829afc] | 331 | CALLER_OWN char *owl_zwrite_get_recip_n_with_realm(const owl_zwrite *z, int n) |
---|
[3f52e14] | 332 | { |
---|
| 333 | if (z->realm[0]) { |
---|
| 334 | return g_strdup_printf("%s@%s", owl_zwrite_get_recip_n(z, n), z->realm); |
---|
| 335 | } else { |
---|
| 336 | return g_strdup(owl_zwrite_get_recip_n(z, n)); |
---|
| 337 | } |
---|
| 338 | } |
---|
| 339 | |
---|
[bff1f22] | 340 | bool owl_zwrite_recip_is_personal(const char *recipient) |
---|
| 341 | { |
---|
| 342 | return recipient[0] && recipient[0] != '@'; |
---|
| 343 | } |
---|
| 344 | |
---|
[a352029b] | 345 | int owl_zwrite_is_personal(const owl_zwrite *z) |
---|
[ce7db4d] | 346 | { |
---|
[7d4fbcd] | 347 | /* return true if at least one of the recipients is personal */ |
---|
[12294d2] | 348 | int i; |
---|
| 349 | char *recip; |
---|
[7d4fbcd] | 350 | |
---|
[12294d2] | 351 | for (i = 0; i < z->recips->len; i++) { |
---|
| 352 | recip = z->recips->pdata[i]; |
---|
| 353 | if (recip[0] != '@') return 1; |
---|
[7d4fbcd] | 354 | } |
---|
| 355 | return(0); |
---|
| 356 | } |
---|
[3f3ee61] | 357 | |
---|
[987cf3f] | 358 | void owl_zwrite_delete(owl_zwrite *z) |
---|
| 359 | { |
---|
| 360 | owl_zwrite_cleanup(z); |
---|
[ddbbcffa] | 361 | g_free(z); |
---|
[987cf3f] | 362 | } |
---|
| 363 | |
---|
[c230bc1] | 364 | void owl_zwrite_cleanup(owl_zwrite *z) |
---|
[ce7db4d] | 365 | { |
---|
[3cdd6d2] | 366 | owl_ptr_array_free(z->recips, g_free); |
---|
[3b8a563] | 367 | g_free(z->cmd); |
---|
| 368 | g_free(z->zwriteline); |
---|
| 369 | g_free(z->class); |
---|
| 370 | g_free(z->inst); |
---|
| 371 | g_free(z->opcode); |
---|
| 372 | g_free(z->realm); |
---|
| 373 | g_free(z->message); |
---|
| 374 | g_free(z->zsig); |
---|
[7d4fbcd] | 375 | } |
---|
[719119de] | 376 | |
---|
| 377 | /* |
---|
| 378 | * Returns a zwrite line suitable for replying, specifically the |
---|
| 379 | * message field is stripped out. Result should be freed with |
---|
[ddbbcffa] | 380 | * g_free. |
---|
[a5b5d00] | 381 | * |
---|
| 382 | * If not a CC, only the recip_index'th user will be replied to. |
---|
[719119de] | 383 | */ |
---|
[6829afc] | 384 | CALLER_OWN char *owl_zwrite_get_replyline(const owl_zwrite *z, int recip_index) |
---|
[719119de] | 385 | { |
---|
| 386 | /* Match ordering in zwrite help. */ |
---|
| 387 | GString *buf = g_string_new(""); |
---|
| 388 | int i; |
---|
| 389 | |
---|
| 390 | /* Disturbingly, it is apparently possible to z->cmd to be null if |
---|
| 391 | * owl_zwrite_create_from_line got something starting with -. And we |
---|
| 392 | * can't kill it because this is exported to perl. */ |
---|
| 393 | owl_string_append_quoted_arg(buf, z->cmd ? z->cmd : "zwrite"); |
---|
| 394 | if (z->noping) { |
---|
| 395 | g_string_append(buf, " -n"); |
---|
| 396 | } |
---|
| 397 | if (z->cc) { |
---|
| 398 | g_string_append(buf, " -C"); |
---|
| 399 | } |
---|
| 400 | if (strcmp(z->class, "message")) { |
---|
| 401 | g_string_append(buf, " -c "); |
---|
| 402 | owl_string_append_quoted_arg(buf, z->class); |
---|
| 403 | } |
---|
| 404 | if (strcmp(z->inst, "personal")) { |
---|
| 405 | g_string_append(buf, " -i "); |
---|
| 406 | owl_string_append_quoted_arg(buf, z->inst); |
---|
| 407 | } |
---|
| 408 | if (z->realm && z->realm[0] != '\0') { |
---|
| 409 | g_string_append(buf, " -r "); |
---|
| 410 | owl_string_append_quoted_arg(buf, z->realm); |
---|
| 411 | } |
---|
| 412 | if (z->opcode && z->opcode[0] != '\0') { |
---|
| 413 | g_string_append(buf, " -O "); |
---|
| 414 | owl_string_append_quoted_arg(buf, z->opcode); |
---|
| 415 | } |
---|
[a5b5d00] | 416 | if (z->cc) { |
---|
[12294d2] | 417 | for (i = 0; i < z->recips->len; i++) { |
---|
[a5b5d00] | 418 | g_string_append_c(buf, ' '); |
---|
[12294d2] | 419 | owl_string_append_quoted_arg(buf, z->recips->pdata[i]); |
---|
[a5b5d00] | 420 | } |
---|
[12294d2] | 421 | } else if (recip_index < z->recips->len) { |
---|
[719119de] | 422 | g_string_append_c(buf, ' '); |
---|
[12294d2] | 423 | owl_string_append_quoted_arg(buf, z->recips->pdata[recip_index]); |
---|
[719119de] | 424 | } |
---|
| 425 | |
---|
| 426 | return g_string_free(buf, false); |
---|
| 427 | } |
---|