Fixed a bug introduced by the previous commit. We weren't
[citadel.git] / citadel / serv_vcard.c
1 /*
2  * $Id$
3  * 
4  * A server-side module for Citadel which supports address book information
5  * using the standard vCard format.
6  * 
7  * Copyright (c) 1999-2007 / released under the GNU General Public License
8  */
9
10 /*
11  * Format of the "Exclusive ID" field of the message containing a user's
12  * vCard.  Doesn't matter what it really looks like as long as it's both
13  * unique and consistent (because we use it for replication checking to
14  * delete the old vCard network-wide when the user enters a new one).
15  */
16 #define VCARD_EXT_FORMAT        "Citadel vCard: personal card for %s at %s"
17
18
19 #include "sysdep.h"
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <stdio.h>
23 #include <fcntl.h>
24 #include <signal.h>
25 #include <pwd.h>
26 #include <errno.h>
27 #include <ctype.h>
28 #include <sys/types.h>
29
30 #if TIME_WITH_SYS_TIME
31 # include <sys/time.h>
32 # include <time.h>
33 #else
34 # if HAVE_SYS_TIME_H
35 #  include <sys/time.h>
36 # else
37 #  include <time.h>
38 # endif
39 #endif
40
41 #include <sys/wait.h>
42 #include <string.h>
43 #include <limits.h>
44 #include "citadel.h"
45 #include "server.h"
46 #include "sysdep_decls.h"
47 #include "citserver.h"
48 #include "support.h"
49 #include "config.h"
50 #include "control.h"
51 #include "serv_extensions.h"
52 #include "room_ops.h"
53 #include "user_ops.h"
54 #include "policy.h"
55 #include "database.h"
56 #include "msgbase.h"
57 #include "internet_addressing.h"
58 #include "tools.h"
59 #include "mime_parser.h"
60 #include "vcard.h"
61 #include "serv_ldap.h"
62 #include "serv_vcard.h"
63
64 /*
65  * set global flag calling for an aide to validate new users
66  */
67 void set_mm_valid(void) {
68         begin_critical_section(S_CONTROL);
69         get_control();
70         CitControl.MMflags = CitControl.MMflags | MM_VALID ;
71         put_control();
72         end_critical_section(S_CONTROL);
73 }
74
75
76
77 /*
78  * Extract Internet e-mail addresses from a message containing a vCard, and
79  * perform a callback for any found.
80  */
81 void vcard_extract_internet_addresses(struct CtdlMessage *msg,
82                                 void (*callback)(char *, char *) ) {
83         struct vCard *v;
84         char *s;
85         char *addr;
86         char citadel_address[SIZ];
87         int instance = 0;
88         int found_something = 0;
89
90         if (msg->cm_fields['A'] == NULL) return;
91         if (msg->cm_fields['N'] == NULL) return;
92         snprintf(citadel_address, sizeof citadel_address, "%s @ %s",
93                 msg->cm_fields['A'], msg->cm_fields['N']);
94
95         v = vcard_load(msg->cm_fields['M']);
96         if (v == NULL) return;
97
98         /* Go through the vCard searching for *all* instances of
99          * the "email;internet" key
100          */
101         do {
102                 s = vcard_get_prop(v, "email;internet", 0, instance++, 0);
103                 if (s != NULL) {
104                         addr = strdup(s);
105                         striplt(addr);
106                         if (strlen(addr) > 0) {
107                                 if (callback != NULL) {
108                                         callback(addr, citadel_address);
109                                 }
110                         }
111                         free(addr);
112                         found_something = 1;
113                 }
114                 else {
115                         found_something = 0;
116                 }
117         } while(found_something);
118
119         vcard_free(v);
120 }
121
122
123
124 /*
125  * Callback for vcard_add_to_directory()
126  * (Lotsa ugly nested callbacks.  Oh well.)
127  */
128 void vcard_directory_add_user(char *internet_addr, char *citadel_addr) {
129         char buf[SIZ];
130
131         /* We have to validate that we're not stepping on someone else's
132          * email address ... but only if we're logged in.  Otherwise it's
133          * probably just the networker or something.
134          */
135         if (CC->logged_in) {
136                 lprintf(CTDL_DEBUG, "Checking for <%s>...\n", internet_addr);
137                 if (CtdlDirectoryLookup(buf, internet_addr, sizeof buf) == 0) {
138                         if (strcasecmp(buf, citadel_addr)) {
139                                 /* This address belongs to someone else.
140                                  * Bail out silently without saving.
141                                  */
142                                 lprintf(CTDL_DEBUG, "DOOP!\n");
143                                 return;
144                         }
145                 }
146         }
147         lprintf(CTDL_INFO, "Adding %s (%s) to directory\n",
148                         citadel_addr, internet_addr);
149         CtdlDirectoryAddUser(internet_addr, citadel_addr);
150 }
151
152
153 /*
154  * Back end function for cmd_igab()
155  */
156 void vcard_add_to_directory(long msgnum, void *data) {
157         struct CtdlMessage *msg;
158
159         msg = CtdlFetchMessage(msgnum, 1);
160         if (msg != NULL) {
161                 vcard_extract_internet_addresses(msg, vcard_directory_add_user);
162         }
163
164 #ifdef HAVE_LDAP
165         ctdl_vcard_to_ldap(msg, V2L_WRITE);
166 #endif
167
168         CtdlFreeMessage(msg);
169 }
170
171
172 /*
173  * Initialize Global Adress Book
174  */
175 void cmd_igab(char *argbuf) {
176         char hold_rm[ROOMNAMELEN];
177
178         if (CtdlAccessCheck(ac_aide)) return;
179
180         strcpy(hold_rm, CC->room.QRname);       /* save current room */
181
182         if (getroom(&CC->room, ADDRESS_BOOK_ROOM) != 0) {
183                 getroom(&CC->room, hold_rm);
184                 cprintf("%d cannot get address book room\n", ERROR + ROOM_NOT_FOUND);
185                 return;
186         }
187
188         /* Empty the existing database first.
189          */
190         CtdlDirectoryInit();
191
192         /* We want *all* vCards in this room */
193         CtdlForEachMessage(MSGS_ALL, 0, NULL, "text/x-vcard",
194                 NULL, vcard_add_to_directory, NULL);
195
196         getroom(&CC->room, hold_rm);    /* return to saved room */
197         cprintf("%d Directory has been rebuilt.\n", CIT_OK);
198 }
199
200
201
202
203 /*
204  * See if there is a valid Internet address in a vCard to use for outbound
205  * Internet messages.  If there is, stick it in the buffer.
206  */
207 void extract_primary_inet_email(char *emailaddrbuf, size_t emailaddrbuf_len, struct vCard *v) {
208         char *s, *addr;
209         int continue_searching = 1;
210         int instance = 0;
211
212         /* Go through the vCard searching for *all* instances of
213          * the "email;internet" key
214          */
215         do {
216                 s = vcard_get_prop(v, "email;internet", 0, instance++, 0);
217                 if (s != NULL) {
218                         continue_searching = 1;
219                         addr = strdup(s);
220                         striplt(addr);
221                         if (strlen(addr) > 0) {
222                                 if (IsDirectory(addr)) {
223                                         continue_searching = 0;
224                                         safestrncpy(emailaddrbuf, addr,
225                                                 emailaddrbuf_len);
226                                 }
227                         }
228                         free(addr);
229                 }
230                 else {
231                         continue_searching = 0;
232                 }
233         } while(continue_searching);
234 }
235
236
237
238 /*
239  * See if there is a name / screen name / friendly name  in a vCard to use for outbound
240  * Internet messages.  If there is, stick it in the buffer.
241  */
242 void extract_friendly_name(char *namebuf, size_t namebuf_len, struct vCard *v)
243 {
244         char *s;
245
246         s = vcard_get_prop(v, "fn", 0, 0, 0);
247         if (s == NULL) {
248                 s = vcard_get_prop(v, "n", 0, 0, 0);
249         }
250
251         if (s != NULL) {
252                 safestrncpy(namebuf, s, namebuf_len);
253         }
254 }
255
256
257 /*
258  * Callback function for vcard_upload_beforesave() hunts for the real vcard in the MIME structure
259  */
260 void vcard_extract_vcard(char *name, char *filename, char *partnum, char *disp,
261                    void *content, char *cbtype, char *cbcharset, size_t length,
262                    char *encoding, void *cbuserdata)
263 {
264         struct vCard **v = (struct vCard **) cbuserdata;
265
266         if (  (!strcasecmp(cbtype, "text/x-vcard"))
267            || (!strcasecmp(cbtype, "text/vcard")) ) {
268
269                 lprintf(CTDL_DEBUG, "Part %s contains a vCard!  Loading...\n", partnum);
270                 if (*v != NULL) {
271                         vcard_free(*v);
272                 }
273                 *v = vcard_load(content);
274         }
275 }
276
277
278 /*
279  * This handler detects whether the user is attempting to save a new
280  * vCard as part of his/her personal configuration, and handles the replace
281  * function accordingly (delete the user's existing vCard in the config room
282  * and in the global address book).
283  */
284 int vcard_upload_beforesave(struct CtdlMessage *msg) {
285         char *ptr;
286         char *s;
287         char buf[SIZ];
288         struct ctdluser usbuf;
289         long what_user;
290         struct vCard *v = NULL;
291         char *ser = NULL;
292         int i = 0;
293         int yes_my_citadel_config = 0;
294         int yes_any_vcard_room = 0;
295
296         if (!CC->logged_in) return(0);  /* Only do this if logged in. */
297
298         /* Is this some user's "My Citadel Config" room? */
299         if ( (CC->room.QRflags && QR_MAILBOX)
300            && (!strcasecmp(&CC->room.QRname[11], USERCONFIGROOM)) ) {
301                 /* Yes, we want to do this */
302                 yes_my_citadel_config = 1;
303
304 #ifdef VCARD_SAVES_BY_AIDES_ONLY
305                 /* Prevent non-aides from performing registration changes */
306                 if (CC->user.axlevel < 6) {
307                         return(1);
308                 }
309 #endif
310
311         }
312
313         /* Is this a room with an address book in it? */
314         if (CC->room.QRdefaultview == VIEW_ADDRESSBOOK) {
315                 yes_any_vcard_room = 1;
316         }
317
318         /* If neither condition exists, don't run this hook. */
319         if ( (!yes_my_citadel_config) && (!yes_any_vcard_room) ) {
320                 return(0);
321         }
322
323         /* If this isn't a MIME message, don't bother. */
324         if (msg->cm_format_type != 4) return(0);
325
326         /* Ok, if we got this far, look into the situation further... */
327
328         ptr = msg->cm_fields['M'];
329         if (ptr == NULL) return(0);
330
331         mime_parser(msg->cm_fields['M'],
332                 NULL,
333                 *vcard_extract_vcard,
334                 NULL, NULL,
335                 &v,             /* user data ptr - put the vcard here */
336                 0
337         );
338
339         if (v == NULL) return(0);       /* no vCards were found in this message */
340
341         s = vcard_get_prop(v, "FN", 0, 0, 0);
342         if (s) lprintf(CTDL_DEBUG, "vCard beforesave hook running for <%s>\n", s);
343
344         if (yes_my_citadel_config) {
345                 /* Bingo!  The user is uploading a new vCard, so
346                  * delete the old one.  First, figure out which user
347                  * is being re-registered...
348                  */
349                 what_user = atol(CC->room.QRname);
350
351                 if (what_user == CC->user.usernum) {
352                         /* It's the logged in user.  That was easy. */
353                         memcpy(&usbuf, &CC->user, sizeof(struct ctdluser));
354                 }
355                 
356                 else if (getuserbynumber(&usbuf, what_user) == 0) {
357                         /* We fetched a valid user record */
358                 }
359
360                 else {
361                         /* somebody set up us the bomb! */
362                         yes_my_citadel_config = 0;
363                 }
364         }
365         
366         if (yes_my_citadel_config) {
367                 /* Delete the user's old vCard.  This would probably
368                  * get taken care of by the replication check, but we
369                  * want to make sure there is absolutely only one
370                  * vCard in the user's config room at all times.
371                  *
372                  * FIXME also handle text/vcard by implementing regexp
373                  */
374                 CtdlDeleteMessages(CC->room.QRname, NULL, 0, "text/x-vcard");
375
376                 /* Make the author of the message the name of the user. */
377                 if (msg->cm_fields['A'] != NULL) {
378                         free(msg->cm_fields['A']);
379                 }
380                 msg->cm_fields['A'] = strdup(usbuf.fullname);
381         }
382
383         /* Insert or replace RFC2739-compliant free/busy URL */
384         if (yes_my_citadel_config) {
385                 sprintf(buf, "http://%s/%s.vfb",
386                         config.c_fqdn,
387                         usbuf.fullname);
388                 for (i=0; i<strlen(buf); ++i) {
389                         if (buf[i] == ' ') buf[i] = '_';
390                 }
391                 vcard_set_prop(v, "FBURL;PREF", buf, 0);
392         }
393
394         /* If the vCard has no UID, then give it one. */
395         s = vcard_get_prop(v, "UID", 0, 0, 0);
396         if (s == NULL) {
397                 generate_uuid(buf);
398                 vcard_set_prop(v, "UID", buf, 0);
399         }
400
401         /* Enforce local UID policy if applicable */
402         if (yes_my_citadel_config) {
403                 snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, msg->cm_fields['A'], NODENAME);
404                 vcard_set_prop(v, "UID", buf, 0);
405         }
406
407         /* 
408          * Set the EUID of the message to the UID of the vCard.
409          */
410         if (msg->cm_fields['E'] != NULL) free(msg->cm_fields['E']);
411         s = vcard_get_prop(v, "UID", 0, 0, 0);
412         if (s != NULL) {
413                 msg->cm_fields['E'] = strdup(s);
414                 if (msg->cm_fields['U'] == NULL) {
415                         msg->cm_fields['U'] = strdup(s);
416                 }
417         }
418
419         /*
420          * Set the Subject to the name in the vCard.
421          */
422         s = vcard_get_prop(v, "FN", 0, 0, 0);
423         if (s == NULL) {
424                 s = vcard_get_prop(v, "N", 0, 0, 0);
425         }
426         if (s != NULL) {
427                 if (msg->cm_fields['U'] != NULL) {
428                         free(msg->cm_fields['U']);
429                 }
430                 msg->cm_fields['U'] = strdup(s);
431         }
432
433         /* Re-serialize it back into the msg body */
434         ser = vcard_serialize(v);
435         if (ser != NULL) {
436                 msg->cm_fields['M'] = realloc(msg->cm_fields['M'], strlen(ser) + 1024);
437                 sprintf(msg->cm_fields['M'],
438                         "Content-type: text/x-vcard"
439                         "\r\n\r\n%s\r\n", ser);
440                 free(ser);
441         }
442
443         /* Now allow the save to complete. */
444         vcard_free(v);
445         return(0);
446 }
447
448
449
450 /*
451  * This handler detects whether the user is attempting to save a new
452  * vCard as part of his/her personal configuration, and handles the replace
453  * function accordingly (copy the vCard from the config room to the global
454  * address book).
455  */
456 int vcard_upload_aftersave(struct CtdlMessage *msg) {
457         char *ptr;
458         int linelen;
459         long I;
460         struct vCard *v;
461
462         if (!CC->logged_in) return(0);  /* Only do this if logged in. */
463
464         /* If this isn't the configuration room, or if this isn't a MIME
465          * message, don't bother.
466          */
467         if (msg->cm_fields['O'] == NULL) return(0);
468         if (strcasecmp(msg->cm_fields['O'], USERCONFIGROOM)) return(0);
469         if (msg->cm_format_type != 4) return(0);
470
471         ptr = msg->cm_fields['M'];
472         if (ptr == NULL) return(0);
473         while (ptr != NULL) {
474         
475                 linelen = strcspn(ptr, "\n");
476                 if (linelen == 0) return(0);    /* end of headers */    
477                 
478                 if (!strncasecmp(ptr, "Content-type: text/x-vcard", 26)) {
479                         /* Bingo!  The user is uploading a new vCard, so
480                          * copy it to the Global Address Book room.
481                          */
482
483                         I = atol(msg->cm_fields['I']);
484                         if (I < 0L) return(0);
485
486                         /* Store our Internet return address in memory */
487                         v = vcard_load(msg->cm_fields['M']);
488                         extract_primary_inet_email(CC->cs_inet_email, sizeof CC->cs_inet_email, v);
489                         extract_friendly_name(CC->cs_inet_fn, sizeof CC->cs_inet_fn, v);
490                         vcard_free(v);
491
492                         /* Put it in the Global Address Book room... */
493                         CtdlSaveMsgPointerInRoom(ADDRESS_BOOK_ROOM, I, 1, msg);
494
495                         /* ...and also in the directory database. */
496                         vcard_add_to_directory(I, NULL);
497
498                         /* Some sites want an Aide to be notified when a
499                          * user registers or re-registers...
500                          */
501                         set_mm_valid();
502
503                         /* ...which also means we need to flag the user */
504                         lgetuser(&CC->user, CC->curr_user);
505                         CC->user.flags |= (US_REGIS|US_NEEDVALID);
506                         lputuser(&CC->user);
507
508                         return(0);
509                 }
510
511                 ptr = strchr((char *)ptr, '\n');
512                 if (ptr != NULL) ++ptr;
513         }
514
515         return(0);
516 }
517
518
519
520 /*
521  * back end function used for callbacks
522  */
523 void vcard_gu_backend(long supplied_msgnum, void *userdata) {
524         long *msgnum;
525
526         msgnum = (long *) userdata;
527         *msgnum = supplied_msgnum;
528 }
529
530
531 /*
532  * If this user has a vcard on disk, read it into memory, otherwise allocate
533  * and return an empty vCard.
534  */
535 struct vCard *vcard_get_user(struct ctdluser *u) {
536         char hold_rm[ROOMNAMELEN];
537         char config_rm[ROOMNAMELEN];
538         struct CtdlMessage *msg = NULL;
539         struct vCard *v;
540         long VCmsgnum;
541
542         strcpy(hold_rm, CC->room.QRname);       /* save current room */
543         MailboxName(config_rm, sizeof config_rm, u, USERCONFIGROOM);
544
545         if (getroom(&CC->room, config_rm) != 0) {
546                 getroom(&CC->room, hold_rm);
547                 return vcard_new();
548         }
549
550         /* We want the last (and probably only) vcard in this room */
551         VCmsgnum = (-1);
552         CtdlForEachMessage(MSGS_LAST, 1, NULL, "text/x-vcard",
553                 NULL, vcard_gu_backend, (void *)&VCmsgnum );
554         getroom(&CC->room, hold_rm);    /* return to saved room */
555
556         if (VCmsgnum < 0L) return vcard_new();
557
558         msg = CtdlFetchMessage(VCmsgnum, 1);
559         if (msg == NULL) return vcard_new();
560
561         v = vcard_load(msg->cm_fields['M']);
562         CtdlFreeMessage(msg);
563         return v;
564 }
565
566
567 /*
568  * Store this user's vCard in the appropriate place
569  */
570 /*
571  * Write our config to disk
572  */
573 void vcard_write_user(struct ctdluser *u, struct vCard *v) {
574         char temp[PATH_MAX];
575         FILE *fp;
576         char *ser;
577
578         CtdlMakeTempFileName(temp, sizeof temp);
579         ser = vcard_serialize(v);
580
581         fp = fopen(temp, "w");
582         if (fp == NULL) return;
583         if (ser == NULL) {
584                 fprintf(fp, "begin:vcard\r\nend:vcard\r\n");
585         } else {
586                 fwrite(ser, strlen(ser), 1, fp);
587                 free(ser);
588         }
589         fclose(fp);
590
591         /* This handy API function does all the work for us.
592          * NOTE: normally we would want to set that last argument to 1, to
593          * force the system to delete the user's old vCard.  But it doesn't
594          * have to, because the vcard_upload_beforesave() hook above
595          * is going to notice what we're trying to do, and delete the old vCard.
596          */
597         CtdlWriteObject(USERCONFIGROOM, /* which room */
598                         "text/x-vcard", /* MIME type */
599                         temp,           /* temp file */
600                         u,              /* which user */
601                         0,              /* not binary */
602                         0,              /* don't delete others of this type */
603                         0);             /* no flags */
604
605         unlink(temp);
606 }
607
608
609
610 /*
611  * Old style "enter registration info" command.  This function simply honors
612  * the REGI protocol command, translates the entered parameters into a vCard,
613  * and enters the vCard into the user's configuration.
614  */
615 void cmd_regi(char *argbuf) {
616         int a,b,c;
617         char buf[SIZ];
618         struct vCard *my_vcard;
619
620         char tmpaddr[SIZ];
621         char tmpcity[SIZ];
622         char tmpstate[SIZ];
623         char tmpzip[SIZ];
624         char tmpaddress[SIZ];
625         char tmpcountry[SIZ];
626
627         unbuffer_output();
628
629         if (!(CC->logged_in)) {
630                 cprintf("%d Not logged in.\n",ERROR + NOT_LOGGED_IN);
631                 return;
632         }
633
634         my_vcard = vcard_get_user(&CC->user);
635         strcpy(tmpaddr, "");
636         strcpy(tmpcity, "");
637         strcpy(tmpstate, "");
638         strcpy(tmpzip, "");
639         strcpy(tmpcountry, "USA");
640
641         cprintf("%d Send registration...\n", SEND_LISTING);
642         a=0;
643         while (client_getln(buf, sizeof buf), strcmp(buf,"000")) {
644                 if (a==0) vcard_set_prop(my_vcard, "n", buf, 0);
645                 if (a==1) strcpy(tmpaddr, buf);
646                 if (a==2) strcpy(tmpcity, buf);
647                 if (a==3) strcpy(tmpstate, buf);
648                 if (a==4) {
649                         for (c=0; c<strlen(buf); ++c) {
650                                 if ((buf[c]>='0') && (buf[c]<='9')) {
651                                         b = strlen(tmpzip);
652                                         tmpzip[b] = buf[c];
653                                         tmpzip[b+1] = 0;
654                                 }
655                         }
656                 }
657                 if (a==5) vcard_set_prop(my_vcard, "tel;home", buf, 0);
658                 if (a==6) vcard_set_prop(my_vcard, "email;internet", buf, 0);
659                 if (a==7) strcpy(tmpcountry, buf);
660                 ++a;
661         }
662
663         snprintf(tmpaddress, sizeof tmpaddress, ";;%s;%s;%s;%s;%s",
664                 tmpaddr, tmpcity, tmpstate, tmpzip, tmpcountry);
665         vcard_set_prop(my_vcard, "adr", tmpaddress, 0);
666         vcard_write_user(&CC->user, my_vcard);
667         vcard_free(my_vcard);
668 }
669
670
671 /*
672  * Protocol command to fetch registration info for a user
673  */
674 void cmd_greg(char *argbuf)
675 {
676         struct ctdluser usbuf;
677         struct vCard *v;
678         char *s;
679         char who[USERNAME_SIZE];
680         char adr[256];
681         char buf[256];
682
683         extract_token(who, argbuf, 0, '|', sizeof who);
684
685         if (!(CC->logged_in)) {
686                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
687                 return;
688         }
689
690         if (!strcasecmp(who,"_SELF_")) strcpy(who,CC->curr_user);
691
692         if ((CC->user.axlevel < 6) && (strcasecmp(who,CC->curr_user))) {
693                 cprintf("%d Higher access required.\n",
694                         ERROR + HIGHER_ACCESS_REQUIRED);
695                 return;
696         }
697
698         if (getuser(&usbuf, who) != 0) {
699                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, who);
700                 return;
701         }
702
703         v = vcard_get_user(&usbuf);
704
705         cprintf("%d %s\n", LISTING_FOLLOWS, usbuf.fullname);
706         cprintf("%ld\n", usbuf.usernum);
707         cprintf("%s\n", usbuf.password);
708         s = vcard_get_prop(v, "n", 0, 0, 0);
709         cprintf("%s\n", s ? s : " ");   /* name */
710
711         s = vcard_get_prop(v, "adr", 0, 0, 0);
712         snprintf(adr, sizeof adr, "%s", s ? s : " ");/* address... */
713
714         extract_token(buf, adr, 2, ';', sizeof buf);
715         cprintf("%s\n", buf);                           /* street */
716         extract_token(buf, adr, 3, ';', sizeof buf);
717         cprintf("%s\n", buf);                           /* city */
718         extract_token(buf, adr, 4, ';', sizeof buf);
719         cprintf("%s\n", buf);                           /* state */
720         extract_token(buf, adr, 5, ';', sizeof buf);
721         cprintf("%s\n", buf);                           /* zip */
722
723         s = vcard_get_prop(v, "tel;home", 0, 0, 0);
724         if (s == NULL) s = vcard_get_prop(v, "tel", 1, 0, 0);
725         if (s != NULL) {
726                 cprintf("%s\n", s);
727         }
728         else {
729                 cprintf(" \n");
730         }
731
732         cprintf("%d\n", usbuf.axlevel);
733
734         s = vcard_get_prop(v, "email;internet", 0, 0, 0);
735         cprintf("%s\n", s ? s : " ");
736         s = vcard_get_prop(v, "adr", 0, 0, 0);
737         snprintf(adr, sizeof adr, "%s", s ? s : " ");/* address... */
738
739         extract_token(buf, adr, 6, ';', sizeof buf);
740         cprintf("%s\n", buf);                           /* country */
741         cprintf("000\n");
742 }
743
744
745
746 /*
747  * When a user is being created, create his/her vCard.
748  */
749 void vcard_newuser(struct ctdluser *usbuf) {
750         char vname[256];
751         char buf[256];
752         int i;
753         struct vCard *v;
754
755         vcard_fn_to_n(vname, usbuf->fullname, sizeof vname);
756         lprintf(CTDL_DEBUG, "Converted <%s> to <%s>\n", usbuf->fullname, vname);
757
758         /* Create and save the vCard */
759         v = vcard_new();
760         if (v == NULL) return;
761         sprintf(buf, "%s@%s", usbuf->fullname, config.c_fqdn);
762         for (i=0; i<strlen(buf); ++i) {
763                 if (buf[i] == ' ') buf[i] = '_';
764         }
765         vcard_add_prop(v, "fn", usbuf->fullname);
766         vcard_add_prop(v, "n", vname);
767         vcard_add_prop(v, "adr", "adr:;;_;_;_;00000;__");
768         vcard_add_prop(v, "email;internet", buf);
769         vcard_write_user(usbuf, v);
770         vcard_free(v);
771 }
772
773
774 /*
775  * When a user is being deleted, we have to remove his/her vCard.
776  * This is accomplished by issuing a message with 'CANCEL' in the S (special)
777  * field, and the same Exclusive ID as the existing card.
778  */
779 void vcard_purge(struct ctdluser *usbuf) {
780         struct CtdlMessage *msg;
781         char buf[SIZ];
782
783         msg = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
784         if (msg == NULL) return;
785         memset(msg, 0, sizeof(struct CtdlMessage));
786
787         msg->cm_magic = CTDLMESSAGE_MAGIC;
788         msg->cm_anon_type = MES_NORMAL;
789         msg->cm_format_type = 0;
790         msg->cm_fields['A'] = strdup(usbuf->fullname);
791         msg->cm_fields['O'] = strdup(ADDRESS_BOOK_ROOM);
792         msg->cm_fields['N'] = strdup(NODENAME);
793         msg->cm_fields['M'] = strdup("Purge this vCard\n");
794
795         snprintf(buf, sizeof buf, VCARD_EXT_FORMAT,
796                         msg->cm_fields['A'], NODENAME);
797         msg->cm_fields['E'] = strdup(buf);
798
799         msg->cm_fields['S'] = strdup("CANCEL");
800
801         CtdlSubmitMsg(msg, NULL, ADDRESS_BOOK_ROOM);
802         CtdlFreeMessage(msg);
803 }
804
805
806 /*
807  * Grab vCard directory stuff out of incoming network messages
808  */
809 int vcard_extract_from_network(struct CtdlMessage *msg, char *target_room) {
810         char *ptr;
811         int linelen;
812
813         if (msg == NULL) return(0);
814
815         if (strcasecmp(target_room, ADDRESS_BOOK_ROOM)) {
816                 return(0);
817         }
818
819         if (msg->cm_format_type != 4) return(0);
820
821         ptr = msg->cm_fields['M'];
822         if (ptr == NULL) return(0);
823         while (ptr != NULL) {
824         
825                 linelen = strcspn(ptr, "\n");
826                 if (linelen == 0) return(0);    /* end of headers */    
827                 
828                 if (!strncasecmp(ptr, "Content-type: text/x-vcard", 26)) {
829                          /* It's a vCard.  Add it to the directory. */
830                         vcard_extract_internet_addresses(msg,
831                                                         CtdlDirectoryAddUser);
832                         return(0);
833                 }
834
835                 ptr = strchr((char *)ptr, '\n');
836                 if (ptr != NULL) ++ptr;
837         }
838
839         return(0);
840 }
841
842
843
844 /* 
845  * When a vCard is being removed from the Global Address Book room, remove it
846  * from the directory as well.
847  */
848 void vcard_delete_remove(char *room, long msgnum) {
849         struct CtdlMessage *msg;
850         char *ptr;
851         int linelen;
852
853         if (msgnum <= 0L) return;
854
855         if (strcasecmp(room, ADDRESS_BOOK_ROOM)) {
856                 return;
857         }
858
859         msg = CtdlFetchMessage(msgnum, 1);
860         if (msg == NULL) return;
861
862         ptr = msg->cm_fields['M'];
863         if (ptr == NULL) goto EOH;
864         while (ptr != NULL) {
865                 linelen = strcspn(ptr, "\n");
866                 if (linelen == 0) goto EOH;
867                 
868                 if (!strncasecmp(ptr, "Content-type: text/x-vcard", 26)) {
869                         /* Bingo!  A vCard is being deleted.
870                         */
871                         vcard_extract_internet_addresses(msg,
872                                                         CtdlDirectoryDelUser);
873 #ifdef HAVE_LDAP
874                         ctdl_vcard_to_ldap(msg, V2L_DELETE);
875 #endif
876                 }
877                 ptr = strchr((char *)ptr, '\n');
878                 if (ptr != NULL) ++ptr;
879         }
880
881 EOH:    CtdlFreeMessage(msg);
882 }
883
884
885
886 /*
887  * Get Valid Screen Names
888  */
889 void cmd_gvsn(char *argbuf)
890 {
891         if (CtdlAccessCheck(ac_logged_in)) return;
892
893         cprintf("%d valid screen names:\n", LISTING_FOLLOWS);
894         cprintf("%s\n", CC->user.fullname);
895         if ( (strlen(CC->cs_inet_fn) > 0) && (strcasecmp(CC->user.fullname, CC->cs_inet_fn)) ) {
896                 cprintf("%s\n", CC->cs_inet_fn);
897         }
898         cprintf("000\n");
899 }
900
901
902 /*
903  * Query Directory
904  */
905 void cmd_qdir(char *argbuf) {
906         char citadel_addr[256];
907         char internet_addr[256];
908
909         if (CtdlAccessCheck(ac_logged_in)) return;
910
911         extract_token(internet_addr, argbuf, 0, '|', sizeof internet_addr);
912
913         if (CtdlDirectoryLookup(citadel_addr, internet_addr, sizeof citadel_addr) != 0) {
914                 cprintf("%d %s was not found.\n",
915                         ERROR + NO_SUCH_USER, internet_addr);
916                 return;
917         }
918
919         cprintf("%d %s\n", CIT_OK, citadel_addr);
920 }
921
922 /*
923  * Query Directory, in fact an alias to match postfix tcp auth.
924  */
925 void check_get(void) {
926         char internet_addr[256];
927
928         char cmdbuf[SIZ];
929
930         time(&CC->lastcmd);
931         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
932         if (client_getln(cmdbuf, sizeof cmdbuf) < 1) {
933                 lprintf(CTDL_CRIT, "Client disconnected: ending session.\n");
934                 CC->kill_me = 1;
935                 return;
936         }
937         lprintf(CTDL_INFO, ": %s\n", cmdbuf);
938         while (strlen(cmdbuf) < 3) strcat(cmdbuf, " ");
939
940         if (strcasecmp(cmdbuf, "GET "));
941         {
942                 struct recptypes *rcpt;
943                 char *argbuf = &cmdbuf[4];
944                 
945                 extract_token(internet_addr, argbuf, 0, '|', sizeof internet_addr);
946                 rcpt = validate_recipients(internet_addr);
947                 if ((rcpt != NULL)&&
948                         (
949                          (*rcpt->recp_local != '\0')||
950                          (*rcpt->recp_room != '\0')||
951                          (*rcpt->recp_ignet != '\0')))
952                 {
953
954                         cprintf("200 OK %s\n", internet_addr);
955                         lprintf(CTDL_INFO, "sending 200 OK for the room %s\n", rcpt->display_recp);
956                 }
957                 else 
958                 {
959                         cprintf("500 REJECT noone here by that name.\n");
960                         
961                         lprintf(CTDL_INFO, "sending 500 REJECT noone here by that name: %s\n", internet_addr);
962                 }
963                 if (rcpt != NULL) free (rcpt);
964         }
965 ///     CC->kill_me = 1;
966 }
967
968 void check_get_greeting(void) {
969 /* dummy function, we have no greeting in this verry simple protocol. */
970 }
971
972
973 /*
974  * We don't know if the Contacts room exists so we just create it at login
975  */
976 void vcard_create_room(void)
977 {
978         struct ctdlroom qr;
979         struct visit vbuf;
980
981         /* Create the calendar room if it doesn't already exist */
982         create_room(USERCONTACTSROOM, 4, "", 0, 1, 0, VIEW_ADDRESSBOOK);
983
984         /* Set expiration policy to manual; otherwise objects will be lost! */
985         if (lgetroom(&qr, USERCONTACTSROOM)) {
986                 lprintf(CTDL_ERR, "Couldn't get the user CONTACTS room!\n");
987                 return;
988         }
989         qr.QRep.expire_mode = EXPIRE_MANUAL;
990         qr.QRdefaultview = VIEW_ADDRESSBOOK;    /* 2 = address book view */
991         lputroom(&qr);
992
993         /* Set the view to a calendar view */
994         CtdlGetRelationship(&vbuf, &CC->user, &qr);
995         vbuf.v_view = 2;        /* 2 = address book view */
996         CtdlSetRelationship(&vbuf, &CC->user, &qr);
997
998         return;
999 }
1000
1001
1002
1003
1004 /*
1005  * When a user logs in...
1006  */
1007 void vcard_session_login_hook(void) {
1008         struct vCard *v = NULL;
1009
1010         v = vcard_get_user(&CC->user);
1011         extract_primary_inet_email(CC->cs_inet_email, sizeof CC->cs_inet_email, v);
1012         extract_friendly_name(CC->cs_inet_fn, sizeof CC->cs_inet_fn, v);
1013         vcard_free(v);
1014
1015         vcard_create_room();
1016 }
1017
1018
1019 /* 
1020  * Turn an arbitrary RFC822 address into a struct vCard for possible
1021  * inclusion into an address book.
1022  */
1023 struct vCard *vcard_new_from_rfc822_addr(char *addr) {
1024         struct vCard *v;
1025         char user[256], node[256], name[256], email[256], n[256], uid[256];
1026         int i;
1027
1028         v = vcard_new();
1029         if (v == NULL) return(NULL);
1030
1031         process_rfc822_addr(addr, user, node, name);
1032         vcard_set_prop(v, "fn", name, 0);
1033
1034         vcard_fn_to_n(n, name, sizeof n);
1035         vcard_set_prop(v, "n", n, 0);
1036
1037         snprintf(email, sizeof email, "%s@%s", user, node);
1038         vcard_set_prop(v, "email;internet", email, 0);
1039
1040         snprintf(uid, sizeof uid, "collected: %s %s@%s", name, user, node);
1041         for (i=0; i<strlen(uid); ++i) {
1042                 if (isspace(uid[i])) uid[i] = '_';
1043                 uid[i] = tolower(uid[i]);
1044         }
1045         vcard_set_prop(v, "UID", uid, 0);
1046
1047         return(v);
1048 }
1049
1050
1051
1052 /*
1053  * This is called by store_harvested_addresses() to remove from the
1054  * list any addresses we already have in our address book.
1055  */
1056 void strip_addresses_already_have(long msgnum, void *userdata) {
1057         char *collected_addresses;
1058         struct CtdlMessage *msg = NULL;
1059         struct vCard *v;
1060         char *value = NULL;
1061         int i, j;
1062         char addr[256], user[256], node[256], name[256];
1063
1064         collected_addresses = (char *)userdata;
1065
1066         msg = CtdlFetchMessage(msgnum, 1);
1067         if (msg == NULL) return;
1068         v = vcard_load(msg->cm_fields['M']);
1069         CtdlFreeMessage(msg);
1070
1071         i = 0;
1072         while (value = vcard_get_prop(v, "email", 1, i++, 0), value != NULL) {
1073
1074                 for (j=0; j<num_tokens(collected_addresses, ','); ++j) {
1075                         extract_token(addr, collected_addresses, j, ',', sizeof addr);
1076
1077                         /* Remove the address if we already have it! */
1078                         process_rfc822_addr(addr, user, node, name);
1079                         snprintf(addr, sizeof addr, "%s@%s", user, node);
1080                         if (!strcasecmp(value, addr)) {
1081                                 remove_token(collected_addresses, j, ',');
1082                         }
1083                 }
1084
1085         }
1086
1087         vcard_free(v);
1088 }
1089
1090
1091
1092 /*
1093  * Back end function for store_harvested_addresses()
1094  */
1095 void store_this_ha(struct addresses_to_be_filed *aptr) {
1096         struct CtdlMessage *vmsg = NULL;
1097         long vmsgnum = (-1L);
1098         char *ser = NULL;
1099         struct vCard *v = NULL;
1100         char recipient[256];
1101         int i;
1102
1103         /* First remove any addresses we already have in the address book */
1104         usergoto(aptr->roomname, 0, 0, NULL, NULL);
1105         CtdlForEachMessage(MSGS_ALL, 0, NULL, "text/x-vcard", NULL,
1106                 strip_addresses_already_have, aptr->collected_addresses);
1107
1108         if (strlen(aptr->collected_addresses) > 0)
1109            for (i=0; i<num_tokens(aptr->collected_addresses, ','); ++i) {
1110
1111                 /* Make a vCard out of each address */
1112                 extract_token(recipient, aptr->collected_addresses, i, ',', sizeof recipient);
1113                 striplt(recipient);
1114                 v = vcard_new_from_rfc822_addr(recipient);
1115                 if (v != NULL) {
1116                         vmsg = malloc(sizeof(struct CtdlMessage));
1117                         memset(vmsg, 0, sizeof(struct CtdlMessage));
1118                         vmsg->cm_magic = CTDLMESSAGE_MAGIC;
1119                         vmsg->cm_anon_type = MES_NORMAL;
1120                         vmsg->cm_format_type = FMT_RFC822;
1121                         vmsg->cm_fields['A'] = strdup("Citadel");
1122                         vmsg->cm_fields['E'] =  strdup(vcard_get_prop(v, "UID", 0, 0, 0));
1123                         ser = vcard_serialize(v);
1124                         if (ser != NULL) {
1125                                 vmsg->cm_fields['M'] = malloc(strlen(ser) + 1024);
1126                                 sprintf(vmsg->cm_fields['M'],
1127                                         "Content-type: text/x-vcard"
1128                                         "\r\n\r\n%s\r\n", ser);
1129                                 free(ser);
1130                         }
1131                         vcard_free(v);
1132
1133                         lprintf(CTDL_DEBUG, "Adding contact: %s\n", recipient);
1134                         vmsgnum = CtdlSubmitMsg(vmsg, NULL, aptr->roomname);
1135                         CtdlFreeMessage(vmsg);
1136                 }
1137         }
1138
1139         free(aptr->roomname);
1140         free(aptr->collected_addresses);
1141         free(aptr);
1142 }
1143
1144
1145 /*
1146  * When a user sends a message, we may harvest one or more email addresses
1147  * from the recipient list to be added to the user's address book.  But we
1148  * want to do this asynchronously so it doesn't keep the user waiting.
1149  */
1150 void store_harvested_addresses(void) {
1151
1152         struct addresses_to_be_filed *aptr = NULL;
1153
1154         if (atbf == NULL) return;
1155
1156         begin_critical_section(S_ATBF);
1157         while (atbf != NULL) {
1158                 aptr = atbf;
1159                 atbf = atbf->next;
1160                 end_critical_section(S_ATBF);
1161                 store_this_ha(aptr);
1162                 begin_critical_section(S_ATBF);
1163         }
1164         end_critical_section(S_ATBF);
1165 }
1166
1167
1168 /* 
1169  * Function to output vCard data as plain text.  Nobody uses MSG0 anymore, so
1170  * really this is just so we expose the vCard data to the full text indexer.
1171  */
1172 void vcard_fixed_output(char *ptr, int len) {
1173         char *serialized_vcard;
1174         struct vCard *v;
1175         char *key, *value;
1176         int i = 0;
1177
1178         serialized_vcard = malloc(len + 1);
1179         safestrncpy(serialized_vcard, ptr, len+1);
1180         v = vcard_load(serialized_vcard);
1181         free(serialized_vcard);
1182
1183         i = 0;
1184         while (key = vcard_get_prop(v, "", 0, i, 1), key != NULL) {
1185                 value = vcard_get_prop(v, "", 0, i++, 0);
1186                 cprintf("%s\n", value);
1187         }
1188
1189         vcard_free(v);
1190 }
1191
1192
1193 char *serv_postfix_tcpdict(void)
1194 {
1195         CtdlRegisterServiceHook(config.c_pftcpdict_port,        /* Postfix */
1196                                 NULL,
1197                                 check_get_greeting,
1198                                 check_get,
1199                                 NULL);
1200         return "$Id$";
1201 }
1202
1203
1204
1205 char *serv_vcard_init(void)
1206 {
1207         struct ctdlroom qr;
1208         char filename[256];
1209         FILE *fp;
1210
1211         CtdlRegisterSessionHook(vcard_session_login_hook, EVT_LOGIN);
1212         CtdlRegisterMessageHook(vcard_upload_beforesave, EVT_BEFORESAVE);
1213         CtdlRegisterMessageHook(vcard_upload_aftersave, EVT_AFTERSAVE);
1214         CtdlRegisterDeleteHook(vcard_delete_remove);
1215         CtdlRegisterProtoHook(cmd_regi, "REGI", "Enter registration info");
1216         CtdlRegisterProtoHook(cmd_greg, "GREG", "Get registration info");
1217         CtdlRegisterProtoHook(cmd_igab, "IGAB",
1218                                         "Initialize Global Address Book");
1219         CtdlRegisterProtoHook(cmd_qdir, "QDIR", "Query Directory");
1220         CtdlRegisterProtoHook(cmd_gvsn, "GVSN", "Get Valid Screen Names");
1221         CtdlRegisterUserHook(vcard_newuser, EVT_NEWUSER);
1222         CtdlRegisterUserHook(vcard_purge, EVT_PURGEUSER);
1223         CtdlRegisterNetprocHook(vcard_extract_from_network);
1224         CtdlRegisterSessionHook(store_harvested_addresses, EVT_TIMER);
1225         CtdlRegisterFixedOutputHook("text/x-vcard", vcard_fixed_output);
1226
1227         /* Create the Global ADdress Book room if necessary */
1228         create_room(ADDRESS_BOOK_ROOM, 3, "", 0, 1, 0, VIEW_ADDRESSBOOK);
1229
1230         /* Set expiration policy to manual; otherwise objects will be lost! */
1231         if (!lgetroom(&qr, ADDRESS_BOOK_ROOM)) {
1232                 qr.QRep.expire_mode = EXPIRE_MANUAL;
1233                 qr.QRdefaultview = VIEW_ADDRESSBOOK;    /* 2 = address book view */
1234                 lputroom(&qr);
1235
1236                 /*
1237                  * Also make sure it has a netconfig file, so the networker runs
1238                  * on this room even if we don't share it with any other nodes.
1239                  * This allows the CANCEL messages (i.e. "Purge this vCard") to be
1240                  * purged.
1241                  */
1242                 assoc_file_name(filename, sizeof filename, &qr, ctdl_netcfg_dir);
1243                 fp = fopen(filename, "a");
1244                 if (fp != NULL) fclose(fp);
1245                 chown(filename, CTDLUID, (-1));
1246         }
1247
1248         return "$Id$";
1249 }