source: zephyr.c @ 40d834a

barnowl_perlaimdebianowlrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 40d834a was 40d834a, checked in by James M. Kretchmar <kretch@mit.edu>, 20 years ago
Added a HAVE_ZEPHYR ifdef for new function
  • Property mode set to 100644
File size: 21.3 KB
Line 
1#include <stdlib.h>
2#include <unistd.h>
3#include <sys/types.h>
4#include <sys/wait.h>
5#include <sys/stat.h>
6#include <string.h>
7#include "owl.h"
8
9static const char fileIdent[] = "$Id$";
10
11#ifdef HAVE_LIBZEPHYR
12Code_t ZResetAuthentication();
13#endif
14
15int owl_zephyr_initialize()
16{
17#ifdef HAVE_LIBZEPHYR
18  int ret;
19 
20  if ((ret = ZInitialize()) != ZERR_NONE) {
21    com_err("owl",ret,"while initializing");
22    return(1);
23  }
24  if ((ret = ZOpenPort(NULL)) != ZERR_NONE) {
25    com_err("owl",ret,"while opening port");
26    return(1);
27  }
28#endif
29  return(0);
30}
31
32
33int owl_zephyr_shutdown()
34{
35#ifdef HAVE_LIBZEPHYR
36  unsuball();
37  ZClosePort();
38#endif
39  return(0);
40}
41
42int owl_zephyr_zpending()
43{
44#ifdef HAVE_LIBZEPHYR
45  return(ZPending());
46#else
47  return(0);
48#endif
49}
50
51char *owl_zephyr_get_realm()
52{
53#ifdef HAVE_LIBZEPHYR
54  return(ZGetRealm());
55#else
56  return("");
57#endif
58}
59
60char *owl_zephyr_get_sender()
61{
62#ifdef HAVE_LIBZEPHYR
63  return(ZGetSender());
64#else
65  return("");
66#endif
67}
68
69/* return 0  on success
70 *        -1 on file error
71 *        -2 on subscription error
72 */
73int owl_zephyr_loadsubs(char *filename)
74{
75#ifdef HAVE_LIBZEPHYR
76  FILE *file;
77  char *tmp, *start;
78  char buffer[1024], subsfile[1024];
79  ZSubscription_t subs[3001];
80  int count, ret, i;
81  struct stat statbuff;
82
83  if (filename==NULL) {
84    sprintf(subsfile, "%s/%s", owl_global_get_homedir(&g), ".zephyr.subs");
85  } else {
86    strcpy(subsfile, filename);
87  }
88
89  ret=stat(subsfile, &statbuff);
90  if (ret) return(0);
91
92  ret=0;
93
94  ZResetAuthentication();
95  /* need to redo this to do chunks, not just bail after 3000 */
96  count=0;
97  file=fopen(subsfile, "r");
98  if (file) {
99    while ( fgets(buffer, 1024, file)!=NULL ) {
100      if (buffer[0]=='#' || buffer[0]=='\n' || buffer[0]=='\n') continue;
101
102      if (buffer[0]=='-') {
103        start=buffer+1;
104      } else {
105        start=buffer;
106      }
107     
108      if (count >= 3000) break; /* also tell the user */
109
110      /* add it to the list of subs */
111      if ((tmp=(char *) strtok(start, ",\n\r"))==NULL) continue;
112      subs[count].zsub_class=owl_strdup(tmp);
113      if ((tmp=(char *) strtok(NULL, ",\n\r"))==NULL) continue;
114      subs[count].zsub_classinst=owl_strdup(tmp);
115      if ((tmp=(char *) strtok(NULL, " \t\n\r"))==NULL) continue;
116      subs[count].zsub_recipient=owl_strdup(tmp);
117
118      /* if it started with '-' then add it to the global punt list */
119      if (buffer[0]=='-') {
120        owl_function_zpunt(subs[count].zsub_class, subs[count].zsub_classinst, subs[count].zsub_recipient, 0);
121      }
122     
123      count++;
124    }
125    fclose(file);
126  } else {
127    count=0;
128    ret=-1;
129  }
130
131  /* sub without defaults */
132  if (ZSubscribeToSansDefaults(subs,count,0) != ZERR_NONE) {
133    owl_function_error("Error subscribing to zephyr notifications.");
134    ret=-2;
135  }
136
137  /* free stuff */
138  for (i=0; i<count; i++) {
139    owl_free(subs[i].zsub_class);
140    owl_free(subs[i].zsub_classinst);
141    owl_free(subs[i].zsub_recipient);
142  }
143
144  return(ret);
145#else
146  return(0);
147#endif
148}
149
150int owl_zephyr_loaddefaultsubs()
151{
152#ifdef HAVE_LIBZEPHYR
153  ZSubscription_t subs[10];
154   
155  if (ZSubscribeTo(subs,0,0) != ZERR_NONE) {
156    owl_function_error("Error subscribing to default zephyr notifications.");
157    return(-1);
158  }
159  return(0);
160#else
161  return(0);
162#endif
163}
164
165int owl_zephyr_loadloginsubs(char *filename)
166{
167#ifdef HAVE_LIBZEPHYR
168  FILE *file;
169  ZSubscription_t subs[3001];
170  char subsfile[1024], buffer[1024];
171  int count, ret, i;
172  struct stat statbuff;
173
174  if (filename==NULL) {
175    sprintf(subsfile, "%s/%s", owl_global_get_homedir(&g), ".anyone");
176  } else {
177    strcpy(subsfile, filename);
178  }
179 
180  ret=stat(subsfile, &statbuff);
181  if (ret) return(0);
182
183  ret=0;
184
185  ZResetAuthentication();
186  /* need to redo this to do chunks, not just bag out after 3000 */
187  count=0;
188  file=fopen(subsfile, "r");
189  if (file) {
190    while ( fgets(buffer, 1024, file)!=NULL ) {
191      if (buffer[0]=='#' || buffer[0]=='\n' || buffer[0]=='\n') continue;
192     
193      if (count >= 3000) break; /* also tell the user */
194
195      buffer[strlen(buffer)-1]='\0';
196      subs[count].zsub_class="login";
197      subs[count].zsub_recipient="*";
198      if (strchr(buffer, '@')) {
199        subs[count].zsub_classinst=owl_strdup(buffer);
200      } else {
201        subs[count].zsub_classinst=owl_sprintf("%s@%s", buffer, ZGetRealm());
202      }
203
204      count++;
205    }
206    fclose(file);
207  } else {
208    count=0;
209    ret=-1;
210  }
211
212  /* sub with defaults */
213  if (ZSubscribeToSansDefaults(subs,count,0) != ZERR_NONE) {
214    owl_function_error("Error subscribing to zephyr notifications.");
215    ret=-2;
216  }
217
218  /* free stuff */
219  for (i=0; i<count; i++) {
220    owl_free(subs[i].zsub_classinst);
221  }
222
223  return(ret);
224#else
225  return(0);
226#endif
227}
228
229void unsuball()
230{
231#if HAVE_LIBZEPHYR
232  int ret;
233
234  ZResetAuthentication();
235  ret=ZCancelSubscriptions(0);
236  if (ret != ZERR_NONE) {
237    com_err("owl",ret,"while unsubscribing");
238  }
239#endif
240}
241
242int owl_zephyr_sub(char *class, char *inst, char *recip)
243{
244#ifdef HAVE_LIBZEPHYR
245  ZSubscription_t subs[5];
246
247  subs[0].zsub_class=class;
248  subs[0].zsub_classinst=inst;
249  subs[0].zsub_recipient=recip;
250
251  ZResetAuthentication();
252  if (ZSubscribeTo(subs,1,0) != ZERR_NONE) {
253    owl_function_error("Error subbing to <%s,%s,%s>", class, inst, recip);
254    return(-2);
255  }
256  return(0);
257#else
258  return(0);
259#endif
260}
261
262
263int owl_zephyr_unsub(char *class, char *inst, char *recip)
264{
265#ifdef HAVE_LIBZEPHYR
266  ZSubscription_t subs[5];
267
268  subs[0].zsub_class=class;
269  subs[0].zsub_classinst=inst;
270  subs[0].zsub_recipient=recip;
271
272  ZResetAuthentication();
273  if (ZUnsubscribeTo(subs,1,0) != ZERR_NONE) {
274    owl_function_error("Error unsubbing from <%s,%s,%s>", class, inst, recip);
275    return(-2);
276  }
277  return(0);
278#else
279  return(0);
280#endif
281}
282
283/* return a pointer to the data in the Jth field, (NULL terminated by
284 * definition).  Caller must free the return.
285 */
286#ifdef HAVE_LIBZEPHYR
287char *owl_zephyr_get_field(ZNotice_t *n, int j)
288{
289  int i, count, save;
290  char *out;
291
292  count=save=0;
293  for (i=0; i<n->z_message_len; i++) {
294    if (n->z_message[i]=='\0') {
295      count++;
296      if (count==j) {
297        /* just found the end of the field we're looking for */
298        return(owl_strdup(n->z_message+save));
299      } else {
300        save=i+1;
301      }
302    }
303  }
304  /* catch the last field, which might not be null terminated */
305  if (count==j-1) {
306    out=owl_malloc(n->z_message_len-save+5);
307    memcpy(out, n->z_message+save, n->z_message_len-save);
308    out[n->z_message_len-save]='\0';
309    return(out);
310  }
311
312  return(owl_strdup(""));
313}
314#else
315char *owl_zephyr_get_field(void *n, int j)
316{
317  return(owl_strdup(""));
318}
319#endif
320
321
322#ifdef HAVE_LIBZEPHYR
323int owl_zephyr_get_num_fields(ZNotice_t *n)
324{
325  int i, fields;
326
327  fields=1;
328  for (i=0; i<n->z_message_len; i++) {
329    if (n->z_message[i]=='\0') fields++;
330  }
331 
332  return(fields);
333}
334#else
335int owl_zephyr_get_num_fields(void *n)
336{
337  return(0);
338}
339#endif
340
341#ifdef HAVE_LIBZEPHYR
342/* return a pointer to the message, place the message length in k
343 * caller must free the return
344 */
345char *owl_zephyr_get_message(ZNotice_t *n)
346{
347  if (!strcasecmp(n->z_opcode, "ping")) {
348    return(owl_strdup(""));
349  }
350
351  return(owl_zephyr_get_field(n, 2));
352}
353#endif
354
355#ifdef HAVE_LIBZEPHYR
356char *owl_zephyr_get_zsig(ZNotice_t *n, int *k)
357{
358  /* return a pointer to the zsig if there is one */
359
360  if (n->z_message_len==0) {
361    *k=0;
362    return("");
363  }
364  *k=strlen(n->z_message);
365  return(n->z_message);
366}
367#else
368char *owl_zephyr_get_zsig(void *n, int *k)
369{
370  return("");
371}
372#endif
373
374int send_zephyr(char *opcode, char *zsig, char *class, char *instance, char *recipient, char *message)
375{
376#ifdef HAVE_LIBZEPHYR
377  int ret;
378  ZNotice_t notice;
379   
380  memset(&notice, 0, sizeof(notice));
381
382  ZResetAuthentication();
383 
384  notice.z_kind=ACKED;
385  notice.z_port=0;
386  notice.z_class=class;
387  notice.z_class_inst=instance;
388  if (!strcmp(recipient, "*") || !strcmp(recipient, "@")) {
389    notice.z_recipient="";
390  } else {
391    notice.z_recipient=recipient;
392  }
393  notice.z_default_format="Class $class, Instance $instance:\nTo: @bold($recipient) at $time $date\nFrom: @bold{$1 <$sender>}\n\n$2";
394  notice.z_sender=NULL;
395  if (opcode) notice.z_opcode=opcode;
396
397  notice.z_message_len=strlen(zsig)+1+strlen(message);
398  notice.z_message=owl_malloc(notice.z_message_len+10);
399  strcpy(notice.z_message, zsig);
400  memcpy(notice.z_message+strlen(zsig)+1, message, strlen(message));
401
402  /* ret=ZSendNotice(&notice, ZAUTH); */
403  ret=ZSrvSendNotice(&notice, ZAUTH, send_zephyr_helper);
404 
405  /* free then check the return */
406  owl_free(notice.z_message);
407  ZFreeNotice(&notice);
408  if (ret!=ZERR_NONE) {
409    owl_function_error("Error sending zephyr");
410    return(ret);
411  }
412  return(0);
413#else
414  return(0);
415#endif
416}
417
418#ifdef HAVE_LIBZEPHYR
419Code_t send_zephyr_helper(ZNotice_t *notice, char *buf, int len, int wait)
420{
421  return(ZSendPacket(buf, len, 0));
422}
423#endif
424
425void send_ping(char *to)
426{
427#ifdef HAVE_LIBZEPHYR
428  send_zephyr("PING", "", "MESSAGE", "PERSONAL", to, "");
429#endif
430}
431
432#ifdef HAVE_LIBZEPHYR
433void owl_zephyr_handle_ack(ZNotice_t *retnotice)
434{
435  char *tmp;
436 
437  /* if it's an HMACK ignore it */
438  if (retnotice->z_kind == HMACK) return;
439
440  if (retnotice->z_kind == SERVNAK) {
441    owl_function_error("Authorization failure sending zephyr");
442  } else if ((retnotice->z_kind != SERVACK) || !retnotice->z_message_len) {
443    owl_function_error("Detected server failure while receiving acknowledgement");
444  } else if (!strcmp(retnotice->z_message, ZSRVACK_SENT)) {
445    if (!strcasecmp(retnotice->z_opcode, "ping")) {
446      return;
447    } else if (!strcasecmp(retnotice->z_class, "message") &&
448               !strcasecmp(retnotice->z_class_inst, "personal")) {
449      tmp=short_zuser(retnotice->z_recipient);
450      owl_function_makemsg("Message sent to %s.", tmp);
451      free(tmp);
452    } else {
453      owl_function_makemsg("Message sent to -c %s -i %s\n", retnotice->z_class, retnotice->z_class_inst);
454    }
455  } else if (!strcmp(retnotice->z_message, ZSRVACK_NOTSENT)) {
456    if (strcasecmp(retnotice->z_class, "message")) {
457      char buff[1024];
458      owl_function_error("No one subscribed to class class %s", retnotice->z_class);
459      sprintf(buff, "Could not send message to class %s: no one subscribed.\n", retnotice->z_class);
460      owl_function_adminmsg("", buff);
461    } else {
462      char buff[1024];
463      tmp = short_zuser(retnotice->z_recipient);
464      owl_function_error("%s: Not logged in or subscribing to messages.", 
465                           tmp);
466
467      sprintf(buff, "Could not send message to %s: not logged in or subscribing to messages.\n", tmp);
468      owl_function_adminmsg("", buff);
469      if (owl_global_is_logging(&g)) owl_log_outgoing_zephyr_error(tmp, buff);
470      owl_free(tmp);
471    }
472  } else {
473    owl_function_error("Internal error on ack (%s)", retnotice->z_message);
474  }
475}
476#else
477void owl_zephyr_handle_ack(void *retnotice)
478{
479}
480#endif
481
482#ifdef HAVE_LIBZEPHYR
483int owl_zephyr_notice_is_ack(ZNotice_t *n)
484{
485  if (n->z_kind == SERVNAK || n->z_kind == SERVACK || n->z_kind == HMACK) {
486    if (!strcasecmp(n->z_class, LOGIN_CLASS)) return(0);
487    return(1);
488  }
489  return(0);
490}
491#else
492int owl_zephyr_notice_is_ack(void *n)
493{
494  return(0);
495}
496#endif
497 
498void owl_zephyr_zaway(owl_message *m)
499{
500#ifdef HAVE_LIBZEPHYR
501  char *tmpbuff, *myuser, *to;
502 
503  /* bail if it doesn't look like a message we should reply to.  Some
504   * of this defined by the way zaway(1) works
505   */
506  if (strcasecmp(owl_message_get_class(m), "message")) return;
507  if (strcasecmp(owl_message_get_recipient(m), ZGetSender())) return;
508  if (!strcasecmp(owl_message_get_sender(m), "")) return;
509  if (!strcasecmp(owl_message_get_opcode(m), "ping")) return;
510  if (!strcasecmp(owl_message_get_opcode(m), "auto")) return;
511  if (!strcasecmp(owl_message_get_zsig(m), "Automated reply:")) return;
512  if (!strcasecmp(owl_message_get_sender(m), ZGetSender())) return;
513  if (owl_message_get_attribute_value(m, "isauto")) return;
514
515  if (owl_global_is_smartstrip(&g)) {
516    to=owl_zephyr_smartstripped_user(owl_message_get_sender(m));
517  } else {
518    to=owl_strdup(owl_message_get_sender(m));
519  }
520
521  send_zephyr("",
522              "Automated reply:",
523              owl_message_get_class(m),
524              owl_message_get_instance(m),
525              to,
526              owl_global_get_zaway_msg(&g));
527
528  myuser=short_zuser(to);
529  if (!strcasecmp(owl_message_get_instance(m), "personal")) {
530    tmpbuff = owl_sprintf("zwrite %s", myuser);
531  } else {
532    tmpbuff = owl_sprintf("zwrite -i %s %s", owl_message_get_instance(m), myuser);
533  }
534  owl_free(myuser);
535  owl_free(to);
536
537  /* display the message as an admin message in the receive window */
538  owl_function_make_outgoing_zephyr(owl_global_get_zaway_msg(&g), tmpbuff, "Automated reply:");
539  owl_free(tmpbuff);
540#endif
541}
542
543#ifdef HAVE_LIBZEPHYR
544void owl_zephyr_hackaway_cr(ZNotice_t *n)
545{
546  /* replace \r's with ' '.  Gross-ish */
547  int i;
548
549  for (i=0; i<n->z_message_len; i++) {
550    if (n->z_message[i]=='\r') {
551      n->z_message[i]=' ';
552    }
553  }
554}
555#endif
556
557void owl_zephyr_zlocate(char *user, char *out, int auth)
558{
559#ifdef HAVE_LIBZEPHYR
560  int ret, numlocs;
561  int one = 1;
562  ZLocations_t locations;
563  char *myuser;
564 
565  strcpy(out, "");
566  ZResetAuthentication();
567  ret=ZLocateUser(user,&numlocs,auth?ZAUTH:ZNOAUTH);
568  if (ret != ZERR_NONE) {
569    owl_function_error("Error locating user %s", user);
570  }
571
572  if (numlocs==0) {
573    myuser=short_zuser(user);
574    sprintf(out, "%s: Hidden or not logged-in\n", myuser);
575    owl_free(myuser);
576    return;
577  }
578   
579  for (;numlocs;numlocs--) {
580    ZGetLocations(&locations,&one);
581    myuser=short_zuser(user);
582    sprintf(out, "%s%s: %s\t%s\t%s\n", out, myuser, locations.host, locations.tty, locations.time);
583    owl_free(myuser);
584  }
585#endif
586}
587
588void owl_zephyr_addsub(char *filename, char *class, char *inst, char *recip)
589{
590#ifdef HAVE_LIBZEPHYR
591  char *line, subsfile[LINE], buff[LINE];
592  FILE *file;
593
594  line=owl_zephyr_makesubline(class, inst, recip);
595
596  if (filename==NULL) {
597    sprintf(subsfile, "%s/%s", owl_global_get_homedir(&g), ".zephyr.subs");
598  } else {
599    strcpy(subsfile, filename);
600  }
601
602  /* first check if it exists already */
603  file=fopen(subsfile, "r");
604  if (!file) {
605    owl_function_error("Error opening file %s", subsfile);
606    owl_free(line);
607    return;
608  }
609  while (fgets(buff, LINE, file)!=NULL) {
610    if (!strcasecmp(buff, line)) {
611      owl_function_error("Subscription already present in %s", subsfile);
612      owl_free(line);
613      return;
614    }
615  }
616
617  /* if we get here then we didn't find it */
618  fclose(file);
619  file=fopen(subsfile, "a");
620  if (!file) {
621    owl_function_error("Error opening file %s for writing", subsfile);
622    owl_free(line);
623    return;
624  }
625  fputs(line, file);
626  fclose(file);
627  owl_function_makemsg("Subscription added");
628 
629  owl_free(line);
630#endif
631}
632
633void owl_zephyr_delsub(char *filename, char *class, char *inst, char *recip)
634{
635#ifdef HAVE_LIBZEPHYR
636  char *line, *subsfile;
637 
638  line=owl_zephyr_makesubline(class, inst, recip);
639  line[strlen(line)-1]='\0';
640
641  if (!filename) {
642    subsfile=owl_sprintf("%s/.zephyr.subs", owl_global_get_homedir(&g));
643  } else {
644    subsfile=owl_strdup(filename);
645  }
646 
647  owl_util_file_deleteline(subsfile, line, 1);
648  owl_free(subsfile);
649  owl_free(line);
650  owl_function_makemsg("Subscription removed");
651#endif
652}
653
654/* caller must free the return */
655char *owl_zephyr_makesubline(char *class, char *inst, char *recip)
656{
657  char *out;
658
659  out=owl_malloc(strlen(class)+strlen(inst)+strlen(recip)+30);
660  sprintf(out, "%s,%s,%s\n", class, inst, !strcmp(recip, "") ? "*" : recip);
661  return(out);
662}
663
664
665void owl_zephyr_zlog_in(void)
666{
667#ifdef HAVE_LIBZEPHYR
668  char *exposure, *eset;
669  int ret;
670
671  ZResetAuthentication();
672   
673  eset=EXPOSE_REALMVIS;
674  exposure=ZGetVariable("exposure");
675  if (exposure==NULL) {
676    eset=EXPOSE_REALMVIS;
677  } else if (!strcasecmp(exposure,EXPOSE_NONE)) {
678    eset = EXPOSE_NONE;
679  } else if (!strcasecmp(exposure,EXPOSE_OPSTAFF)) {
680    eset = EXPOSE_OPSTAFF;
681  } else if (!strcasecmp(exposure,EXPOSE_REALMVIS)) {
682    eset = EXPOSE_REALMVIS;
683  } else if (!strcasecmp(exposure,EXPOSE_REALMANN)) {
684    eset = EXPOSE_REALMANN;
685  } else if (!strcasecmp(exposure,EXPOSE_NETVIS)) {
686    eset = EXPOSE_NETVIS;
687  } else if (!strcasecmp(exposure,EXPOSE_NETANN)) {
688    eset = EXPOSE_NETANN;
689  }
690   
691  ret=ZSetLocation(eset);
692  if (ret != ZERR_NONE) {
693    /*
694      char buff[LINE];
695      sprintf(buff, "Error setting location: %s", error_message(ret));
696      owl_function_makemsg(buff);
697    */
698  }
699#endif
700}
701
702void owl_zephyr_zlog_out(void)
703{
704#ifdef HAVE_LIBZEPHYR
705  int ret;
706
707  ZResetAuthentication();
708  ret=ZUnsetLocation();
709  if (ret != ZERR_NONE) {
710    /*
711      char buff[LINE];
712      sprintf(buff, "Error unsetting location: %s", error_message(ret));
713      owl_function_makemsg(buff);
714    */
715  }
716#endif
717}
718
719void owl_zephyr_addbuddy(char *name)
720{
721  char *filename;
722  FILE *file;
723 
724  filename=owl_sprintf("%s/.anyone", owl_global_get_homedir(&g));
725  file=fopen(filename, "a");
726  owl_free(filename);
727  if (!file) {
728    owl_function_error("Error opening zephyr buddy file for append");
729    return;
730  }
731  fprintf(file, "%s\n", name);
732  fclose(file);
733}
734
735void owl_zephyr_delbuddy(char *name)
736{
737  char *filename;
738
739  filename=owl_sprintf("%s/.anyone", owl_global_get_homedir(&g));
740  owl_util_file_deleteline(filename, name, 0);
741  owl_free(filename);
742}
743
744/* return auth string */
745#ifdef HAVE_LIBZEPHYR
746char *owl_zephyr_get_authstr(ZNotice_t *n)
747{
748
749  if (!n) return("UNKNOWN");
750
751  if (n->z_auth == ZAUTH_FAILED) {
752    return ("FAILED");
753  } else if (n->z_auth == ZAUTH_NO) {
754    return ("NO");
755  } else if (n->z_auth == ZAUTH_YES) {
756    return ("YES");
757  } else {
758    return ("UNKNOWN");
759  }           
760}
761#else
762char *owl_zephyr_get_authstr(void *n)
763{
764  return("");
765}
766#endif
767
768/* Returns a buffer of subscriptions or an error message.  Caller must
769 * free the return.
770 */
771char *owl_zephyr_getsubs()
772{
773#ifdef HAVE_LIBZEPHYR
774  int ret, num, i, one;
775  ZSubscription_t sub;
776  char *out, *tmpbuff;
777  one=1;
778
779  ret=ZRetrieveSubscriptions(0, &num);
780  if (ret==ZERR_TOOMANYSUBS) {
781    return(owl_strdup("Zephyr: too many subscriptions\n"));
782  } else if (ret) {
783    return(owl_strdup("Zephyr: error retriving subscriptions\n"));
784  }
785
786  out=owl_malloc(num*500);
787  tmpbuff=owl_malloc(num*500);
788  strcpy(out, "");
789  for (i=0; i<num; i++) {
790    if ((ret = ZGetSubscriptions(&sub, &one)) != ZERR_NONE) {
791      owl_free(out);
792      owl_free(tmpbuff);
793      ZFlushSubscriptions();
794      out=owl_strdup("Error while getting subscriptions\n");
795      return(out);
796    } else {
797      sprintf(tmpbuff, "<%s,%s,%s>\n%s", sub.zsub_class, sub.zsub_classinst, sub.zsub_recipient, out);
798      strcpy(out, tmpbuff);
799    }
800  }
801
802  owl_free(tmpbuff);
803  ZFlushSubscriptions();
804  return(out);
805#else
806  return(owl_strdup("Zephyr not available"));
807#endif
808}
809
810char *owl_zephyr_get_variable(char *var)
811{
812#ifdef HAVE_LIBZEPHYR
813  return(ZGetVariable(var));
814#else
815  return("");
816#endif
817}
818
819void owl_zephyr_set_locationinfo(char *host, char *val)
820{
821#ifdef HAVE_LIBZEPHYR
822  ZInitLocationInfo(host, val);
823#endif
824}
825 
826/* Strip a local realm fron the zephyr user name.
827 * The caller must free the return
828 */
829char *short_zuser(char *in)
830{
831  char *out, *ptr;
832
833  out=owl_strdup(in);
834  ptr=strchr(out, '@');
835  if (ptr) {
836    if (!strcasecmp(ptr+1, owl_zephyr_get_realm())) {
837      *ptr='\0';
838    }
839  }
840  return(out);
841}
842
843/* Append a local realm to the zephyr user name if necessary.
844 * The caller must free the return.
845 */
846char *long_zuser(char *in)
847{
848  char *ptr;
849
850  if (NULL != (ptr=strchr(in, '@'))) {
851    return owl_strdup(in);
852  } else {
853    return owl_sprintf("%s@%s", in, owl_zephyr_get_realm());
854  }
855}
856
857
858/* strip out the instance from a zsender's principal.  Preserves the
859 * realm if present.  daemon.webzephyr is a special case.  The
860 * caller must free the return
861 */
862char *owl_zephyr_smartstripped_user(char *in)
863{
864  char *ptr, *realm, *out;
865
866  out=owl_strdup(in);
867
868  /* bail immeaditly if we don't have to do any work */
869  ptr=strchr(in, '.');
870  if (!strchr(in, '/') && !ptr) {
871    /* no '/' and no '.' */
872    return(out);
873  }
874  if (ptr && strchr(in, '@') && (ptr > strchr(in, '@'))) {
875    /* There's a '.' but it's in the realm */
876    return(out);
877  }
878  if (!strncasecmp(in, OWL_WEBZEPHYR_PRINCIPAL, strlen(OWL_WEBZEPHYR_PRINCIPAL))) {
879    return(out);
880  }
881
882  /* remove the realm from ptr, but hold on to it */
883  realm=strchr(out, '@');
884  if (realm) realm[0]='\0';
885
886  /* strip */
887  ptr=strchr(out, '.');
888  if (!ptr) ptr=strchr(out, '/');
889  ptr[0]='\0';
890
891  /* reattach the realm if we had one */
892  if (realm) {
893    strcat(out, "@");
894    strcat(out, realm+1);
895  }
896
897  return(out);
898}
899
900/* read the list of users in 'filename' as a .anyone file, and put the
901 * names of the zephyr users in the list 'in'.  If 'filename' is NULL,
902 * use the default .anyone file in the users home directory.  Returns
903 * -1 on failure, 0 on success.
904 */
905int owl_zephyr_get_anyone_list(owl_list *in, char *filename)
906{
907#ifdef HAVE_LIBZEPHYR
908  char *ourfile, *tmp, buff[LINE];
909  FILE *f;
910
911  if (filename==NULL) {
912    tmp=owl_global_get_homedir(&g);
913    ourfile=owl_sprintf("%s/.anyone", owl_global_get_homedir(&g));
914  } else {
915    ourfile=owl_strdup(filename);
916  }
917 
918  f=fopen(ourfile, "r");
919  if (!f) {
920    owl_function_error("Error opening file %s: %s", ourfile, strerror(errno) ? strerror(errno) : "");
921    owl_free(ourfile);
922    return(-1);
923  }
924
925  while (fgets(buff, LINE, f)!=NULL) {
926    /* ignore comments, blank lines etc. */
927    if (buff[0]=='#') continue;
928    if (buff[0]=='\n') continue;
929    if (buff[0]=='\0') continue;
930   
931    /* strip the \n */
932    buff[strlen(buff)-1]='\0';
933   
934    /* ingore from # on */
935    tmp=strchr(buff, '#');
936    if (tmp) tmp[0]='\0';
937   
938    /* ingore from SPC */
939    tmp=strchr(buff, ' ');
940    if (tmp) tmp[0]='\0';
941   
942    /* stick on the local realm. */
943    if (!strchr(buff, '@')) {
944      strcat(buff, "@");
945      strcat(buff, ZGetRealm());
946    }
947    owl_list_append_element(in, owl_strdup(buff));
948  }
949  fclose(f);
950  owl_free(ourfile);
951  return(0);
952#else
953  return(-1);
954#endif
955}
Note: See TracBrowser for help on using the repository browser.