Advanced menu items
[citadel.git] / webcit / vcard_edit.c
1 /*
2  * $Id$
3  */
4 /**
5  * \defgroup vCardEdit Handles on-screen editing of vCard objects.
6  * \ingroup VCards
7  */
8 /*@{*/
9 #include "webcit.h"
10 #include "vcard.h"
11
12 /**
13  * \brief Edit the vCard component of a MIME message.  
14  * Supply the message number
15  * and MIME part number to fetch.  Or, specify -1 for the message number
16  * to start with a blank card.
17  * \param msgnum number of the item on the citadel server
18  * \param partnum what???
19  * \param return_to where to go back in the browser after edit ????
20  */
21 void do_edit_vcard(long msgnum, char *partnum, char *return_to) {
22         char buf[SIZ];
23         char *serialized_vcard = NULL;
24         size_t total_len = 0;
25         struct vCard *v;
26         int i;
27         char *key, *value;
28         char whatuser[256];
29
30         char lastname[256];
31         char firstname[256];
32         char middlename[256];
33         char prefix[256];
34         char suffix[256];
35         char pobox[256];
36         char extadr[256];
37         char street[256];
38         char city[256];
39         char state[256];
40         char zipcode[256];
41         char country[256];
42         char hometel[256];
43         char worktel[256];
44         char primary_inetemail[256];
45         char other_inetemail[SIZ];
46         char extrafields[SIZ];
47         char fullname[256];
48         char title[256];
49         char org[256];
50
51         lastname[0] = 0;
52         firstname[0] = 0;
53         middlename[0] = 0;
54         prefix[0] = 0;
55         suffix[0] = 0;
56         pobox[0] = 0;
57         extadr[0] = 0;
58         street[0] = 0;
59         city[0] = 0;
60         state[0] = 0;
61         zipcode[0] = 0;
62         country[0] = 0;
63         hometel[0] = 0;
64         worktel[0] = 0;
65         primary_inetemail[0] = 0;
66         other_inetemail[0] = 0;
67         title[0] = 0;
68         org[0] = 0;
69         extrafields[0] = 0;
70         fullname[0] = 0;
71
72         safestrncpy(whatuser, "", sizeof whatuser);
73
74         if (msgnum >= 0) {
75                 sprintf(buf, "MSG0 %ld|1", msgnum);
76                 serv_puts(buf);
77                 serv_getln(buf, sizeof buf);
78                 if (buf[0] != '1') {
79                         convenience_page("770000", _("Error"), &buf[4]);
80                         return;
81                 }
82                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
83                         if (!strncasecmp(buf, "from=", 5)) {
84                                 safestrncpy(whatuser, &buf[5], sizeof whatuser);
85                         }
86                         else if (!strncasecmp(buf, "node=", 5)) {
87                                 strcat(whatuser, " @ ");
88                                 strcat(whatuser, &buf[5]);
89                         }
90                 }
91         
92                 sprintf(buf, "DLAT %ld|%s", msgnum, partnum);
93                 serv_puts(buf);
94                 serv_getln(buf, sizeof buf);
95                 if (buf[0] != '6') {
96                         convenience_page("770000", "Error", &buf[4]);
97                         return;
98                 }
99         
100                 total_len = atoi(&buf[4]);
101                 serialized_vcard = malloc(total_len + 2);
102
103                 serv_read(serialized_vcard, total_len);
104                 serialized_vcard[total_len] = 0;
105         
106                 v = vcard_load(serialized_vcard);
107                 free(serialized_vcard);
108         
109                 /* Populate the variables for our form */
110                 i = 0;
111                 while (key = vcard_get_prop(v, "", 0, i, 1), key != NULL) {
112                         value = vcard_get_prop(v, "", 0, i++, 0);
113         
114                         if (!strcasecmp(key, "n")) {
115                                 extract_token(lastname, value, 0, ';', sizeof lastname);
116                                 extract_token(firstname, value, 1, ';', sizeof firstname);
117                                 extract_token(middlename, value, 2, ';', sizeof middlename);
118                                 extract_token(prefix, value, 3, ';', sizeof prefix);
119                                 extract_token(suffix, value, 4, ';', sizeof suffix);
120                         }
121
122                         else if (!strcasecmp(key, "fn")) {
123                                 safestrncpy(fullname, value, sizeof fullname);
124                         }
125
126                         else if (!strcasecmp(key, "title")) {
127                                 safestrncpy(title, value, sizeof title);
128                         }
129         
130                         else if (!strcasecmp(key, "org")) {
131                                 safestrncpy(org, value, sizeof org);
132                         }
133         
134                         else if (!strcasecmp(key, "adr")) {
135                                 extract_token(pobox, value, 0, ';', sizeof pobox);
136                                 extract_token(extadr, value, 1, ';', sizeof extadr);
137                                 extract_token(street, value, 2, ';', sizeof street);
138                                 extract_token(city, value, 3, ';', sizeof city);
139                                 extract_token(state, value, 4, ';', sizeof state);
140                                 extract_token(zipcode, value, 5, ';', sizeof zipcode);
141                                 extract_token(country, value, 6, ';', sizeof country);
142                         }
143         
144                         else if (!strcasecmp(key, "tel;home")) {
145                                 extract_token(hometel, value, 0, ';', sizeof hometel);
146                         }
147         
148                         else if (!strcasecmp(key, "tel;work")) {
149                                 extract_token(worktel, value, 0, ';', sizeof worktel);
150                         }
151         
152                         else if (!strcasecmp(key, "email;internet")) {
153                                 if (primary_inetemail[0] == 0) {
154                                         safestrncpy(primary_inetemail, value, sizeof primary_inetemail);
155                                 }
156                                 else {
157                                         if (other_inetemail[0] != 0) {
158                                                 strcat(other_inetemail, "\n");
159                                         }
160                                         strcat(other_inetemail, value);
161                                 }
162                         }
163         
164                         else {
165                                 strcat(extrafields, key);
166                                 strcat(extrafields, ":");
167                                 strcat(extrafields, value);
168                                 strcat(extrafields, "\n");
169                         }
170         
171                 }
172         
173                 vcard_free(v);
174         }
175
176         /** Display the form */
177         output_headers(1, 1, 1, 0, 0, 0);
178
179         svprintf("BOXTITLE", WCS_STRING, _("Edit contact information"));
180         do_template("beginbox");
181
182         wprintf("<form method=\"POST\" action=\"submit_vcard\">\n");
183         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
184         wprintf("<div class=\"fix_scrollbar_bug\">"
185                 "<table class=\"vcard_edit_background\"><tr><td>\n");
186
187         wprintf("<table border=0><tr>"
188                 "<td>%s</td>"
189                 "<td>%s</td>"
190                 "<td>%s</td>"
191                 "<td>%s</td>"
192                 "<td>%s</td></tr>\n",
193                 _("Prefix"), _("First"), _("Middle"), _("Last"), _("Suffix")
194         );
195         wprintf("<tr><td><input type=\"text\" name=\"prefix\" "
196                 "value=\"%s\" maxlength=\"5\" size=\"5\"></td>",
197                 prefix);
198         wprintf("<td><input type=\"text\" name=\"firstname\" "
199                 "value=\"%s\" maxlength=\"29\"></td>",
200                 firstname);
201         wprintf("<td><input type=\"text\" name=\"middlename\" "
202                 "value=\"%s\" maxlength=\"29\"></td>",
203                 middlename);
204         wprintf("<td><input type=\"text\" name=\"lastname\" "
205                 "value=\"%s\" maxlength=\"29\"></td>",
206                 lastname);
207         wprintf("<td><input type=\"text\" name=\"suffix\" "
208                 "value=\"%s\" maxlength=\"10\" size=\"10\"></td></tr></table>\n",
209                 suffix);
210
211         wprintf("<table  class=\"vcard_edit_background_alt\">");
212         wprintf("<tr><td>");
213
214         wprintf(_("Display name:"));
215         wprintf("<br>"
216                 "<input type=\"text\" name=\"fullname\" "
217                 "value=\"%s\" maxlength=\"40\"><br><br>\n",
218                 fullname
219         );
220
221         wprintf(_("Title:"));
222         wprintf("<br>"
223                 "<input type=\"text\" name=\"title\" "
224                 "value=\"%s\" maxlength=\"40\"><br><br>\n",
225                 title
226         );
227
228         wprintf(_("Organization:"));
229         wprintf("<br>"
230                 "<input type=\"text\" name=\"org\" "
231                 "value=\"%s\" maxlength=\"40\"><br><br>\n",
232                 org
233         );
234
235         wprintf("</td><td>");
236
237         wprintf("<table border=0>");
238         wprintf("<tr><td>");
239         wprintf(_("PO box:"));
240         wprintf("</td><td>"
241                 "<input type=\"text\" name=\"pobox\" "
242                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
243                 pobox);
244         wprintf("<tr><td>");
245         wprintf(_("Address:"));
246         wprintf("</td><td>"
247                 "<input type=\"text\" name=\"extadr\" "
248                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
249                 extadr);
250         wprintf("<tr><td> </td><td>"
251                 "<input type=\"text\" name=\"street\" "
252                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
253                 street);
254         wprintf("<tr><td>");
255         wprintf(_("City:"));
256         wprintf("</td><td>"
257                 "<input type=\"text\" name=\"city\" "
258                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
259                 city);
260         wprintf("<tr><td>");
261         wprintf(_("State:"));
262         wprintf("</td><td>"
263                 "<input type=\"text\" name=\"state\" "
264                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
265                 state);
266         wprintf("<tr><td>");
267         wprintf(_("ZIP code:"));
268         wprintf("</td><td>"
269                 "<input type=\"text\" name=\"zipcode\" "
270                 "value=\"%s\" maxlength=\"10\"></td></tr>\n",
271                 zipcode);
272         wprintf("<tr><td>");
273         wprintf(_("Country:"));
274         wprintf("</td><td>"
275                 "<input type=\"text\" name=\"country\" "
276                 "value=\"%s\" maxlength=\"29\" width=\"5\"></td></tr>\n",
277                 country);
278         wprintf("</table>\n");
279
280         wprintf("</table>\n");
281
282         wprintf("<table border=0><tr><td>");
283         wprintf(_("Home telephone:"));
284         wprintf("</td>"
285                 "<td><input type=\"text\" name=\"hometel\" "
286                 "value=\"%s\" maxlength=\"29\"></td>\n",
287                 hometel);
288         wprintf("<td>");
289         wprintf(_("Work telephone:"));
290         wprintf("</td>"
291                 "<td><input type=\"text\" name=\"worktel\" "
292                 "value=\"%s\" maxlength=\"29\"></td></tr></table>\n",
293                 worktel);
294
295         wprintf("<table class=\"vcard_edit_background_alt\">");
296         wprintf("<tr><td>");
297
298         wprintf("<table border=0><TR>"
299                 "<td valign=top>");
300         wprintf(_("Primary Internet e-mail address"));
301         wprintf("<br />"
302                 "<input type=\"text\" name=\"primary_inetemail\" "
303                 "size=40 maxlength=60 value=\"");
304         escputs(primary_inetemail);
305         wprintf("\"><br />"
306                 "</td><td valign=top>");
307         wprintf(_("Internet e-mail aliases"));
308         wprintf("<br />"
309                 "<textarea name=\"other_inetemail\" rows=5 cols=40 width=40>");
310         escputs(other_inetemail);
311         wprintf("</textarea></td></tr></table>\n");
312
313         wprintf("</td></tr></table>\n");
314
315         wprintf("<input type=\"hidden\" name=\"extrafields\" value=\"");
316         escputs(extrafields);
317         wprintf("\">\n");
318
319         wprintf("<input type=\"hidden\" name=\"return_to\" value=\"");
320         urlescputs(return_to);
321         wprintf("\">\n");
322
323         wprintf("<div class=\"buttons\">\n"
324                 "<input type=\"submit\" name=\"ok_button\" value=\"%s\">"
325                 "&nbsp;"
326                 "<input type=\"submit\" name=\"cancel_button\" value=\"%s\">"
327                 "</div></form>\n",
328                 _("Save changes"),
329                 _("Cancel")
330         );
331         
332         wprintf("</td></tr></table>\n");
333         do_template("endbox");
334         wDumpContent(1);
335 }
336
337
338 /**
339  * \brief commit the edits to the citadel server
340  */
341 void edit_vcard(void) {
342         long msgnum;
343         char *partnum;
344
345         msgnum = atol(bstr("msgnum"));
346         partnum = bstr("partnum");
347         do_edit_vcard(msgnum, partnum, "");
348 }
349
350
351
352 /**
353  * \brief parse edited vcard from the browser
354  */
355 void submit_vcard(void) {
356         struct vCard *v;
357         char *serialized_vcard;
358         char buf[SIZ];
359         int i;
360
361         if (IsEmptyStr(bstr("ok_button"))) { 
362                 readloop("readnew");
363                 return;
364         }
365
366         sprintf(buf, "ENT0 1|||4||");
367         serv_puts(buf);
368         serv_getln(buf, sizeof buf);
369         if (buf[0] != '4') {
370                 edit_vcard();
371                 return;
372         }
373
374         /** Make a vCard structure out of the data supplied in the form */
375
376         snprintf(buf, sizeof buf, "begin:vcard\r\n%s\r\nend:vcard\r\n",
377                 bstr("extrafields")
378         );
379         v = vcard_load(buf);    /** Start with the extra fields */
380         if (v == NULL) {
381                 safestrncpy(WC->ImportantMessage,
382                         _("An error has occurred."),
383                         sizeof WC->ImportantMessage
384                 );
385                 edit_vcard();
386                 return;
387         }
388
389         snprintf(buf, sizeof buf, "%s;%s;%s;%s;%s",
390                 bstr("lastname"),
391                 bstr("firstname"),
392                 bstr("middlename"),
393                 bstr("prefix"),
394                 bstr("suffix") );
395         vcard_add_prop(v, "n", buf);
396         
397         vcard_add_prop(v, "title", bstr("title"));
398         vcard_add_prop(v, "fn", bstr("fullname"));
399         vcard_add_prop(v, "org", bstr("org"));
400
401         snprintf(buf, sizeof buf, "%s;%s;%s;%s;%s;%s;%s",
402                 bstr("pobox"),
403                 bstr("extadr"),
404                 bstr("street"),
405                 bstr("city"),
406                 bstr("state"),
407                 bstr("zipcode"),
408                 bstr("country") );
409         vcard_add_prop(v, "adr", buf);
410
411         vcard_add_prop(v, "tel;home", bstr("hometel"));
412         vcard_add_prop(v, "tel;work", bstr("worktel"));
413         vcard_add_prop(v, "email;internet", bstr("primary_inetemail"));
414
415         for (i=0; i<num_tokens(bstr("other_inetemail"), '\n'); ++i) {
416                 extract_token(buf, bstr("other_inetemail"), i, '\n', sizeof buf);
417                 if (!IsEmptyStr(buf)) {
418                         vcard_add_prop(v, "email;internet", buf);
419                 }
420         }
421
422         serialized_vcard = vcard_serialize(v);
423         vcard_free(v);
424         if (serialized_vcard == NULL) {
425                 safestrncpy(WC->ImportantMessage,
426                         _("An error has occurred."),
427                         sizeof WC->ImportantMessage
428                 );
429                 edit_vcard();
430                 return;
431         }
432
433         serv_puts("Content-type: text/x-vcard; charset=UTF-8");
434         serv_puts("");
435         serv_printf("%s\r\n", serialized_vcard);
436         serv_puts("000");
437         free(serialized_vcard);
438
439         if (!strcmp(bstr("return_to"), "select_user_to_edit")) {
440                 select_user_to_edit(NULL, NULL);
441         }
442         else if (!strcmp(bstr("return_to"), "do_welcome")) {
443                 do_welcome();
444         }
445         else {
446                 readloop("readnew");
447         }
448 }
449
450
451
452 /*@}*/