indent -kr -i8 -brf -bbb -fnc -l132 -nce on all of webcit-classic
[citadel.git] / webcit / pushemail.c
index bc6a340dfc5a596102bf0a4b591fa108b9c11dd1..e3abeb698c3eeadd4ec39433ff49a168e51af413 100644 (file)
@@ -1,31 +1,33 @@
+
 /*
  * Edits a users push email settings 
  * Author: Mathew McBride <matt@mcbridematt.dhs.org>
  */
 #include "webcit.h"
 
-void display_pushemail(void) 
-{
+void display_pushemail(void) {
+       folder Room;
        int Done = 0;
        StrBuf *Buf;
-       int is_none = 0;
-       int is_pager = 0;
-       int is_funambol = 0;
+       long vector[8] = { 8, 0, 0, 1, 2, 3, 4, 5 };
+       WCTemplputParams SubTP;
        char mobnum[20];
 
-       /* Find any existing settings*/
+       StackContext(NULL, &SubTP, &vector, CTX_LONGVECTOR, 0, NULL);
+       vector[0] = 16;
+
+       /* Find any existing settings */
        Buf = NewStrBuf();
-       if (goto_config_room(Buf) == 0) {
+       memset(&Room, 0, sizeof(folder));
+       if (goto_config_room(Buf, &Room) == 0) {
                int msgnum = 0;
                serv_puts("MSGS ALL|0|1");
                StrBuf_ServGetln(Buf);
                if (GetServerStatus(Buf, NULL) == 8) {
                        serv_puts("subj|__ Push email settings __");
                        serv_puts("000");
-                       while (!Done &&
-                              StrBuf_ServGetln(Buf)) {
-                               if ( (StrLength(Buf)==3) && 
-                                    !strcmp(ChrPtr(Buf), "000")) {
+                       while (!Done && StrBuf_ServGetln(Buf) >= 0) {
+                               if ((StrLength(Buf) == 3) && !strcmp(ChrPtr(Buf), "000")) {
                                        Done = 1;
                                        break;
                                }
@@ -33,72 +35,61 @@ void display_pushemail(void)
                        }
                }
                if (msgnum > 0L) {
-               serv_printf("MSG0 %d", msgnum);
-               StrBuf_ServGetln(Buf);
-               if (GetServerStatus(Buf, NULL) == 1) {
-                       int i =0;
-                       Done = 0;
-                       while (!Done &&
-                              StrBuf_ServGetln(Buf)) {
-                               if (( (StrLength(Buf)==3) && 
-                                     !strcmp(ChrPtr(Buf), "000"))||
-                                   ((StrLength(Buf)==4) && 
-                                    !strcmp(ChrPtr(Buf), "text")))
-                               {
-                                       Done = 1;
-                                       break;
-                               }
-                       }
-                       if (!strcmp(ChrPtr(Buf), "text")) {
+                       serv_printf("MSG0 %d", msgnum);
+                       StrBuf_ServGetln(Buf);
+                       if (GetServerStatus(Buf, NULL) == 1) {
+                               int i = 0;
                                Done = 0;
-                               while (!Done &&
-                                      StrBuf_ServGetln(Buf)) {
-                                       if ( (StrLength(Buf)==3) && 
-                                            !strcmp(ChrPtr(Buf), "000")) {
+                               while (!Done && StrBuf_ServGetln(Buf) >= 0) {
+                                       if (((StrLength(Buf) == 3) &&
+                                            !strcmp(ChrPtr(Buf), "000")) ||
+                                           ((StrLength(Buf) == 4) && !strcmp(ChrPtr(Buf), "text"))) {
                                                Done = 1;
                                                break;
                                        }
-                                       if (strncasecmp(ChrPtr(Buf), "none", 4) == 0) {
-                                               is_none = 1;
-                                       } else if (strncasecmp(ChrPtr(Buf), "textmessage", 11) == 0) {
-                                               is_pager = 1;
-                                               i++;
-                                       } else if (strncasecmp(ChrPtr(Buf), "funambol", 8) == 0) {
-                                               is_funambol = 1;
-                                       } else if (i == 1) {
-                                               strncpy(mobnum, ChrPtr(Buf), 20);
-                                               i++;
+                               }
+                               if (!strcmp(ChrPtr(Buf), "text")) {
+                                       Done = 0;
+                                       while (!Done && StrBuf_ServGetln(Buf) >= 0) {
+                                               if ((StrLength(Buf) == 3) && !strcmp(ChrPtr(Buf), "000")) {
+                                                       Done = 1;
+                                                       break;
+                                               }
+                                               if (strncasecmp(ChrPtr(Buf), "none", 4) == 0) {
+                                                       vector[1] = 0;
+                                               }
+                                               else if (strncasecmp(ChrPtr(Buf), "textmessage", 11) == 0) {
+                                                       vector[1] = 1;
+                                                       i++;
+                                               }
+                                               else if (strncasecmp(ChrPtr(Buf), "funambol", 8) == 0) {
+                                                       vector[1] = 2;
+                                               }
+                                               else if (strncasecmp(ChrPtr(Buf), "httpmessage", 12) == 0) {
+                                                       vector[1] = 3;
+                                               }
+                                               else if (i == 1) {
+                                                       strncpy(mobnum, ChrPtr(Buf), 20);
+                                                       i++;
+                                               }
                                        }
-                               }       
+                               }
                        }
                }
-               }
-               /* TODO: do in a saner fashion. */
-               svput("PUSH_NONE", WCS_STRING, " "); /* defaults */
-               svput("PUSH_TEXT", WCS_STRING, " ");
-               svput("PUSH_FNBL", WCS_STRING, " ");
-               svput("SMSNUM", WCS_STRING, " ");
-               if (is_none) {
-                       svput("PUSH_NONE", WCS_STRING, "checked=\"checked\"");
-               } else if (is_pager) {
-                       svput("PUSH_TEXT", WCS_STRING, "checked=\"checked\"");
-                       svprintf(HKEY("SMSNUM"), WCS_STRING, "value=\"%s\"", mobnum);
-               } else if (is_funambol) {
-                       svput("PUSH_FNBL", WCS_STRING, "checked=\"checked\"");
-               }
-               serv_printf("GOTO %s", ChrPtr(WC->wc_roomname));
+               serv_printf("GOTO %s", ChrPtr(WC->CurRoom.name));
                StrBuf_ServGetln(Buf);
                GetServerStatus(Buf, NULL);
        }
-       output_headers(1, 1, 2, 0, 0, 0);
-       do_template("pushemail", NULL);
-/*do_template("endbox"); */
+       FlushFolder(&Room);
+       output_headers(1, 1, 1, 0, 0, 0);
+       DoTemplate(HKEY("prefs_pushemail"), NULL, &SubTP);
        wDumpContent(1);
+       UnStackContext(&SubTP);
        FreeStrBuf(&Buf);
 }
 
-void save_pushemail(void) 
-{
+void save_pushemail(void) {
+       folder Room;
        int Done = 0;
        StrBuf *Buf;
        char buf[SIZ];
@@ -110,24 +101,28 @@ void save_pushemail(void)
                sms = bstr("user_sms_number");
        }
        Buf = NewStrBuf();
-       if (goto_config_room(Buf) != 0) {
+       memset(&Room, 0, sizeof(folder));
+       if (goto_config_room(Buf, &Room) != 0) {
                FreeStrBuf(&Buf);
-               return; /* oh well. */
+               FlushFolder(&Room);
+               return;         /* oh well. */
        }
+       FlushFolder(&Room);
+
        serv_puts("MSGS ALL|0|1");
        StrBuf_ServGetln(Buf);
        if (GetServerStatus(Buf, NULL) == 8) {
                serv_puts("subj|__ Push email settings __");
                serv_puts("000");
-       } else {
+       }
+       else {
                printf("Junk in save_pushemail buffer!: %s\n", buf);
+               FreeStrBuf(&Buf);
                return;
        }
 
-       while (!Done &&
-              StrBuf_ServGetln(Buf)) {
-               if ( (StrLength(Buf)==3) && 
-                    !strcmp(ChrPtr(Buf), "000")) {
+       while (!Done && StrBuf_ServGetln(Buf) >= 0) {
+               if ((StrLength(Buf) == 3) && !strcmp(ChrPtr(Buf), "000")) {
                        Done = 1;
                        break;
                }
@@ -145,23 +140,21 @@ void save_pushemail(void)
        if (GetServerStatus(Buf, NULL) == 4) {
                serv_puts(pushsetting);
                if (sms != NULL) {
-               serv_puts(sms);
-               } 
+                       serv_puts(sms);
+               }
                serv_puts("");
                serv_puts("000");
        }
 
        /** Go back to the room we're supposed to be in */
-       serv_printf("GOTO %s", ChrPtr(WC->wc_roomname));
+       serv_printf("GOTO %s", ChrPtr(WC->CurRoom.name));
        StrBuf_ServGetln(Buf);
        GetServerStatus(Buf, NULL);
        http_redirect("display_pushemail");
+       FreeStrBuf(&Buf);
 }
 
-void 
-InitModule_PUSHMAIL
-(void)
-{
-       WebcitAddUrlHandler(HKEY("display_pushemail"), display_pushemail, 0);
-       WebcitAddUrlHandler(HKEY("save_pushemail"), save_pushemail, 0);
+void InitModule_PUSHMAIL(void) {
+       WebcitAddUrlHandler(HKEY("display_pushemail"), "", 0, display_pushemail, 0);
+       WebcitAddUrlHandler(HKEY("save_pushemail"), "", 0, save_pushemail, 0);
 }