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