* Enable a "make this my start page" link that works in lots of places.
[citadel.git] / webcit / mainmenu.c
1 /* $Id$ */
2
3
4
5
6 #include <ctype.h>
7 #include <stdlib.h>
8 #include <unistd.h>
9 #include <stdio.h>
10 #include <fcntl.h>
11 #include <signal.h>
12 #include <sys/types.h>
13 #include <sys/wait.h>
14 #include <sys/socket.h>
15 #include <sys/time.h>
16 #include <limits.h>
17 #include <netinet/in.h>
18 #include <netdb.h>
19 #include <string.h>
20 #include <pwd.h>
21 #include <errno.h>
22 #include <stdarg.h>
23 #include <pthread.h>
24 #include <signal.h>
25 #include "webcit.h"
26
27
28
29 /*
30  * The Main Menu
31  */
32 void display_main_menu(void)
33 {
34         output_headers(1);
35
36         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770077><TR><TD>"
37                 "<FONT SIZE=+1 COLOR=\"FFFFFF\""
38                 "<B>Basic commands</B>\n"
39                 "</FONT></TD>"
40                 "</TD></TR></TABLE>\n"
41                 "<CENTER><TABLE border=0><TR>"
42         );
43
44         wprintf("<TD>");        /* start of first column */
45
46         wprintf("<UL>");
47         wprintf("<LI><B><A HREF=\"/knrooms\">\n");
48         wprintf("List known rooms</B></A><BR>\n");
49         wprintf("Where can I go from here?</LI>\n");
50
51         wprintf("<LI><B><A HREF=\"/gotonext\">\n");
52         wprintf("Goto next room</B></A><BR>\n");
53         wprintf("...with <EM>unread</EM> messages</LI>\n");
54
55         wprintf("<LI><B><A HREF=\"/skip\">\n");
56         wprintf("Skip to next room</B></A><BR>\n");
57         wprintf("(come back here later)</LI>\n");
58
59         if ((strlen(WC->ugname) > 0) && (strcasecmp(WC->ugname, WC->wc_roomname))) {
60                 wprintf("<LI><B><A HREF=\"/ungoto\">\n");
61                 wprintf("Ungoto</B></A><BR>\n");
62                 wprintf("(oops! Back to %s)</LI>\n", WC->ugname);
63         }
64         wprintf("</UL>\n");
65
66         wprintf("</TD><TD>\n"); /* start of second column */
67
68         wprintf("<UL>");
69         wprintf("<LI><B><A HREF=\"/readnew\">\n");
70         wprintf("Read new messages</B></A><BR>...in this room</LI>\n");
71
72         wprintf("<LI><B><A HREF=\"/readfwd\">\n");
73         wprintf("Read all messages</B></A><BR>...old <EM>and</EM> new</LI>\n");
74
75         wprintf("<LI><B><A HREF=\"/display_enter\">\n");
76         wprintf("Enter a message</B></A><BR>(post in this room)</LI>");
77         wprintf("</UL>\n");
78
79         wprintf("</TD><TD>");   /* start of third column */
80
81         wprintf("<UL>");
82         wprintf("<LI><B><A HREF=\"/whobbs\">\n");
83         wprintf("Who is online?</B></A><BR>(users <EM>currently</EM> logged on)</LI>\n");
84
85         wprintf("<LI><B><A HREF=\"/userlist\">\n");
86         wprintf("User list</B></A><BR>(all registered users)</LI>\n");
87
88         wprintf("<LI><B><A HREF=\"/termquit\" TARGET=\"_top\">\n");
89         wprintf("Log off</B></A><BR>Bye!</LI>\n");
90         wprintf("</UL>\n");
91
92         wprintf("</TR></TABLE>\n");
93
94         wprintf("<TABLE WIDTH=100%%><TR VALIGN=TOP><TD>");
95
96         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770000><TR><TD>");
97         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
98         wprintf("<B>Interaction</B>\n");
99         wprintf("</FONT></TD></TR></TABLE>\n");
100
101         wprintf("<UL>");
102         wprintf("<LI><A HREF=\"/chat\">");
103         wprintf("Chat with other online users</A>\n");
104
105         wprintf("<LI><A HREF=\"/display_generic\">\n");
106         wprintf("<FONT SIZE=-2>Generic server command</FONT></A>\n");
107
108         wprintf("</UL>\n");
109
110         wprintf("</TD><TD>");
111
112         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=007700><TR><TD>");
113         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
114         wprintf("<B>Your info</B>\n");
115         wprintf("</FONT></TD></TR></TABLE>\n");
116
117         wprintf("<UL>");
118         wprintf("<LI><A HREF=\"/display_editbio\">\n");
119         wprintf("Enter your 'bio' (a few words about yourself)</A>\n");
120
121         wprintf("<LI><A HREF=\"/display_editpic\">\n");
122         wprintf("Edit your online photo</A>\n");
123
124         wprintf("<LI><A HREF=\"/display_reg\">\n");
125         wprintf("Re-enter your registration info (name, address, etc.)</A>\n");
126
127         wprintf("<LI><A HREF=\"/display_changepw\">\n");
128         wprintf("Change your password</A>\n");
129
130         wprintf("</UL>\n");
131
132
133         wprintf("</TD></TR><TR VALIGN=TOP><TD>");
134
135         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=000077><TR><TD>");
136         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
137         wprintf("<B>Advanced room commands</B>\n");
138         wprintf("</FONT></TD></TR></TABLE>\n");
139
140         wprintf("<UL>");
141         wprintf("<LI><A HREF=\"/display_private\">\n");
142         wprintf("Go to a 'hidden' room</A>\n");
143
144         wprintf("<LI><A HREF=\"/display_entroom\">");
145         wprintf("Create a new room</A>\n");
146
147         wprintf("<LI><A HREF=\"/display_zap\">");
148         wprintf("Zap (forget) this room (%s)</A>\n", WC->wc_roomname);
149
150         wprintf("<LI><A HREF=\"/display_whok\">\n");
151         wprintf("Access controls for this room</A>\n");
152
153         wprintf("<LI><A HREF=\"/zapped_list\">");
154         wprintf("List all forgotten rooms</A>\n");
155
156         wprintf("</UL>\n");
157
158         wprintf("</TD><TD>");
159
160         if ((WC->axlevel >= 6) || (WC->is_room_aide)) {
161                 wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=007777><TR><TD>");
162                 wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
163                 wprintf("<B>Administrative functions</B>\n");
164                 wprintf("</FONT></TD></TR></TABLE>\n");
165
166                 wprintf("<UL>");
167                 wprintf("<LI><A HREF=\"/display_editroom\">\n");
168                 wprintf("Edit or delete this room</A>\n");
169
170                 wprintf("<LI><A HREF=\"/display_siteconfig\">\n");
171                 wprintf("Edit site-wide configuration</A>\n");
172
173                 if (WC->axlevel >= 6) {
174                         wprintf("<LI><A HREF=\"/select_user_to_edit\">\n");
175                         wprintf("Add, change, delete user accounts</A>\n");
176
177                         wprintf("<LI><A HREF=\"/validate\">\n");
178                         wprintf("Validate new users</A>\n");
179
180                         wprintf("<LI><A HREF=\"/select_floor_to_edit_pic\">\n");
181                         wprintf("Set or change a floor label graphic</A>\n");
182
183                         wprintf("<LI><A HREF=\"/display_netconf\">\n");
184                         wprintf("Configure networking with other systems</A>\n");
185                 }
186                 wprintf("</UL>\n");
187         }
188         wprintf("</TD></TR></TABLE>");
189         wDumpContent(2);
190 }
191
192
193
194
195
196 /*
197  * Display the screen to enter a generic server command
198  */
199 void display_generic(void)
200 {
201         output_headers(1);
202
203         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770077><TR><TD>");
204         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
205         wprintf("<B>Enter a server command</B>\n");
206         wprintf("</FONT></TD></TR></TABLE>\n");
207
208         wprintf("<CENTER>");
209         wprintf("This screen allows you to enter Citadel server commands which are\n");
210         wprintf("not supported by WebCit.  If you do not know what that means,\n");
211         wprintf("then this screen will not be of much use to you.<BR>\n");
212
213         wprintf("<FORM METHOD=\"POST\" ACTION=\"/do_generic\">\n");
214
215         wprintf("Enter command:<BR>\n");
216         wprintf("<INPUT TYPE=\"text\" NAME=\"g_cmd\" SIZE=80 MAXLENGTH=\"250\"><BR>\n");
217
218         wprintf("Command input (if requesting SEND_LISTING transfer mode):<BR>\n");
219         wprintf("<TEXTAREA NAME=\"g_input\" ROWS=10 COLS=80 WIDTH=80></TEXTAREA>\n");
220
221         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Send command\">");
222         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\"><BR>\n");
223
224         wprintf("</FORM></CENTER>\n");
225         wDumpContent(1);
226 }
227
228 void do_generic(void)
229 {
230         char buf[SIZ];
231         char gcontent[SIZ];
232         char *junk;
233         size_t len;
234
235         if (strcasecmp(bstr("sc"), "Send command")) {
236                 display_main_menu();
237                 return;
238         }
239
240         output_headers(1);
241
242         serv_printf("%s", bstr("g_cmd"));
243         serv_gets(buf);
244
245         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770077><TR><TD>");
246         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
247         wprintf("<B>Server command results</B>\n");
248         wprintf("</FONT></TD></TR></TABLE>\n");
249
250         wprintf("<TABLE border=0><TR><TD>Command:</TD><TD><TT>");
251         escputs(bstr("g_cmd"));
252         wprintf("</TT></TD></TR><TR><TD>Result:</TD><TD><TT>");
253         escputs(buf);
254         wprintf("</TT></TD></TR></TABLE><BR>\n");
255
256         if (buf[0] == '8') {
257                 serv_printf("\n\n000");
258         }
259         if ((buf[0] == '1') || (buf[0] == '8')) {
260                 while (serv_gets(gcontent), strcmp(gcontent, "000")) {
261                         escputs(gcontent);
262                         wprintf("<BR>\n");
263                 }
264                 wprintf("000");
265         }
266         if (buf[0] == '4') {
267                 text_to_server(bstr("g_input"));
268                 serv_puts("000");
269         }
270         if (buf[0] == '6') {
271                 len = atol(&buf[4]);
272                 junk = malloc(len);
273                 serv_read(junk, len);
274                 free(junk);
275         }
276         if (buf[0] == '7') {
277                 len = atol(&buf[4]);
278                 junk = malloc(len);
279                 memset(junk, 0, len);
280                 serv_write(junk, len);
281                 free(junk);
282         }
283         wprintf("<HR>");
284         wprintf("<A HREF=\"/display_generic\">Enter another command</A><BR>\n");
285         wprintf("<A HREF=\"/display_advanced\">Return to menu</A>\n");
286         wDumpContent(1);
287 }
288
289
290
291
292 /*
293  * Display the menubar.  Set as_single_page to
294  * display HTML headers and footers -- otherwise it's assumed
295  * that the menubar is being embedded in another page.
296  */
297 void display_menubar(int as_single_page) {
298
299         if (as_single_page) {
300                 output_headers(0);
301                 wprintf("<HTML>\n"
302                         "<HEAD>\n"
303                         "<TITLE>MenuBar</TITLE>\n"
304                         "<STYLE TYPE=\"text/css\">\n"
305                         "BODY   { text-decoration: none; }\n"
306                         "</STYLE>\n"
307                         "</HEAD>\n");
308                 do_template("background");
309         }
310
311         do_template("menubar");
312
313         if (as_single_page) {
314                 wDumpContent(2);
315         }
316
317
318 }