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