source: zwrite.c @ 5550eb0

release-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 5550eb0 was 3ef779b, checked in by Nelson Elhage <nelhage@mit.edu>, 15 years ago
Send instanced pings and give useful error messages Based on discussion on -c barnowl, switches zwrite adehnert => ping zwrite adehnert -i test => no ping zwrite adehnert -c test => no ping to zwrite adehnert => ping zwrite adehnert -i test => ping zwrite adehnert -c test => no ping Pings match the class & instance of the message they are associated with. The error message when an instanced personal fails now includes the instance.
  • Property mode set to 100644
File size: 8.5 KB
Line 
1#include <string.h>
2#include <pwd.h>
3#include <sys/types.h>
4#include <unistd.h>
5#include "owl.h"
6
7static const char fileIdent[] = "$Id$";
8
9int owl_zwrite_create_from_line(owl_zwrite *z, char *line)
10{
11  int argc, badargs, myargc;
12  char **argv, **myargv;
13
14  badargs=0;
15 
16  /* start with null entires */
17  z->realm=NULL;
18  z->class=NULL;
19  z->inst=NULL;
20  z->opcode=NULL;
21  z->zsig=NULL;
22  z->message=NULL;
23  z->cc=0;
24  z->noping=0;
25  owl_list_create(&(z->recips));
26
27  /* parse the command line for options */
28  argv=myargv=owl_parseline(line, &argc);
29  if (argc<0) {
30    owl_function_error("Unbalanced quotes in zwrite");
31    return(-1);
32  }
33  myargc=argc;
34  if (myargc && *(myargv[0])!='-') {
35    myargc--;
36    myargv++;
37  }
38  while (myargc) {
39    if (!strcmp(myargv[0], "-c")) {
40      if (myargc<2) {
41        badargs=1;
42        break;
43      }
44      z->class=owl_validate_utf8(myargv[1]);
45      myargv+=2;
46      myargc-=2;
47    } else if (!strcmp(myargv[0], "-i")) {
48      if (myargc<2) {
49        badargs=1;
50        break;
51      }
52      z->inst=owl_validate_utf8(myargv[1]);
53      myargv+=2;
54      myargc-=2;
55    } else if (!strcmp(myargv[0], "-r")) {
56      if (myargc<2) {
57        badargs=1;
58        break;
59      }
60      z->realm=owl_validate_utf8(myargv[1]);
61      myargv+=2;
62      myargc-=2;
63    } else if (!strcmp(myargv[0], "-s")) {
64      if (myargc<2) {
65        badargs=1;
66        break;
67      }
68      z->zsig=owl_validate_utf8(myargv[1]);
69      myargv+=2;
70      myargc-=2;
71    } else if (!strcmp(myargv[0], "-O")) {
72      if (myargc<2) {
73        badargs=1;
74        break;
75      }
76      z->opcode=owl_validate_utf8(myargv[1]);
77      myargv+=2;
78      myargc-=2;
79    } else if (!strcmp(myargv[0], "-m")) {
80      if (myargc<2) {
81        badargs=1;
82        break;
83      }
84      /* we must already have users or a class or an instance*/
85      if (owl_list_get_size(&(z->recips))<1 && (!z->class) && (!z->inst)) {
86        badargs=1;
87        break;
88      }
89
90      /* Once we have -m, gobble up everything else on the line */
91      myargv++;
92      myargc--;
93      z->message = owl_strdup("");
94      while (myargc) {
95        z->message=owl_realloc(z->message, strlen(z->message)+strlen(myargv[0])+5);
96        strcat(z->message, myargv[0]);
97        strcat(z->message, " ");
98        myargc--;
99        myargv++;
100      }
101      z->message[strlen(z->message)-1]='\0'; /* remove last space */
102      break;
103    } else if (!strcmp(myargv[0], "-C")) {
104      z->cc=1;
105      myargv++;
106      myargc--;
107    } else if (!strcmp(myargv[0], "-n")) {
108      z->noping=1;
109      myargv++;
110      myargc--;
111    } else {
112      /* anything unattached is a recipient */
113      owl_list_append_element(&(z->recips), owl_validate_utf8(myargv[0]));
114      myargv++;
115      myargc--;
116    }
117  }
118
119  owl_parsefree(argv, argc);
120
121  if (badargs) {
122    return(-1);
123  }
124
125  if (z->class == NULL &&
126      z->inst == NULL &&
127      owl_list_get_size(&(z->recips))==0) {
128    owl_function_error("You must specify a recipient for zwrite");
129    return(-1);
130  }
131
132  /* now deal with defaults */
133  if (z->class==NULL) z->class=owl_strdup("message");
134  if (z->inst==NULL) z->inst=owl_strdup("personal");
135  if (z->realm==NULL) z->realm=owl_strdup("");
136  if (z->opcode==NULL) z->opcode=owl_strdup("");
137  /* z->message is allowed to stay NULL */
138 
139  return(0);
140}
141
142void owl_zwrite_populate_zsig(owl_zwrite *z)
143{
144  char *zsigproc, *zsigowlvar, *zsigzvar, *ptr;
145  struct passwd *pw;
146
147  /* get a zsig, if not given */
148  if (z->zsig==NULL) {
149    zsigproc = owl_global_get_zsigproc(&g);
150    zsigowlvar = owl_global_get_zsig(&g);
151    zsigzvar = owl_zephyr_get_variable("zwrite-signature");
152
153    if (zsigowlvar && *zsigowlvar) {
154      z->zsig=owl_validate_utf8(zsigowlvar);
155    } else if (zsigproc && *zsigproc) {
156      FILE *file;
157      char buff[LINE], *openline;
158     
159      /* simple hack for now to nuke stderr */
160      openline=owl_malloc(strlen(zsigproc)+40);
161      strcpy(openline, zsigproc);
162#if !(OWL_STDERR_REDIR)
163      strcat(openline, " 2> /dev/null");
164#endif
165      file=popen(openline, "r");
166      owl_free(openline);
167      if (!file) {
168        if (zsigzvar && *zsigzvar) {
169          z->zsig=owl_validate_utf8(zsigzvar);
170        }
171      } else {
172        z->zsig=owl_malloc(LINE*5);
173        strcpy(z->zsig, "");
174        while (fgets(buff, LINE, file)) { /* wrong sizing */
175          strcat(z->zsig, buff);
176        }
177        pclose(file);
178        if (z->zsig[strlen(z->zsig)-1]=='\n') {
179          z->zsig[strlen(z->zsig)-1]='\0';
180        }
181      }
182    } else if (zsigzvar) {
183      z->zsig=owl_validate_utf8(zsigzvar);
184    } else if (((pw=getpwuid(getuid()))!=NULL) && (pw->pw_gecos)) {
185      z->zsig=owl_validate_utf8(pw->pw_gecos);
186      ptr=strchr(z->zsig, ',');
187      if (ptr) {
188        ptr[0]='\0';
189      }
190    }
191  }
192}
193
194void owl_zwrite_send_ping(owl_zwrite *z)
195{
196  int i, j;
197  char *to;
198
199  if (z->noping) return;
200 
201  if (strcasecmp(z->class, "message")) {
202    return;
203  }
204
205  /* if there are no recipients we won't send a ping, which
206     is what we want */
207  j=owl_list_get_size(&(z->recips));
208  for (i=0; i<j; i++) {
209    if (strcmp(z->realm, "")) {
210      to = owl_sprintf("%s@%s", (char *) owl_list_get_element(&(z->recips), i), z->realm);
211    } else {
212      to = owl_strdup(owl_list_get_element(&(z->recips), i));
213    }
214    send_ping(to, z->class, z->inst);
215    owl_free(to);
216  }
217
218}
219
220void owl_zwrite_set_message(owl_zwrite *z, char *msg)
221{
222  int i, j;
223  char *toline = NULL;
224  char *tmp = NULL;
225
226  if (z->message) owl_free(z->message);
227
228  j=owl_list_get_size(&(z->recips));
229  if (j>0 && z->cc) {
230    toline = owl_strdup( "CC: ");
231    for (i=0; i<j; i++) {
232      tmp = toline;
233      if (strcmp(z->realm, "")) {
234        toline = owl_sprintf( "%s%s@%s ", toline, (char *) owl_list_get_element(&(z->recips), i), z->realm);
235      } else {
236        toline = owl_sprintf( "%s%s ", toline, (char *) owl_list_get_element(&(z->recips), i));
237      }
238      owl_free(tmp);
239      tmp = NULL;
240    }
241    tmp = owl_validate_utf8(msg);
242    z->message=owl_sprintf("%s\n%s", toline, tmp);
243    owl_free(toline);
244  } else {
245    z->message=owl_validate_utf8(msg);
246  }
247  if (tmp) owl_free(tmp);
248}
249
250char *owl_zwrite_get_message(owl_zwrite *z)
251{
252  if (z->message) return(z->message);
253  return("");
254}
255
256int owl_zwrite_is_message_set(owl_zwrite *z)
257{
258  if (z->message) return(1);
259  return(0);
260}
261
262int owl_zwrite_send_message(owl_zwrite *z)
263{
264  int i, j;
265  char *to = NULL;
266
267  if (z->message==NULL) return(-1);
268
269  j=owl_list_get_size(&(z->recips));
270  if (j>0) {
271    for (i=0; i<j; i++) {
272      if (strcmp(z->realm, "")) {
273        to = owl_sprintf("%s@%s", (char *) owl_list_get_element(&(z->recips), i), z->realm);
274      } else {
275        to = owl_strdup( owl_list_get_element(&(z->recips), i));
276      }
277      send_zephyr(z->opcode, z->zsig, z->class, z->inst, to, z->message);
278      owl_free(to);
279      to = NULL;
280    }
281  } else {
282    to = owl_sprintf( "@%s", z->realm);
283    send_zephyr(z->opcode, z->zsig, z->class, z->inst, to, z->message);
284  }
285  owl_free(to);
286  return(0);
287}
288
289int owl_zwrite_create_and_send_from_line(char *cmd, char *msg)
290{
291  owl_zwrite z;
292  int rv;
293  rv=owl_zwrite_create_from_line(&z, cmd);
294  if (rv) return(rv);
295  if (!owl_zwrite_is_message_set(&z)) {
296    owl_zwrite_set_message(&z, msg);
297  }
298  owl_zwrite_populate_zsig(&z);
299  owl_zwrite_send_message(&z);
300  owl_zwrite_free(&z);
301  return(0);
302}
303
304char *owl_zwrite_get_class(owl_zwrite *z)
305{
306  return(z->class);
307}
308
309char *owl_zwrite_get_instance(owl_zwrite *z)
310{
311  return(z->inst);
312}
313
314char *owl_zwrite_get_opcode(owl_zwrite *z)
315{
316  return(z->opcode);
317}
318
319void owl_zwrite_set_opcode(owl_zwrite *z, char *opcode)
320{
321  if (z->opcode) owl_free(z->opcode);
322  z->opcode=owl_validate_utf8(opcode);
323}
324
325char *owl_zwrite_get_realm(owl_zwrite *z)
326{
327  return(z->realm);
328}
329
330char *owl_zwrite_get_zsig(owl_zwrite *z)
331{
332  if (z->zsig) return(z->zsig);
333  return("");
334}
335
336void owl_zwrite_get_recipstr(owl_zwrite *z, char *buff)
337{
338  int i, j;
339
340  strcpy(buff, "");
341  j=owl_list_get_size(&(z->recips));
342  for (i=0; i<j; i++) {
343    strcat(buff, owl_list_get_element(&(z->recips), i));
344    strcat(buff, " ");
345  }
346  buff[strlen(buff)-1]='\0';
347}
348
349int owl_zwrite_get_numrecips(owl_zwrite *z)
350{
351  return(owl_list_get_size(&(z->recips)));
352}
353
354char *owl_zwrite_get_recip_n(owl_zwrite *z, int n)
355{
356  return(owl_list_get_element(&(z->recips), n));
357}
358
359int owl_zwrite_is_personal(owl_zwrite *z)
360{
361  /* return true if at least one of the recipients is personal */
362  int i, j;
363  char *foo;
364
365  j=owl_list_get_size(&(z->recips));
366  for (i=0; i<j; i++) {
367    foo=owl_list_get_element(&(z->recips), i);
368    if (foo[0]!='@') return(1);
369  }
370  return(0);
371}
372
373void owl_zwrite_free(owl_zwrite *z)
374{
375  owl_list_free_all(&(z->recips), &owl_free);
376  if (z->class) owl_free(z->class);
377  if (z->inst) owl_free(z->inst);
378  if (z->opcode) owl_free(z->opcode);
379  if (z->realm) owl_free(z->realm);
380  if (z->message) owl_free(z->message);
381  if (z->zsig) owl_free(z->zsig);
382}
Note: See TracBrowser for help on using the repository browser.