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