source: zephyr.c @ cc1eeac

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