more moving towards ldap sync ... lots of refactoring
[citadel.git] / citadel / modules / vcard / serv_vcard.c
1 /*
2  * A server-side module for Citadel which supports address book information
3  * using the standard vCard format.
4  * 
5  * Copyright (c) 1999-2017 by the citadel.org team
6  *
7  * This program is open source software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 3.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15
16 /*
17  * Format of the "Exclusive ID" field of the message containing a user's
18  * vCard.  Doesn't matter what it really looks like as long as it's both
19  * unique and consistent (because we use it for replication checking to
20  * delete the old vCard network-wide when the user enters a new one).
21  */
22 #define VCARD_EXT_FORMAT        "Citadel vCard: personal card for %s at %s"
23
24 /*
25  * Citadel will accept either text/vcard or text/x-vcard as the MIME type
26  * for a vCard.  The following definition determines which one it *generates*
27  * when serializing.
28  */
29 #define VCARD_MIME_TYPE         "text/x-vcard"
30
31 #include "sysdep.h"
32 #include <stdlib.h>
33 #include <unistd.h>
34 #include <stdio.h>
35 #include <fcntl.h>
36 #include <signal.h>
37 #include <pwd.h>
38 #include <errno.h>
39 #include <ctype.h>
40 #include <sys/types.h>
41
42 #if TIME_WITH_SYS_TIME
43 # include <sys/time.h>
44 # include <time.h>
45 #else
46 # if HAVE_SYS_TIME_H
47 #  include <sys/time.h>
48 # else
49 #  include <time.h>
50 # endif
51 #endif
52
53 #include <sys/wait.h>
54 #include <string.h>
55 #include <limits.h>
56 #include <libcitadel.h>
57 #include "citadel.h"
58 #include "server.h"
59 #include "citserver.h"
60 #include "support.h"
61 #include "config.h"
62 #include "control.h"
63 #include "user_ops.h"
64 #include "database.h"
65 #include "msgbase.h"
66 #include "room_ops.h"
67 #include "internet_addressing.h"
68 #include "serv_vcard.h"
69 #include "citadel_ldap.h"
70 #include "ctdl_module.h"
71
72 /*
73  * set global flag calling for an aide to validate new users
74  */
75 void set_mm_valid(void) {
76         int flags = 0;
77
78         begin_critical_section(S_CONTROL);
79         flags = CtdlGetConfigInt("MMflags");
80         flags = flags | MM_VALID ;
81         CtdlSetConfigInt("MMflags", flags);
82         end_critical_section(S_CONTROL);
83 }
84
85
86
87 /*
88  * Extract Internet e-mail addresses from a message containing a vCard, and
89  * perform a callback for any found.
90  */
91 void vcard_extract_internet_addresses(struct CtdlMessage *msg, int (*callback)(char *, char *) ) {
92         struct vCard *v;
93         char *s;
94         char *k;
95         char *addr;
96         char citadel_address[SIZ];
97         int instance = 0;
98         int found_something = 0;
99
100         if (CM_IsEmpty(msg, eAuthor)) return;
101         if (CM_IsEmpty(msg, eNodeName)) return;
102         snprintf(citadel_address, sizeof citadel_address, "%s @ %s",
103                 msg->cm_fields[eAuthor], msg->cm_fields[eNodeName]);
104
105         v = vcard_load(msg->cm_fields[eMesageText]);
106         if (v == NULL) return;
107
108         /* Go through the vCard searching for *all* instances of
109          * the "email;internet" key
110          */
111         do {
112                 s = vcard_get_prop(v, "email", 1, instance, 0);         /* get any 'email' field */
113                 k = vcard_get_prop(v, "email", 1, instance++, 1);       /* but also learn it with attrs */
114                 if ( (s != NULL) && (k != NULL) && (bmstrcasestr(k, "internet")) ) {
115                         addr = strdup(s);
116                         striplt(addr);
117                         if (!IsEmptyStr(addr)) {
118                                 if (callback != NULL) {
119                                         callback(addr, citadel_address);
120                                 }
121                         }
122                         free(addr);
123                         found_something = 1;
124                 }
125                 else {
126                         found_something = 0;
127                 }
128         } while(found_something);
129
130         vcard_free(v);
131 }
132
133
134 ///TODO: gettext!
135 #define _(a) a
136
137
138 /*
139  * See if there is a valid Internet address in a vCard to use for outbound
140  * Internet messages.  If there is, stick it in the buffer.
141  */
142 void extract_inet_email_addrs(char *emailaddrbuf, size_t emailaddrbuf_len,
143                               char *secemailaddrbuf, size_t secemailaddrbuf_len,
144                               struct vCard *v,
145                               int local_addrs_only)
146 {
147         struct CitContext *CCC = CC;            /* put this on the stack, just for speed */
148         char *s, *k, *addr;
149         int instance = 0;
150         int IsDirectoryAddress;
151         int saved_instance = 0;
152
153         /* Go through the vCard searching for *all* Internet email addresses
154          */
155         while (s = vcard_get_prop(v, "email", 1, instance, 0),  s != NULL) {
156                 k = vcard_get_prop(v, "email", 1, instance, 1);
157                 if ( (s != NULL) && (k != NULL) && (bmstrcasestr(k, "internet")) ) {
158                         addr = strdup(s);
159                         striplt(addr);
160                         if (!IsEmptyStr(addr)) {
161                                 IsDirectoryAddress = IsDirectory(addr, 1);
162                                 if ( IsDirectoryAddress || !local_addrs_only)
163                                 {
164                                         ++saved_instance;
165                                         if ((saved_instance == 1) && (emailaddrbuf != NULL)) {
166                                                 safestrncpy(emailaddrbuf, addr, emailaddrbuf_len);
167                                         }
168                                         else if ((saved_instance == 2) && (secemailaddrbuf != NULL)) {
169                                                 safestrncpy(secemailaddrbuf, addr, secemailaddrbuf_len);
170                                         }
171                                         else if ((saved_instance > 2) && (secemailaddrbuf != NULL)) {
172                                                 if ( (strlen(addr) + strlen(secemailaddrbuf) + 2) 
173                                                 < secemailaddrbuf_len ) {
174                                                         strcat(secemailaddrbuf, "|");
175                                                         strcat(secemailaddrbuf, addr);
176                                                 }
177                                         }
178                                 }
179                                 if (!IsDirectoryAddress && local_addrs_only)
180                                 {
181                                         StrBufAppendPrintf(CCC->StatusMessage, "\n%d|", ERROR+ ILLEGAL_VALUE);
182                                         StrBufAppendBufPlain(CCC->StatusMessage, addr, -1, 0);
183                                         StrBufAppendBufPlain(CCC->StatusMessage, HKEY("|"), 0);
184                                         StrBufAppendBufPlain(CCC->StatusMessage, _("unable to add this emailaddress; its not matching our domain."), -1, 0);
185                                 }
186                         }
187                         free(addr);
188                 }
189                 ++instance;
190         }
191 }
192
193
194
195 /*
196  * See if there is a name / screen name / friendly name  in a vCard to use for outbound
197  * Internet messages.  If there is, stick it in the buffer.
198  */
199 void extract_friendly_name(char *namebuf, size_t namebuf_len, struct vCard *v)
200 {
201         char *s;
202
203         s = vcard_get_prop(v, "fn", 1, 0, 0);
204         if (s == NULL) {
205                 s = vcard_get_prop(v, "n", 1, 0, 0);
206         }
207
208         if (s != NULL) {
209                 safestrncpy(namebuf, s, namebuf_len);
210         }
211 }
212
213
214 /*
215  * Callback function for vcard_upload_beforesave() hunts for the real vcard in the MIME structure
216  */
217 void vcard_extract_vcard(char *name, char *filename, char *partnum, char *disp,
218                    void *content, char *cbtype, char *cbcharset, size_t length,
219                    char *encoding, char *cbid, void *cbuserdata)
220 {
221         struct vCard **v = (struct vCard **) cbuserdata;
222
223         if (  (!strcasecmp(cbtype, "text/x-vcard"))
224            || (!strcasecmp(cbtype, "text/vcard")) ) {
225
226                 syslog(LOG_DEBUG, "vcard: part %s contains a vCard!  Loading...", partnum);
227                 if (*v != NULL) {
228                         vcard_free(*v);
229                 }
230                 *v = vcard_load(content);
231         }
232 }
233
234
235 /*
236  * This handler detects whether the user is attempting to save a new
237  * vCard as part of his/her personal configuration, and handles the replace
238  * function accordingly (delete the user's existing vCard in the config room
239  * and in the global address book).
240  */
241 int vcard_upload_beforesave(struct CtdlMessage *msg, recptypes *recp) {
242         struct CitContext *CCC = CC;
243         char *s;
244         char buf[SIZ];
245         struct ctdluser usbuf;
246         long what_user;
247         struct vCard *v = NULL;
248         char *ser = NULL;
249         int i = 0;
250         int yes_my_citadel_config = 0;
251         int yes_any_vcard_room = 0;
252
253         if ((!CCC->logged_in) && (CCC->vcard_updated_by_ldap==0)) return(0);    /* Only do this if logged in, or if ldap changed the vcard. */
254
255         /* Is this some user's "My Citadel Config" room? */
256         if (((CCC->room.QRflags & QR_MAILBOX) != 0) &&
257               (!strcasecmp(&CCC->room.QRname[11], USERCONFIGROOM)) ) {
258                 /* Yes, we want to do this */
259                 yes_my_citadel_config = 1;
260 #ifdef VCARD_SAVES_BY_AIDES_ONLY
261                 /* Prevent non-aides from performing registration changes, but ldap is ok. */
262                 if ((CCC->user.axlevel < AxAideU) && (CCC->vcard_updated_by_ldap==0)) {
263                         return(1);
264                 }
265 #endif
266
267         }
268
269         /* Is this a room with an address book in it? */
270         if (CCC->room.QRdefaultview == VIEW_ADDRESSBOOK) {
271                 yes_any_vcard_room = 1;
272         }
273
274         /* If neither condition exists, don't run this hook. */
275         if ( (!yes_my_citadel_config) && (!yes_any_vcard_room) ) {
276                 return(0);
277         }
278
279         /* If this isn't a MIME message, don't bother. */
280         if (msg->cm_format_type != 4) return(0);
281
282         /* Ok, if we got this far, look into the situation further... */
283
284         if (CM_IsEmpty(msg, eMesageText)) return(0);
285
286         mime_parser(CM_RANGE(msg, eMesageText),
287                     *vcard_extract_vcard,
288                     NULL, NULL,
289                     &v,         /* user data ptr - put the vcard here */
290                     0
291         );
292
293         if (v == NULL) return(0);       /* no vCards were found in this message */
294
295         /* If users cannot create their own accounts, they cannot re-register either. */
296         if ( (yes_my_citadel_config) &&
297              (CtdlGetConfigInt("c_disable_newu")) &&
298              (CCC->user.axlevel < AxAideU) &&
299              (CCC->vcard_updated_by_ldap==0) )
300         {
301                 return(1);
302         }
303
304         vcard_get_prop(v, "fn", 1, 0, 0);
305
306
307         if (yes_my_citadel_config) {
308                 /* Bingo!  The user is uploading a new vCard, so
309                  * delete the old one.  First, figure out which user
310                  * is being re-registered...
311                  */
312                 what_user = atol(CCC->room.QRname);
313
314                 if (what_user == CCC->user.usernum) {
315                         /* It's the logged in user.  That was easy. */
316                         memcpy(&usbuf, &CCC->user, sizeof(struct ctdluser));
317                 }
318                 
319                 else if (CtdlGetUserByNumber(&usbuf, what_user) == 0) {
320                         /* We fetched a valid user record */
321                 }
322
323                 else {
324                         /* somebody set up us the bomb! */
325                         yes_my_citadel_config = 0;
326                 }
327         }
328         
329         if (yes_my_citadel_config) {
330                 /* Delete the user's old vCard.  This would probably
331                  * get taken care of by the replication check, but we
332                  * want to make sure there is absolutely only one
333                  * vCard in the user's config room at all times.
334                  *
335                  */
336                 CtdlDeleteMessages(CCC->room.QRname, NULL, 0, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$");
337
338                 /* Make the author of the message the name of the user. */
339                 if (!IsEmptyStr(usbuf.fullname)) {
340                         CM_SetField(msg, eAuthor, usbuf.fullname, strlen(usbuf.fullname));
341                 }
342         }
343
344         /* Insert or replace RFC2739-compliant free/busy URL */
345         if (yes_my_citadel_config) {
346                 sprintf(buf, "http://%s/%s.vfb",
347                         CtdlGetConfigStr("c_fqdn"),
348                         usbuf.fullname);
349                 for (i=0; buf[i]; ++i) {
350                         if (buf[i] == ' ') buf[i] = '_';
351                 }
352                 vcard_set_prop(v, "FBURL;PREF", buf, 0);
353         }
354
355
356         s = vcard_get_prop(v, "UID", 1, 0, 0);
357         if (s == NULL) { /* Note LDAP auth sets UID from the LDAP UUID, use that if it exists. */
358           /* Enforce local UID policy if applicable */
359           if (yes_my_citadel_config) {
360                 snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, msg->cm_fields[eAuthor], NODENAME);
361           } else {
362                 /* If the vCard has no UID, then give it one. */
363                 generate_uuid(buf);
364           }
365           vcard_set_prop(v, "UID", buf, 0);
366     }
367
368
369         /* 
370          * Set the EUID of the message to the UID of the vCard.
371          */
372         CM_FlushField(msg, eExclusiveID);
373
374         s = vcard_get_prop(v, "UID", 1, 0, 0);
375         if (!IsEmptyStr(s)) {
376                 CM_SetField(msg, eExclusiveID, s, strlen(s));
377                 if (CM_IsEmpty(msg, eMsgSubject)) {
378                         CM_CopyField(msg, eMsgSubject, eExclusiveID);
379                 }
380         }
381
382         /*
383          * Set the Subject to the name in the vCard.
384          */
385         s = vcard_get_prop(v, "FN", 1, 0, 0);
386         if (s == NULL) {
387                 s = vcard_get_prop(v, "N", 1, 0, 0);
388         }
389         if (!IsEmptyStr(s)) {
390                 CM_SetField(msg, eMsgSubject, s, strlen(s));
391         }
392
393         /* Re-serialize it back into the msg body */
394         ser = vcard_serialize(v);
395         if (!IsEmptyStr(ser)) {
396                 StrBuf *buf;
397                 long serlen;
398
399                 serlen = strlen(ser);
400                 buf = NewStrBufPlain(NULL, serlen + 1024);
401
402                 StrBufAppendBufPlain(buf, HKEY("Content-type: " VCARD_MIME_TYPE "\r\n\r\n"), 0);
403                 StrBufAppendBufPlain(buf, ser, serlen, 0);
404                 StrBufAppendBufPlain(buf, HKEY("\r\n"), 0);
405                 CM_SetAsFieldSB(msg, eMesageText, &buf);
406                 free(ser);
407         }
408
409         /* Now allow the save to complete. */
410         vcard_free(v);
411         return(0);
412 }
413
414
415
416 /*
417  * This handler detects whether the user is attempting to save a new
418  * vCard as part of his/her personal configuration, and handles the replace
419  * function accordingly (copy the vCard from the config room to the global
420  * address book).
421  */
422 int vcard_upload_aftersave(struct CtdlMessage *msg, recptypes *recp) {
423         struct CitContext *CCC = CC;
424         char *ptr;
425         int linelen;
426         long I;
427         struct vCard *v;
428         int is_UserConf=0;
429         int is_MY_UserConf=0;
430         int is_GAB=0;
431         char roomname[ROOMNAMELEN];
432
433         if (msg->cm_format_type != 4) return(0);
434         if ((!CCC->logged_in) && (CCC->vcard_updated_by_ldap==0)) return(0);    /* Only do this if logged in, or if ldap changed the vcard. */
435
436         /* We're interested in user config rooms only. */
437
438         if ( !IsEmptyStr(CCC->room.QRname) &&
439              (strlen(CCC->room.QRname) >= 12) &&
440              (!strcasecmp(&CCC->room.QRname[11], USERCONFIGROOM)) ) {
441                 is_UserConf = 1;        /* It's someone's config room */
442         }
443         CtdlMailboxName(roomname, sizeof roomname, &CCC->user, USERCONFIGROOM);
444         if (!strcasecmp(CCC->room.QRname, roomname)) {
445                 is_UserConf = 1;
446                 is_MY_UserConf = 1;     /* It's MY config room */
447         }
448         if (!strcasecmp(CCC->room.QRname, ADDRESS_BOOK_ROOM)) {
449                 is_GAB = 1;             /* It's the Global Address Book */
450         }
451
452         if (!is_UserConf && !is_GAB) return(0);
453
454         if (CM_IsEmpty(msg, eMesageText))
455                 return 0;
456
457         ptr = msg->cm_fields[eMesageText];
458
459         CCC->vcard_updated_by_ldap=0;  /* As this will write LDAP's previous changes, disallow LDAP change auth until next LDAP change. */ 
460
461         NewStrBufDupAppendFlush(&CCC->StatusMessage, NULL, NULL, 0);
462
463         StrBufPrintf(CCC->StatusMessage, "%d\n", LISTING_FOLLOWS);
464
465         while (ptr != NULL) {
466         
467                 linelen = strcspn(ptr, "\n");
468                 if (linelen == 0) return(0);    /* end of headers */    
469                 
470                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
471                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
472                         /*
473                          * Bingo!  The user is uploading a new vCard, so
474                          * copy it to the Global Address Book room.
475                          */
476
477                         I = atol(msg->cm_fields[eVltMsgNum]);
478                         if (I <= 0L) return(0);
479
480                         /* Store our friendly/display name in memory */
481                         if (is_MY_UserConf) {
482                                 v = vcard_load(msg->cm_fields[eMesageText]);
483                                 extract_friendly_name(CCC->cs_inet_fn, sizeof CCC->cs_inet_fn, v);
484                                 vcard_free(v);
485                         }
486
487                         if (!is_GAB)
488                         {       // This is not the GAB
489                                 /* Put it in the Global Address Book room... */
490                                 CtdlSaveMsgPointerInRoom(ADDRESS_BOOK_ROOM, I, 1, msg);
491                         }
492
493                         /* Some sites want an Aide to be notified when a
494                          * user registers or re-registers
495                          * But if the user was an Aide or was edited by an Aide then we can
496                          * Assume they don't need validating.
497                          */
498                         if (CCC->user.axlevel >= AxAideU) {
499                                 CtdlLockGetCurrentUser();
500                                 CCC->user.flags |= US_REGIS;
501                                 CtdlPutCurrentUserLock();
502                                 return (0);
503                         }
504                         
505                         set_mm_valid();
506
507                         /* ...which also means we need to flag the user */
508                         CtdlLockGetCurrentUser();
509                         CCC->user.flags |= (US_REGIS|US_NEEDVALID);
510                         CtdlPutCurrentUserLock();
511
512                         return(0);
513                 }
514
515                 ptr = strchr((char *)ptr, '\n');
516                 if (ptr != NULL) ++ptr;
517         }
518
519         return(0);
520 }
521
522
523
524 /*
525  * back end function used for callbacks
526  */
527 void vcard_gu_backend(long supplied_msgnum, void *userdata) {
528         long *msgnum;
529
530         msgnum = (long *) userdata;
531         *msgnum = supplied_msgnum;
532 }
533
534
535 /*
536  * If this user has a vcard on disk, read it into memory, otherwise allocate
537  * and return an empty vCard.
538  */
539 struct vCard *vcard_get_user(struct ctdluser *u) {
540         struct CitContext *CCC = CC;
541         char hold_rm[ROOMNAMELEN];
542         char config_rm[ROOMNAMELEN];
543         struct CtdlMessage *msg = NULL;
544         struct vCard *v;
545         long VCmsgnum;
546
547         strcpy(hold_rm, CCC->room.QRname);      /* save current room */
548         CtdlMailboxName(config_rm, sizeof config_rm, u, USERCONFIGROOM);
549
550         if (CtdlGetRoom(&CCC->room, config_rm) != 0) {
551                 CtdlGetRoom(&CCC->room, hold_rm);
552                 return vcard_new();
553         }
554
555         /* We want the last (and probably only) vcard in this room */
556         VCmsgnum = (-1);
557         CtdlForEachMessage(MSGS_LAST, 1, NULL, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$",
558                 NULL, vcard_gu_backend, (void *)&VCmsgnum );
559         CtdlGetRoom(&CCC->room, hold_rm);       /* return to saved room */
560
561         if (VCmsgnum < 0L) return vcard_new();
562
563         msg = CtdlFetchMessage(VCmsgnum, 1, 1);
564         if (msg == NULL) return vcard_new();
565
566         v = vcard_load(msg->cm_fields[eMesageText]);
567         CM_Free(msg);
568         return v;
569 }
570
571
572 /*
573  * Store this user's vCard in the appropriate place
574  */
575 /*
576  * Write our config to disk
577  */
578 void vcard_write_user(struct ctdluser *u, struct vCard *v) {
579         char *ser;
580
581         ser = vcard_serialize(v);
582         if (ser == NULL) {
583                 ser = strdup("begin:vcard\r\nend:vcard\r\n");
584         }
585         if (ser == NULL) return;
586
587         /* This handy API function does all the work for us.
588          * NOTE: normally we would want to set that last argument to 1, to
589          * force the system to delete the user's old vCard.  But it doesn't
590          * have to, because the vcard_upload_beforesave() hook above
591          * is going to notice what we're trying to do, and delete the old vCard.
592          */
593         CtdlWriteObject(USERCONFIGROOM,         /* which room */
594                         VCARD_MIME_TYPE,        /* MIME type */
595                         ser,                    /* data */
596                         strlen(ser)+1,          /* length */
597                         u,                      /* which user */
598                         0,                      /* not binary */
599                         0,                      /* don't delete others of this type */
600                         0);                     /* no flags */
601
602         free(ser);
603 }
604
605
606
607 /*
608  * Old style "enter registration info" command.  This function simply honors
609  * the REGI protocol command, translates the entered parameters into a vCard,
610  * and enters the vCard into the user's configuration.
611  */
612 void cmd_regi(char *argbuf) {
613         struct CitContext *CCC = CC;
614         int a,b,c;
615         char buf[SIZ];
616         struct vCard *my_vcard;
617
618         char tmpaddr[SIZ];
619         char tmpcity[SIZ];
620         char tmpstate[SIZ];
621         char tmpzip[SIZ];
622         char tmpaddress[SIZ];
623         char tmpcountry[SIZ];
624
625         unbuffer_output();
626
627         if (!(CCC->logged_in)) {
628                 cprintf("%d Not logged in.\n",ERROR + NOT_LOGGED_IN);
629                 return;
630         }
631
632         /* If users cannot create their own accounts, they cannot re-register either. */
633         if ( (CtdlGetConfigInt("c_disable_newu")) && (CCC->user.axlevel < AxAideU) ) {
634                 cprintf("%d Self-service registration is not allowed here.\n",
635                         ERROR + HIGHER_ACCESS_REQUIRED);
636         }
637
638         my_vcard = vcard_get_user(&CCC->user);
639         strcpy(tmpaddr, "");
640         strcpy(tmpcity, "");
641         strcpy(tmpstate, "");
642         strcpy(tmpzip, "");
643         strcpy(tmpcountry, "USA");
644
645         cprintf("%d Send registration...\n", SEND_LISTING);
646         a=0;
647         while (client_getln(buf, sizeof buf), strcmp(buf,"000")) {
648                 if (a==0) vcard_set_prop(my_vcard, "n", buf, 0);
649                 if (a==1) strcpy(tmpaddr, buf);
650                 if (a==2) strcpy(tmpcity, buf);
651                 if (a==3) strcpy(tmpstate, buf);
652                 if (a==4) {
653                         for (c=0; buf[c]; ++c) {
654                                 if ((buf[c]>='0') && (buf[c]<='9')) {
655                                         b = strlen(tmpzip);
656                                         tmpzip[b] = buf[c];
657                                         tmpzip[b+1] = 0;
658                                 }
659                         }
660                 }
661                 if (a==5) vcard_set_prop(my_vcard, "tel", buf, 0);
662                 if (a==6) vcard_set_prop(my_vcard, "email;internet", buf, 0);
663                 if (a==7) strcpy(tmpcountry, buf);
664                 ++a;
665         }
666
667         snprintf(tmpaddress, sizeof tmpaddress, ";;%s;%s;%s;%s;%s",
668                 tmpaddr, tmpcity, tmpstate, tmpzip, tmpcountry);
669         vcard_set_prop(my_vcard, "adr", tmpaddress, 0);
670         vcard_write_user(&CCC->user, my_vcard);
671         vcard_free(my_vcard);
672 }
673
674
675 /*
676  * Protocol command to fetch registration info for a user
677  */
678 void cmd_greg(char *argbuf)
679 {
680         struct CitContext *CCC = CC;
681         struct ctdluser usbuf;
682         struct vCard *v;
683         char *s;
684         char who[USERNAME_SIZE];
685         char adr[256];
686         char buf[256];
687
688         extract_token(who, argbuf, 0, '|', sizeof who);
689
690         if (!(CCC->logged_in)) {
691                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
692                 return;
693         }
694
695         if (!strcasecmp(who,"_SELF_")) strcpy(who,CCC->curr_user);
696
697         if ((CCC->user.axlevel < AxAideU) && (strcasecmp(who,CCC->curr_user))) {
698                 cprintf("%d Higher access required.\n", ERROR + HIGHER_ACCESS_REQUIRED);
699                 return;
700         }
701
702         if (CtdlGetUser(&usbuf, who) != 0) {
703                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, who);
704                 return;
705         }
706
707         v = vcard_get_user(&usbuf);
708
709         cprintf("%d %s\n", LISTING_FOLLOWS, usbuf.fullname);
710         cprintf("%ld\n", usbuf.usernum);
711         cprintf("%s\n", usbuf.password);
712         s = vcard_get_prop(v, "n", 1, 0, 0);
713         cprintf("%s\n", s ? s : " ");                   /* name */
714         s = vcard_get_prop(v, "adr", 1, 0, 0);
715         snprintf(adr, sizeof adr, "%s", s ? s : " ");   /* address */
716         extract_token(buf, adr, 2, ';', sizeof buf);
717         cprintf("%s\n", buf);                           /* street */
718         extract_token(buf, adr, 3, ';', sizeof buf);
719         cprintf("%s\n", buf);                           /* city */
720         extract_token(buf, adr, 4, ';', sizeof buf);
721         cprintf("%s\n", buf);                           /* state */
722         extract_token(buf, adr, 5, ';', sizeof buf);
723         cprintf("%s\n", buf);                           /* zip */
724
725         s = vcard_get_prop(v, "tel", 1, 0, 0);
726         if (s == NULL) s = vcard_get_prop(v, "tel", 1, 0, 0);
727         if (s != NULL) {
728                 cprintf("%s\n", s);
729         }
730         else {
731                 cprintf(" \n");
732         }
733
734         cprintf("%d\n", usbuf.axlevel);
735
736         s = vcard_get_prop(v, "email;internet", 0, 0, 0);
737         cprintf("%s\n", s ? s : " ");
738         s = vcard_get_prop(v, "adr", 0, 0, 0);
739         snprintf(adr, sizeof adr, "%s", s ? s : " ");/* address... */
740
741         extract_token(buf, adr, 6, ';', sizeof buf);
742         cprintf("%s\n", buf);                           /* country */
743         cprintf("000\n");
744         vcard_free(v);
745 }
746
747
748
749 /*
750  * When a user is being created, create his/her vCard.
751  */
752 void vcard_newuser(struct ctdluser *usbuf) {
753         char vname[256];
754         char buf[256];
755         int i;
756         struct vCard *v;
757         int need_default_vcard;
758
759         need_default_vcard =1;
760         vcard_fn_to_n(vname, usbuf->fullname, sizeof vname);
761         syslog(LOG_DEBUG, "vcard: converted <%s> to <%s>", usbuf->fullname, vname);
762
763         /* Create and save the vCard */
764         v = vcard_new();
765         if (v == NULL) return;
766         vcard_add_prop(v, "fn", usbuf->fullname);
767         vcard_add_prop(v, "n", vname);
768         vcard_add_prop(v, "adr", "adr:;;_;_;_;00000;__");
769
770 #ifdef HAVE_GETPWUID_R
771         /* If using host auth mode, we add an email address based on the login */
772         if (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_HOST) {
773                 struct passwd pwd;
774                 char pwd_buffer[SIZ];
775                 
776 #ifdef SOLARIS_GETPWUID
777                 if (getpwuid_r(usbuf->uid, &pwd, pwd_buffer, sizeof pwd_buffer) != NULL) {
778 #else // SOLARIS_GETPWUID
779                 struct passwd *result = NULL;
780                 syslog(LOG_DEBUG, "vcard: searching for uid %d", usbuf->uid);
781                 if (getpwuid_r(usbuf->uid, &pwd, pwd_buffer, sizeof pwd_buffer, &result) == 0) {
782 #endif // HAVE_GETPWUID_R
783                         snprintf(buf, sizeof buf, "%s@%s", pwd.pw_name, CtdlGetConfigStr("c_fqdn"));
784                         vcard_add_prop(v, "email;internet", buf);
785                         need_default_vcard = 0;
786                 }
787         }
788 #endif
789
790
791 #ifdef HAVE_LDAP
792         /*
793          * Is this an LDAP session?  If so, copy various LDAP attributes from the directory entry
794          * into the user's vCard.
795          */
796         if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) {
797                 //uid_t ldap_uid;
798                 int found_user;
799                 char ldap_cn[512];
800                 char ldap_dn[512];
801
802 syslog(LOG_DEBUG, "\033[31m FIXME BORK BORK BORK try lookup by uid , or maybe dn?\033[0m");
803
804
805                 found_user = CtdlTryUserLDAP(usbuf->fullname, ldap_dn, sizeof ldap_dn, ldap_cn, sizeof ldap_cn, &usbuf->uid);
806                 if (found_user == 0) {
807                         if (Ctdl_LDAP_to_vCard(ldap_dn, v)) {
808                                 /* Allow global address book and internet directory update without login long enough to write this. */
809                                 CC->vcard_updated_by_ldap++;  /* Otherwise we'll only update the user config. */
810                                 need_default_vcard = 0;
811                                 syslog(LOG_DEBUG, "vcard: LDAP Created Initial vCard for %s\n",usbuf->fullname);
812                         }
813                 }
814         }
815 #endif
816         if (need_default_vcard!=0) {
817                 /* Everyone gets an email address based on their display name */
818                 snprintf(buf, sizeof buf, "%s@%s", usbuf->fullname, CtdlGetConfigStr("c_fqdn"));
819                 for (i=0; buf[i]; ++i) {
820                         if (buf[i] == ' ') buf[i] = '_';
821                 }
822                 vcard_add_prop(v, "email;internet", buf);
823         }
824         vcard_write_user(usbuf, v);
825         vcard_free(v);
826 }
827
828
829 /*
830  * When a user is being deleted, we have to remove his/her vCard.
831  * This is accomplished by issuing a message with 'CANCEL' in the S (special)
832  * field, and the same Exclusive ID as the existing card.
833  */
834 void vcard_purge(struct ctdluser *usbuf) {
835         struct CtdlMessage *msg;
836         char buf[SIZ];
837         long len;
838
839         msg = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
840         if (msg == NULL) return;
841         memset(msg, 0, sizeof(struct CtdlMessage));
842
843         msg->cm_magic = CTDLMESSAGE_MAGIC;
844         msg->cm_anon_type = MES_NORMAL;
845         msg->cm_format_type = 0;
846         if (!IsEmptyStr(usbuf->fullname)) {
847                 CM_SetField(msg, eAuthor, usbuf->fullname, strlen(usbuf->fullname));
848         }
849         CM_SetField(msg, eOriginalRoom, HKEY(ADDRESS_BOOK_ROOM));
850         CM_SetField(msg, eNodeName, CtdlGetConfigStr("c_nodename"), strlen(CtdlGetConfigStr("c_nodename")));
851         CM_SetField(msg, eMesageText, HKEY("Purge this vCard\n"));
852
853         len = snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, msg->cm_fields[eAuthor], NODENAME);
854         CM_SetField(msg, eExclusiveID, buf, len);
855         CM_SetField(msg, eSpecialField, HKEY("CANCEL"));
856         CtdlSubmitMsg(msg, NULL, ADDRESS_BOOK_ROOM, QP_EADDR);
857         CM_Free(msg);
858 }
859
860
861 /*
862  * Grab vCard directory stuff out of incoming network messages
863  */
864 int vcard_extract_from_network(struct CtdlMessage *msg, char *target_room) {
865         char *ptr;
866         int linelen;
867
868         if (msg == NULL) return(0);
869
870         if (strcasecmp(target_room, ADDRESS_BOOK_ROOM)) {
871                 return(0);
872         }
873
874         if (msg->cm_format_type != 4) return(0);
875
876         if (CM_IsEmpty(msg, eMesageText))
877                 return 0;
878
879         ptr = msg->cm_fields[eMesageText];
880
881         while (ptr != NULL) {
882         
883                 linelen = strcspn(ptr, "\n");
884                 if (linelen == 0) return(0);    /* end of headers */    
885                 
886                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
887                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
888                         /* It's a vCard.  Add it to the directory. */
889                         vcard_extract_internet_addresses(msg, CtdlDirectoryAddUser);
890                         return(0);
891                 }
892
893                 ptr = strchr((char *)ptr, '\n');
894                 if (ptr != NULL) ++ptr;
895         }
896
897         return(0);
898 }
899
900
901
902 /* 
903  * When a vCard is being removed from the Global Address Book room, remove it
904  * from the directory as well.
905  */
906 void vcard_delete_remove(char *room, long msgnum) {
907         struct CtdlMessage *msg;
908         char *ptr;
909         int linelen;
910
911         if (msgnum <= 0L) return;
912         
913         if (room == NULL) return;
914
915         if (strcasecmp(room, ADDRESS_BOOK_ROOM)) {
916                 return;
917         }
918
919         msg = CtdlFetchMessage(msgnum, 1, 1);
920         if (msg == NULL) return;
921
922         if (CM_IsEmpty(msg, eMesageText))
923                 goto EOH;
924
925         ptr = msg->cm_fields[eMesageText];
926
927         while (ptr != NULL) {
928                 linelen = strcspn(ptr, "\n");
929                 if (linelen == 0) goto EOH;
930                 
931                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
932                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
933                         /* Bingo!  A vCard is being deleted. */
934                         vcard_extract_internet_addresses(msg, CtdlDirectoryDelUser);
935                 }
936                 ptr = strchr((char *)ptr, '\n');
937                 if (ptr != NULL) ++ptr;
938         }
939
940 EOH:    CM_Free(msg);
941 }
942
943
944
945 /*
946  * Get Valid Screen Names
947  */
948 void cmd_gvsn(char *argbuf)
949 {
950         struct CitContext *CCC = CC;
951
952         if (CtdlAccessCheck(ac_logged_in)) return;
953
954         cprintf("%d valid screen names:\n", LISTING_FOLLOWS);
955         cprintf("%s\n", CCC->user.fullname);
956         if ( (!IsEmptyStr(CCC->cs_inet_fn)) && (strcasecmp(CCC->user.fullname, CCC->cs_inet_fn)) ) {
957                 cprintf("%s\n", CCC->cs_inet_fn);
958         }
959         cprintf("000\n");
960 }
961
962
963 /*
964  * Get Valid Email Addresses
965  * FIXME this doesn't belong in serv_vcard.c anymore , maybe move it to internet_addressing.c
966  */
967 void cmd_gvea(char *argbuf)
968 {
969         struct CitContext *CCC = CC;
970         int num_secondary_emails = 0;
971         int i;
972         char buf[256];
973
974         if (CtdlAccessCheck(ac_logged_in)) return;
975
976         cprintf("%d valid email addresses:\n", LISTING_FOLLOWS);
977         if (!IsEmptyStr(CCC->cs_inet_email)) {
978                 cprintf("%s\n", CCC->cs_inet_email);
979         }
980         if (!IsEmptyStr(CCC->cs_inet_other_emails)) {
981                 num_secondary_emails = num_tokens(CCC->cs_inet_other_emails, '|');
982                 for (i=0; i<num_secondary_emails; ++i) {
983                         extract_token(buf, CCC->cs_inet_other_emails,i,'|',sizeof CCC->cs_inet_other_emails);
984                         cprintf("%s\n", buf);
985                 }
986         }
987         cprintf("000\n");
988 }
989
990
991 /*
992  * Callback function for cmd_dvca() that hunts for vCard content types
993  * and outputs any email addresses found within.
994  */
995 void dvca_mime_callback(char *name, char *filename, char *partnum, char *disp,
996                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
997                 char *cbid, void *cbuserdata) {
998
999         struct vCard *v;
1000         char displayname[256] = "";
1001         int displayname_len;
1002         char emailaddr[256] = "";
1003         int i;
1004         int has_commas = 0;
1005
1006         if ( (strcasecmp(cbtype, "text/vcard")) && (strcasecmp(cbtype, "text/x-vcard")) ) {
1007                 return;
1008         }
1009
1010         v = vcard_load(content);
1011         if (v == NULL) return;
1012
1013         extract_friendly_name(displayname, sizeof displayname, v);
1014         extract_inet_email_addrs(emailaddr, sizeof emailaddr, NULL, 0, v, 0);
1015
1016         displayname_len = strlen(displayname);
1017         for (i=0; i<displayname_len; ++i) {
1018                 if (displayname[i] == '\"') displayname[i] = ' ';
1019                 if (displayname[i] == ';') displayname[i] = ',';
1020                 if (displayname[i] == ',') has_commas = 1;
1021         }
1022         striplt(displayname);
1023
1024         cprintf("%s%s%s <%s>\n",
1025                 (has_commas ? "\"" : ""),
1026                 displayname,
1027                 (has_commas ? "\"" : ""),
1028                 emailaddr
1029         );
1030
1031         vcard_free(v);
1032 }
1033
1034
1035 /*
1036  * Back end callback function for cmd_dvca()
1037  *
1038  * It's basically just passed a list of message numbers, which we're going
1039  * to fetch off the disk and then pass along to the MIME parser via another
1040  * layer of callback...
1041  */
1042 void dvca_callback(long msgnum, void *userdata) {
1043         struct CtdlMessage *msg = NULL;
1044
1045         msg = CtdlFetchMessage(msgnum, 1, 1);
1046         if (msg == NULL) return;
1047         mime_parser(CM_RANGE(msg, eMesageText),
1048                     *dvca_mime_callback,        /* callback function */
1049                     NULL, NULL,
1050                     NULL,                       /* user data */
1051                     0
1052                 );
1053         CM_Free(msg);
1054 }
1055
1056
1057 /*
1058  * Dump VCard Addresses
1059  */
1060 void cmd_dvca(char *argbuf)
1061 {
1062         if (CtdlAccessCheck(ac_logged_in)) return;
1063
1064         cprintf("%d addresses:\n", LISTING_FOLLOWS);
1065         CtdlForEachMessage(MSGS_ALL, 0, NULL, NULL, NULL, dvca_callback, NULL);
1066         cprintf("000\n");
1067 }
1068
1069
1070 /*
1071  * Query Directory
1072  */
1073 void cmd_qdir(char *argbuf) {
1074         char citadel_addr[256];
1075         char internet_addr[256];
1076
1077         if (CtdlAccessCheck(ac_logged_in)) return;
1078
1079         extract_token(internet_addr, argbuf, 0, '|', sizeof internet_addr);
1080
1081         if (CtdlDirectoryLookup(citadel_addr, internet_addr, sizeof citadel_addr) != 0) {
1082                 cprintf("%d %s was not found.\n",
1083                         ERROR + NO_SUCH_USER, internet_addr);
1084                 return;
1085         }
1086
1087         cprintf("%d %s\n", CIT_OK, citadel_addr);
1088 }
1089
1090
1091 /*
1092  * Query Directory, in fact an alias to match postfix tcp auth.
1093  */
1094 void check_get(void) {
1095         char internet_addr[256];
1096
1097         char cmdbuf[SIZ];
1098
1099         time(&CC->lastcmd);
1100         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
1101         if (client_getln(cmdbuf, sizeof cmdbuf) < 1) {
1102                 syslog(LOG_ERR, "vcard: client disconnected: ending session.");
1103                 CC->kill_me = KILLME_CLIENT_DISCONNECTED;
1104                 return;
1105         }
1106         syslog(LOG_INFO, ": %s", cmdbuf);
1107         while (strlen(cmdbuf) < 3) strcat(cmdbuf, " ");
1108         syslog(LOG_INFO, "[ %s]", cmdbuf);
1109         
1110         if (strncasecmp(cmdbuf, "GET ", 4)==0)
1111         {
1112                 recptypes *rcpt;
1113                 char *argbuf = &cmdbuf[4];
1114                 
1115                 extract_token(internet_addr, argbuf, 0, '|', sizeof internet_addr);
1116                 rcpt = validate_recipients(internet_addr, NULL, CHECK_EXISTANCE);
1117                 if ((rcpt != NULL)&&
1118                         (
1119                          (*rcpt->recp_local != '\0')||
1120                          (*rcpt->recp_room != '\0')||
1121                          (*rcpt->recp_ignet != '\0')))
1122                 {
1123
1124                         cprintf("200 OK %s\n", internet_addr);
1125                         syslog(LOG_INFO, "vcard: sending 200 OK for the room %s", rcpt->display_recp);
1126                 }
1127                 else 
1128                 {
1129                         cprintf("500 REJECT noone here by that name.\n");
1130                         
1131                         syslog(LOG_INFO, "vcard: sending 500 REJECT no one here by that name: %s", internet_addr);
1132                 }
1133                 if (rcpt != NULL) 
1134                         free_recipients(rcpt);
1135         }
1136         else {
1137                 cprintf("500 REJECT invalid Query.\n");
1138                 syslog(LOG_INFO, "vcard: sending 500 REJECT invalid query: %s", internet_addr);
1139         }
1140 }
1141
1142 void check_get_greeting(void) {
1143 /* dummy function, we have no greeting in this verry simple protocol. */
1144 }
1145
1146
1147 /*
1148  * We don't know if the Contacts room exists so we just create it at login
1149  */
1150 void vcard_CtdlCreateRoom(void)
1151 {
1152         struct ctdlroom qr;
1153         visit vbuf;
1154
1155         /* Create the calendar room if it doesn't already exist */
1156         CtdlCreateRoom(USERCONTACTSROOM, 4, "", 0, 1, 0, VIEW_ADDRESSBOOK);
1157
1158         /* Set expiration policy to manual; otherwise objects will be lost! */
1159         if (CtdlGetRoomLock(&qr, USERCONTACTSROOM)) {
1160                 syslog(LOG_ERR, "vcard: couldn't get the user CONTACTS room!");
1161                 return;
1162         }
1163         qr.QRep.expire_mode = EXPIRE_MANUAL;
1164         qr.QRdefaultview = VIEW_ADDRESSBOOK;    /* 2 = address book view */
1165         CtdlPutRoomLock(&qr);
1166
1167         /* Set the view to a calendar view */
1168         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1169         vbuf.v_view = 2;        /* 2 = address book view */
1170         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1171
1172         return;
1173 }
1174
1175
1176
1177
1178 /*
1179  * When a user logs in...
1180  */
1181 void vcard_session_login_hook(void) {
1182         struct vCard *v = NULL;
1183         struct CitContext *CCC = CC;            /* put this on the stack, just for speed */
1184
1185 #ifdef HAVE_LDAP
1186         /*
1187          * Is this an LDAP session?  If so, copy various LDAP attributes from the directory entry
1188          * into the user's vCard.
1189          */
1190         if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) {
1191                 v = vcard_get_user(&CCC->user);
1192                 if (v) {
1193                         if (Ctdl_LDAP_to_vCard(CCC->ldap_dn, v)) {
1194                                 CCC->vcard_updated_by_ldap++; /* Make sure changes make it to the global address book and internet directory, not just the user config. */
1195                                 syslog(LOG_DEBUG, "vcard: LDAP Detected vcard change");
1196                                 vcard_write_user(&CCC->user, v);
1197                         }
1198                 }
1199         }
1200 #endif
1201
1202         /*
1203          * Extract the user's friendly/screen name
1204          * These are inserted into the session data for various message entry commands to use.
1205          */
1206         v = vcard_get_user(&CCC->user);
1207         if (v) {
1208                 extract_friendly_name(CCC->cs_inet_fn, sizeof CCC->cs_inet_fn, v);
1209                 vcard_free(v);
1210         }
1211
1212         /*
1213          * Create the user's 'Contacts' room (personal address book) if it doesn't already exist.
1214          */
1215         vcard_CtdlCreateRoom();
1216 }
1217
1218
1219 /* 
1220  * Turn an arbitrary RFC822 address into a struct vCard for possible
1221  * inclusion into an address book.
1222  */
1223 struct vCard *vcard_new_from_rfc822_addr(char *addr) {
1224         struct vCard *v;
1225         char user[256], node[256], name[256], email[256], n[256], uid[256];
1226         int i;
1227
1228         v = vcard_new();
1229         if (v == NULL) return(NULL);
1230
1231         process_rfc822_addr(addr, user, node, name);
1232         vcard_set_prop(v, "fn", name, 0);
1233
1234         vcard_fn_to_n(n, name, sizeof n);
1235         vcard_set_prop(v, "n", n, 0);
1236
1237         snprintf(email, sizeof email, "%s@%s", user, node);
1238         vcard_set_prop(v, "email;internet", email, 0);
1239
1240         snprintf(uid, sizeof uid, "collected: %s %s@%s", name, user, node);
1241         for (i=0; uid[i]; ++i) {
1242                 if (isspace(uid[i])) uid[i] = '_';
1243                 uid[i] = tolower(uid[i]);
1244         }
1245         vcard_set_prop(v, "UID", uid, 0);
1246
1247         return(v);
1248 }
1249
1250
1251
1252 /*
1253  * This is called by store_harvested_addresses() to remove from the
1254  * list any addresses we already have in our address book.
1255  */
1256 void strip_addresses_already_have(long msgnum, void *userdata) {
1257         char *collected_addresses;
1258         struct CtdlMessage *msg = NULL;
1259         struct vCard *v;
1260         char *value = NULL;
1261         int i, j;
1262         char addr[256], user[256], node[256], name[256];
1263
1264         collected_addresses = (char *)userdata;
1265
1266         msg = CtdlFetchMessage(msgnum, 1, 1);
1267         if (msg == NULL) return;
1268         v = vcard_load(msg->cm_fields[eMesageText]);
1269         CM_Free(msg);
1270
1271         i = 0;
1272         while (value = vcard_get_prop(v, "email", 1, i++, 0), value != NULL) {
1273
1274                 for (j=0; j<num_tokens(collected_addresses, ','); ++j) {
1275                         extract_token(addr, collected_addresses, j, ',', sizeof addr);
1276
1277                         /* Remove the address if we already have it! */
1278                         process_rfc822_addr(addr, user, node, name);
1279                         snprintf(addr, sizeof addr, "%s@%s", user, node);
1280                         if (!strcasecmp(value, addr)) {
1281                                 remove_token(collected_addresses, j, ',');
1282                         }
1283                 }
1284
1285         }
1286
1287         vcard_free(v);
1288 }
1289
1290
1291
1292 /*
1293  * Back end function for store_harvested_addresses()
1294  */
1295 void store_this_ha(struct addresses_to_be_filed *aptr) {
1296         struct CtdlMessage *vmsg = NULL;
1297         char *ser = NULL;
1298         struct vCard *v = NULL;
1299         char recipient[256];
1300         int i;
1301
1302         /* First remove any addresses we already have in the address book */
1303         CtdlUserGoto(aptr->roomname, 0, 0, NULL, NULL, NULL, NULL);
1304         CtdlForEachMessage(MSGS_ALL, 0, NULL, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$", NULL,
1305                 strip_addresses_already_have, aptr->collected_addresses);
1306
1307         if (!IsEmptyStr(aptr->collected_addresses))
1308            for (i=0; i<num_tokens(aptr->collected_addresses, ','); ++i) {
1309
1310                 /* Make a vCard out of each address */
1311                 extract_token(recipient, aptr->collected_addresses, i, ',', sizeof recipient);
1312                 striplt(recipient);
1313                 v = vcard_new_from_rfc822_addr(recipient);
1314                 if (v != NULL) {
1315                         const char *s;
1316                         vmsg = malloc(sizeof(struct CtdlMessage));
1317                         memset(vmsg, 0, sizeof(struct CtdlMessage));
1318                         vmsg->cm_magic = CTDLMESSAGE_MAGIC;
1319                         vmsg->cm_anon_type = MES_NORMAL;
1320                         vmsg->cm_format_type = FMT_RFC822;
1321                         CM_SetField(vmsg, eAuthor, HKEY("Citadel"));
1322                         s = vcard_get_prop(v, "UID", 1, 0, 0);
1323                         if (!IsEmptyStr(s)) {
1324                                 CM_SetField(vmsg, eExclusiveID, s, strlen(s));
1325                         }
1326                         ser = vcard_serialize(v);
1327                         if (ser != NULL) {
1328                                 StrBuf *buf;
1329                                 long serlen;
1330                                 
1331                                 serlen = strlen(ser);
1332                                 buf = NewStrBufPlain(NULL, serlen + 1024);
1333
1334                                 StrBufAppendBufPlain(buf, HKEY("Content-type: " VCARD_MIME_TYPE "\r\n\r\n"), 0);
1335                                 StrBufAppendBufPlain(buf, ser, serlen, 0);
1336                                 StrBufAppendBufPlain(buf, HKEY("\r\n"), 0);
1337                                 CM_SetAsFieldSB(vmsg, eMesageText, &buf);
1338                                 free(ser);
1339                         }
1340                         vcard_free(v);
1341
1342                         syslog(LOG_DEBUG, "vcard: adding contact: %s", recipient);
1343                         CtdlSubmitMsg(vmsg, NULL, aptr->roomname, QP_EADDR);
1344                         CM_Free(vmsg);
1345                 }
1346         }
1347
1348         free(aptr->roomname);
1349         free(aptr->collected_addresses);
1350         free(aptr);
1351 }
1352
1353
1354 /*
1355  * When a user sends a message, we may harvest one or more email addresses
1356  * from the recipient list to be added to the user's address book.  But we
1357  * want to do this asynchronously so it doesn't keep the user waiting.
1358  */
1359 void store_harvested_addresses(void) {
1360
1361         struct addresses_to_be_filed *aptr = NULL;
1362
1363         if (atbf == NULL) return;
1364
1365         begin_critical_section(S_ATBF);
1366         while (atbf != NULL) {
1367                 aptr = atbf;
1368                 atbf = atbf->next;
1369                 end_critical_section(S_ATBF);
1370                 store_this_ha(aptr);
1371                 begin_critical_section(S_ATBF);
1372         }
1373         end_critical_section(S_ATBF);
1374 }
1375
1376
1377 /* 
1378  * Function to output vCard data as plain text.  Nobody uses MSG0 anymore, so
1379  * really this is just so we expose the vCard data to the full text indexer.
1380  */
1381 void vcard_fixed_output(char *ptr, int len) {
1382         char *serialized_vcard;
1383         struct vCard *v;
1384         char *key, *value;
1385         int i = 0;
1386
1387         serialized_vcard = malloc(len + 1);
1388         safestrncpy(serialized_vcard, ptr, len+1);
1389         v = vcard_load(serialized_vcard);
1390         free(serialized_vcard);
1391
1392         i = 0;
1393         while (key = vcard_get_prop(v, "", 0, i, 1), key != NULL) {
1394                 value = vcard_get_prop(v, "", 0, i++, 0);
1395                 cprintf("%s\n", value);
1396         }
1397
1398         vcard_free(v);
1399 }
1400
1401
1402 const char *CitadelServiceDICT_TCP="DICT_TCP";
1403
1404 CTDL_MODULE_INIT(vcard)
1405 {
1406         struct ctdlroom qr;
1407         //char filename[256];
1408         //FILE *fp;
1409         //int rv = 0;
1410
1411         if (!threading)
1412         {
1413                 CtdlRegisterSessionHook(vcard_session_login_hook, EVT_LOGIN, PRIO_LOGIN + 70);
1414                 CtdlRegisterMessageHook(vcard_upload_beforesave, EVT_BEFORESAVE);
1415                 CtdlRegisterMessageHook(vcard_upload_aftersave, EVT_AFTERSAVE);
1416                 CtdlRegisterDeleteHook(vcard_delete_remove);
1417                 CtdlRegisterProtoHook(cmd_regi, "REGI", "Enter registration info");
1418                 CtdlRegisterProtoHook(cmd_greg, "GREG", "Get registration info");
1419                 CtdlRegisterProtoHook(cmd_qdir, "QDIR", "Query Directory");
1420                 CtdlRegisterProtoHook(cmd_gvsn, "GVSN", "Get Valid Screen Names");
1421                 CtdlRegisterProtoHook(cmd_gvea, "GVEA", "Get Valid Email Addresses");
1422                 CtdlRegisterProtoHook(cmd_dvca, "DVCA", "Dump VCard Addresses");
1423                 CtdlRegisterUserHook(vcard_newuser, EVT_NEWUSER);
1424                 CtdlRegisterUserHook(vcard_purge, EVT_PURGEUSER);
1425                 CtdlRegisterNetprocHook(vcard_extract_from_network);
1426                 CtdlRegisterSessionHook(store_harvested_addresses, EVT_TIMER, PRIO_CLEANUP + 470);
1427                 CtdlRegisterFixedOutputHook("text/x-vcard", vcard_fixed_output);
1428                 CtdlRegisterFixedOutputHook("text/vcard", vcard_fixed_output);
1429
1430                 /* Create the Global Address Book room if necessary */
1431                 CtdlCreateRoom(ADDRESS_BOOK_ROOM, 3, "", 0, 1, 0, VIEW_ADDRESSBOOK);
1432
1433                 /* Set expiration policy to manual; otherwise objects will be lost! */
1434                 if (!CtdlGetRoomLock(&qr, ADDRESS_BOOK_ROOM)) {
1435                         qr.QRep.expire_mode = EXPIRE_MANUAL;
1436                         qr.QRdefaultview = VIEW_ADDRESSBOOK;    /* 2 = address book view */
1437                         CtdlPutRoomLock(&qr);
1438
1439                         /*
1440                          * Also make sure it has a netconfig file, so the networker runs
1441                          * on this room even if we don't share it with any other nodes.
1442                          * This allows the CANCEL messages (i.e. "Purge this vCard") to be
1443                          * purged.
1444                          *
1445                          * FIXME this no longer works
1446                          *
1447                          */
1448                         //assoc_file_name(filename, sizeof filename, &qr, ctdl_netcfg_dir);
1449                         //fp = fopen(filename, "a");
1450                         //if (fp != NULL) {
1451                                 //fclose(fp);
1452                                 //rv = chown(filename, CTDLUID, (-1));
1453                                 //if (rv == -1) {
1454                                         //syslog(LOG_ERR, "vcard: failed to adjust ownership of %s: %m", filename);
1455                                 //}
1456                                 //rv = chmod(filename, 0600);
1457                                 //if (rv == -1) {
1458                                         //syslog(LOG_ERR, "vcard: failed to adjust ownership of %s: %m", filename);
1459                                 //}
1460                         //}
1461                         //else {
1462                                 //syslog(LOG_ERR, "vcard: cannot create %s: %m", filename);
1463                         //}
1464                 }
1465
1466                 /* for postfix tcpdict */
1467                 CtdlRegisterServiceHook(CtdlGetConfigInt("c_pftcpdict_port"),   /* Postfix */
1468                                         NULL,
1469                                         check_get_greeting,
1470                                         check_get,
1471                                         NULL,
1472                                         CitadelServiceDICT_TCP);
1473         }
1474         
1475         /* return our module name for the log */
1476         return "vcard";
1477 }