]> code.citadel.org Git - citadel.git/blobdiff - webcit/mainmenu.c
Remove preprocessor tests for OpenSSL. It's a requirement.
[citadel.git] / webcit / mainmenu.c
index d9d9d44b27035b8781b925927f224fcea9960bfc..2c326e001650e4756e7184f4b939966c8798cc6e 100644 (file)
-/* $Id$ */
-
-#include <stdlib.h>
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-#include <stdio.h>
-#include <ctype.h>
-#include <string.h>
-#include <errno.h>
-#include "webcit.h"
-#include "child.h"
-
-
-/* 
- * menu of commands (just the menu html itself)
+/*
+ * The main menu and other things
+ *
+ * Copyright (c) 1996-2021 by the citadel.org team
+ *
+ * This program is open source software.  We call it open source, not
+ * free software, because Richard Stallman is a communist and an asshole.
+ *
+ * The program is licensed under the 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.
  */
 
-void embed_main_menu(void) {
-       wprintf("<CENTER><TABLE border=0><TR>");
-
-       wprintf("<TD>");        /* start of first column */
-
-       wprintf("<UL>");
-       wprintf("<LI><B><A HREF=\"/knrooms\">\n");
-       wprintf("List known rooms</B></A><BR>\n");
-       wprintf("Where can I go from here?</LI>\n");
-       
-       wprintf("<LI><B><A HREF=\"/gotonext\" TARGET=\"top\">\n");
-       wprintf("Goto next room</B></A><BR>\n");
-       wprintf("...with <EM>unread</EM> messages</LI>\n");
-       
-       wprintf("<LI><B><A HREF=\"/skip\" TARGET=\"top\">\n");
-       wprintf("Skip to next room</B></A><BR>\n");
-       wprintf("(come back here later)</LI>\n");
-       
-       if ( (strlen(ugname)>0) && (strcasecmp(ugname,wc_roomname)) ) {
-               wprintf("<LI><B><A HREF=\"/ungoto\" TARGET=\"top\">\n");
-               wprintf("Ungoto</B></A><BR>\n");
-               wprintf("(oops! Back to %s)</LI>\n",ugname);
-               }
-       
-       wprintf("</UL>\n");
-       
-       wprintf("</TD><TD>\n"); /* start of second column */
-       
-       wprintf("<UL>");
-       wprintf("<LI><B><A HREF=\"/readnew\">\n");
-       wprintf("Read new messages</B></A><BR>...in this room</LI>\n");
-       
-       wprintf("<LI><B><A HREF=\"/readfwd\">\n");
-       wprintf("Read all messages</B></A><BR>...old <EM>and</EM> new</LI>\n");
+#include "webcit.h"
 
-       wprintf("<LI><B><A HREF=\"/display_enter\">\n");
-       wprintf("Enter a message</B></A><BR>(post in this room)</LI>");
-       wprintf("</UL>\n");
+// The Main Menu
+void display_main_menu(void) {
+       begin_burst();
+       output_headers(1, 0, 0, 0, 1, 0);
+       DoTemplate(HKEY("display_main_menu"), NULL, &NoCtx);
+       end_burst();
+}
+
+
+// System administration menu
+void display_aide_menu(void) {
+       begin_burst();
+       output_headers(1, 0, 0, 0, 1, 0);
+       DoTemplate(HKEY("aide_display_menu"), NULL, &NoCtx);
+       end_burst();
+}
+
+
+// Handle generic server commands, possibly entered from a screen, possibly set up as a way to avoid custom code
+void do_generic(void) {
+        WCTemplputParams SubTP;
+       int Done = 0;
+       StrBuf *Buf;
+       StrBuf *LineBuf;
+       char *junk;
+       size_t len;
+
+       if ( (!havebstr("sc_button")) && (!havebstr("ok_button")) && (!havebstr("cancel_button")) ) {
+               display_main_menu();
+               return;
+       }
 
-       wprintf("</TD><TD>"); /* start of third column */
+       if (havebstr("cancel_button")) {
+               AppendImportantMessage(_("Cancelled.  Changes were not saved."), -1);
+       }
 
-       wprintf("<UL>");
-       wprintf("<LI><B><A HREF=\"/whobbs\">\n");
-       wprintf("Who is online?</B></A><BR>(users <EM>currently</EM> logged on)</LI>\n");
+       if (havebstr("ok_button")) {
+               Buf = NewStrBuf();
+               serv_puts(bstr("g_cmd"));
+               StrBuf_ServGetln(Buf);
+               
+               switch (GetServerStatus(Buf, NULL)) {
+               case 8:
+                       serv_puts("\n\n000");
+                       if ( (StrLength(Buf)==3) && 
+                       !strcmp(ChrPtr(Buf), "000")) {
+                               StrBufAppendBufPlain(Buf, HKEY("\000"), 0);
+                               break;
+                       }
+               case 1:
+                       LineBuf = NewStrBuf();
+                       StrBufAppendBufPlain(Buf, HKEY("\n"), 0);
+                       while (!Done) {
+                               if (StrBuf_ServGetln(LineBuf) < 0)
+                                       break;
+                               if ( (StrLength(LineBuf)==3) && 
+                               !strcmp(ChrPtr(LineBuf), "000")) {
+                                       Done = 1;
+                               }
+                               StrBufAppendBuf(Buf, LineBuf, 0);
+                               StrBufAppendBufPlain(Buf, HKEY("\n"), 0);
+                       }
+                       FreeStrBuf(&LineBuf);
+                       break;
+               case 2:
+                       break;
+               case 4:
+                       text_to_server(bstr("g_input"));
+                       serv_puts("000");
+                       break;
+               case 6:
+                       len = atol(&ChrPtr(Buf)[4]);
+                       StrBuf_ServGetBLOBBuffered(Buf, len);
+                       break;
+               case 7:
+                       len = atol(&ChrPtr(Buf)[4]);
+                       junk = malloc(len);
+                       memset(junk, 0, len);
+                       serv_write(junk, len);
+                       free(junk);
+                       break;
+               }
+               FreeStrBuf(&Buf);
+       }
        
-       wprintf("<LI><B><A HREF=\"/userlist\">\n");
-       wprintf("User list</B></A><BR>(all registered users)</LI>\n");
-
-       wprintf("<LI><B><A HREF=\"/advanced\">\n");
-       wprintf("Advanced options</B></A><BR>...and maintenance</LI>\n");
-
-       wprintf("<LI><B><A HREF=\"/termquit\" TARGET=\"_top\">\n");
-       wprintf("Log off</B></A><BR>Bye!</LI>\n");
-       wprintf("</UL>\n");
-
-       wprintf("</TR></TABLE>\n");
-
-       wprintf("</CENTER>\n");
+       // We may have been supplied with instructions regarding the location
+       // to which we must return after posting.  If found, go there.
+       if (havebstr("return_to")) {
+               syslog(LOG_DEBUG, "return_to = %s", bstr("return_to"));
+               http_redirect(bstr("return_to"));
        }
 
-/*
- * advanced options
- */
-void embed_advanced_menu(void) {
-
-wprintf("<TABLE WIDTH=100%><TR VALIGN=TOP><TD>");
-
-
-wprintf("<TABLE WIDTH=100% BORDER=0 BGCOLOR=770000><TR><TD>");
-wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-wprintf("<B>Interaction</B>\n");
-wprintf("</FONT></TD></TR></TABLE>\n");
-
-wprintf("<UL>");
-wprintf("<LI><A HREF=\"/display_page\">\n");
-wprintf("Page another user</A>\n");
-
-wprintf("<LI><A HREF=\"/chat\">");
-wprintf("Chat with other online users</A>\n");
-
-wprintf("</UL>\n");
-
-wprintf("</TD><TD>");
-
-wprintf("<TABLE WIDTH=100% BORDER=0 BGCOLOR=007700><TR><TD>");
-wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-wprintf("<B>Your info</B>\n");
-wprintf("</FONT></TD></TR></TABLE>\n");
-
-wprintf("<UL>");
-wprintf("<LI><A HREF=\"/display_editbio\">\n");
-wprintf("Enter your 'bio' (a few words about yourself)</A>\n");
-
-wprintf("<LI><A HREF=\"/display_editpic\">\n");
-wprintf("Edit your online photo</A>\n");
-
-wprintf("<LI><A HREF=\"/display_reg\">\n");
-wprintf("Re-enter your registration info (name, address, etc.)</A>\n");
-
-wprintf("<LI><A HREF=\"/display_changepw\">\n");
-wprintf("Change your password</A>\n");
-
-wprintf("</UL>\n");
-
-
-wprintf("</TD></TR><TR VALIGN=TOP><TD>");
-
-wprintf("<TABLE WIDTH=100% BORDER=0 BGCOLOR=000077><TR><TD>");
-wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-wprintf("<B>Advanced room commands</B>\n");
-wprintf("</FONT></TD></TR></TABLE>\n");
-
-wprintf("<UL>");
-wprintf("<LI><A HREF=\"/display_private\">\n");
-wprintf("Go to a 'hidden' room</A>\n");
-
-wprintf("<LI><A HREF=\"/display_entroom\">");
-wprintf("Create a new room</A>\n");
-
-wprintf("<LI><A HREF=\"/display_zap\">");
-wprintf("Zap (forget) this room (%s)</A>\n", wc_roomname);
-
-wprintf("<LI><A HREF=\"/zapped_list\">");
-wprintf("List all forgotten rooms</A>\n");
-
-wprintf("</UL>\n");
-
-wprintf("</TD><TD>");
-
-if ((axlevel>=6) || (is_room_aide)) {
-       wprintf("<TABLE WIDTH=100% BORDER=0 BGCOLOR=007777><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Administrative functions</B>\n");
-       wprintf("</FONT></TD></TR></TABLE>\n");
-
-       wprintf("<UL>");
-       wprintf("<LI><A HREF=\"/display_editroom\">\n");
-       wprintf("Edit this room</A>\n");
-       
-       wprintf("<LI><A HREF=\"/confirm_delete_room\">\n");
-       wprintf("Delete this room</A>\n");
+       // Otherwise, do the generic result screen.
+       else {
+               begin_burst();
+               output_headers(1, 0, 0, 0, 1, 0);
        
-       wprintf("<LI><A HREF=\"/display_editroompic\">\n");
-       wprintf("Set or change the graphic for this room's banner</A>\n");
-
-       wprintf("<LI><A HREF=\"/display_editinfo\">\n");
-       wprintf("Edit this room's Info file</A>\n");
-
-       if (axlevel>=6) {
-               wprintf("<LI><A HREF=\"/validate\">\n");
-               wprintf("Validate new users</A>\n");
-
-               wprintf("<LI><A HREF=\"/select_floor_to_edit_pic\">\n");
-               wprintf("Set or change a floor label graphic</A>\n");
-
-               wprintf("<LI><A HREF=\"/display_netconf\">\n");
-               wprintf("Configure networking with other systems</A>\n");
+               StackContext(NULL, &SubTP, Buf, CTX_STRBUF, 0, NULL);
+               {
+                       DoTemplate(HKEY("aide_display_generic_result"), NULL, &SubTP);
                }
-
-       wprintf("</UL>\n");
+               UnStackContext(&SubTP);
+               wDumpContent(1);
        }
 
-wprintf("</TD></TR></TABLE>");
+}
 
-wprintf("<TABLE WIDTH=100% BORDER=0 BGCOLOR=770077><TR><TD>");
-wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-wprintf("<B>Basic commands</B>\n");
-wprintf("</FONT></TD></TR></TABLE>\n");
 
+// Display the wait / input dialog while restarting the server.
+void display_shutdown(void) {
+       StrBuf *Line;
+       char *when;
+       
+       Line = NewStrBuf();
+       when=bstr("when");
+       if (strcmp(when, "now") == 0){
+               serv_printf("DOWN 1");
+               StrBuf_ServGetln(Line);
+               GetServerStatusMsg(Line, NULL, 1, 5);
+
+               begin_burst();
+               output_headers(1, 0, 0, 0, 1, 0);
+               DoTemplate(HKEY("aide_display_serverrestart"), NULL, &NoCtx);
+               end_burst();
+               lingering_close(WC->Hdr->http_sock);
+               sleeeeeeeeeep(10);
+               serv_printf("NOOP");
+               serv_printf("NOOP");
        }
-
-
-
-
-/*
- * menu of commands (as a page)
- */
-void display_main_menu(void) {
-       printf("HTTP/1.0 200 OK\n");
-       output_headers(1);
-       embed_main_menu();
-       wprintf("</BODY></HTML>\n");
-       wDumpContent();
+       else if (strcmp(when, "page") == 0) {
+               char *message;
+              
+               message = bstr("message");
+               if ((message == NULL) || (IsEmptyStr(message)))
+               {
+                       begin_burst();
+                       output_headers(1, 0, 0, 0, 1, 0);
+                       DoTemplate(HKEY("aide_display_serverrestart_page"), NULL, &NoCtx);
+                       end_burst();
+               }
+               else
+               {
+                       serv_printf("SEXP broadcast|%s", message);
+                       StrBuf_ServGetln(Line);
+                       GetServerStatusMsg(Line, NULL, 1, 0);
+
+                       begin_burst();
+                       output_headers(1, 0, 0, 0, 1, 0);
+                       DoTemplate(HKEY("aide_display_serverrestart_page"), NULL, &NoCtx);
+                       end_burst();                    
+               }
        }
-
-
-void display_advanced_menu(void) {
-       printf("HTTP/1.0 200 OK\n");
-       output_headers(1);
-       embed_advanced_menu();
-       embed_main_menu();
-       wprintf("</BODY></HTML>\n");
-       wDumpContent();
+       else if (!strcmp(when, "idle")) {
+               serv_printf("SCDN 3");
+               StrBuf_ServGetln(Line);
+               GetServerStatusMsg(Line, NULL, 1, 2);
+
+               begin_burst();
+               output_headers(1, 0, 0, 0, 1, 0);
+               DoTemplate(HKEY("aide_display_menu"), NULL, &NoCtx);
+               end_burst();                    
        }
+       FreeStrBuf(&Line);
+}
+
+
+void 
+InitModule_MAINMENU
+(void)
+{
+       WebcitAddUrlHandler(HKEY("display_aide_menu"), "", 0, display_aide_menu, 0);
+       WebcitAddUrlHandler(HKEY("server_shutdown"), "", 0, display_shutdown, 0);
+       WebcitAddUrlHandler(HKEY("display_main_menu"), "", 0, display_main_menu, 0);
+       WebcitAddUrlHandler(HKEY("do_generic"), "", 0, do_generic, 0);
+}