]> code.citadel.org Git - citadel.git/blob - citadel/serv_vcard.c
5452451191161451df94703935853b335f400add
[citadel.git] / citadel / serv_vcard.c
1 /* */
2 #include "sysdep.h"
3 #include <stdlib.h>
4 #include <unistd.h>
5 #include <stdio.h>
6 #include <fcntl.h>
7 #include <signal.h>
8 #include <pwd.h>
9 #include <errno.h>
10 #include <sys/types.h>
11 #include <sys/time.h>
12 #include <sys/wait.h>
13 #include <string.h>
14 #include <limits.h>
15 #ifdef HAVE_PTHREAD_H
16 #include <pthread.h>
17 #endif
18 #include "citadel.h"
19 #include "server.h"
20 #include <syslog.h>
21 #include <time.h>
22 #include "sysdep_decls.h"
23 #include "citserver.h"
24 #include "support.h"
25 #include "config.h"
26 #include "control.h"
27 #include "dynloader.h"
28 #include "room_ops.h"
29 #include "user_ops.h"
30 #include "policy.h"
31 #include "database.h"
32 #include "msgbase.h"
33 #include "vcard.h"
34
35 struct vcard_internal_info {
36         long msgnum;
37 };
38
39 /* Message number symbol used internally by these functions */
40 unsigned long SYM_VCARD;
41 #define VC ((struct vcard_internal_info *)CtdlGetUserData(SYM_VCARD))
42
43
44 /*
45  * This handler detects whether the user is attempting to save a new
46  * vCard as part of his/her personal configuration, and handles the replace
47  * function accordingly.
48  */
49 int vcard_personal_upload(struct CtdlMessage *msg) {
50         char *ptr;
51         int linelen;
52
53         /* If this isn't the configuration room, or if this isn't a MIME
54          * message, don't bother.
55          */
56         if (strcasecmp(msg->cm_fields['O'], CONFIGROOM)) return(0);
57         if (msg->cm_format_type != 4) return(0);
58
59         ptr = msg->cm_fields['M'];
60         while (ptr != NULL) {
61         
62                 linelen = strcspn(ptr, "\n");
63                 lprintf(9, "linelen == %d\n", linelen);
64                 if (linelen == 0) return(0);    /* end of headers */    
65                 
66                 if (!strncasecmp(ptr, "Content-type: text/x-vcard", 26)) {
67                         /* Bingo!  The user is uploading a new vCard, so
68                          * delete the old one.
69                          */
70                         CtdlDeleteMessages(msg->cm_fields['O'],
71                                         0L, "text/x-vcard");
72                         return(0);
73                 }
74
75                 ptr = strchr((char *)ptr, '\n');
76                 if (ptr != NULL) ++ptr;
77         }
78
79         return(0);
80 }
81
82
83
84 /*
85  * back end function used by vcard_get_my()
86  */
87 void vcard_gm_backend(long msgnum) {
88         VC->msgnum = msgnum;
89 }
90
91
92 /*
93  * If this user has a vcard on disk, read it into memory, otherwise allocate
94  * and return an empty vCard.
95  */
96 struct vCard *vcard_get_my(void) {
97         char hold_rm[ROOMNAMELEN];
98         char config_rm[ROOMNAMELEN];
99         struct CtdlMessage *msg;
100         struct vCard *v;
101
102         strcpy(hold_rm, CC->quickroom.QRname);  /* save current room */
103         MailboxName(config_rm, &CC->usersupp, CONFIGROOM);
104
105         if (getroom(&CC->quickroom, config_rm) != 0) {
106                 getroom(&CC->quickroom, hold_rm);
107                 return vcard_new();
108         }
109
110         /* We want the last (and probably only) vcard in this room */
111         VC->msgnum = (-1);
112         CtdlForEachMessage(MSGS_LAST, 1, "text/x-vcard", vcard_gm_backend);
113         getroom(&CC->quickroom, hold_rm);       /* return to saved room */
114
115         if (VC->msgnum < 0L) return vcard_new();
116
117         msg = CtdlFetchMessage(VC->msgnum);
118         if (msg == NULL) return vcard_new();
119
120         v = vcard_load(msg->cm_fields['M']);
121         CtdlFreeMessage(msg);
122         return v;
123 }
124
125
126 /*
127  * Store this user's vCard in the appropriate place
128  */
129 /*
130  * Write our config to disk
131  */
132 void vcard_write_my(struct vCard *v) {
133         char temp[PATH_MAX];
134         FILE *fp;
135         char *ser;
136
137         strcpy(temp, tmpnam(NULL));
138         ser = vcard_serialize(v);
139
140         fp = fopen(temp, "w");
141         if (fp == NULL) return;
142         fprintf(fp, "Content-type: text/x-vcard\r\n\r\n");
143         if (ser == NULL) {
144                 fprintf(fp, "begin:vcard\r\nend:vcard\r\n");
145         } else {
146                 fwrite(ser, strlen(ser), 1, fp);
147                 phree(ser);
148         }
149         fclose(fp);
150
151         /* this handy API function does all the work for us */
152         CtdlWriteObject(CONFIGROOM, "text/x-vcard", temp, 1, 0, 1);
153
154         unlink(temp);
155 }
156
157
158
159 /*
160  * old style "enter registration info" command
161  */
162 void cmd_regi(char *argbuf) {
163         int a,b,c;
164         char buf[256];
165         struct vCard *my_vcard;
166
167         char tmpaddr[256];
168         char tmpcity[256];
169         char tmpstate[256];
170         char tmpzip[256];
171         char tmpphone[256];
172         char tmpaddress[512];
173
174         if (!(CC->logged_in)) {
175                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
176                 return;
177                 }
178
179         my_vcard = vcard_get_my();
180         strcpy(tmpaddr, "");
181         strcpy(tmpcity, "");
182         strcpy(tmpstate, "");
183         strcpy(tmpzip, "");
184
185         cprintf("%d Send registration...\n", SEND_LISTING);
186         a=0;
187         while (client_gets(buf), strcmp(buf,"000")) {
188                 if (a==0) vcard_set_prop(my_vcard, "n", buf);
189                 if (a==1) strcpy(tmpaddr,buf);
190                 if (a==2) strcpy(tmpcity,buf);
191                 if (a==3) strcpy(tmpstate,buf);
192                 if (a==4) {
193                         for (c=0; c<strlen(buf); ++c) {
194                                 if ((buf[c]>='0')&&(buf[c]<='9')) {
195                                         b=strlen(tmpzip);
196                                         tmpzip[b]=buf[c];
197                                         tmpzip[b+1]=0;
198                                         }
199                                 }
200                         }
201                 if (a==5) {
202                         strcpy(tmpphone, "");
203                         for (c=0; c<strlen(buf); ++c) {
204                                 if ((buf[c]>='0')&&(buf[c]<='9')) {
205                                         b=strlen(tmpphone);
206                                         tmpphone[b]=buf[c];
207                                         tmpphone[b+1]=0;
208                                         }
209                                 }
210                         vcard_set_prop(my_vcard, "tel;home", tmpphone);
211                         }
212                 if (a==6) vcard_set_prop(my_vcard, "email;internet", buf);
213                 ++a;
214                 }
215         sprintf(tmpaddress, ";;%s;%s;%s;%s;USA",
216                 tmpaddr, tmpcity, tmpstate, tmpzip);
217         lprintf(9, "setting address\n");
218         vcard_set_prop(my_vcard, "adr", tmpaddress);
219         lprintf(9, "writing my vcard\n");
220         vcard_write_my(my_vcard);
221         lprintf(9, "freeing my vcard\n");
222         vcard_free(my_vcard);
223
224         lprintf(9, "marking account as needing validation\n");
225         lgetuser(&CC->usersupp,CC->curr_user);
226         CC->usersupp.flags=(CC->usersupp.flags|US_REGIS|US_NEEDVALID);
227         lputuser(&CC->usersupp);
228
229         /* set global flag calling for validation */
230         lprintf(9, "setting global flag\n");
231         begin_critical_section(S_CONTROL);
232         get_control();
233         CitControl.MMflags = CitControl.MMflags | MM_VALID ;
234         put_control();
235         end_critical_section(S_CONTROL);
236         }
237
238
239 void vcard_session_startup_hook(void) {
240         CtdlAllocUserData(SYM_VCARD, sizeof(struct vcard_internal_info));
241 }
242
243
244 char *Dynamic_Module_Init(void)
245 {
246         SYM_VCARD = CtdlGetDynamicSymbol();
247         CtdlRegisterSessionHook(vcard_session_startup_hook, EVT_START);
248         CtdlRegisterMessageHook(vcard_personal_upload, EVT_BEFORESAVE);
249         CtdlRegisterProtoHook(cmd_regi, "REGI", "Enter registration info");
250         return "$Id$";
251 }