use the same way to display all banners and services contents
[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, 2, 0, 0, 0);
178         wprintf("<div id=\"banner\">\n");
179         wprintf("<img src=\"static/savecontact_48x.gif\">");
180         wprintf("<h1>");
181         wprintf(_("Edit contact information"));
182         wprintf("</h1>");
183         wprintf("</div>\n");
184         wprintf("<div id=\"content\" class=\"service\">\n");
185
186         wprintf("<form method=\"POST\" action=\"submit_vcard\">\n");
187         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
188         wprintf("<div class=\"fix_scrollbar_bug\">"
189                 "<table class=\"vcard_edit_background\"><tr><td>\n");
190
191         wprintf("<table border=0><tr>"
192                 "<td>%s</td>"
193                 "<td>%s</td>"
194                 "<td>%s</td>"
195                 "<td>%s</td>"
196                 "<td>%s</td></tr>\n",
197                 _("Prefix"), _("First"), _("Middle"), _("Last"), _("Suffix")
198         );
199         wprintf("<tr><td><input type=\"text\" name=\"prefix\" "
200                 "value=\"%s\" maxlength=\"5\" size=\"5\"></td>",
201                 prefix);
202         wprintf("<td><input type=\"text\" name=\"firstname\" "
203                 "value=\"%s\" maxlength=\"29\"></td>",
204                 firstname);
205         wprintf("<td><input type=\"text\" name=\"middlename\" "
206                 "value=\"%s\" maxlength=\"29\"></td>",
207                 middlename);
208         wprintf("<td><input type=\"text\" name=\"lastname\" "
209                 "value=\"%s\" maxlength=\"29\"></td>",
210                 lastname);
211         wprintf("<td><input type=\"text\" name=\"suffix\" "
212                 "value=\"%s\" maxlength=\"10\" size=\"10\"></td></tr></table>\n",
213                 suffix);
214
215         wprintf("<table  class=\"vcard_edit_background_alt\">");
216         wprintf("<tr><td>");
217
218         wprintf(_("Display name:"));
219         wprintf("<br>"
220                 "<input type=\"text\" name=\"fullname\" "
221                 "value=\"%s\" maxlength=\"40\"><br><br>\n",
222                 fullname
223         );
224
225         wprintf(_("Title:"));
226         wprintf("<br>"
227                 "<input type=\"text\" name=\"title\" "
228                 "value=\"%s\" maxlength=\"40\"><br><br>\n",
229                 title
230         );
231
232         wprintf(_("Organization:"));
233         wprintf("<br>"
234                 "<input type=\"text\" name=\"org\" "
235                 "value=\"%s\" maxlength=\"40\"><br><br>\n",
236                 org
237         );
238
239         wprintf("</td><td>");
240
241         wprintf("<table border=0>");
242         wprintf("<tr><td>");
243         wprintf(_("PO box:"));
244         wprintf("</td><td>"
245                 "<input type=\"text\" name=\"pobox\" "
246                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
247                 pobox);
248         wprintf("<tr><td>");
249         wprintf(_("Address:"));
250         wprintf("</td><td>"
251                 "<input type=\"text\" name=\"extadr\" "
252                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
253                 extadr);
254         wprintf("<tr><td> </td><td>"
255                 "<input type=\"text\" name=\"street\" "
256                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
257                 street);
258         wprintf("<tr><td>");
259         wprintf(_("City:"));
260         wprintf("</td><td>"
261                 "<input type=\"text\" name=\"city\" "
262                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
263                 city);
264         wprintf("<tr><td>");
265         wprintf(_("State:"));
266         wprintf("</td><td>"
267                 "<input type=\"text\" name=\"state\" "
268                 "value=\"%s\" maxlength=\"29\"></td></tr>\n",
269                 state);
270         wprintf("<tr><td>");
271         wprintf(_("ZIP code:"));
272         wprintf("</td><td>"
273                 "<input type=\"text\" name=\"zipcode\" "
274                 "value=\"%s\" maxlength=\"10\"></td></tr>\n",
275                 zipcode);
276         wprintf("<tr><td>");
277         wprintf(_("Country:"));
278         wprintf("</td><td>"
279                 "<input type=\"text\" name=\"country\" "
280                 "value=\"%s\" maxlength=\"29\" width=\"5\"></td></tr>\n",
281                 country);
282         wprintf("</table>\n");
283
284         wprintf("</table>\n");
285
286         wprintf("<table border=0><tr><td>");
287         wprintf(_("Home telephone:"));
288         wprintf("</td>"
289                 "<td><input type=\"text\" name=\"hometel\" "
290                 "value=\"%s\" maxlength=\"29\"></td>\n",
291                 hometel);
292         wprintf("<td>");
293         wprintf(_("Work telephone:"));
294         wprintf("</td>"
295                 "<td><input type=\"text\" name=\"worktel\" "
296                 "value=\"%s\" maxlength=\"29\"></td></tr></table>\n",
297                 worktel);
298
299         wprintf("<table class=\"vcard_edit_background_alt\">");
300         wprintf("<tr><td>");
301
302         wprintf("<table border=0><TR>"
303                 "<td valign=top>");
304         wprintf(_("Primary Internet e-mail address"));
305         wprintf("<br />"
306                 "<input type=\"text\" name=\"primary_inetemail\" "
307                 "size=40 maxlength=60 value=\"");
308         escputs(primary_inetemail);
309         wprintf("\"><br />"
310                 "</td><td valign=top>");
311         wprintf(_("Internet e-mail aliases"));
312         wprintf("<br />"
313                 "<textarea name=\"other_inetemail\" rows=5 cols=40 width=40>");
314         escputs(other_inetemail);
315         wprintf("</textarea></td></tr></table>\n");
316
317         wprintf("</td></tr></table>\n");
318
319         wprintf("<input type=\"hidden\" name=\"extrafields\" value=\"");
320         escputs(extrafields);
321         wprintf("\">\n");
322
323         wprintf("<input type=\"hidden\" name=\"return_to\" value=\"");
324         urlescputs(return_to);
325         wprintf("\">\n");
326
327         wprintf("<center>\n"
328                 "<input type=\"submit\" name=\"ok_button\" value=\"%s\">"
329                 "&nbsp;"
330                 "<input type=\"submit\" name=\"cancel_button\" value=\"%s\">"
331                 "</center></form>\n",
332                 _("Save changes"),
333                 _("Cancel")
334         );
335         
336         wprintf("</td></tr></table></div>\n");
337         wDumpContent(1);
338 }
339
340
341 /**
342  * \brief commit the edits to the citadel server
343  */
344 void edit_vcard(void) {
345         long msgnum;
346         char *partnum;
347
348         msgnum = atol(bstr("msgnum"));
349         partnum = bstr("partnum");
350         do_edit_vcard(msgnum, partnum, "");
351 }
352
353
354
355 /**
356  * \brief parse edited vcard from the browser
357  */
358 void submit_vcard(void) {
359         struct vCard *v;
360         char *serialized_vcard;
361         char buf[SIZ];
362         int i;
363
364         if (IsEmptyStr(bstr("ok_button"))) { 
365                 readloop("readnew");
366                 return;
367         }
368
369         sprintf(buf, "ENT0 1|||4||");
370         serv_puts(buf);
371         serv_getln(buf, sizeof buf);
372         if (buf[0] != '4') {
373                 edit_vcard();
374                 return;
375         }
376
377         /** Make a vCard structure out of the data supplied in the form */
378
379         snprintf(buf, sizeof buf, "begin:vcard\r\n%s\r\nend:vcard\r\n",
380                 bstr("extrafields")
381         );
382         v = vcard_load(buf);    /** Start with the extra fields */
383         if (v == NULL) {
384                 safestrncpy(WC->ImportantMessage,
385                         _("An error has occurred."),
386                         sizeof WC->ImportantMessage
387                 );
388                 edit_vcard();
389                 return;
390         }
391
392         snprintf(buf, sizeof buf, "%s;%s;%s;%s;%s",
393                 bstr("lastname"),
394                 bstr("firstname"),
395                 bstr("middlename"),
396                 bstr("prefix"),
397                 bstr("suffix") );
398         vcard_add_prop(v, "n", buf);
399         
400         vcard_add_prop(v, "title", bstr("title"));
401         vcard_add_prop(v, "fn", bstr("fullname"));
402         vcard_add_prop(v, "org", bstr("org"));
403
404         snprintf(buf, sizeof buf, "%s;%s;%s;%s;%s;%s;%s",
405                 bstr("pobox"),
406                 bstr("extadr"),
407                 bstr("street"),
408                 bstr("city"),
409                 bstr("state"),
410                 bstr("zipcode"),
411                 bstr("country") );
412         vcard_add_prop(v, "adr", buf);
413
414         vcard_add_prop(v, "tel;home", bstr("hometel"));
415         vcard_add_prop(v, "tel;work", bstr("worktel"));
416         vcard_add_prop(v, "email;internet", bstr("primary_inetemail"));
417
418         for (i=0; i<num_tokens(bstr("other_inetemail"), '\n'); ++i) {
419                 extract_token(buf, bstr("other_inetemail"), i, '\n', sizeof buf);
420                 if (!IsEmptyStr(buf)) {
421                         vcard_add_prop(v, "email;internet", buf);
422                 }
423         }
424
425         serialized_vcard = vcard_serialize(v);
426         vcard_free(v);
427         if (serialized_vcard == NULL) {
428                 safestrncpy(WC->ImportantMessage,
429                         _("An error has occurred."),
430                         sizeof WC->ImportantMessage
431                 );
432                 edit_vcard();
433                 return;
434         }
435
436         serv_puts("Content-type: text/x-vcard; charset=UTF-8");
437         serv_puts("");
438         serv_printf("%s\r\n", serialized_vcard);
439         serv_puts("000");
440         free(serialized_vcard);
441
442         if (!strcmp(bstr("return_to"), "select_user_to_edit")) {
443                 select_user_to_edit(NULL, NULL);
444         }
445         else if (!strcmp(bstr("return_to"), "do_welcome")) {
446                 do_welcome();
447         }
448         else {
449                 readloop("readnew");
450         }
451 }
452
453
454
455 /*@}*/