[7d4fbcd] | 1 | #include <stdlib.h> |
---|
| 2 | #include <unistd.h> |
---|
| 3 | #include <sys/types.h> |
---|
| 4 | #include <sys/wait.h> |
---|
[4357be8] | 5 | #include <sys/stat.h> |
---|
[7d4fbcd] | 6 | #include <string.h> |
---|
| 7 | #include "owl.h" |
---|
| 8 | |
---|
[fea7992] | 9 | #ifdef HAVE_LIBZEPHYR |
---|
[a5e7ed6] | 10 | static GList *deferred_subs = NULL; |
---|
[79d7d98] | 11 | |
---|
[a5e7ed6] | 12 | typedef struct _owl_sub_list { /* noproto */ |
---|
| 13 | ZSubscription_t *subs; |
---|
| 14 | int nsubs; |
---|
| 15 | } owl_sub_list; |
---|
| 16 | |
---|
[c79a047] | 17 | Code_t ZResetAuthentication(void); |
---|
[09489b89] | 18 | #endif |
---|
[8262340] | 19 | |
---|
[02f55dc] | 20 | #define HM_SVC_FALLBACK htons((unsigned short) 2104) |
---|
| 21 | |
---|
[6ea3890] | 22 | static char *owl_zephyr_dotfile(const char *name, const char *input) |
---|
| 23 | { |
---|
| 24 | if (input != NULL) |
---|
| 25 | return owl_strdup(input); |
---|
| 26 | else |
---|
| 27 | return owl_sprintf("%s/%s", owl_global_get_homedir(&g), name); |
---|
| 28 | } |
---|
| 29 | |
---|
[52a0f14] | 30 | #ifdef HAVE_LIBZEPHYR |
---|
[c79a047] | 31 | void owl_zephyr_initialize(void) |
---|
[52a0f14] | 32 | { |
---|
| 33 | int ret; |
---|
[02f55dc] | 34 | struct servent *sp; |
---|
| 35 | struct sockaddr_in sin; |
---|
| 36 | ZNotice_t req; |
---|
| 37 | Code_t code; |
---|
[52a0f14] | 38 | owl_dispatch *dispatch; |
---|
| 39 | |
---|
| 40 | /* |
---|
| 41 | * Code modified from libzephyr's ZhmStat.c |
---|
| 42 | * |
---|
| 43 | * Modified to add the fd to our select loop, rather than hanging |
---|
| 44 | * until we get an ack. |
---|
| 45 | */ |
---|
| 46 | |
---|
| 47 | if ((ret = ZOpenPort(NULL)) != ZERR_NONE) { |
---|
| 48 | owl_function_error("Error opening Zephyr port: %s", error_message(ret)); |
---|
| 49 | return; |
---|
| 50 | } |
---|
[02f55dc] | 51 | |
---|
[4d86e06] | 52 | (void) memset(&sin, 0, sizeof(struct sockaddr_in)); |
---|
[02f55dc] | 53 | |
---|
| 54 | sp = getservbyname(HM_SVCNAME, "udp"); |
---|
| 55 | |
---|
| 56 | sin.sin_port = (sp) ? sp->s_port : HM_SVC_FALLBACK; |
---|
| 57 | sin.sin_family = AF_INET; |
---|
| 58 | |
---|
| 59 | sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); |
---|
| 60 | |
---|
[4d86e06] | 61 | (void) memset(&req, 0, sizeof(req)); |
---|
[02f55dc] | 62 | req.z_kind = STAT; |
---|
| 63 | req.z_port = 0; |
---|
[712caac] | 64 | req.z_class = zstr(HM_STAT_CLASS); |
---|
| 65 | req.z_class_inst = zstr(HM_STAT_CLIENT); |
---|
| 66 | req.z_opcode = zstr(HM_GIMMESTATS); |
---|
| 67 | req.z_sender = zstr(""); |
---|
| 68 | req.z_recipient = zstr(""); |
---|
| 69 | req.z_default_format = zstr(""); |
---|
[02f55dc] | 70 | req.z_message_len = 0; |
---|
[52a0f14] | 71 | |
---|
| 72 | if ((code = ZSetDestAddr(&sin)) != ZERR_NONE) { |
---|
| 73 | owl_function_error("Initializing Zephyr: %s", error_message(code)); |
---|
| 74 | return; |
---|
| 75 | } |
---|
| 76 | |
---|
| 77 | if ((code = ZSendNotice(&req, ZNOAUTH)) != ZERR_NONE) { |
---|
| 78 | owl_function_error("Initializing Zephyr: %s", error_message(code)); |
---|
| 79 | return; |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | dispatch = owl_malloc(sizeof(*dispatch)); |
---|
| 83 | dispatch->fd = ZGetFD(); |
---|
| 84 | dispatch->cfunc = owl_zephyr_finish_initialization; |
---|
| 85 | dispatch->destroy = (void(*)(owl_dispatch*))owl_free; |
---|
| 86 | |
---|
| 87 | owl_select_add_dispatch(dispatch); |
---|
[02f55dc] | 88 | } |
---|
| 89 | |
---|
[52a0f14] | 90 | void owl_zephyr_finish_initialization(owl_dispatch *d) { |
---|
| 91 | Code_t code; |
---|
[df569c5] | 92 | char *perl; |
---|
[52a0f14] | 93 | |
---|
| 94 | owl_select_remove_dispatch(d->fd); |
---|
| 95 | |
---|
| 96 | ZClosePort(); |
---|
| 97 | |
---|
| 98 | if ((code = ZInitialize()) != ZERR_NONE) { |
---|
| 99 | owl_function_error("Initializing Zephyr: %s", error_message(code)); |
---|
| 100 | return; |
---|
| 101 | } |
---|
| 102 | |
---|
| 103 | if ((code = ZOpenPort(NULL)) != ZERR_NONE) { |
---|
| 104 | owl_function_error("Initializing Zephyr: %s", error_message(code)); |
---|
| 105 | return; |
---|
| 106 | } |
---|
| 107 | |
---|
| 108 | d = owl_malloc(sizeof(owl_dispatch)); |
---|
| 109 | d->fd = ZGetFD(); |
---|
| 110 | d->cfunc = &owl_zephyr_process_events; |
---|
| 111 | d->destroy = NULL; |
---|
| 112 | owl_select_add_dispatch(d); |
---|
| 113 | owl_global_set_havezephyr(&g); |
---|
| 114 | |
---|
| 115 | if(g.load_initial_subs) { |
---|
| 116 | owl_zephyr_load_initial_subs(); |
---|
| 117 | } |
---|
[a5e7ed6] | 118 | while(deferred_subs != NULL) { |
---|
| 119 | owl_sub_list *subs = deferred_subs->data; |
---|
| 120 | owl_function_debugmsg("Loading %d deferred subs.", subs->nsubs); |
---|
| 121 | owl_zephyr_loadsubs_helper(subs->subs, subs->nsubs); |
---|
| 122 | deferred_subs = g_list_delete_link(deferred_subs, deferred_subs); |
---|
| 123 | owl_free(subs); |
---|
| 124 | } |
---|
[619d864] | 125 | |
---|
| 126 | /* zlog in if we need to */ |
---|
| 127 | if (owl_global_is_startuplogin(&g)) { |
---|
| 128 | owl_function_debugmsg("startup: doing zlog in"); |
---|
| 129 | owl_zephyr_zlog_in(); |
---|
| 130 | } |
---|
[27964fe] | 131 | /* check pseudo-logins if we need to */ |
---|
| 132 | if (owl_global_is_pseudologins(&g)) { |
---|
| 133 | owl_function_debugmsg("startup: checking pseudo-logins"); |
---|
| 134 | owl_function_zephyr_buddy_check(0); |
---|
| 135 | } |
---|
[df569c5] | 136 | |
---|
| 137 | perl = owl_perlconfig_execute("BarnOwl::Zephyr::_zephyr_startup()"); |
---|
| 138 | owl_free(perl); |
---|
[52a0f14] | 139 | } |
---|
| 140 | |
---|
[c79a047] | 141 | void owl_zephyr_load_initial_subs(void) { |
---|
[7451af9] | 142 | int ret_sd, ret_bd, ret_u; |
---|
[52a0f14] | 143 | |
---|
| 144 | owl_function_debugmsg("startup: loading initial zephyr subs"); |
---|
| 145 | |
---|
| 146 | /* load default subscriptions */ |
---|
[7451af9] | 147 | ret_sd = owl_zephyr_loaddefaultsubs(); |
---|
| 148 | |
---|
| 149 | /* load Barnowl default subscriptions */ |
---|
| 150 | ret_bd = owl_zephyr_loadbarnowldefaultsubs(); |
---|
[52a0f14] | 151 | |
---|
| 152 | /* load subscriptions from subs file */ |
---|
[7451af9] | 153 | ret_u = owl_zephyr_loadsubs(NULL, 0); |
---|
[52a0f14] | 154 | |
---|
[7451af9] | 155 | if (ret_sd || ret_bd || ret_u) { |
---|
[52a0f14] | 156 | owl_function_error("Error loading zephyr subscriptions"); |
---|
[7451af9] | 157 | } else if (ret_u!=-1) { |
---|
[52a0f14] | 158 | owl_global_add_userclue(&g, OWL_USERCLUE_CLASSES); |
---|
| 159 | } |
---|
| 160 | |
---|
| 161 | /* load login subscriptions */ |
---|
| 162 | if (owl_global_is_loginsubs(&g)) { |
---|
| 163 | owl_function_debugmsg("startup: loading login subs"); |
---|
| 164 | owl_function_loadloginsubs(NULL); |
---|
| 165 | } |
---|
| 166 | } |
---|
| 167 | #else |
---|
[c79a047] | 168 | void owl_zephyr_initialize(void) |
---|
[52a0f14] | 169 | { |
---|
| 170 | } |
---|
[02f55dc] | 171 | #endif |
---|
| 172 | |
---|
[52a0f14] | 173 | |
---|
[c79a047] | 174 | int owl_zephyr_shutdown(void) |
---|
[09489b89] | 175 | { |
---|
| 176 | #ifdef HAVE_LIBZEPHYR |
---|
[bfbf590] | 177 | if(owl_global_is_havezephyr(&g)) { |
---|
| 178 | unsuball(); |
---|
| 179 | ZClosePort(); |
---|
| 180 | } |
---|
[09489b89] | 181 | #endif |
---|
[32ad44d] | 182 | return 0; |
---|
[be0a79f] | 183 | } |
---|
| 184 | |
---|
[c79a047] | 185 | int owl_zephyr_zpending(void) |
---|
[be0a79f] | 186 | { |
---|
| 187 | #ifdef HAVE_LIBZEPHYR |
---|
[bfbf590] | 188 | if(owl_global_is_havezephyr(&g)) |
---|
| 189 | return(ZPending()); |
---|
[be0a79f] | 190 | #endif |
---|
[32ad44d] | 191 | return 0; |
---|
[be0a79f] | 192 | } |
---|
| 193 | |
---|
[c79a047] | 194 | const char *owl_zephyr_get_realm(void) |
---|
[09489b89] | 195 | { |
---|
| 196 | #ifdef HAVE_LIBZEPHYR |
---|
[32ad44d] | 197 | if (owl_global_is_havezephyr(&g)) |
---|
| 198 | return(ZGetRealm()); |
---|
[09489b89] | 199 | #endif |
---|
[32ad44d] | 200 | return ""; |
---|
[09489b89] | 201 | } |
---|
| 202 | |
---|
[c79a047] | 203 | const char *owl_zephyr_get_sender(void) |
---|
[09489b89] | 204 | { |
---|
| 205 | #ifdef HAVE_LIBZEPHYR |
---|
[32ad44d] | 206 | if (owl_global_is_havezephyr(&g)) |
---|
| 207 | return(ZGetSender()); |
---|
[09489b89] | 208 | #endif |
---|
[32ad44d] | 209 | return ""; |
---|
[09489b89] | 210 | } |
---|
| 211 | |
---|
[f6050ee] | 212 | #ifdef HAVE_LIBZEPHYR |
---|
[93e883d] | 213 | int owl_zephyr_loadsubs_helper(ZSubscription_t subs[], int count) |
---|
| 214 | { |
---|
[18105584] | 215 | int ret = 0; |
---|
[a5e7ed6] | 216 | if (owl_global_is_havezephyr(&g)) { |
---|
| 217 | int i; |
---|
| 218 | /* sub without defaults */ |
---|
| 219 | if (ZSubscribeToSansDefaults(subs,count,0) != ZERR_NONE) { |
---|
| 220 | owl_function_error("Error subscribing to zephyr notifications."); |
---|
| 221 | ret=-2; |
---|
| 222 | } |
---|
[93e883d] | 223 | |
---|
[a5e7ed6] | 224 | /* free stuff */ |
---|
| 225 | for (i=0; i<count; i++) { |
---|
| 226 | owl_free(subs[i].zsub_class); |
---|
| 227 | owl_free(subs[i].zsub_classinst); |
---|
| 228 | owl_free(subs[i].zsub_recipient); |
---|
| 229 | } |
---|
[bb2c60d] | 230 | |
---|
[a5e7ed6] | 231 | owl_free(subs); |
---|
| 232 | } else { |
---|
| 233 | owl_sub_list *s = owl_malloc(sizeof(owl_sub_list)); |
---|
| 234 | s->subs = subs; |
---|
| 235 | s->nsubs = count; |
---|
| 236 | deferred_subs = g_list_append(deferred_subs, s); |
---|
| 237 | } |
---|
[d21efbc] | 238 | |
---|
[93e883d] | 239 | return ret; |
---|
| 240 | } |
---|
[f6050ee] | 241 | #endif |
---|
[93e883d] | 242 | |
---|
[7451af9] | 243 | /* Load zephyr subscriptions from 'filename'. If 'filename' is NULL, |
---|
[95474d7] | 244 | * the default file $HOME/.zephyr.subs will be used. |
---|
| 245 | * |
---|
| 246 | * Returns 0 on success. If the file does not exist, return -1 if |
---|
| 247 | * 'error_on_nofile' is 1, otherwise return 0. Return -1 if the file |
---|
| 248 | * exists but can not be read. Return -2 if there is a failure from |
---|
| 249 | * zephyr to load the subscriptions. |
---|
[2de4f20] | 250 | */ |
---|
[e19eb97] | 251 | int owl_zephyr_loadsubs(const char *filename, int error_on_nofile) |
---|
[31e48a3] | 252 | { |
---|
[be0a79f] | 253 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 254 | FILE *file; |
---|
| 255 | char *tmp, *start; |
---|
[b7ee89b] | 256 | char *buffer = NULL; |
---|
| 257 | char *subsfile; |
---|
[bb2c60d] | 258 | ZSubscription_t *subs; |
---|
| 259 | int subSize = 1024; |
---|
[b7ee89b] | 260 | int count; |
---|
[4357be8] | 261 | struct stat statbuff; |
---|
[7d4fbcd] | 262 | |
---|
[bb2c60d] | 263 | subs = owl_malloc(sizeof(ZSubscription_t) * subSize); |
---|
[6ea3890] | 264 | subsfile = owl_zephyr_dotfile(".zephyr.subs", filename); |
---|
[b7ee89b] | 265 | |
---|
| 266 | if (stat(subsfile, &statbuff) != 0) { |
---|
| 267 | if (error_on_nofile == 1) |
---|
| 268 | return -1; |
---|
| 269 | return 0; |
---|
[95474d7] | 270 | } |
---|
[4357be8] | 271 | |
---|
[8262340] | 272 | ZResetAuthentication(); |
---|
[b7ee89b] | 273 | count = 0; |
---|
| 274 | file = fopen(subsfile, "r"); |
---|
| 275 | owl_free(subsfile); |
---|
| 276 | if (!file) |
---|
| 277 | return -1; |
---|
| 278 | while (owl_getline(&buffer, file)) { |
---|
| 279 | if (buffer[0] == '#' || buffer[0] == '\n') |
---|
| 280 | continue; |
---|
| 281 | |
---|
| 282 | if (buffer[0] == '-') |
---|
| 283 | start = buffer + 1; |
---|
| 284 | else |
---|
| 285 | start = buffer; |
---|
| 286 | |
---|
[bb2c60d] | 287 | if (count >= subSize) { |
---|
[d21efbc] | 288 | subSize *= 2; |
---|
| 289 | subs = owl_realloc(subs, sizeof(ZSubscription_t) * subSize); |
---|
[93e883d] | 290 | } |
---|
[95474d7] | 291 | |
---|
| 292 | /* add it to the list of subs */ |
---|
[b7ee89b] | 293 | if ((tmp = strtok(start, ",\n\r")) == NULL) |
---|
| 294 | continue; |
---|
| 295 | subs[count].zsub_class = owl_strdup(tmp); |
---|
| 296 | if ((tmp=strtok(NULL, ",\n\r")) == NULL) |
---|
| 297 | continue; |
---|
| 298 | subs[count].zsub_classinst = owl_strdup(tmp); |
---|
| 299 | if ((tmp = strtok(NULL, " \t\n\r")) == NULL) |
---|
| 300 | continue; |
---|
| 301 | subs[count].zsub_recipient = owl_strdup(tmp); |
---|
| 302 | |
---|
[bb2c60d] | 303 | /* if it started with '-' then add it to the global punt list, and |
---|
| 304 | * remove it from the list of subs. */ |
---|
[b7ee89b] | 305 | if (buffer[0] == '-') { |
---|
[95474d7] | 306 | owl_function_zpunt(subs[count].zsub_class, subs[count].zsub_classinst, subs[count].zsub_recipient, 0); |
---|
[bb2c60d] | 307 | owl_free(subs[count].zsub_class); |
---|
| 308 | owl_free(subs[count].zsub_classinst); |
---|
| 309 | owl_free(subs[count].zsub_recipient); |
---|
[b7ee89b] | 310 | } else { |
---|
[bb2c60d] | 311 | count++; |
---|
[95474d7] | 312 | } |
---|
[7d4fbcd] | 313 | } |
---|
[95474d7] | 314 | fclose(file); |
---|
[b7ee89b] | 315 | if (buffer) |
---|
| 316 | owl_free(buffer); |
---|
[7d4fbcd] | 317 | |
---|
[b7ee89b] | 318 | return owl_zephyr_loadsubs_helper(subs, count); |
---|
[7451af9] | 319 | #else |
---|
[b7ee89b] | 320 | return 0; |
---|
[7451af9] | 321 | #endif |
---|
| 322 | } |
---|
| 323 | |
---|
| 324 | /* Load default Barnowl subscriptions |
---|
| 325 | * |
---|
| 326 | * Returns 0 on success. |
---|
| 327 | * Return -2 if there is a failure from zephyr to load the subscriptions. |
---|
| 328 | */ |
---|
[c79a047] | 329 | int owl_zephyr_loadbarnowldefaultsubs(void) |
---|
[7451af9] | 330 | { |
---|
| 331 | #ifdef HAVE_LIBZEPHYR |
---|
| 332 | ZSubscription_t *subs; |
---|
| 333 | int subSize = 10; /* Max Barnowl default subs we allow */ |
---|
| 334 | int count, ret; |
---|
| 335 | |
---|
| 336 | subs = owl_malloc(sizeof(ZSubscription_t) * subSize); |
---|
| 337 | ret = 0; |
---|
| 338 | ZResetAuthentication(); |
---|
| 339 | count=0; |
---|
| 340 | |
---|
| 341 | subs[count].zsub_class=owl_strdup("message"); |
---|
| 342 | subs[count].zsub_classinst=owl_strdup("*"); |
---|
| 343 | subs[count].zsub_recipient=owl_strdup("%me%"); |
---|
| 344 | count++; |
---|
| 345 | |
---|
| 346 | ret = owl_zephyr_loadsubs_helper(subs, count); |
---|
[7d4fbcd] | 347 | return(ret); |
---|
[be0a79f] | 348 | #else |
---|
| 349 | return(0); |
---|
| 350 | #endif |
---|
[7d4fbcd] | 351 | } |
---|
| 352 | |
---|
[c79a047] | 353 | int owl_zephyr_loaddefaultsubs(void) |
---|
[4357be8] | 354 | { |
---|
[40d834a] | 355 | #ifdef HAVE_LIBZEPHYR |
---|
[4357be8] | 356 | ZSubscription_t subs[10]; |
---|
| 357 | |
---|
| 358 | if (ZSubscribeTo(subs,0,0) != ZERR_NONE) { |
---|
| 359 | owl_function_error("Error subscribing to default zephyr notifications."); |
---|
| 360 | return(-1); |
---|
| 361 | } |
---|
| 362 | return(0); |
---|
[40d834a] | 363 | #else |
---|
| 364 | return(0); |
---|
| 365 | #endif |
---|
[4357be8] | 366 | } |
---|
| 367 | |
---|
[e19eb97] | 368 | int owl_zephyr_loadloginsubs(const char *filename) |
---|
[31e48a3] | 369 | { |
---|
[be0a79f] | 370 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 371 | FILE *file; |
---|
[d21efbc] | 372 | ZSubscription_t *subs; |
---|
| 373 | int numSubs = 100; |
---|
[b7ee89b] | 374 | char *subsfile; |
---|
| 375 | char *buffer = NULL; |
---|
| 376 | int count; |
---|
[4357be8] | 377 | struct stat statbuff; |
---|
[7d4fbcd] | 378 | |
---|
[d21efbc] | 379 | subs = owl_malloc(numSubs * sizeof(ZSubscription_t)); |
---|
[6ea3890] | 380 | subsfile = owl_zephyr_dotfile(".anyone", filename); |
---|
[4357be8] | 381 | |
---|
[b7ee89b] | 382 | if (stat(subsfile, &statbuff) == -1) |
---|
| 383 | return 0; |
---|
[7d4fbcd] | 384 | |
---|
[8262340] | 385 | ZResetAuthentication(); |
---|
[b7ee89b] | 386 | count = 0; |
---|
| 387 | file = fopen(subsfile, "r"); |
---|
| 388 | owl_free(subsfile); |
---|
[7d4fbcd] | 389 | if (file) { |
---|
[b7ee89b] | 390 | while (owl_getline_chomp(&buffer, file)) { |
---|
| 391 | if (buffer[0] == '\0' || buffer[0] == '#') |
---|
| 392 | continue; |
---|
| 393 | |
---|
[d21efbc] | 394 | if (count == numSubs) { |
---|
| 395 | numSubs *= 2; |
---|
| 396 | subs = owl_realloc(subs, numSubs * sizeof(ZSubscription_t)); |
---|
| 397 | } |
---|
[7d4fbcd] | 398 | |
---|
[b7ee89b] | 399 | subs[count].zsub_class = owl_strdup("login"); |
---|
| 400 | subs[count].zsub_recipient = owl_strdup("*"); |
---|
| 401 | subs[count].zsub_classinst = long_zuser(buffer); |
---|
[7d4fbcd] | 402 | |
---|
| 403 | count++; |
---|
| 404 | } |
---|
| 405 | fclose(file); |
---|
| 406 | } else { |
---|
[b7ee89b] | 407 | return 0; |
---|
[7d4fbcd] | 408 | } |
---|
[b7ee89b] | 409 | if (buffer) |
---|
| 410 | owl_free(buffer); |
---|
[7d4fbcd] | 411 | |
---|
[b7ee89b] | 412 | return owl_zephyr_loadsubs_helper(subs, count); |
---|
[be0a79f] | 413 | #else |
---|
[b7ee89b] | 414 | return 0; |
---|
[be0a79f] | 415 | #endif |
---|
[7d4fbcd] | 416 | } |
---|
| 417 | |
---|
[c79a047] | 418 | void unsuball(void) |
---|
[31e48a3] | 419 | { |
---|
[be0a79f] | 420 | #if HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 421 | int ret; |
---|
[8262340] | 422 | |
---|
| 423 | ZResetAuthentication(); |
---|
[7d4fbcd] | 424 | ret=ZCancelSubscriptions(0); |
---|
| 425 | if (ret != ZERR_NONE) { |
---|
| 426 | com_err("owl",ret,"while unsubscribing"); |
---|
| 427 | } |
---|
[be0a79f] | 428 | #endif |
---|
[7d4fbcd] | 429 | } |
---|
| 430 | |
---|
[e19eb97] | 431 | int owl_zephyr_sub(const char *class, const char *inst, const char *recip) |
---|
[31e48a3] | 432 | { |
---|
[be0a79f] | 433 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 434 | ZSubscription_t subs[5]; |
---|
| 435 | |
---|
[712caac] | 436 | subs[0].zsub_class=zstr(class); |
---|
| 437 | subs[0].zsub_classinst=zstr(inst); |
---|
| 438 | subs[0].zsub_recipient=zstr(recip); |
---|
[7d4fbcd] | 439 | |
---|
[8262340] | 440 | ZResetAuthentication(); |
---|
[7d4fbcd] | 441 | if (ZSubscribeTo(subs,1,0) != ZERR_NONE) { |
---|
[97cd00be] | 442 | owl_function_error("Error subbing to <%s,%s,%s>", class, inst, recip); |
---|
| 443 | return(-2); |
---|
[7d4fbcd] | 444 | } |
---|
| 445 | return(0); |
---|
[be0a79f] | 446 | #else |
---|
| 447 | return(0); |
---|
| 448 | #endif |
---|
[7d4fbcd] | 449 | } |
---|
| 450 | |
---|
| 451 | |
---|
[e19eb97] | 452 | int owl_zephyr_unsub(const char *class, const char *inst, const char *recip) |
---|
[31e48a3] | 453 | { |
---|
[be0a79f] | 454 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 455 | ZSubscription_t subs[5]; |
---|
| 456 | |
---|
[712caac] | 457 | subs[0].zsub_class=zstr(class); |
---|
| 458 | subs[0].zsub_classinst=zstr(inst); |
---|
| 459 | subs[0].zsub_recipient=zstr(recip); |
---|
[7d4fbcd] | 460 | |
---|
[8262340] | 461 | ZResetAuthentication(); |
---|
[7d4fbcd] | 462 | if (ZUnsubscribeTo(subs,1,0) != ZERR_NONE) { |
---|
[97cd00be] | 463 | owl_function_error("Error unsubbing from <%s,%s,%s>", class, inst, recip); |
---|
| 464 | return(-2); |
---|
[7d4fbcd] | 465 | } |
---|
| 466 | return(0); |
---|
[be0a79f] | 467 | #else |
---|
| 468 | return(0); |
---|
| 469 | #endif |
---|
[7d4fbcd] | 470 | } |
---|
| 471 | |
---|
[b0430a6] | 472 | /* return a pointer to the data in the Jth field, (NULL terminated by |
---|
| 473 | * definition). Caller must free the return. |
---|
| 474 | */ |
---|
[be0a79f] | 475 | #ifdef HAVE_LIBZEPHYR |
---|
[1077891a] | 476 | char *owl_zephyr_get_field(const ZNotice_t *n, int j) |
---|
[31e48a3] | 477 | { |
---|
[7d4fbcd] | 478 | int i, count, save; |
---|
[b0430a6] | 479 | char *out; |
---|
[7d4fbcd] | 480 | |
---|
[128171a] | 481 | /* If there's no message here, just run along now */ |
---|
| 482 | if (n->z_message_len == 0) |
---|
| 483 | return(owl_strdup("")); |
---|
| 484 | |
---|
[7d4fbcd] | 485 | count=save=0; |
---|
| 486 | for (i=0; i<n->z_message_len; i++) { |
---|
| 487 | if (n->z_message[i]=='\0') { |
---|
| 488 | count++; |
---|
| 489 | if (count==j) { |
---|
| 490 | /* just found the end of the field we're looking for */ |
---|
[b0430a6] | 491 | return(owl_strdup(n->z_message+save)); |
---|
[7d4fbcd] | 492 | } else { |
---|
| 493 | save=i+1; |
---|
| 494 | } |
---|
| 495 | } |
---|
| 496 | } |
---|
[b0430a6] | 497 | /* catch the last field, which might not be null terminated */ |
---|
[7d4fbcd] | 498 | if (count==j-1) { |
---|
[b0430a6] | 499 | out=owl_malloc(n->z_message_len-save+5); |
---|
| 500 | memcpy(out, n->z_message+save, n->z_message_len-save); |
---|
| 501 | out[n->z_message_len-save]='\0'; |
---|
| 502 | return(out); |
---|
[7d4fbcd] | 503 | } |
---|
[b0430a6] | 504 | |
---|
| 505 | return(owl_strdup("")); |
---|
[7d4fbcd] | 506 | } |
---|
[5376a95] | 507 | |
---|
[1077891a] | 508 | char *owl_zephyr_get_field_as_utf8(const ZNotice_t *n, int j) |
---|
[5376a95] | 509 | { |
---|
| 510 | int i, count, save; |
---|
| 511 | |
---|
| 512 | /* If there's no message here, just run along now */ |
---|
| 513 | if (n->z_message_len == 0) |
---|
| 514 | return(owl_strdup("")); |
---|
| 515 | |
---|
| 516 | count=save=0; |
---|
| 517 | for (i = 0; i < n->z_message_len; i++) { |
---|
| 518 | if (n->z_message[i]=='\0') { |
---|
| 519 | count++; |
---|
| 520 | if (count == j) { |
---|
| 521 | /* just found the end of the field we're looking for */ |
---|
[6201646] | 522 | return(owl_validate_or_convert(n->z_message + save)); |
---|
[5376a95] | 523 | } else { |
---|
| 524 | save = i + 1; |
---|
| 525 | } |
---|
| 526 | } |
---|
| 527 | } |
---|
| 528 | /* catch the last field, which might not be null terminated */ |
---|
| 529 | if (count == j - 1) { |
---|
[6201646] | 530 | char *tmp, *out; |
---|
| 531 | tmp = owl_malloc(n->z_message_len-save+5); |
---|
| 532 | memcpy(tmp, n->z_message+save, n->z_message_len-save); |
---|
| 533 | tmp[n->z_message_len-save]='\0'; |
---|
| 534 | out = owl_validate_or_convert(tmp); |
---|
| 535 | owl_free(tmp); |
---|
| 536 | return out; |
---|
[5376a95] | 537 | } |
---|
| 538 | |
---|
| 539 | return(owl_strdup("")); |
---|
| 540 | } |
---|
[09489b89] | 541 | #else |
---|
[701a184] | 542 | char *owl_zephyr_get_field(void *n, int j) |
---|
[09489b89] | 543 | { |
---|
[b0430a6] | 544 | return(owl_strdup("")); |
---|
[09489b89] | 545 | } |
---|
[5577606] | 546 | char *owl_zephyr_get_field_as_utf8(void *n, int j) |
---|
[5376a95] | 547 | { |
---|
| 548 | return owl_zephyr_get_field(n, j); |
---|
| 549 | } |
---|
[be0a79f] | 550 | #endif |
---|
[7d4fbcd] | 551 | |
---|
[b0430a6] | 552 | |
---|
[be0a79f] | 553 | #ifdef HAVE_LIBZEPHYR |
---|
[1077891a] | 554 | int owl_zephyr_get_num_fields(const ZNotice_t *n) |
---|
[31e48a3] | 555 | { |
---|
[7d4fbcd] | 556 | int i, fields; |
---|
| 557 | |
---|
[50e29e3] | 558 | if(n->z_message_len == 0) |
---|
| 559 | return 0; |
---|
| 560 | |
---|
[7d4fbcd] | 561 | fields=1; |
---|
| 562 | for (i=0; i<n->z_message_len; i++) { |
---|
| 563 | if (n->z_message[i]=='\0') fields++; |
---|
| 564 | } |
---|
| 565 | |
---|
| 566 | return(fields); |
---|
| 567 | } |
---|
[09489b89] | 568 | #else |
---|
[1077891a] | 569 | int owl_zephyr_get_num_fields(const void *n) |
---|
[09489b89] | 570 | { |
---|
| 571 | return(0); |
---|
| 572 | } |
---|
[be0a79f] | 573 | #endif |
---|
[7d4fbcd] | 574 | |
---|
[be0a79f] | 575 | #ifdef HAVE_LIBZEPHYR |
---|
[bf73bdd] | 576 | /* return a pointer to the message, place the message length in k |
---|
| 577 | * caller must free the return |
---|
| 578 | */ |
---|
[c08c70a] | 579 | char *owl_zephyr_get_message(const ZNotice_t *n, const owl_message *m) |
---|
[31e48a3] | 580 | { |
---|
[405d5e6] | 581 | /* don't let ping messages have a body */ |
---|
[7d4fbcd] | 582 | if (!strcasecmp(n->z_opcode, "ping")) { |
---|
[bf73bdd] | 583 | return(owl_strdup("")); |
---|
[7d4fbcd] | 584 | } |
---|
| 585 | |
---|
[a1bb198] | 586 | /* deal with MIT NOC messages */ |
---|
[85d1795] | 587 | if (!strcasecmp(n->z_default_format, "@center(@bold(NOC Message))\n\n@bold(Sender:) $1 <$sender>\n@bold(Time: ) $time\n\n@italic($opcode service on $instance $3.) $4\n")) { |
---|
| 588 | char *msg, *field3, *field4; |
---|
[a1bb198] | 589 | |
---|
| 590 | field3 = owl_zephyr_get_field(n, 3); |
---|
| 591 | field4 = owl_zephyr_get_field(n, 4); |
---|
| 592 | |
---|
[85d1795] | 593 | msg = owl_sprintf("%s service on %s %s\n%s", n->z_opcode, n->z_class_inst, field3, field4); |
---|
[272a4a0] | 594 | owl_free(field3); |
---|
| 595 | owl_free(field4); |
---|
[a1bb198] | 596 | if (msg) { |
---|
| 597 | return msg; |
---|
| 598 | } |
---|
| 599 | } |
---|
[fba0f96] | 600 | /* deal with MIT Discuss messages */ |
---|
[e2a620b] | 601 | else if (!strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3 ($5)\nSubject: $4") || |
---|
| 602 | !strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3\nSubject: $4")) { |
---|
[fba0f96] | 603 | char *msg, *field1, *field2, *field3, *field4, *field5; |
---|
| 604 | |
---|
| 605 | field1 = owl_zephyr_get_field(n, 1); |
---|
| 606 | field2 = owl_zephyr_get_field(n, 2); |
---|
| 607 | field3 = owl_zephyr_get_field(n, 3); |
---|
| 608 | field4 = owl_zephyr_get_field(n, 4); |
---|
| 609 | field5 = owl_zephyr_get_field(n, 5); |
---|
| 610 | |
---|
| 611 | msg = owl_sprintf("New transaction [%s] entered in %s\nFrom: %s (%s)\nSubject: %s", field1, field2, field3, field5, field4); |
---|
| 612 | owl_free(field1); |
---|
| 613 | owl_free(field2); |
---|
| 614 | owl_free(field3); |
---|
| 615 | owl_free(field4); |
---|
| 616 | owl_free(field5); |
---|
| 617 | if (msg) { |
---|
| 618 | return msg; |
---|
| 619 | } |
---|
| 620 | } |
---|
[85d1795] | 621 | /* deal with MIT Moira messages */ |
---|
| 622 | else if (!strcasecmp(n->z_default_format, "MOIRA $instance on $fromhost:\n $message\n")) { |
---|
| 623 | char *msg, *field1; |
---|
| 624 | |
---|
| 625 | field1 = owl_zephyr_get_field(n, 1); |
---|
| 626 | |
---|
| 627 | msg = owl_sprintf("MOIRA %s on %s: %s", n->z_class_inst, owl_message_get_hostname(m), field1); |
---|
| 628 | owl_free(field1); |
---|
| 629 | if (msg) { |
---|
| 630 | return msg; |
---|
| 631 | } |
---|
| 632 | } |
---|
[405d5e6] | 633 | |
---|
[85d1795] | 634 | if (owl_zephyr_get_num_fields(n) == 1) { |
---|
| 635 | return(owl_zephyr_get_field(n, 1)); |
---|
| 636 | } |
---|
| 637 | else { |
---|
| 638 | return(owl_zephyr_get_field(n, 2)); |
---|
| 639 | } |
---|
[7d4fbcd] | 640 | } |
---|
[be0a79f] | 641 | #endif |
---|
[7d4fbcd] | 642 | |
---|
[be0a79f] | 643 | #ifdef HAVE_LIBZEPHYR |
---|
[1077891a] | 644 | const char *owl_zephyr_get_zsig(const ZNotice_t *n, int *k) |
---|
[31e48a3] | 645 | { |
---|
[7d4fbcd] | 646 | /* return a pointer to the zsig if there is one */ |
---|
| 647 | |
---|
[405d5e6] | 648 | /* message length 0? No zsig */ |
---|
[7d4fbcd] | 649 | if (n->z_message_len==0) { |
---|
| 650 | *k=0; |
---|
| 651 | return(""); |
---|
| 652 | } |
---|
[405d5e6] | 653 | |
---|
[85d1795] | 654 | /* If there's only one field, no zsig */ |
---|
| 655 | if (owl_zephyr_get_num_fields(n) == 1) { |
---|
| 656 | *k=0; |
---|
[405d5e6] | 657 | return(""); |
---|
| 658 | } |
---|
| 659 | |
---|
| 660 | /* Everything else is field 1 */ |
---|
[7d4fbcd] | 661 | *k=strlen(n->z_message); |
---|
| 662 | return(n->z_message); |
---|
| 663 | } |
---|
[09489b89] | 664 | #else |
---|
[1077891a] | 665 | const char *owl_zephyr_get_zsig(const void *n, int *k) |
---|
[09489b89] | 666 | { |
---|
| 667 | return(""); |
---|
| 668 | } |
---|
[be0a79f] | 669 | #endif |
---|
[7d4fbcd] | 670 | |
---|
[e19eb97] | 671 | int send_zephyr(const char *opcode, const char *zsig, const char *class, const char *instance, const char *recipient, const char *message) |
---|
[31e48a3] | 672 | { |
---|
[be0a79f] | 673 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 674 | int ret; |
---|
| 675 | ZNotice_t notice; |
---|
| 676 | |
---|
| 677 | memset(¬ice, 0, sizeof(notice)); |
---|
| 678 | |
---|
[8262340] | 679 | ZResetAuthentication(); |
---|
[8ba37ec] | 680 | |
---|
| 681 | if (!zsig) zsig=""; |
---|
[8262340] | 682 | |
---|
[7d4fbcd] | 683 | notice.z_kind=ACKED; |
---|
| 684 | notice.z_port=0; |
---|
[712caac] | 685 | notice.z_class=zstr(class); |
---|
| 686 | notice.z_class_inst=zstr(instance); |
---|
[21882032] | 687 | notice.z_sender=NULL; |
---|
[7d4fbcd] | 688 | if (!strcmp(recipient, "*") || !strcmp(recipient, "@")) { |
---|
[712caac] | 689 | notice.z_recipient=zstr(""); |
---|
[21882032] | 690 | if (*owl_global_get_zsender(&g)) |
---|
[712caac] | 691 | notice.z_sender=zstr(owl_global_get_zsender(&g)); |
---|
[7d4fbcd] | 692 | } else { |
---|
[712caac] | 693 | notice.z_recipient=zstr(recipient); |
---|
[7d4fbcd] | 694 | } |
---|
[712caac] | 695 | notice.z_default_format=zstr("Class $class, Instance $instance:\nTo: @bold($recipient) at $time $date\nFrom: @bold{$1 <$sender>}\n\n$2"); |
---|
| 696 | if (opcode) notice.z_opcode=zstr(opcode); |
---|
[7d4fbcd] | 697 | |
---|
[56330ff] | 698 | notice.z_message_len=strlen(zsig)+1+strlen(message); |
---|
[7d4fbcd] | 699 | notice.z_message=owl_malloc(notice.z_message_len+10); |
---|
[56330ff] | 700 | strcpy(notice.z_message, zsig); |
---|
| 701 | memcpy(notice.z_message+strlen(zsig)+1, message, strlen(message)); |
---|
[7d4fbcd] | 702 | |
---|
| 703 | /* ret=ZSendNotice(¬ice, ZAUTH); */ |
---|
| 704 | ret=ZSrvSendNotice(¬ice, ZAUTH, send_zephyr_helper); |
---|
| 705 | |
---|
| 706 | /* free then check the return */ |
---|
| 707 | owl_free(notice.z_message); |
---|
| 708 | ZFreeNotice(¬ice); |
---|
| 709 | if (ret!=ZERR_NONE) { |
---|
[ec6ff52] | 710 | owl_function_error("Error sending zephyr"); |
---|
[7d4fbcd] | 711 | return(ret); |
---|
| 712 | } |
---|
| 713 | return(0); |
---|
[be0a79f] | 714 | #else |
---|
| 715 | return(0); |
---|
| 716 | #endif |
---|
[7d4fbcd] | 717 | } |
---|
| 718 | |
---|
[be0a79f] | 719 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 720 | Code_t send_zephyr_helper(ZNotice_t *notice, char *buf, int len, int wait) |
---|
| 721 | { |
---|
[7d4fbcd] | 722 | return(ZSendPacket(buf, len, 0)); |
---|
| 723 | } |
---|
[be0a79f] | 724 | #endif |
---|
[7d4fbcd] | 725 | |
---|
[e19eb97] | 726 | void send_ping(const char *to, const char *zclass, const char *zinstance) |
---|
[31e48a3] | 727 | { |
---|
[be0a79f] | 728 | #ifdef HAVE_LIBZEPHYR |
---|
[3ef779b] | 729 | send_zephyr("PING", "", zclass, zinstance, to, ""); |
---|
[be0a79f] | 730 | #endif |
---|
[7d4fbcd] | 731 | } |
---|
| 732 | |
---|
[be0a79f] | 733 | #ifdef HAVE_LIBZEPHYR |
---|
[1077891a] | 734 | void owl_zephyr_handle_ack(const ZNotice_t *retnotice) |
---|
[31e48a3] | 735 | { |
---|
[7d4fbcd] | 736 | char *tmp; |
---|
| 737 | |
---|
| 738 | /* if it's an HMACK ignore it */ |
---|
| 739 | if (retnotice->z_kind == HMACK) return; |
---|
[aecf3e6] | 740 | |
---|
[7d4fbcd] | 741 | if (retnotice->z_kind == SERVNAK) { |
---|
[ec6ff52] | 742 | owl_function_error("Authorization failure sending zephyr"); |
---|
[7d4fbcd] | 743 | } else if ((retnotice->z_kind != SERVACK) || !retnotice->z_message_len) { |
---|
[ec6ff52] | 744 | owl_function_error("Detected server failure while receiving acknowledgement"); |
---|
[7d4fbcd] | 745 | } else if (!strcmp(retnotice->z_message, ZSRVACK_SENT)) { |
---|
| 746 | if (!strcasecmp(retnotice->z_opcode, "ping")) { |
---|
| 747 | return; |
---|
| 748 | } else { |
---|
[d73e3af] | 749 | if (strcasecmp(retnotice->z_recipient, "")) |
---|
[1e550b2] | 750 | { /* personal */ |
---|
[d73e3af] | 751 | tmp=short_zuser(retnotice->z_recipient); |
---|
| 752 | if(!strcasecmp(retnotice->z_class, "message") && |
---|
| 753 | !strcasecmp(retnotice->z_class_inst, "personal")) { |
---|
| 754 | owl_function_makemsg("Message sent to %s.", tmp); |
---|
[1e550b2] | 755 | } else if(!strcasecmp(retnotice->z_class, "message")) { /* instanced, but not classed, personal */ |
---|
[d73e3af] | 756 | owl_function_makemsg("Message sent to %s on -i %s\n", tmp, retnotice->z_class_inst); |
---|
[1e550b2] | 757 | } else { /* classed personal */ |
---|
[d73e3af] | 758 | owl_function_makemsg("Message sent to %s on -c %s -i %s\n", tmp, retnotice->z_class, retnotice->z_class_inst); |
---|
| 759 | } |
---|
[27f6487] | 760 | owl_free(tmp); |
---|
[d73e3af] | 761 | } else { |
---|
[1e550b2] | 762 | /* class / instance message */ |
---|
[d73e3af] | 763 | owl_function_makemsg("Message sent to -c %s -i %s\n", retnotice->z_class, retnotice->z_class_inst); |
---|
| 764 | } |
---|
[7d4fbcd] | 765 | } |
---|
| 766 | } else if (!strcmp(retnotice->z_message, ZSRVACK_NOTSENT)) { |
---|
[1151f0b] | 767 | #define BUFFLEN 1024 |
---|
[44f32fb] | 768 | if (retnotice->z_recipient == NULL |
---|
[60c2e1e] | 769 | || *retnotice->z_recipient == 0 |
---|
[44f32fb] | 770 | || *retnotice->z_recipient == '@') { |
---|
[1151f0b] | 771 | char buff[BUFFLEN]; |
---|
[44f32fb] | 772 | owl_function_error("No one subscribed to class %s", retnotice->z_class); |
---|
[1151f0b] | 773 | snprintf(buff, BUFFLEN, "Could not send message to class %s: no one subscribed.\n", retnotice->z_class); |
---|
[9119a47] | 774 | owl_function_adminmsg("", buff); |
---|
[7d4fbcd] | 775 | } else { |
---|
[1151f0b] | 776 | char buff[BUFFLEN]; |
---|
[24ccc01] | 777 | owl_zwrite zw; |
---|
| 778 | char *realm; |
---|
| 779 | |
---|
[4b464a4] | 780 | tmp = short_zuser(retnotice->z_recipient); |
---|
[44f32fb] | 781 | owl_function_error("%s: Not logged in or subscribing.", tmp); |
---|
[3ef779b] | 782 | /* |
---|
| 783 | * These error messages are often over 80 chars, but users who want to |
---|
| 784 | * see the whole thing can scroll to the side, and for those with wide |
---|
| 785 | * terminals or who don't care, not splitting saves a line in the UI |
---|
| 786 | */ |
---|
| 787 | if(strcasecmp(retnotice->z_class, "message")) { |
---|
[1151f0b] | 788 | snprintf(buff, BUFFLEN, |
---|
[10e3963] | 789 | "Could not send message to %s: " |
---|
[3ef779b] | 790 | "not logged in or subscribing to class %s, instance %s.\n", |
---|
[10e3963] | 791 | tmp, |
---|
[1151f0b] | 792 | retnotice->z_class, |
---|
| 793 | retnotice->z_class_inst); |
---|
[3ef779b] | 794 | } else if(strcasecmp(retnotice->z_class_inst, "personal")) { |
---|
| 795 | snprintf(buff, BUFFLEN, |
---|
| 796 | "Could not send message to %s: " |
---|
| 797 | "not logged in or subscribing to instance %s.\n", |
---|
| 798 | tmp, |
---|
| 799 | retnotice->z_class_inst); |
---|
[44f32fb] | 800 | } else { |
---|
[1151f0b] | 801 | snprintf(buff, BUFFLEN, |
---|
[10e3963] | 802 | "Could not send message to %s: " |
---|
| 803 | "not logged in or subscribing to messages.\n", |
---|
| 804 | tmp); |
---|
[44f32fb] | 805 | } |
---|
[9119a47] | 806 | owl_function_adminmsg("", buff); |
---|
[24ccc01] | 807 | |
---|
| 808 | memset(&zw, 0, sizeof(zw)); |
---|
| 809 | zw.class = owl_strdup(retnotice->z_class); |
---|
| 810 | zw.inst = owl_strdup(retnotice->z_class_inst); |
---|
| 811 | realm = strchr(retnotice->z_recipient, '@'); |
---|
| 812 | if(realm) { |
---|
| 813 | zw.realm = owl_strdup(realm + 1); |
---|
| 814 | } else { |
---|
| 815 | zw.realm = owl_strdup(owl_zephyr_get_realm()); |
---|
| 816 | } |
---|
| 817 | zw.opcode = owl_strdup(retnotice->z_opcode); |
---|
| 818 | zw.zsig = owl_strdup(""); |
---|
| 819 | owl_list_create(&(zw.recips)); |
---|
| 820 | owl_list_append_element(&(zw.recips), owl_strdup(tmp)); |
---|
| 821 | |
---|
| 822 | owl_log_outgoing_zephyr_error(&zw, buff); |
---|
| 823 | |
---|
| 824 | owl_zwrite_free(&zw); |
---|
[1c6c4d3] | 825 | owl_free(tmp); |
---|
[7d4fbcd] | 826 | } |
---|
| 827 | } else { |
---|
[ec6ff52] | 828 | owl_function_error("Internal error on ack (%s)", retnotice->z_message); |
---|
[7d4fbcd] | 829 | } |
---|
| 830 | } |
---|
[09489b89] | 831 | #else |
---|
[1077891a] | 832 | void owl_zephyr_handle_ack(const void *retnotice) |
---|
[09489b89] | 833 | { |
---|
| 834 | } |
---|
[be0a79f] | 835 | #endif |
---|
[7d4fbcd] | 836 | |
---|
[be0a79f] | 837 | #ifdef HAVE_LIBZEPHYR |
---|
[1077891a] | 838 | int owl_zephyr_notice_is_ack(const ZNotice_t *n) |
---|
[31e48a3] | 839 | { |
---|
[7d4fbcd] | 840 | if (n->z_kind == SERVNAK || n->z_kind == SERVACK || n->z_kind == HMACK) { |
---|
| 841 | if (!strcasecmp(n->z_class, LOGIN_CLASS)) return(0); |
---|
| 842 | return(1); |
---|
| 843 | } |
---|
| 844 | return(0); |
---|
| 845 | } |
---|
[09489b89] | 846 | #else |
---|
[1077891a] | 847 | int owl_zephyr_notice_is_ack(const void *n) |
---|
[09489b89] | 848 | { |
---|
| 849 | return(0); |
---|
| 850 | } |
---|
[be0a79f] | 851 | #endif |
---|
[7d4fbcd] | 852 | |
---|
[c08c70a] | 853 | void owl_zephyr_zaway(const owl_message *m) |
---|
[31e48a3] | 854 | { |
---|
[be0a79f] | 855 | #ifdef HAVE_LIBZEPHYR |
---|
[7c8060d0] | 856 | char *tmpbuff, *myuser, *to; |
---|
[15b34fd] | 857 | owl_message *mout; |
---|
[7d4fbcd] | 858 | |
---|
[aa2f6364] | 859 | /* bail if it doesn't look like a message we should reply to. Some |
---|
[2de4f20] | 860 | * of this defined by the way zaway(1) works |
---|
| 861 | */ |
---|
[7d4fbcd] | 862 | if (strcasecmp(owl_message_get_class(m), "message")) return; |
---|
| 863 | if (strcasecmp(owl_message_get_recipient(m), ZGetSender())) return; |
---|
| 864 | if (!strcasecmp(owl_message_get_sender(m), "")) return; |
---|
| 865 | if (!strcasecmp(owl_message_get_opcode(m), "ping")) return; |
---|
| 866 | if (!strcasecmp(owl_message_get_opcode(m), "auto")) return; |
---|
[d023c25] | 867 | if (!strcasecmp(owl_message_get_zsig(m), "Automated reply:")) return; |
---|
[7d4fbcd] | 868 | if (!strcasecmp(owl_message_get_sender(m), ZGetSender())) return; |
---|
[9854278] | 869 | if (owl_message_get_attribute_value(m, "isauto")) return; |
---|
[7d4fbcd] | 870 | |
---|
[7c8060d0] | 871 | if (owl_global_is_smartstrip(&g)) { |
---|
[e3d9c77] | 872 | to=owl_zephyr_smartstripped_user(owl_message_get_sender(m)); |
---|
[7c8060d0] | 873 | } else { |
---|
| 874 | to=owl_strdup(owl_message_get_sender(m)); |
---|
| 875 | } |
---|
| 876 | |
---|
[7d4fbcd] | 877 | send_zephyr("", |
---|
| 878 | "Automated reply:", |
---|
| 879 | owl_message_get_class(m), |
---|
| 880 | owl_message_get_instance(m), |
---|
[7c8060d0] | 881 | to, |
---|
[7d4fbcd] | 882 | owl_global_get_zaway_msg(&g)); |
---|
| 883 | |
---|
[7c8060d0] | 884 | myuser=short_zuser(to); |
---|
[aa2f6364] | 885 | if (!strcasecmp(owl_message_get_instance(m), "personal")) { |
---|
| 886 | tmpbuff = owl_sprintf("zwrite %s", myuser); |
---|
| 887 | } else { |
---|
| 888 | tmpbuff = owl_sprintf("zwrite -i %s %s", owl_message_get_instance(m), myuser); |
---|
| 889 | } |
---|
| 890 | owl_free(myuser); |
---|
[7c8060d0] | 891 | owl_free(to); |
---|
[aa2f6364] | 892 | |
---|
[7d4fbcd] | 893 | /* display the message as an admin message in the receive window */ |
---|
[15b34fd] | 894 | mout=owl_function_make_outgoing_zephyr(owl_global_get_zaway_msg(&g), tmpbuff, "Automated reply:"); |
---|
[13a3c1db] | 895 | owl_global_messagequeue_addmsg(&g, mout); |
---|
[7d4fbcd] | 896 | owl_free(tmpbuff); |
---|
[be0a79f] | 897 | #endif |
---|
[7d4fbcd] | 898 | } |
---|
| 899 | |
---|
[be0a79f] | 900 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 901 | void owl_zephyr_hackaway_cr(ZNotice_t *n) |
---|
| 902 | { |
---|
[7d4fbcd] | 903 | /* replace \r's with ' '. Gross-ish */ |
---|
| 904 | int i; |
---|
| 905 | |
---|
| 906 | for (i=0; i<n->z_message_len; i++) { |
---|
| 907 | if (n->z_message[i]=='\r') { |
---|
| 908 | n->z_message[i]=' '; |
---|
| 909 | } |
---|
| 910 | } |
---|
| 911 | } |
---|
[be0a79f] | 912 | #endif |
---|
[7d4fbcd] | 913 | |
---|
[dca3b27] | 914 | char *owl_zephyr_zlocate(const char *user, int auth) |
---|
[31e48a3] | 915 | { |
---|
[be0a79f] | 916 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 917 | int ret, numlocs; |
---|
| 918 | int one = 1; |
---|
| 919 | ZLocations_t locations; |
---|
| 920 | char *myuser; |
---|
[dca3b27] | 921 | char *p, *result; |
---|
| 922 | |
---|
[8262340] | 923 | ZResetAuthentication(); |
---|
[dca3b27] | 924 | ret = ZLocateUser(zstr(user), &numlocs, auth ? ZAUTH : ZNOAUTH); |
---|
| 925 | if (ret != ZERR_NONE) |
---|
| 926 | return owl_sprintf("Error locating user %s: %s\n", |
---|
| 927 | user, error_message(ret)); |
---|
| 928 | |
---|
| 929 | myuser = short_zuser(user); |
---|
| 930 | if (numlocs == 0) { |
---|
| 931 | result = owl_sprintf("%s: Hidden or not logged in\n", myuser); |
---|
| 932 | } else { |
---|
| 933 | result = owl_strdup(""); |
---|
| 934 | for (; numlocs; numlocs--) { |
---|
| 935 | ZGetLocations(&locations, &one); |
---|
| 936 | p = owl_sprintf("%s%s: %s\t%s\t%s\n", |
---|
| 937 | result, myuser, |
---|
| 938 | locations.host ? locations.host : "?", |
---|
| 939 | locations.tty ? locations.tty : "?", |
---|
| 940 | locations.time ? locations.time : "?"); |
---|
| 941 | owl_free(result); |
---|
| 942 | result = p; |
---|
| 943 | } |
---|
[7d4fbcd] | 944 | } |
---|
| 945 | |
---|
[dca3b27] | 946 | return result; |
---|
| 947 | #else |
---|
| 948 | return owl_strdup(""); |
---|
[be0a79f] | 949 | #endif |
---|
[7d4fbcd] | 950 | } |
---|
[bde7714] | 951 | |
---|
[e19eb97] | 952 | void owl_zephyr_addsub(const char *filename, const char *class, const char *inst, const char *recip) |
---|
[31e48a3] | 953 | { |
---|
[be0a79f] | 954 | #ifdef HAVE_LIBZEPHYR |
---|
[b7ee89b] | 955 | char *line, *subsfile, *s = NULL; |
---|
[bde7714] | 956 | FILE *file; |
---|
[b7ee89b] | 957 | int duplicate = 0; |
---|
[bde7714] | 958 | |
---|
[b7ee89b] | 959 | line = owl_zephyr_makesubline(class, inst, recip); |
---|
[6ea3890] | 960 | subsfile = owl_zephyr_dotfile(".zephyr.subs", filename); |
---|
[bde7714] | 961 | |
---|
[74037d9] | 962 | /* if the file already exists, check to see if the sub is already there */ |
---|
[b7ee89b] | 963 | file = fopen(subsfile, "r"); |
---|
[74037d9] | 964 | if (file) { |
---|
[b7ee89b] | 965 | while (owl_getline(&s, file)) { |
---|
| 966 | if (strcasecmp(s, line) == 0) { |
---|
[74037d9] | 967 | owl_function_error("Subscription already present in %s", subsfile); |
---|
[b7ee89b] | 968 | duplicate++; |
---|
[74037d9] | 969 | } |
---|
[bde7714] | 970 | } |
---|
[99dabee] | 971 | fclose(file); |
---|
[b7ee89b] | 972 | owl_free(s); |
---|
[bde7714] | 973 | } |
---|
| 974 | |
---|
[b7ee89b] | 975 | if (!duplicate) { |
---|
| 976 | file = fopen(subsfile, "a"); |
---|
| 977 | if (file) { |
---|
| 978 | fputs(line, file); |
---|
| 979 | fclose(file); |
---|
| 980 | owl_function_makemsg("Subscription added"); |
---|
| 981 | } else { |
---|
| 982 | owl_function_error("Error opening file %s for writing", subsfile); |
---|
| 983 | } |
---|
[bde7714] | 984 | } |
---|
[b7ee89b] | 985 | |
---|
[bde7714] | 986 | owl_free(line); |
---|
[be0a79f] | 987 | #endif |
---|
[bde7714] | 988 | } |
---|
| 989 | |
---|
[e19eb97] | 990 | void owl_zephyr_delsub(const char *filename, const char *class, const char *inst, const char *recip) |
---|
[31e48a3] | 991 | { |
---|
[be0a79f] | 992 | #ifdef HAVE_LIBZEPHYR |
---|
[b2a91b6] | 993 | char *line, *subsfile; |
---|
[da60ba9] | 994 | int linesdeleted; |
---|
[bde7714] | 995 | |
---|
| 996 | line=owl_zephyr_makesubline(class, inst, recip); |
---|
[b2a91b6] | 997 | line[strlen(line)-1]='\0'; |
---|
[bde7714] | 998 | |
---|
[6ea3890] | 999 | subsfile = owl_zephyr_dotfile(".zephyr.subs", filename); |
---|
[b2a91b6] | 1000 | |
---|
[da60ba9] | 1001 | linesdeleted = owl_util_file_deleteline(subsfile, line, 1); |
---|
| 1002 | if (linesdeleted > 0) { |
---|
| 1003 | owl_function_makemsg("Subscription removed"); |
---|
| 1004 | } else { |
---|
| 1005 | owl_function_error("No subscription present in %s", subsfile); |
---|
| 1006 | } |
---|
[b2a91b6] | 1007 | owl_free(subsfile); |
---|
[bde7714] | 1008 | owl_free(line); |
---|
[be0a79f] | 1009 | #endif |
---|
[bde7714] | 1010 | } |
---|
| 1011 | |
---|
[b2a91b6] | 1012 | /* caller must free the return */ |
---|
[e19eb97] | 1013 | char *owl_zephyr_makesubline(const char *class, const char *inst, const char *recip) |
---|
[31e48a3] | 1014 | { |
---|
[36486be] | 1015 | return owl_sprintf("%s,%s,%s\n", class, inst, !strcmp(recip, "") ? "*" : recip); |
---|
[bde7714] | 1016 | } |
---|
[31e48a3] | 1017 | |
---|
| 1018 | |
---|
| 1019 | void owl_zephyr_zlog_in(void) |
---|
| 1020 | { |
---|
[be0a79f] | 1021 | #ifdef HAVE_LIBZEPHYR |
---|
[e19eb97] | 1022 | const char *exposure, *eset; |
---|
[31e48a3] | 1023 | int ret; |
---|
| 1024 | |
---|
| 1025 | ZResetAuthentication(); |
---|
| 1026 | |
---|
| 1027 | eset=EXPOSE_REALMVIS; |
---|
[712caac] | 1028 | exposure=ZGetVariable(zstr("exposure")); |
---|
[31e48a3] | 1029 | if (exposure==NULL) { |
---|
| 1030 | eset=EXPOSE_REALMVIS; |
---|
| 1031 | } else if (!strcasecmp(exposure,EXPOSE_NONE)) { |
---|
| 1032 | eset = EXPOSE_NONE; |
---|
| 1033 | } else if (!strcasecmp(exposure,EXPOSE_OPSTAFF)) { |
---|
| 1034 | eset = EXPOSE_OPSTAFF; |
---|
| 1035 | } else if (!strcasecmp(exposure,EXPOSE_REALMVIS)) { |
---|
| 1036 | eset = EXPOSE_REALMVIS; |
---|
| 1037 | } else if (!strcasecmp(exposure,EXPOSE_REALMANN)) { |
---|
| 1038 | eset = EXPOSE_REALMANN; |
---|
| 1039 | } else if (!strcasecmp(exposure,EXPOSE_NETVIS)) { |
---|
| 1040 | eset = EXPOSE_NETVIS; |
---|
| 1041 | } else if (!strcasecmp(exposure,EXPOSE_NETANN)) { |
---|
| 1042 | eset = EXPOSE_NETANN; |
---|
| 1043 | } |
---|
| 1044 | |
---|
[712caac] | 1045 | ret=ZSetLocation(zstr(eset)); |
---|
[31e48a3] | 1046 | if (ret != ZERR_NONE) { |
---|
| 1047 | /* |
---|
[e440602] | 1048 | owl_function_makemsg("Error setting location: %s", error_message(ret)); |
---|
[31e48a3] | 1049 | */ |
---|
| 1050 | } |
---|
[be0a79f] | 1051 | #endif |
---|
[31e48a3] | 1052 | } |
---|
| 1053 | |
---|
| 1054 | void owl_zephyr_zlog_out(void) |
---|
| 1055 | { |
---|
[be0a79f] | 1056 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 1057 | int ret; |
---|
| 1058 | |
---|
| 1059 | ZResetAuthentication(); |
---|
| 1060 | ret=ZUnsetLocation(); |
---|
| 1061 | if (ret != ZERR_NONE) { |
---|
| 1062 | /* |
---|
[e440602] | 1063 | owl_function_makemsg("Error unsetting location: %s", error_message(ret)); |
---|
[31e48a3] | 1064 | */ |
---|
| 1065 | } |
---|
[be0a79f] | 1066 | #endif |
---|
[31e48a3] | 1067 | } |
---|
| 1068 | |
---|
[e19eb97] | 1069 | void owl_zephyr_addbuddy(const char *name) |
---|
[65ad073] | 1070 | { |
---|
| 1071 | char *filename; |
---|
| 1072 | FILE *file; |
---|
| 1073 | |
---|
[6ea3890] | 1074 | filename = owl_zephyr_dotfile(".anyone", NULL); |
---|
| 1075 | file = fopen(filename, "a"); |
---|
[65ad073] | 1076 | owl_free(filename); |
---|
| 1077 | if (!file) { |
---|
[ec6ff52] | 1078 | owl_function_error("Error opening zephyr buddy file for append"); |
---|
[65ad073] | 1079 | return; |
---|
| 1080 | } |
---|
| 1081 | fprintf(file, "%s\n", name); |
---|
| 1082 | fclose(file); |
---|
| 1083 | } |
---|
| 1084 | |
---|
[e19eb97] | 1085 | void owl_zephyr_delbuddy(const char *name) |
---|
[65ad073] | 1086 | { |
---|
| 1087 | char *filename; |
---|
| 1088 | |
---|
[6ea3890] | 1089 | filename = owl_zephyr_dotfile(".anyone", NULL); |
---|
[65ad073] | 1090 | owl_util_file_deleteline(filename, name, 0); |
---|
| 1091 | owl_free(filename); |
---|
| 1092 | } |
---|
[9381782] | 1093 | |
---|
| 1094 | /* return auth string */ |
---|
[09489b89] | 1095 | #ifdef HAVE_LIBZEPHYR |
---|
[1077891a] | 1096 | const char *owl_zephyr_get_authstr(const ZNotice_t *n) |
---|
[9381782] | 1097 | { |
---|
| 1098 | |
---|
[f12d199] | 1099 | if (!n) return("UNKNOWN"); |
---|
| 1100 | |
---|
| 1101 | if (n->z_auth == ZAUTH_FAILED) { |
---|
[9381782] | 1102 | return ("FAILED"); |
---|
[f12d199] | 1103 | } else if (n->z_auth == ZAUTH_NO) { |
---|
[9381782] | 1104 | return ("NO"); |
---|
[f12d199] | 1105 | } else if (n->z_auth == ZAUTH_YES) { |
---|
[9381782] | 1106 | return ("YES"); |
---|
| 1107 | } else { |
---|
| 1108 | return ("UNKNOWN"); |
---|
[f12d199] | 1109 | } |
---|
[9381782] | 1110 | } |
---|
[09489b89] | 1111 | #else |
---|
[1077891a] | 1112 | const char *owl_zephyr_get_authstr(const void *n) |
---|
[09489b89] | 1113 | { |
---|
| 1114 | return(""); |
---|
| 1115 | } |
---|
| 1116 | #endif |
---|
[9381782] | 1117 | |
---|
[2de4f20] | 1118 | /* Returns a buffer of subscriptions or an error message. Caller must |
---|
| 1119 | * free the return. |
---|
[09489b89] | 1120 | */ |
---|
[c79a047] | 1121 | char *owl_zephyr_getsubs(void) |
---|
[09489b89] | 1122 | { |
---|
| 1123 | #ifdef HAVE_LIBZEPHYR |
---|
| 1124 | int ret, num, i, one; |
---|
[ddacb9c] | 1125 | int buffsize; |
---|
[09489b89] | 1126 | ZSubscription_t sub; |
---|
[ddacb9c] | 1127 | char *out; |
---|
[09489b89] | 1128 | one=1; |
---|
| 1129 | |
---|
| 1130 | ret=ZRetrieveSubscriptions(0, &num); |
---|
| 1131 | if (ret==ZERR_TOOMANYSUBS) { |
---|
[c8735aa] | 1132 | return(owl_strdup("Zephyr: too many subscriptions\n")); |
---|
[ddacb9c] | 1133 | } else if (ret || (num <= 0)) { |
---|
[c8735aa] | 1134 | return(owl_strdup("Zephyr: error retriving subscriptions\n")); |
---|
[09489b89] | 1135 | } |
---|
| 1136 | |
---|
[ddacb9c] | 1137 | buffsize = (num + 1) * 50; |
---|
| 1138 | out=owl_malloc(buffsize); |
---|
[09489b89] | 1139 | strcpy(out, ""); |
---|
| 1140 | for (i=0; i<num; i++) { |
---|
| 1141 | if ((ret = ZGetSubscriptions(&sub, &one)) != ZERR_NONE) { |
---|
| 1142 | owl_free(out); |
---|
| 1143 | ZFlushSubscriptions(); |
---|
| 1144 | out=owl_strdup("Error while getting subscriptions\n"); |
---|
| 1145 | return(out); |
---|
| 1146 | } else { |
---|
[ddacb9c] | 1147 | int tmpbufflen; |
---|
| 1148 | char *tmpbuff; |
---|
| 1149 | tmpbuff = owl_sprintf("<%s,%s,%s>\n%s", sub.zsub_class, sub.zsub_classinst, sub.zsub_recipient, out); |
---|
| 1150 | tmpbufflen = strlen(tmpbuff) + 1; |
---|
| 1151 | if (tmpbufflen > buffsize) { |
---|
| 1152 | char *out2; |
---|
| 1153 | buffsize = tmpbufflen * 2; |
---|
| 1154 | out2 = owl_realloc(out, buffsize); |
---|
| 1155 | if (out2 == NULL) { |
---|
| 1156 | owl_free(out); |
---|
| 1157 | owl_free(tmpbuff); |
---|
| 1158 | ZFlushSubscriptions(); |
---|
| 1159 | out=owl_strdup("Realloc error while getting subscriptions\n"); |
---|
| 1160 | return(out); |
---|
| 1161 | } |
---|
| 1162 | out = out2; |
---|
| 1163 | } |
---|
[09489b89] | 1164 | strcpy(out, tmpbuff); |
---|
[ddacb9c] | 1165 | owl_free(tmpbuff); |
---|
[09489b89] | 1166 | } |
---|
| 1167 | } |
---|
| 1168 | |
---|
| 1169 | ZFlushSubscriptions(); |
---|
| 1170 | return(out); |
---|
| 1171 | #else |
---|
[12c35df] | 1172 | return(owl_strdup("Zephyr not available")); |
---|
[09489b89] | 1173 | #endif |
---|
| 1174 | } |
---|
| 1175 | |
---|
[e19eb97] | 1176 | const char *owl_zephyr_get_variable(const char *var) |
---|
[09489b89] | 1177 | { |
---|
| 1178 | #ifdef HAVE_LIBZEPHYR |
---|
[712caac] | 1179 | return(ZGetVariable(zstr(var))); |
---|
[09489b89] | 1180 | #else |
---|
| 1181 | return(""); |
---|
| 1182 | #endif |
---|
| 1183 | } |
---|
| 1184 | |
---|
[e19eb97] | 1185 | void owl_zephyr_set_locationinfo(const char *host, const char *val) |
---|
[09489b89] | 1186 | { |
---|
| 1187 | #ifdef HAVE_LIBZEPHYR |
---|
[712caac] | 1188 | ZInitLocationInfo(zstr(host), zstr(val)); |
---|
[09489b89] | 1189 | #endif |
---|
| 1190 | } |
---|
| 1191 | |
---|
[e3d9c77] | 1192 | /* Strip a local realm fron the zephyr user name. |
---|
| 1193 | * The caller must free the return |
---|
| 1194 | */ |
---|
[e19eb97] | 1195 | char *short_zuser(const char *in) |
---|
[e3d9c77] | 1196 | { |
---|
| 1197 | char *out, *ptr; |
---|
| 1198 | |
---|
| 1199 | out=owl_strdup(in); |
---|
| 1200 | ptr=strchr(out, '@'); |
---|
| 1201 | if (ptr) { |
---|
| 1202 | if (!strcasecmp(ptr+1, owl_zephyr_get_realm())) { |
---|
| 1203 | *ptr='\0'; |
---|
| 1204 | } |
---|
| 1205 | } |
---|
| 1206 | return(out); |
---|
| 1207 | } |
---|
| 1208 | |
---|
| 1209 | /* Append a local realm to the zephyr user name if necessary. |
---|
| 1210 | * The caller must free the return. |
---|
| 1211 | */ |
---|
[e19eb97] | 1212 | char *long_zuser(const char *in) |
---|
[e3d9c77] | 1213 | { |
---|
[1971b59] | 1214 | if (strchr(in, '@')) { |
---|
| 1215 | return(owl_strdup(in)); |
---|
[e3d9c77] | 1216 | } |
---|
[1971b59] | 1217 | return(owl_sprintf("%s@%s", in, owl_zephyr_get_realm())); |
---|
[e3d9c77] | 1218 | } |
---|
| 1219 | |
---|
| 1220 | /* strip out the instance from a zsender's principal. Preserves the |
---|
| 1221 | * realm if present. daemon.webzephyr is a special case. The |
---|
| 1222 | * caller must free the return |
---|
| 1223 | */ |
---|
[e19eb97] | 1224 | char *owl_zephyr_smartstripped_user(const char *in) |
---|
[e3d9c77] | 1225 | { |
---|
| 1226 | char *ptr, *realm, *out; |
---|
| 1227 | |
---|
| 1228 | out=owl_strdup(in); |
---|
| 1229 | |
---|
| 1230 | /* bail immeaditly if we don't have to do any work */ |
---|
[fa4562c] | 1231 | ptr=strchr(out, '.'); |
---|
| 1232 | if (!strchr(out, '/') && !ptr) { |
---|
[e3d9c77] | 1233 | /* no '/' and no '.' */ |
---|
| 1234 | return(out); |
---|
| 1235 | } |
---|
[fa4562c] | 1236 | if (ptr && strchr(out, '@') && (ptr > strchr(out, '@'))) { |
---|
[e3d9c77] | 1237 | /* There's a '.' but it's in the realm */ |
---|
| 1238 | return(out); |
---|
| 1239 | } |
---|
[fa4562c] | 1240 | if (!strncasecmp(out, OWL_WEBZEPHYR_PRINCIPAL, strlen(OWL_WEBZEPHYR_PRINCIPAL))) { |
---|
[e3d9c77] | 1241 | return(out); |
---|
| 1242 | } |
---|
| 1243 | |
---|
[fa4562c] | 1244 | /* remove the realm from out, but hold on to it */ |
---|
[e3d9c77] | 1245 | realm=strchr(out, '@'); |
---|
| 1246 | if (realm) realm[0]='\0'; |
---|
| 1247 | |
---|
| 1248 | /* strip */ |
---|
| 1249 | ptr=strchr(out, '.'); |
---|
| 1250 | if (!ptr) ptr=strchr(out, '/'); |
---|
| 1251 | ptr[0]='\0'; |
---|
| 1252 | |
---|
| 1253 | /* reattach the realm if we had one */ |
---|
| 1254 | if (realm) { |
---|
| 1255 | strcat(out, "@"); |
---|
| 1256 | strcat(out, realm+1); |
---|
| 1257 | } |
---|
| 1258 | |
---|
| 1259 | return(out); |
---|
| 1260 | } |
---|
[5a95b69] | 1261 | |
---|
| 1262 | /* read the list of users in 'filename' as a .anyone file, and put the |
---|
| 1263 | * names of the zephyr users in the list 'in'. If 'filename' is NULL, |
---|
| 1264 | * use the default .anyone file in the users home directory. Returns |
---|
| 1265 | * -1 on failure, 0 on success. |
---|
| 1266 | */ |
---|
[e19eb97] | 1267 | int owl_zephyr_get_anyone_list(owl_list *in, const char *filename) |
---|
[5a95b69] | 1268 | { |
---|
| 1269 | #ifdef HAVE_LIBZEPHYR |
---|
[b7ee89b] | 1270 | char *ourfile, *tmp, *s = NULL; |
---|
[5a95b69] | 1271 | FILE *f; |
---|
| 1272 | |
---|
[6ea3890] | 1273 | ourfile = owl_zephyr_dotfile(".anyone", filename); |
---|
[b7ee89b] | 1274 | |
---|
| 1275 | f = fopen(ourfile, "r"); |
---|
[5a95b69] | 1276 | if (!f) { |
---|
| 1277 | owl_function_error("Error opening file %s: %s", ourfile, strerror(errno) ? strerror(errno) : ""); |
---|
| 1278 | owl_free(ourfile); |
---|
[b7ee89b] | 1279 | return -1; |
---|
[5a95b69] | 1280 | } |
---|
[b7ee89b] | 1281 | owl_free(ourfile); |
---|
[5a95b69] | 1282 | |
---|
[b7ee89b] | 1283 | while (owl_getline_chomp(&s, f)) { |
---|
[5a95b69] | 1284 | /* ignore comments, blank lines etc. */ |
---|
[b7ee89b] | 1285 | if (s[0] == '#' || s[0] == '\0') |
---|
| 1286 | continue; |
---|
| 1287 | |
---|
| 1288 | /* ignore from # on */ |
---|
| 1289 | tmp = strchr(s, '#'); |
---|
| 1290 | if (tmp) |
---|
| 1291 | tmp[0] = '\0'; |
---|
| 1292 | |
---|
| 1293 | /* ignore from SPC */ |
---|
| 1294 | tmp = strchr(s, ' '); |
---|
| 1295 | if (tmp) |
---|
| 1296 | tmp[0] = '\0'; |
---|
| 1297 | |
---|
| 1298 | owl_list_append_element(in, long_zuser(s)); |
---|
[5a95b69] | 1299 | } |
---|
| 1300 | fclose(f); |
---|
[b7ee89b] | 1301 | return 0; |
---|
[5a95b69] | 1302 | #else |
---|
[b7ee89b] | 1303 | return -1; |
---|
[5a95b69] | 1304 | #endif |
---|
| 1305 | } |
---|
[13a3c1db] | 1306 | |
---|
| 1307 | #ifdef HAVE_LIBZEPHYR |
---|
[f36cd97] | 1308 | void owl_zephyr_process_events(owl_dispatch *d) { |
---|
[13a3c1db] | 1309 | int zpendcount=0; |
---|
| 1310 | ZNotice_t notice; |
---|
| 1311 | owl_message *m=NULL; |
---|
| 1312 | |
---|
| 1313 | while(owl_zephyr_zpending() && zpendcount < 20) { |
---|
| 1314 | if (owl_zephyr_zpending()) { |
---|
[cc1a6d4] | 1315 | ZReceiveNotice(¬ice, NULL); |
---|
[13a3c1db] | 1316 | zpendcount++; |
---|
| 1317 | |
---|
| 1318 | /* is this an ack from a zephyr we sent? */ |
---|
| 1319 | if (owl_zephyr_notice_is_ack(¬ice)) { |
---|
| 1320 | owl_zephyr_handle_ack(¬ice); |
---|
| 1321 | continue; |
---|
| 1322 | } |
---|
| 1323 | |
---|
| 1324 | /* if it's a ping and we're not viewing pings then skip it */ |
---|
| 1325 | if (!owl_global_is_rxping(&g) && !strcasecmp(notice.z_opcode, "ping")) { |
---|
| 1326 | continue; |
---|
| 1327 | } |
---|
| 1328 | |
---|
| 1329 | /* create the new message */ |
---|
| 1330 | m=owl_malloc(sizeof(owl_message)); |
---|
| 1331 | owl_message_create_from_znotice(m, ¬ice); |
---|
| 1332 | |
---|
| 1333 | owl_global_messagequeue_addmsg(&g, m); |
---|
| 1334 | } |
---|
| 1335 | } |
---|
| 1336 | } |
---|
| 1337 | |
---|
| 1338 | #else |
---|
[f36cd97] | 1339 | void owl_zephyr_process_events(owl_dispatch *d) { |
---|
[13a3c1db] | 1340 | |
---|
| 1341 | } |
---|
| 1342 | #endif |
---|