* Cleaned up the rcs/cvs Id tags and leading comments at the top of some files
[citadel.git] / webcit / vcard_edit.c
index 12f15cbe7d1b1f2173dc09919cc7ebd6078461e4..9397082a832261e7cf2ef264f641bd9300a42137 100644 (file)
@@ -1,9 +1,8 @@
 /*
- * vcard_edit.c
+ * $Id$
  *
  * Handles editing of vCard objects.
  *
- * $Id$
  */
 
 #include <ctype.h>
 #include "vcard.h"
 
 
-
-void edit_vcard(void) {
+/* Edit the vCard component of a MIME message.  Supply the message number
+ * and MIME part number to fetch.  Or, specify -1 for the message number
+ * to start with a blank card.
+ */
+void do_edit_vcard(long msgnum, char *partnum, char *return_to) {
        char buf[SIZ];
        char *serialized_vcard = NULL;
        size_t total_len = 0;
-       size_t bytes = 0;
-       size_t thisblock = 0;
        struct vCard *v;
        int i;
        char *key, *value;
+       char whatuser[SIZ];
 
        char lastname[SIZ];
        char firstname[SIZ];
@@ -52,6 +53,10 @@ void edit_vcard(void) {
        char state[SIZ];
        char zipcode[SIZ];
        char country[SIZ];
+       char hometel[SIZ];
+       char worktel[SIZ];
+       char primary_inetemail[SIZ];
+       char other_inetemail[SIZ];
        char extrafields[SIZ];
 
        lastname[0] = 0;
@@ -66,107 +71,148 @@ void edit_vcard(void) {
        state[0] = 0;
        zipcode[0] = 0;
        country[0] = 0;
+       hometel[0] = 0;
+       worktel[0] = 0;
+       primary_inetemail[0] = 0;
+       other_inetemail[0] = 0;
        extrafields[0] = 0;
 
-       output_headers(1);
-       sprintf(buf, "OPNA %s|%s", bstr("msgnum"), bstr("partnum") );
-       serv_puts(buf);
-       serv_gets(buf);
-       if (buf[0] != '2') {
-               wDumpContent(1);
-               return;
-       }
+       output_headers(1, 1, 0, 0, 0, 0, 0);
+
+       strcpy(whatuser, "");
 
-       total_len = atoi(&buf[4]);
-       serialized_vcard = malloc(total_len + 1);
-       while (bytes < total_len) {
-               thisblock = 4000;
-               if ((total_len - bytes) < thisblock) thisblock = total_len - bytes;
-               sprintf(buf, "READ %d|%d", bytes, thisblock);
+       if (msgnum >= 0) {
+               sprintf(buf, "MSG0 %ld|1", msgnum);
                serv_puts(buf);
                serv_gets(buf);
-               if (buf[0] == '6') {
-                       thisblock = atoi(&buf[4]);
-                       serv_read(&serialized_vcard[bytes], thisblock);
-                       bytes += thisblock;
+               if (buf[0] != '1') {
+                       wDumpContent(1);
+                       return;
                }
-               else {
-                       wprintf("Error: %s<BR>\n", &buf[4]);
+               while (serv_gets(buf), strcmp(buf, "000")) {
+                       if (!strncasecmp(buf, "from=", 5)) {
+                               strcpy(whatuser, &buf[5]);
+                       }
+                       else if (!strncasecmp(buf, "node=", 5)) {
+                               strcat(whatuser, " @ ");
+                               strcat(whatuser, &buf[5]);
+                       }
                }
-       }
-
-       serv_puts("CLOS");
-       serv_gets(buf);
-       serialized_vcard[total_len + 1] = 0;
-
-       v = vcard_load(serialized_vcard);
-       free(serialized_vcard);
-
-       /* Populate the variables for our form */
-       i = 0;
-       while (key = vcard_get_prop(v, "", 0, i, 1), key != NULL) {
-               value = vcard_get_prop(v, "", 0, i++, 0);
-
-               if (!strcasecmp(key, "n")) {
-                       extract_token(lastname, value, 0, ';');
-                       extract_token(firstname, value, 1, ';');
-                       extract_token(middlename, value, 2, ';');
-                       extract_token(prefix, value, 3, ';');
-                       extract_token(suffix, value, 4, ';');
-               }
-
-               else if (!strcasecmp(key, "adr")) {
-                       extract_token(pobox, value, 0, ';');
-                       extract_token(extadr, value, 1, ';');
-                       extract_token(street, value, 2, ';');
-                       extract_token(city, value, 3, ';');
-                       extract_token(state, value, 4, ';');
-                       extract_token(zipcode, value, 5, ';');
-                       extract_token(country, value, 6, ';');
+       
+               sprintf(buf, "OPNA %ld|%s", msgnum, partnum);
+               serv_puts(buf);
+               serv_gets(buf);
+               if (buf[0] != '2') {
+                       wDumpContent(1);
+                       return;
                }
-
-               else {
-                       strcat(extrafields, key);
-                       strcat(extrafields, ":");
-                       strcat(extrafields, value);
-                       strcat(extrafields, "\n");
+       
+               total_len = atoi(&buf[4]);
+               serialized_vcard = malloc(total_len + 1);
+       
+               read_server_binary(serialized_vcard, total_len);
+       
+               serv_puts("CLOS");
+               serv_gets(buf);
+               serialized_vcard[total_len + 1] = 0;
+       
+               v = vcard_load(serialized_vcard);
+               free(serialized_vcard);
+       
+               /* Populate the variables for our form */
+               i = 0;
+               while (key = vcard_get_prop(v, "", 0, i, 1), key != NULL) {
+                       value = vcard_get_prop(v, "", 0, i++, 0);
+       
+                       if (!strcasecmp(key, "n")) {
+                               extract_token(lastname, value, 0, ';');
+                               extract_token(firstname, value, 1, ';');
+                               extract_token(middlename, value, 2, ';');
+                               extract_token(prefix, value, 3, ';');
+                               extract_token(suffix, value, 4, ';');
+                       }
+       
+                       else if (!strcasecmp(key, "adr")) {
+                               extract_token(pobox, value, 0, ';');
+                               extract_token(extadr, value, 1, ';');
+                               extract_token(street, value, 2, ';');
+                               extract_token(city, value, 3, ';');
+                               extract_token(state, value, 4, ';');
+                               extract_token(zipcode, value, 5, ';');
+                               extract_token(country, value, 6, ';');
+                       }
+       
+                       else if (!strcasecmp(key, "tel;home")) {
+                               extract_token(hometel, value, 0, ';');
+                       }
+       
+                       else if (!strcasecmp(key, "tel;work")) {
+                               extract_token(worktel, value, 0, ';');
+                       }
+       
+                       else if (!strcasecmp(key, "email;internet")) {
+                               if (primary_inetemail[0] == 0) {
+                                       strcpy(primary_inetemail, value);
+                               }
+                               else {
+                                       if (other_inetemail[0] != 0) {
+                                               strcat(other_inetemail, "\n");
+                                       }
+                                       strcat(other_inetemail, value);
+                               }
+                       }
+       
+                       else {
+                               strcat(extrafields, key);
+                               strcat(extrafields, ":");
+                               strcat(extrafields, value);
+                               strcat(extrafields, "\n");
+                       }
+       
                }
-
-       }
        
-       vcard_free(v);
+               vcard_free(v);
+       }
 
        /* Display the form */
-       wprintf("<FORM METHOD=\"POST\" ACTION=\"/do_FIXME_stuff\">\n");
-       wprintf("<H2><IMG VALIGN=CENTER SRC=\"/static/vcard.gif\">"
-               "Contact information for FIXME</H2>\n");
+       do_template("beginbox_nt");
+       wprintf("<FORM METHOD=\"POST\" ACTION=\"/submit_vcard\">\n");
+       wprintf("<H2><IMG ALIGN=CENTER SRC=\"/static/vcard.gif\">"
+               "Contact information for ");
+       escputs(whatuser);
+       wprintf("</H2>\n");
 
-       wprintf("Last name: "
-               "<INPUT TYPE=\"text\" NAME=\"lastname\" "
-               "VALUE=\"%s\" MAXLENGTH=\"29\"><BR>\n",
-               lastname);
-       wprintf("First name: "
-               "<INPUT TYPE=\"text\" NAME=\"firstname\" "
-               "VALUE=\"%s\" MAXLENGTH=\"29\"><BR>\n",
-               firstname);
-       wprintf("Prefix: "
-               "<INPUT TYPE=\"text\" NAME=\"prefix\" "
-               "VALUE=\"%s\" MAXLENGTH=\"5\"><BR>\n",
+       wprintf("<TABLE border=0><TR>"
+               "<TD>Prefix</TD>"
+               "<TD>First</TD>"
+               "<TD>Middle</TD>"
+               "<TD>Last</TD>"
+               "<TD>Suffix</TD></TR>\n");
+       wprintf("<TR><TD><INPUT TYPE=\"text\" NAME=\"prefix\" "
+               "VALUE=\"%s\" MAXLENGTH=\"5\"></TD>",
                prefix);
-       wprintf("Suffix: "
-               "<INPUT TYPE=\"text\" NAME=\"suffix\" "
-               "VALUE=\"%s\" MAXLENGTH=\"10\"><BR><BR>\n",
+       wprintf("<TD><INPUT TYPE=\"text\" NAME=\"firstname\" "
+               "VALUE=\"%s\" MAXLENGTH=\"29\"></TD>",
+               firstname);
+       wprintf("<TD><INPUT TYPE=\"text\" NAME=\"middlename\" "
+               "VALUE=\"%s\" MAXLENGTH=\"29\"></TD>",
+               middlename);
+       wprintf("<TD><INPUT TYPE=\"text\" NAME=\"lastname\" "
+               "VALUE=\"%s\" MAXLENGTH=\"29\"></TD>",
+               lastname);
+       wprintf("<TD><INPUT TYPE=\"text\" NAME=\"suffix\" "
+               "VALUE=\"%s\" MAXLENGTH=\"10\"></TD></TR></TABLE>\n",
                suffix);
 
-       wprintf("<TABLE border=0><TR><TD>Address - PO box; optional:</TD>"
+       wprintf("<TABLE border=0><TR><TD>PO box (optional):</TD>"
                "<TD><INPUT TYPE=\"text\" NAME=\"pobox\" "
                "VALUE=\"%s\" MAXLENGTH=\"29\"></TD></TR>\n",
                pobox);
-       wprintf("<TR><TD>Street:</TD>"
+       wprintf("<TR><TD>Address line 1:</TD>"
                "<TD><INPUT TYPE=\"text\" NAME=\"extadr\" "
                "VALUE=\"%s\" MAXLENGTH=\"29\"></TD></TR>\n",
                extadr);
-       wprintf("<TR><TD>&nbsp;</TD>"
+       wprintf("<TR><TD>Address line 2:</TD>"
                "<TD><INPUT TYPE=\"text\" NAME=\"street\" "
                "VALUE=\"%s\" MAXLENGTH=\"29\"></TD></TR>\n",
                street);
@@ -187,10 +233,116 @@ void edit_vcard(void) {
                "VALUE=\"%s\" MAXLENGTH=\"29\"></TD></TR></TABLE>\n",
                country);
 
-       wprintf("<TEXTAREA NAME=\"extrafields\" ROWS=10 COLS=80 WIDTH=80>");
+       wprintf("<TABLE BORDER=0><TR><TD>Home telephone:</TD>"
+               "<TD><INPUT TYPE=\"text\" NAME=\"hometel\" "
+               "VALUE=\"%s\" MAXLENGTH=\"29\"></TD></TR>\n",
+               hometel);
+       wprintf("<TR><TD>Work telephone:</TD>"
+               "<TD><INPUT TYPE=\"text\" NAME=\"worktel\" "
+               "VALUE=\"%s\" MAXLENGTH=\"29\"></TD></TR></TABLE>\n",
+               worktel);
+
+       wprintf("<br /><TABLE border=0><TR>"
+               "<TD VALIGN=TOP>Primary Internet e-mail address<br />"
+               "<INPUT TYPE=\"text\" NAME=\"primary_inetemail\" "
+               "SIZE=40 MAXLENGTH=40 VALUE=\"");
+       escputs(primary_inetemail);
+       wprintf("\"><br />"
+               "</TD><TD VALIGN=TOP>"
+               "Other Internet e-mail addresses<br />"
+               "<TEXTAREA NAME=\"other_inetemail\" ROWS=5 COLS=40 WIDTH=40>");
+       escputs(other_inetemail);
+       wprintf("</TEXTAREA></TD></TR></TABLE><br />\n");
+
+       wprintf("<INPUT TYPE=\"hidden\" NAME=\"extrafields\" VALUE=\"");
        escputs(extrafields);
-       wprintf("</TEXTAREA><BR>\n");
+       wprintf("\">\n");
 
-        
+       wprintf("<INPUT TYPE=\"hidden\" NAME=\"return_to\" VALUE=\"");
+       urlescputs(return_to);
+       wprintf("\">\n");
+
+       wprintf("<CENTER>\n"
+               "<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"OK\">"
+               "&nbsp;"
+               "<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\">"
+               "</CENTER></FORM>\n"
+       );
+       
+       do_template("endbox");
        wDumpContent(1);
 }
+
+
+
+void edit_vcard(void) {
+       long msgnum;
+       char *partnum;
+
+       msgnum = atol(bstr("msgnum"));
+       partnum = bstr("partnum");
+       do_edit_vcard(msgnum, partnum, "");
+}
+
+
+
+
+void submit_vcard(void) {
+       char buf[SIZ];
+       int i;
+
+       if (strcmp(bstr("sc"), "OK")) { 
+               readloop("readnew");
+               return;
+       }
+
+       sprintf(buf, "ENT0 1|||4||");
+       serv_puts(buf);
+       serv_gets(buf);
+       if (buf[0] != '4') {
+               edit_vcard();
+               return;
+       }
+
+       serv_puts("Content-type: text/x-vcard");
+       serv_puts("");
+       serv_puts("begin:vcard");
+       serv_printf("n:%s;%s;%s;%s;%s",
+               bstr("lastname"),
+               bstr("firstname"),
+               bstr("middlename"),
+               bstr("prefix"),
+               bstr("suffix") );
+       serv_printf("adr:%s;%s;%s;%s;%s;%s;%s",
+               bstr("pobox"),
+               bstr("extadr"),
+               bstr("street"),
+               bstr("city"),
+               bstr("state"),
+               bstr("zipcode"),
+               bstr("country") );
+       serv_printf("tel;home:%s", bstr("hometel") );
+       serv_printf("tel;work:%s", bstr("worktel") );
+
+       serv_printf("email;internet:%s\n", bstr("primary_inetemail"));  
+       for (i=0; i<num_tokens(bstr("other_inetemail"), '\n'); ++i) {
+               extract_token(buf, bstr("other_inetemail"), i, '\n');
+               if (strlen(buf) > 0) {
+                       serv_printf("email;internet:%s", buf);
+               }
+       }
+
+       serv_printf("%s", bstr("extrafields") );
+       serv_puts("end:vcard");
+       serv_puts("000");
+
+       if (!strcmp(bstr("return_to"), "/select_user_to_edit")) {
+               select_user_to_edit(NULL, NULL);
+       }
+       else if (!strcmp(bstr("return_to"), "/do_welcome")) {
+               do_welcome();
+       }
+       else {
+               readloop("readnew");
+       }
+}