Removed the unused second argument from the do_template() macro
[citadel.git] / webcit / listsub.c
index ce9b1ed5250a37555f3167242adf42abe826b280..0560d524879491dd8a12fc3c4ba377e9348a471a 100644 (file)
@@ -1,7 +1,21 @@
 /*
- * $Id$
- *
  * Web forms for handling mailing list subscribe/unsubscribe requests.
+ *
+ * Copyright (c) 1996-2011 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 as
+ * published by the Free Software Foundation; either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  */
 
 #include "webcit.h"
@@ -23,21 +37,21 @@ void do_listsub(void)
        int self;
        char sroom[SIZ];
 
-       strcpy(WC->wc_fullname, "");
-       strcpy(WC->wc_username, "");
-       strcpy(WC->wc_password, "");
-       strcpy(WC->wc_roomname, "");
+       FlushStrBuf(WC->wc_fullname);
+       FlushStrBuf(WC->wc_username);
+       FlushStrBuf(WC->wc_password);
+       FlushStrBuf(WC->CurRoom.name);
 
        output_headers(1, 0, 0, 1, 1, 0);
        begin_burst();
 
-       wprintf("<HTML><HEAD>\n"
+       wc_printf("<HTML><HEAD>\n"
                "<meta name=\"MSSmartTagsPreventParsing\" content=\"TRUE\" />\n"
-               "<link href=\"static/webcit.css\" rel=\"stylesheet\" type=\"text/css\">\n"
+               "<link href=\"static/styles/webcit.css\" rel=\"stylesheet\" type=\"text/css\">\n"
                "<TITLE>\n"
        );
-       wprintf(_("List subscription"));
-       wprintf("</TITLE></HEAD><BODY>\n");
+       wc_printf(_("List subscription"));
+       wc_printf("</TITLE></HEAD><BODY>\n");
 
        strcpy(cmd, bstr("cmd"));
        strcpy(room, bstr("room"));
@@ -45,33 +59,33 @@ void do_listsub(void)
        strcpy(email, bstr("email"));
        strcpy(subtype, bstr("subtype"));
 
-       wprintf("<div align=center>");
-       wprintf("<table border=0 width=75%%><tr><td>");
+       wc_printf("<div align=center>");
+       wc_printf("<table border=0 width=75%%><tr><td>");
 
-       svput("BOXTITLE", WCS_STRING, _("List subscribe/unsubscribe"));
-       do_template("beginbox");
-       wprintf("<div align=center><br>");
+       do_template("beginbox_1");
+       StrBufAppendBufPlain(WC->WBuf, _("List subscribe/unsubscribe"), -1, 0);
+       do_template("beginbox_2");
+       wc_printf("<div align=center><br>");
 
        /*
         * Subscribe command
         */
        if (!strcasecmp(cmd, "subscribe")) {
-               serv_printf("SUBS subscribe|%s|%s|%s|%s://%s/listsub",
+               serv_printf("SUBS subscribe|%s|%s|%s|%s/listsub",
                        room,
                        email,
                        subtype,
-                       (is_https ? "https" : "http"),
-                       WC->http_host
+                       ChrPtr(site_prefix)
                );
                serv_getln(buf, sizeof buf);
                if (buf[0] == '2') {
                        stresc(escaped_email, 256, email, 0, 0);
                        stresc(escaped_room, 256, room, 0, 0);
 
-                       wprintf("<CENTER><H1>");
-                       wprintf(_("Confirmation request sent"));
-                       wprintf("</H1>");
-                       wprintf(_("You are subscribing <TT>%s"
+                       wc_printf("<CENTER><H1>");
+                       wc_printf(_("Confirmation request sent"));
+                       wc_printf("</H1>");
+                       wc_printf(_("You are subscribing <TT>%s"
                                "</TT> to the <b>%s</b> mailing list.  "
                                "The listserver has "
                                "sent you an e-mail with one additional "
@@ -79,16 +93,16 @@ void do_listsub(void)
                                "your subscription.  This extra step is for "
                                "your protection, as it prevents others from "
                                "being able to subscribe you to lists "
-                               "without your consent.<br /><br />"
+                               "without your consent.<br><br>"
                                "Please click on the link which is being "
                                "e-mailed to you and your subscription will "
-                               "be confirmed.<br />\n"),
+                               "be confirmed.<br>\n"),
                                escaped_email, escaped_room);
-                       wprintf("<a href=\"listsub\">%s</A></CENTER>\n", _("Go back..."));
+                       wc_printf("<a href=\"listsub\">%s</A></CENTER>\n", _("Go back..."));
                }
                else {
-                       wprintf("<FONT SIZE=+1><B>ERROR: %s</B>"
-                               "</FONT><br /><br />\n",
+                       wc_printf("<FONT SIZE=+1><B>ERROR: %s</B>"
+                               "</FONT><br><br>\n",
                                &buf[4]);
                        goto FORM;
                }
@@ -98,35 +112,34 @@ void do_listsub(void)
         * Unsubscribe command
         */
        else if (!strcasecmp(cmd, "unsubscribe")) {
-               serv_printf("SUBS unsubscribe|%s|%s|%s://%s/listsub",
+               serv_printf("SUBS unsubscribe|%s|%s|%s/listsub",
                        room,
                        email,
-                       (is_https ? "https" : "http"),
-                       WC->http_host
+                       ChrPtr(site_prefix)
                );
                serv_getln(buf, sizeof buf);
                if (buf[0] == '2') {
-                       wprintf("<CENTER><H1>Confirmation request sent</H1>"
+                       wc_printf("<CENTER><H1>Confirmation request sent</H1>"
                                "You are unsubscribing <TT>");
                        escputs(email);
-                       wprintf("</TT> from the &quot;");
+                       wc_printf("</TT> from the &quot;");
                        escputs(room);
-                       wprintf("&quot; mailing list.  The listserver has "
+                       wc_printf("&quot; mailing list.  The listserver has "
                                "sent you an e-mail with one additional "
                                "Web link for you to click on to confirm "
                                "your unsubscription.  This extra step is for "
                                "your protection, as it prevents others from "
                                "being able to unsubscribe you from "
-                               "lists without your consent.<br /><br />"
+                               "lists without your consent.<br><br>"
                                "Please click on the link which is being "
                                "e-mailed to you and your unsubscription will "
-                               "be confirmed.<br />\n"
+                               "be confirmed.<br>\n"
                                "<a href=\"listsub\">Back...</A></CENTER>\n"
                        );
                }
                else {
-                       wprintf("<FONT SIZE=+1><B>ERROR: %s</B>"
-                               "</FONT><br /><br />\n",
+                       wc_printf("<FONT SIZE=+1><B>ERROR: %s</B>"
+                               "</FONT><br><br>\n",
                                &buf[4]);
                        goto FORM;
                }
@@ -142,10 +155,10 @@ void do_listsub(void)
                );
                serv_getln(buf, sizeof buf);
                if (buf[0] == '2') {
-                       wprintf("<CENTER><H1>Confirmation successful!</H1>");
+                       wc_printf("<CENTER><H1>Confirmation successful!</H1>");
                }
                else {
-                       wprintf("<CENTER><H1>Confirmation failed.</H1>"
+                       wc_printf("<CENTER><H1>Confirmation failed.</H1>"
                                "This could mean one of two things:<UL>\n"
                                "<LI>You waited too long to confirm your "
                                "subscribe/unsubscribe request (the "
@@ -157,16 +170,16 @@ void do_listsub(void)
                                "The error returned by the server was: "
                        );
                }
-               wprintf("%s</CENTER><br />\n", &buf[4]);
+               wc_printf("%s</CENTER><br>\n", &buf[4]);
        }
 
        /*
         * Any other (invalid) command causes the form to be displayed
         */
        else {
-FORM:          wprintf("<form method=\"POST\" action=\"listsub\">\n");
+FORM:          wc_printf("<form method=\"POST\" action=\"listsub\">\n");
 
-               wprintf("Name of list: "
+               wc_printf("Name of list: "
                        "<select name=\"room\" size=1>\n");
 
                serv_puts("LPRM");
@@ -176,24 +189,24 @@ FORM:             wprintf("<form method=\"POST\" action=\"listsub\">\n");
                                extract_token(sroom, buf, 0, '|', sizeof sroom);
                                self = extract_int(buf, 4) & QR2_SELFLIST ;
                                if (self) {
-                                       wprintf("<option value=\"");
+                                       wc_printf("<option value=\"");
                                        escputs(sroom);
-                                       wprintf("\">");
+                                       wc_printf("\">");
                                        escputs(sroom);
-                                       wprintf("</option>\n");
+                                       wc_printf("</option>\n");
                                }
                        }
                }
-               wprintf("</select><br><br>\n");
+               wc_printf("</select><br><br>\n");
 
-               wprintf("Your e-mail address: "
+               wc_printf("Your e-mail address: "
                        "<INPUT TYPE=\"text\" NAME=\"email\" "
                        "VALUE=\""
                );
                escputs(email);
-               wprintf("\" maxlength=128 size=60><br><br>\n");
+               wc_printf("\" maxlength=128 size=60><br><br>\n");
 
-               wprintf("(If subscribing) preferred format: "
+               wc_printf("(If subscribing) preferred format: "
                        "<INPUT TYPE=\"radio\" NAME=\"subtype\" "
                        "VALUE=\"list\" CHECKED>One message at a time&nbsp; "
                        "<INPUT TYPE=\"radio\" NAME=\"subtype\" "
@@ -206,21 +219,32 @@ FORM:             wprintf("<form method=\"POST\" action=\"listsub\">\n");
                        "</FORM>\n"
                );
 
-               wprintf("<hr>When you attempt to subscribe or unsubscribe to "
+               wc_printf("<hr>When you attempt to subscribe or unsubscribe to "
                        "a mailing list, you will receive an e-mail containing"
                        " one additional web link to click on for final "
                        "confirmation.  This extra step is for your "
                        "protection, as it prevents others from being able to "
-                       "subscribe or unsubscribe you to lists.<br />\n"
+                       "subscribe or unsubscribe you to lists.<br>\n"
                );
 
        }
 
-       wprintf("</div>");
+       wc_printf("</div>");
        do_template("endbox");
-       wprintf("</td></tr></table></div>");
+       wc_printf("</td></tr></table></div>");
 
-       wprintf("</BODY></HTML>\n");
+       wc_printf("</BODY></HTML>\n");
        wDumpContent(0);
        end_webcit_session();
 }
+
+
+
+void 
+InitModule_LISTSUB
+(void)
+{
+       WebcitAddUrlHandler(HKEY("listsub"), "", 0, do_listsub, ANONYMOUS|COOKIEUNNEEDED|FORCE_SESSIONCLOSE);
+
+
+}