35f6efabb50deec8b1bfdbdf8f6de60cac307683
[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, "^[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$",
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                  */
373                 CtdlDeleteMessages(CC->room.QRname, NULL, 0, "^[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$");
374
375                 /* Make the author of the message the name of the user. */
376                 if (msg->cm_fields['A'] != NULL) {
377                         free(msg->cm_fields['A']);
378                 }
379                 msg->cm_fields['A'] = strdup(usbuf.fullname);
380         }
381
382         /* Insert or replace RFC2739-compliant free/busy URL */
383         if (yes_my_citadel_config) {
384                 sprintf(buf, "http://%s/%s.vfb",
385                         config.c_fqdn,
386                         usbuf.fullname);
387                 for (i=0; i<strlen(buf); ++i) {
388                         if (buf[i] == ' ') buf[i] = '_';
389                 }
390                 vcard_set_prop(v, "FBURL;PREF", buf, 0);
391         }
392
393         /* If the vCard has no UID, then give it one. */
394         s = vcard_get_prop(v, "UID", 0, 0, 0);
395         if (s == NULL) {
396                 generate_uuid(buf);
397                 vcard_set_prop(v, "UID", buf, 0);
398         }
399
400         /* Enforce local UID policy if applicable */
401         if (yes_my_citadel_config) {
402                 snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, msg->cm_fields['A'], NODENAME);
403                 vcard_set_prop(v, "UID", buf, 0);
404         }
405
406         /* 
407          * Set the EUID of the message to the UID of the vCard.
408          */
409         if (msg->cm_fields['E'] != NULL) free(msg->cm_fields['E']);
410         s = vcard_get_prop(v, "UID", 0, 0, 0);
411         if (s != NULL) {
412                 msg->cm_fields['E'] = strdup(s);
413                 if (msg->cm_fields['U'] == NULL) {
414                         msg->cm_fields['U'] = strdup(s);
415                 }
416         }
417
418         /*
419          * Set the Subject to the name in the vCard.
420          */
421         s = vcard_get_prop(v, "FN", 0, 0, 0);
422         if (s == NULL) {
423                 s = vcard_get_prop(v, "N", 0, 0, 0);
424         }
425         if (s != NULL) {
426                 if (msg->cm_fields['U'] != NULL) {
427                         free(msg->cm_fields['U']);
428                 }
429                 msg->cm_fields['U'] = strdup(s);
430         }
431
432         /* Re-serialize it back into the msg body */
433         ser = vcard_serialize(v);
434         if (ser != NULL) {
435                 msg->cm_fields['M'] = realloc(msg->cm_fields['M'], strlen(ser) + 1024);
436                 sprintf(msg->cm_fields['M'],
437                         "Content-type: text/vcard"
438                         "\r\n\r\n%s\r\n", ser);
439                 free(ser);
440         }
441
442         /* Now allow the save to complete. */
443         vcard_free(v);
444         return(0);
445 }
446
447
448
449 /*
450  * This handler detects whether the user is attempting to save a new
451  * vCard as part of his/her personal configuration, and handles the replace
452  * function accordingly (copy the vCard from the config room to the global
453  * address book).
454  */
455 int vcard_upload_aftersave(struct CtdlMessage *msg) {
456         char *ptr;
457         int linelen;
458         long I;
459         struct vCard *v;
460
461         if (!CC->logged_in) return(0);  /* Only do this if logged in. */
462
463         /* If this isn't the configuration room, or if this isn't a MIME
464          * message, don't bother.
465          */
466         if (msg->cm_fields['O'] == NULL) return(0);
467         if (strcasecmp(msg->cm_fields['O'], USERCONFIGROOM)) return(0);
468         if (msg->cm_format_type != 4) return(0);
469
470         ptr = msg->cm_fields['M'];
471         if (ptr == NULL) return(0);
472         while (ptr != NULL) {
473         
474                 linelen = strcspn(ptr, "\n");
475                 if (linelen == 0) return(0);    /* end of headers */    
476                 
477                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
478                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
479                         /*
480                          * Bingo!  The user is uploading a new vCard, so
481                          * copy it to the Global Address Book room.
482                          */
483
484                         I = atol(msg->cm_fields['I']);
485                         if (I < 0L) return(0);
486
487                         /* Store our Internet return address in memory */
488                         v = vcard_load(msg->cm_fields['M']);
489                         extract_primary_inet_email(CC->cs_inet_email, sizeof CC->cs_inet_email, v);
490                         extract_friendly_name(CC->cs_inet_fn, sizeof CC->cs_inet_fn, v);
491                         vcard_free(v);
492
493                         /* Put it in the Global Address Book room... */
494                         CtdlSaveMsgPointerInRoom(ADDRESS_BOOK_ROOM, I, 1, msg);
495
496                         /* ...and also in the directory database. */
497                         vcard_add_to_directory(I, NULL);
498
499                         /* Some sites want an Aide to be notified when a
500                          * user registers or re-registers...
501                          */
502                         set_mm_valid();
503
504                         /* ...which also means we need to flag the user */
505                         lgetuser(&CC->user, CC->curr_user);
506                         CC->user.flags |= (US_REGIS|US_NEEDVALID);
507                         lputuser(&CC->user);
508
509                         return(0);
510                 }
511
512                 ptr = strchr((char *)ptr, '\n');
513                 if (ptr != NULL) ++ptr;
514         }
515
516         return(0);
517 }
518
519
520
521 /*
522  * back end function used for callbacks
523  */
524 void vcard_gu_backend(long supplied_msgnum, void *userdata) {
525         long *msgnum;
526
527         msgnum = (long *) userdata;
528         *msgnum = supplied_msgnum;
529 }
530
531
532 /*
533  * If this user has a vcard on disk, read it into memory, otherwise allocate
534  * and return an empty vCard.
535  */
536 struct vCard *vcard_get_user(struct ctdluser *u) {
537         char hold_rm[ROOMNAMELEN];
538         char config_rm[ROOMNAMELEN];
539         struct CtdlMessage *msg = NULL;
540         struct vCard *v;
541         long VCmsgnum;
542
543         strcpy(hold_rm, CC->room.QRname);       /* save current room */
544         MailboxName(config_rm, sizeof config_rm, u, USERCONFIGROOM);
545
546         if (getroom(&CC->room, config_rm) != 0) {
547                 getroom(&CC->room, hold_rm);
548                 return vcard_new();
549         }
550
551         /* We want the last (and probably only) vcard in this room */
552         VCmsgnum = (-1);
553         CtdlForEachMessage(MSGS_LAST, 1, NULL, "^[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$",
554                 NULL, vcard_gu_backend, (void *)&VCmsgnum );
555         getroom(&CC->room, hold_rm);    /* return to saved room */
556
557         if (VCmsgnum < 0L) return vcard_new();
558
559         msg = CtdlFetchMessage(VCmsgnum, 1);
560         if (msg == NULL) return vcard_new();
561
562         v = vcard_load(msg->cm_fields['M']);
563         CtdlFreeMessage(msg);
564         return v;
565 }
566
567
568 /*
569  * Store this user's vCard in the appropriate place
570  */
571 /*
572  * Write our config to disk
573  */
574 void vcard_write_user(struct ctdluser *u, struct vCard *v) {
575         char temp[PATH_MAX];
576         FILE *fp;
577         char *ser;
578
579         CtdlMakeTempFileName(temp, sizeof temp);
580         ser = vcard_serialize(v);
581
582         fp = fopen(temp, "w");
583         if (fp == NULL) return;
584         if (ser == NULL) {
585                 fprintf(fp, "begin:vcard\r\nend:vcard\r\n");
586         } else {
587                 fwrite(ser, strlen(ser), 1, fp);
588                 free(ser);
589         }
590         fclose(fp);
591
592         /* This handy API function does all the work for us.
593          * NOTE: normally we would want to set that last argument to 1, to
594          * force the system to delete the user's old vCard.  But it doesn't
595          * have to, because the vcard_upload_beforesave() hook above
596          * is going to notice what we're trying to do, and delete the old vCard.
597          */
598         CtdlWriteObject(USERCONFIGROOM, /* which room */
599                         "text/vcard",   /* MIME type */
600                         temp,           /* temp file */
601                         u,              /* which user */
602                         0,              /* not binary */
603                         0,              /* don't delete others of this type */
604                         0);             /* no flags */
605
606         unlink(temp);
607 }
608
609
610
611 /*
612  * Old style "enter registration info" command.  This function simply honors
613  * the REGI protocol command, translates the entered parameters into a vCard,
614  * and enters the vCard into the user's configuration.
615  */
616 void cmd_regi(char *argbuf) {
617         int a,b,c;
618         char buf[SIZ];
619         struct vCard *my_vcard;
620
621         char tmpaddr[SIZ];
622         char tmpcity[SIZ];
623         char tmpstate[SIZ];
624         char tmpzip[SIZ];
625         char tmpaddress[SIZ];
626         char tmpcountry[SIZ];
627
628         unbuffer_output();
629
630         if (!(CC->logged_in)) {
631                 cprintf("%d Not logged in.\n",ERROR + NOT_LOGGED_IN);
632                 return;
633         }
634
635         my_vcard = vcard_get_user(&CC->user);
636         strcpy(tmpaddr, "");
637         strcpy(tmpcity, "");
638         strcpy(tmpstate, "");
639         strcpy(tmpzip, "");
640         strcpy(tmpcountry, "USA");
641
642         cprintf("%d Send registration...\n", SEND_LISTING);
643         a=0;
644         while (client_getln(buf, sizeof buf), strcmp(buf,"000")) {
645                 if (a==0) vcard_set_prop(my_vcard, "n", buf, 0);
646                 if (a==1) strcpy(tmpaddr, buf);
647                 if (a==2) strcpy(tmpcity, buf);
648                 if (a==3) strcpy(tmpstate, buf);
649                 if (a==4) {
650                         for (c=0; c<strlen(buf); ++c) {
651                                 if ((buf[c]>='0') && (buf[c]<='9')) {
652                                         b = strlen(tmpzip);
653                                         tmpzip[b] = buf[c];
654                                         tmpzip[b+1] = 0;
655                                 }
656                         }
657                 }
658                 if (a==5) vcard_set_prop(my_vcard, "tel;home", buf, 0);
659                 if (a==6) vcard_set_prop(my_vcard, "email;internet", buf, 0);
660                 if (a==7) strcpy(tmpcountry, buf);
661                 ++a;
662         }
663
664         snprintf(tmpaddress, sizeof tmpaddress, ";;%s;%s;%s;%s;%s",
665                 tmpaddr, tmpcity, tmpstate, tmpzip, tmpcountry);
666         vcard_set_prop(my_vcard, "adr", tmpaddress, 0);
667         vcard_write_user(&CC->user, my_vcard);
668         vcard_free(my_vcard);
669 }
670
671
672 /*
673  * Protocol command to fetch registration info for a user
674  */
675 void cmd_greg(char *argbuf)
676 {
677         struct ctdluser usbuf;
678         struct vCard *v;
679         char *s;
680         char who[USERNAME_SIZE];
681         char adr[256];
682         char buf[256];
683
684         extract_token(who, argbuf, 0, '|', sizeof who);
685
686         if (!(CC->logged_in)) {
687                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
688                 return;
689         }
690
691         if (!strcasecmp(who,"_SELF_")) strcpy(who,CC->curr_user);
692
693         if ((CC->user.axlevel < 6) && (strcasecmp(who,CC->curr_user))) {
694                 cprintf("%d Higher access required.\n",
695                         ERROR + HIGHER_ACCESS_REQUIRED);
696                 return;
697         }
698
699         if (getuser(&usbuf, who) != 0) {
700                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, who);
701                 return;
702         }
703
704         v = vcard_get_user(&usbuf);
705
706         cprintf("%d %s\n", LISTING_FOLLOWS, usbuf.fullname);
707         cprintf("%ld\n", usbuf.usernum);
708         cprintf("%s\n", usbuf.password);
709         s = vcard_get_prop(v, "n", 0, 0, 0);
710         cprintf("%s\n", s ? s : " ");   /* name */
711
712         s = vcard_get_prop(v, "adr", 0, 0, 0);
713         snprintf(adr, sizeof adr, "%s", s ? s : " ");/* address... */
714
715         extract_token(buf, adr, 2, ';', sizeof buf);
716         cprintf("%s\n", buf);                           /* street */
717         extract_token(buf, adr, 3, ';', sizeof buf);
718         cprintf("%s\n", buf);                           /* city */
719         extract_token(buf, adr, 4, ';', sizeof buf);
720         cprintf("%s\n", buf);                           /* state */
721         extract_token(buf, adr, 5, ';', sizeof buf);
722         cprintf("%s\n", buf);                           /* zip */
723
724         s = vcard_get_prop(v, "tel;home", 0, 0, 0);
725         if (s == NULL) s = vcard_get_prop(v, "tel", 1, 0, 0);
726         if (s != NULL) {
727                 cprintf("%s\n", s);
728         }
729         else {
730                 cprintf(" \n");
731         }
732
733         cprintf("%d\n", usbuf.axlevel);
734
735         s = vcard_get_prop(v, "email;internet", 0, 0, 0);
736         cprintf("%s\n", s ? s : " ");
737         s = vcard_get_prop(v, "adr", 0, 0, 0);
738         snprintf(adr, sizeof adr, "%s", s ? s : " ");/* address... */
739
740         extract_token(buf, adr, 6, ';', sizeof buf);
741         cprintf("%s\n", buf);                           /* country */
742         cprintf("000\n");
743 }
744
745
746
747 /*
748  * When a user is being created, create his/her vCard.
749  */
750 void vcard_newuser(struct ctdluser *usbuf) {
751         char vname[256];
752         char buf[256];
753         int i;
754         struct vCard *v;
755
756         vcard_fn_to_n(vname, usbuf->fullname, sizeof vname);
757         lprintf(CTDL_DEBUG, "Converted <%s> to <%s>\n", usbuf->fullname, vname);
758
759         /* Create and save the vCard */
760         v = vcard_new();
761         if (v == NULL) return;
762         sprintf(buf, "%s@%s", usbuf->fullname, config.c_fqdn);
763         for (i=0; i<strlen(buf); ++i) {
764                 if (buf[i] == ' ') buf[i] = '_';
765         }
766         vcard_add_prop(v, "fn", usbuf->fullname);
767         vcard_add_prop(v, "n", vname);
768         vcard_add_prop(v, "adr", "adr:;;_;_;_;00000;__");
769         vcard_add_prop(v, "email;internet", buf);
770         vcard_write_user(usbuf, v);
771         vcard_free(v);
772 }
773
774
775 /*
776  * When a user is being deleted, we have to remove his/her vCard.
777  * This is accomplished by issuing a message with 'CANCEL' in the S (special)
778  * field, and the same Exclusive ID as the existing card.
779  */
780 void vcard_purge(struct ctdluser *usbuf) {
781         struct CtdlMessage *msg;
782         char buf[SIZ];
783
784         msg = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
785         if (msg == NULL) return;
786         memset(msg, 0, sizeof(struct CtdlMessage));
787
788         msg->cm_magic = CTDLMESSAGE_MAGIC;
789         msg->cm_anon_type = MES_NORMAL;
790         msg->cm_format_type = 0;
791         msg->cm_fields['A'] = strdup(usbuf->fullname);
792         msg->cm_fields['O'] = strdup(ADDRESS_BOOK_ROOM);
793         msg->cm_fields['N'] = strdup(NODENAME);
794         msg->cm_fields['M'] = strdup("Purge this vCard\n");
795
796         snprintf(buf, sizeof buf, VCARD_EXT_FORMAT,
797                         msg->cm_fields['A'], NODENAME);
798         msg->cm_fields['E'] = strdup(buf);
799
800         msg->cm_fields['S'] = strdup("CANCEL");
801
802         CtdlSubmitMsg(msg, NULL, ADDRESS_BOOK_ROOM);
803         CtdlFreeMessage(msg);
804 }
805
806
807 /*
808  * Grab vCard directory stuff out of incoming network messages
809  */
810 int vcard_extract_from_network(struct CtdlMessage *msg, char *target_room) {
811         char *ptr;
812         int linelen;
813
814         if (msg == NULL) return(0);
815
816         if (strcasecmp(target_room, ADDRESS_BOOK_ROOM)) {
817                 return(0);
818         }
819
820         if (msg->cm_format_type != 4) return(0);
821
822         ptr = msg->cm_fields['M'];
823         if (ptr == NULL) return(0);
824         while (ptr != NULL) {
825         
826                 linelen = strcspn(ptr, "\n");
827                 if (linelen == 0) return(0);    /* end of headers */    
828                 
829                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
830                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
831                         /* It's a vCard.  Add it to the directory. */
832                         vcard_extract_internet_addresses(msg, CtdlDirectoryAddUser);
833                         return(0);
834                 }
835
836                 ptr = strchr((char *)ptr, '\n');
837                 if (ptr != NULL) ++ptr;
838         }
839
840         return(0);
841 }
842
843
844
845 /* 
846  * When a vCard is being removed from the Global Address Book room, remove it
847  * from the directory as well.
848  */
849 void vcard_delete_remove(char *room, long msgnum) {
850         struct CtdlMessage *msg;
851         char *ptr;
852         int linelen;
853
854         if (msgnum <= 0L) return;
855
856         if (strcasecmp(room, ADDRESS_BOOK_ROOM)) {
857                 return;
858         }
859
860         msg = CtdlFetchMessage(msgnum, 1);
861         if (msg == NULL) return;
862
863         ptr = msg->cm_fields['M'];
864         if (ptr == NULL) goto EOH;
865         while (ptr != NULL) {
866                 linelen = strcspn(ptr, "\n");
867                 if (linelen == 0) goto EOH;
868                 
869                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
870                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
871                         /* Bingo!  A vCard is being deleted. */
872                         vcard_extract_internet_addresses(msg, 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, "^[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$", 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/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         CtdlRegisterFixedOutputHook("text/vcard", vcard_fixed_output);
1227
1228         /* Create the Global ADdress Book room if necessary */
1229         create_room(ADDRESS_BOOK_ROOM, 3, "", 0, 1, 0, VIEW_ADDRESSBOOK);
1230
1231         /* Set expiration policy to manual; otherwise objects will be lost! */
1232         if (!lgetroom(&qr, ADDRESS_BOOK_ROOM)) {
1233                 qr.QRep.expire_mode = EXPIRE_MANUAL;
1234                 qr.QRdefaultview = VIEW_ADDRESSBOOK;    /* 2 = address book view */
1235                 lputroom(&qr);
1236
1237                 /*
1238                  * Also make sure it has a netconfig file, so the networker runs
1239                  * on this room even if we don't share it with any other nodes.
1240                  * This allows the CANCEL messages (i.e. "Purge this vCard") to be
1241                  * purged.
1242                  */
1243                 assoc_file_name(filename, sizeof filename, &qr, ctdl_netcfg_dir);
1244                 fp = fopen(filename, "a");
1245                 if (fp != NULL) fclose(fp);
1246                 chown(filename, CTDLUID, (-1));
1247         }
1248
1249         return "$Id$";
1250 }