Renamed SUBS command to LSUB and changed its parameters. Subscription Type no longer...
[citadel.git] / webcit / listsub.c
index 2ff32b762024827ea3b50a753c4dd661d65ba072..d445d05bd16cacdda9da0a7fe2850b02968100e7 100644 (file)
-#include <ctype.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <sys/socket.h>
-#include <sys/time.h>
-#include <limits.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <string.h>
-#include <pwd.h>
-#include <errno.h>
-#include <stdarg.h>
-#include <pthread.h>
-#include <signal.h>
-#include "webcit.h"
-
+/*
+ * Web forms for handling mailing list subscribe/unsubscribe requests.
+ *
+ * Copyright (c) 1996-2012 by the citadel.org team
+ *
+ * This program is open source software.  You can redistribute it and/or
+ * modify it under the terms of the GNU General Public License, version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
 
+#include "webcit.h"
 
 /*
  * List subscription handling
  */
-void do_listsub(void)
+int Conditional_LISTSUB_EXECUTE_SUBSCRIBE(StrBuf *Target, WCTemplputParams *TP) {
+       int rc;
+       StrBuf *Line;
+       const char *ImpMsg;
+       const StrBuf *Room, *Email;
+
+       if (strcmp(bstr("cmd"), "subscribe")) {
+               return 0;
+       }
+
+       Room = sbstr("room");
+       if (Room == NULL)
+       {
+               ImpMsg = _("You need to specify the mailinglist to subscribe to.");
+               AppendImportantMessage(ImpMsg, -1);
+               return 0;
+       }
+       Email = sbstr("email");
+       if (Email == NULL)
+       {
+               ImpMsg = _("You need to specify the email address you'd like to subscribe with.");
+               AppendImportantMessage(ImpMsg, -1);
+               return 0;
+       }
+
+       Line = NewStrBuf();
+       serv_printf("LSUB subscribe|%s|%s|%s/listsub", ChrPtr(Room), ChrPtr(Email), ChrPtr(site_prefix));
+       StrBuf_ServGetln(Line);
+       rc = GetServerStatusMsg(Line, NULL, 1, 2);
+       FreeStrBuf(&Line);
+       if (rc == 2) {
+               putbstr("__FAIL", NewStrBufPlain(HKEY("1")));
+       }
+       return rc == 2;
+}
+
+
+int Conditional_LISTSUB_EXECUTE_UNSUBSCRIBE(StrBuf *Target, WCTemplputParams *TP) {
+       int rc;
+       StrBuf *Line;
+       const char *ImpMsg;
+       const StrBuf *Room, *Email;
+
+       if (strcmp(bstr("cmd"), "unsubscribe")) {
+               return 0;
+       }
+
+       Room = sbstr("room");
+       if (Room == NULL)
+       {
+               ImpMsg = _("You need to specify the mailinglist to subscribe to.");
+               AppendImportantMessage(ImpMsg, -1);
+               return 0;
+       }
+       Email = sbstr("email");
+       if (Email == NULL)
+       {
+               ImpMsg = _("You need to specify the email address you'd like to subscribe with.");
+               AppendImportantMessage(ImpMsg, -1);
+               return 0;
+       }
+
+       serv_printf("LSUB unsubscribe|%s|%s|%s/listsub", ChrPtr(Room), ChrPtr(Email), ChrPtr(site_prefix));
+       Line = NewStrBuf();
+       StrBuf_ServGetln(Line);
+       rc = GetServerStatusMsg(Line, NULL, 1, 2);
+       FreeStrBuf(&Line);
+       if (rc == 2)
+               putbstr("__FAIL", NewStrBufPlain(HKEY("1")));
+       return rc == 2;
+}
+
+int Conditional_LISTSUB_EXECUTE_CONFIRM_SUBSCRIBE(StrBuf *Target, WCTemplputParams *TP)
 {
-       char cmd[SIZ];
-       char room[SIZ];
-       char token[SIZ];
-       char email[SIZ];
-       char subtype[SIZ];
-
-       strcpy(WC->wc_username, "");
-       strcpy(WC->wc_password, "");
-       strcpy(WC->wc_roomname, "");
-
-       output_headers(2);      /* note "2" causes cookies to be unset */
-
-       strcpy(cmd, bstr("cmd"));
-       strcpy(room, bstr("room"));
-       strcpy(token, bstr("token"));
-       strcpy(email, bstr("email"));
-       strcpy(subtype, bstr("subtype"));
-
-       /*
-        * Subscribe command
-        */
-       if (!strcasecmp(cmd, "xx")) {
+       int rc;
+       StrBuf *Line;
+       const char *ImpMsg;
+       const StrBuf *Room, *Token;
+
+       if (strcmp(bstr("cmd"), "confirm")) {
+               return 0;
+       }
+
+       Room = sbstr("room");
+       if (Room == NULL)
+       {
+               ImpMsg = _("You need to specify the mailinglist to subscribe to.");
+               AppendImportantMessage(ImpMsg, -1);
+               return 0;
        }
-       
-       /*
-        * Any other (invalid) command causes the form to be displayed
-        */
-       else {
-               wprintf("<CENTER>"
-                       "<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770000><TR><TD>"
-                       "<FONT SIZE=+1 COLOR=\"FFFFFF\""
-                       "<B>List subscribe/unsubscribe</B>\n"
-                       "</TD></TR></TABLE><BR>\n"
-               );
-
-               wprintf("<TABLE BORDER=0>\n"
-                       "<FORM METHOD=\"POST\" ACTION=\"/listsub\">\n"
-               );
-
-               wprintf("<TR><TD>Name of list</TD>"
-                       "<TD>xx</TD></TR>\n"
-               );
-
-               wprintf("</TABLE>"
-                       "<INPUT TYPE=\"submit\" NAME=\"sc\""
-                       " VALUE=\"Submit\">\n"
-                       "</CENTER></FORM>\n"
-               );
+       Token = sbstr("token");
+       if (Room == NULL)
+       {
+               ImpMsg = _("You need to specify the mailinglist to subscribe to.");
+               AppendImportantMessage(ImpMsg, -1);
+               return 0;
        }
 
-       /*
-        * Since this isn't part of a normal Citadel session, we bail right
-        * out without maintaining any state.
-        */
-       wDumpContent(2);
-       end_webcit_session();
+       Line = NewStrBuf();
+       serv_printf("LSUB confirm|%s|%s", ChrPtr(Room), ChrPtr(Token));
+       StrBuf_ServGetln(Line);
+       rc = GetServerStatusMsg(Line, NULL, 1, 2);
+       FreeStrBuf(&Line);
+       if (rc == 2)
+               putbstr("__FAIL", NewStrBufPlain(HKEY("1")));
+       return rc == 2;
+}
+
+void do_listsub(void)
+{
+       if (!havebstr("cmd"))
+       {
+               putbstr("cmd", NewStrBufPlain(HKEY("choose")));
+       }
+       output_headers(1, 0, 0, 0, 1, 0);
+       do_template("listsub_display");
+       end_burst();
+}
+
+void 
+InitModule_LISTSUB
+(void)
+{
+       RegisterConditional("COND:LISTSUB:EXECUTE:SUBSCRIBE", 0, Conditional_LISTSUB_EXECUTE_SUBSCRIBE,  CTX_NONE);
+       RegisterConditional("COND:LISTSUB:EXECUTE:UNSUBSCRIBE", 0, Conditional_LISTSUB_EXECUTE_UNSUBSCRIBE,  CTX_NONE);
+       RegisterConditional("COND:LISTSUB:EXECUTE:CONFIRM:SUBSCRIBE", 0, Conditional_LISTSUB_EXECUTE_CONFIRM_SUBSCRIBE,  CTX_NONE);
+
+       WebcitAddUrlHandler(HKEY("listsub"), "", 0, do_listsub, ANONYMOUS|COOKIEUNNEEDED|FORCE_SESSIONCLOSE);
+
+
 }