* 'unsubscribe' command (but not 'confirm unsubscribe')
[citadel.git] / webcit / listsub.c
1 #include <ctype.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4 #include <stdio.h>
5 #include <fcntl.h>
6 #include <signal.h>
7 #include <sys/types.h>
8 #include <sys/wait.h>
9 #include <sys/socket.h>
10 #include <sys/time.h>
11 #include <limits.h>
12 #include <netinet/in.h>
13 #include <netdb.h>
14 #include <string.h>
15 #include <pwd.h>
16 #include <errno.h>
17 #include <stdarg.h>
18 #include <pthread.h>
19 #include <signal.h>
20 #include "webcit.h"
21
22
23
24 /*
25  * List subscription handling
26  */
27 void do_listsub(void)
28 {
29         char cmd[SIZ];
30         char room[SIZ];
31         char token[SIZ];
32         char email[SIZ];
33         char subtype[SIZ];
34
35         char buf[SIZ];
36         int self;
37         char sroom[SIZ];
38
39         strcpy(WC->wc_username, "");
40         strcpy(WC->wc_password, "");
41         strcpy(WC->wc_roomname, "");
42
43         wprintf("<HTML><HEAD><TITLE>List subscription</TITLE></HEAD><BODY>\n");
44
45         strcpy(cmd, bstr("cmd"));
46         strcpy(room, bstr("room"));
47         strcpy(token, bstr("token"));
48         strcpy(email, bstr("email"));
49         strcpy(subtype, bstr("subtype"));
50
51         wprintf("<CENTER>"
52                 "<TABLE WIDTH=100%% BORDER=0 BGCOLOR=000077><TR><TD>"
53                 "<FONT SIZE=+1 COLOR=\"FFFFFF\""
54                 "<B>List subscribe/unsubscribe</B>\n"
55                 "</TD></TR></TABLE><BR>\n"
56         );
57
58         /*
59          * Subscribe command
60          */
61         if (!strcasecmp(cmd, "subscribe")) {
62                 serv_printf("SUBS subscribe|%s|%s|digest|%s/listsub",
63                         room,
64                         email,
65                         WC->http_host
66                 );
67                 serv_gets(buf);
68                 if (buf[0] == '2') {
69                         wprintf("<CENTER><H1>Confirmation request sent</H1>"
70                                 "You are subscribing <TT>");
71                         escputs(email);
72                         wprintf("</TT> to the &quot;");
73                         escputs(room);
74                         wprintf("&quot; mailing list.  The listserver has "
75                                 "sent you an e-mail with one additional "
76                                 "Web link for you to click on to confirm "
77                                 "your subscription.  This extra step is for "
78                                 "your protection, as it prevents others from "
79                                 "being able to subscribe you to lists "
80                                 "without your consent.<BR><BR>"
81                                 "Please click on the link which is being "
82                                 "e-mailed to you and your subscription will "
83                                 "be confirmed.<BR></CENTER>\n"
84                         );
85                 }
86                 else {
87                         wprintf("<FONT SIZE=+1><B>ERROR: %s</B>"
88                                 "</FONT><BR><BR>\n",
89                                 &buf[4]);
90                         goto FORM;
91                 }
92         }
93
94         /*
95          * Unsubscribe command
96          */
97         else if (!strcasecmp(cmd, "unsubscribe")) {
98                 serv_printf("SUBS unsubscribe|%s|%s|%s/listsub",
99                         room,
100                         email,
101                         WC->http_host
102                 );
103                 serv_gets(buf);
104                 if (buf[0] == '2') {
105                         wprintf("<CENTER><H1>Confirmation request sent</H1>"
106                                 "You are unsubscribing <TT>");
107                         escputs(email);
108                         wprintf("</TT> from the &quot;");
109                         escputs(room);
110                         wprintf("&quot; mailing list.  The listserver has "
111                                 "sent you an e-mail with one additional "
112                                 "Web link for you to click on to confirm "
113                                 "your unsubscription.  This extra step is for "
114                                 "your protection, as it prevents others from "
115                                 "being able to unsubscribe you from "
116                                 "lists without your consent.<BR><BR>"
117                                 "Please click on the link which is being "
118                                 "e-mailed to you and your unsubscription will "
119                                 "be confirmed.<BR></CENTER>\n"
120                         );
121                 }
122                 else {
123                         wprintf("<FONT SIZE=+1><B>ERROR: %s</B>"
124                                 "</FONT><BR><BR>\n",
125                                 &buf[4]);
126                         goto FORM;
127                 }
128         }
129
130         /* 
131          * Confirm command
132          */
133         else if (!strcasecmp(cmd, "confirm")) {
134                 serv_printf("SUBS confirm|%s|%s",
135                         room,
136                         token
137                 );
138                 serv_gets(buf);
139                 if (buf[0] == '2') {
140                         wprintf("<CENTER><H1>Confirmation successful!</H1>");
141                 }
142                 else {
143                         wprintf("<CENTER><H1>Confirmation failed.</H1>");
144                 }
145                 wprintf("%s</CENTER><BR>\n", &buf[4]);
146         }
147
148         /*
149          * Any other (invalid) command causes the form to be displayed
150          */
151         else {
152 FORM:           wprintf("<FORM METHOD=\"POST\" ACTION=\"/listsub\">\n"
153                         "<TABLE BORDER=0>\n"
154                 );
155
156                 wprintf("<TR><TD>Name of list</TD><TD>"
157                         "<SELECT NAME=\"room\" SIZE=1>\n");
158
159                 serv_puts("LPRM");
160                 serv_gets(buf);
161                 if (buf[0] == '1') {
162                         while (serv_gets(buf), strcmp(buf, "000")) {
163                                 extract(sroom, buf, 0);
164                                 self = extract_int(buf, 4) & QR2_SELFLIST ;
165                                 if (self) {
166                                         wprintf("<OPTION VALUE=\"");
167                                         escputs(sroom);
168                                         wprintf("\">");
169                                         escputs(sroom);
170                                         wprintf("</OPTION>\n");
171                                 }
172                         }
173                 }
174                 wprintf("</SELECT>"
175                         "</TD></TR>\n");
176
177                 wprintf("<TR><TD>Your e-mail address</TD><TD>"
178                         "<INPUT TYPE=\"text\" NAME=\"email\" "
179                         "VALUE=\""
180                 );
181                 escputs(email);
182                 wprintf("\" MAXLENGTH=128></TD></TR>\n");
183
184                 wprintf("</TABLE>"
185                         "<INPUT TYPE=\"submit\" NAME=\"cmd\""
186                         " VALUE=\"subscribe\">\n"
187                         "<INPUT TYPE=\"submit\" NAME=\"cmd\""
188                         " VALUE=\"unsubscribe\">\n"
189                         "</FORM>\n"
190                 );
191
192                 wprintf("<BR>When you attempt to subscribe or unsubscribe to "
193                         "a mailing list, you will receive an e-mail containing"
194                         " one additional web link to click on for final "
195                         "confirmation.  This extra step is for your "
196                         "protection, as it prevents others from being able to "
197                         "subscribe or unsubscribe you to lists.<BR>\n"
198                 );
199
200         }
201
202         /*
203          * Since this isn't part of a normal Citadel session, we bail right
204          * out without maintaining any state.
205          */
206         /* wDumpContent(2); */
207         wprintf("</BODY></HTML>\n");
208         end_webcit_session();
209 }