]> code.citadel.org Git - citadel.git/blobdiff - webcit/floors.c
* New COND:FLOOR:NROOMS : whether this floor has n-rooms
[citadel.git] / webcit / floors.c
index bc92b445519abf7c3341b338281866e136325a5f..b183d6be18b7b28be8051fa3354a03b511ff2867 100644 (file)
@@ -1,11 +1,22 @@
 /*
  * $Id$
+ *
+ * Copyright (c) 1996-2010 by the citadel.org team
+ *
+ * This program is free 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
  */
-/**
- * \defgroup AdminFloor Administrative screens for floor maintenance
- * \ingroup CitadelConfig
- */
-/*@{*/
 
 #include "webcit.h"
 #include "webserver.h"
 
 
 
-/**
- * \brief Display floor config
+/*
  * Display floor configuration.  If prepend_html is not NULL, its contents
  * will be displayed at the top of the screen.
- * \param prepend_html pagetitle to prepend
  */
-void display_floorconfig(char *prepend_html)
+void display_floorconfig(StrBuf *prepend_html)
 {
        char buf[SIZ];
 
@@ -28,171 +37,185 @@ void display_floorconfig(char *prepend_html)
        int refcount;
 
         output_headers(1, 1, 2, 0, 0, 0);
-        wprintf("<div id=\"banner\">\n"
-                "<TABLE class=\"floors_banner\"><TR><TD>"
-                "<SPAN CLASS=\"titlebar\">");
-       wprintf(_("Add/change/delete floors"));
-       wprintf("</SPAN>"
-                "</TD></TR></TABLE>\n"
-                "</div>\n<div id=\"content\">\n"
-        );
+        wc_printf("<div id=\"banner\">\n");
+        wc_printf("<h1>");
+       wc_printf(_("Add/change/delete floors"));
+       wc_printf("</h1>");
+        wc_printf("</div>\n");
+
+       wc_printf("<div id=\"content\" class=\"service\">\n");
                                                                                                                              
        if (prepend_html != NULL) {
-               wprintf("<br /><b><i>");
-               client_write(prepend_html, strlen(prepend_html));
-               wprintf("</i></b><br /><br />\n");
+               wc_printf("<br /><b><i>");
+               StrBufAppendBuf(WC->WBuf, prepend_html, 0);
+               wc_printf("</i></b><br /><br />\n");
        }
 
        serv_printf("LFLR");
        serv_getln(buf, sizeof buf);
        if (buf[0] != '1') {
-               wprintf("<TABLE  class=\"floors_config\"><TR><TD>");
-               wprintf("<SPAN CLASS=\"titlebar\">");
-               wprintf(_("Error"));
-               wprintf("</SPAN>\n");
-               wprintf("</TD></TR></TABLE>\n");
-               wprintf("%s<br />\n", &buf[4]);
+               wc_printf("<TABLE  class=\"floors_config\"><TR><TD>");
+               wc_printf("<SPAN CLASS=\"titlebar\">");
+               wc_printf(_("Error"));
+               wc_printf("</SPAN>\n");
+               wc_printf("</TD></TR></TABLE>\n");
+               wc_printf("%s<br />\n", &buf[4]);
                wDumpContent(1);
                return;
        }
 
-       wprintf("<div class=\"fix_scrollbar_bug\">"
+       wc_printf("<div class=\"fix_scrollbar_bug\">"
                "<TABLE BORDER=1 WIDTH=100%% bgcolor=\"#ffffff\">\n"
                "<TR><TH>");
-       wprintf(_("Floor number"));
-       wprintf("</TH><TH>");
-       wprintf(_("Floor name"));
-       wprintf("</TH><TH>");
-       wprintf(_("Number of rooms"));
-       wprintf("</TH><TH>");
-       wprintf(_("Floor CSS"));
-       wprintf("</TH></TR>\n");
+       wc_printf(_("Floor number"));
+       wc_printf("</TH><TH>");
+       wc_printf(_("Floor name"));
+       wc_printf("</TH><TH>");
+       wc_printf(_("Number of rooms"));
+       wc_printf("</TH><TH>");
+       wc_printf(_("Floor CSS"));
+       wc_printf("</TH></TR>\n");
 
        while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
                floornum = extract_int(buf, 0);
                extract_token(floorname, buf, 1, '|', sizeof floorname);
                refcount = extract_int(buf, 2);
 
-               wprintf("<TR><TD><TABLE border=0><TR><TD>%d", floornum);
+               wc_printf("<TR><TD><TABLE border=0><TR><TD>%d", floornum);
                if (refcount == 0) {
-                       wprintf("</TD><TD>"
+                       wc_printf("</TD><TD>"
                                "<a href=\"delete_floor?floornum=%d\">"
                                "<FONT SIZE=-1>", floornum);
-                       wprintf(_("(delete floor)"));
-                       wprintf("</A></FONT><br />");
+                       wc_printf(_("(delete floor)"));
+                       wc_printf("</A></FONT><br />");
                }
-               wprintf("<FONT SIZE=-1>"
-                       "<a href=\"display_editfloorpic&"
+               wc_printf("<FONT SIZE=-1>"
+                       "<a href=\"display_editfloorpic?"
                        "which_floor=%d\">", floornum);
-               wprintf(_("(edit graphic)"));
-               wprintf("</A></TD></TR></TABLE>");
-               wprintf("</TD>");
+               wc_printf(_("(edit graphic)"));
+               wc_printf("</A></TD></TR></TABLE>");
+               wc_printf("</TD>");
 
-               wprintf("<TD>"
+               wc_printf("<TD>"
                        "<FORM METHOD=\"POST\" action=\"rename_floor\">"
                        "<INPUT TYPE=\"hidden\" NAME=\"floornum\" "
                        "VALUE=\"%d\">"
                        "<INPUT TYPE=\"text\" NAME=\"floorname\" "
                        "VALUE=\"%s\" MAXLENGTH=\"250\">\n",
                        floornum, floorname);
-               wprintf("<INPUT TYPE=\"SUBMIT\" NAME=\"sc\" "
+               wc_printf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
+               wc_printf("<INPUT TYPE=\"SUBMIT\" NAME=\"sc\" "
                        "VALUE=\"%s\">"
                        "</FORM></TD>", _("Change name"));
 
-               wprintf("<TD>%d</TD>\n", refcount);
+               wc_printf("<TD>%d</TD>\n", refcount);
 
-               wprintf("<TD>"
+               wc_printf("<TD>"
                        "<FORM METHOD=\"POST\" action=\"set_floor_css\">"
                        "<INPUT TYPE=\"hidden\" NAME=\"floornum\" "
                        "VALUE=\"%d\">"
                        "<INPUT TYPE=\"text\" NAME=\"floorcss\" "
                        "VALUE=\"%s\" MAXLENGTH=\"250\">\n",
                        floornum, floorname);
-               wprintf("<INPUT TYPE=\"SUBMIT\" NAME=\"sc\" "
+               wc_printf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
+               wc_printf("<INPUT TYPE=\"SUBMIT\" NAME=\"sc\" "
                        "VALUE=\"%s\">"
                        "</FORM></TD>", _("Change CSS"));
 
-               wprintf("</TR>\n");
+               wc_printf("</TR>\n");
        }
 
-       wprintf("<TR><TD>&nbsp;</TD>"
-               "<TD><FORM METHOD=\"POST\" action=\"create_floor\">"
-               "<INPUT TYPE=\"text\" NAME=\"floorname\" "
+       wc_printf("<TR><TD>&nbsp;</TD>"
+               "<TD><FORM METHOD=\"POST\" action=\"create_floor\">");
+       wc_printf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
+       wc_printf("<INPUT TYPE=\"text\" NAME=\"floorname\" "
                "MAXLENGTH=\"250\">\n"
                "<INPUT TYPE=\"SUBMIT\" NAME=\"sc\" "
                "VALUE=\"%s\">"
                "</FORM></TD>"
                "<TD>&nbsp;</TD></TR>\n", _("Create new floor"));
 
-       wprintf("</table></div>\n");
+       wc_printf("</table></div>\n");
        wDumpContent(1);
 }
 
 
-/**
- * \brief delete the actual floor
+/*
+ * delete the actual floor
  */
 void delete_floor(void) {
        int floornum;
-       char buf[SIZ];
-       char message[SIZ];
-
-       floornum = atoi(bstr("floornum"));
-
+       StrBuf *Buf;
+       const char *Err;
+               
+       floornum = ibstr("floornum");
+       Buf = NewStrBuf();
        serv_printf("KFLR %d|1", floornum);
-       serv_getln(buf, sizeof buf);
+       
+       StrBufTCP_read_line(Buf, &WC->serv_sock, 0, &Err);
 
-       if (buf[0] == '2') {
-               sprintf(message, _("Floor has been deleted."));
+       if (GetServerStatus(Buf, NULL) == 2) {
+               StrBufPlain(Buf, _("Floor has been deleted."),-1);
        }
        else {
-               sprintf(message, "%s", &buf[4]);
+               StrBufCutLeft(Buf, 4);
        }
 
-       display_floorconfig(message);
+       FlushRoomlist();
+       display_floorconfig(Buf);
+       FreeStrBuf(&Buf);
 }
 
-/**
- * \brief tart creating a new floor
+/*
+ * start creating a new floor
  */
 void create_floor(void) {
-       char buf[SIZ];
-       char message[SIZ];
-       char floorname[SIZ];
+       StrBuf *Buf;
+       const char *Err;
 
-       strcpy(floorname, bstr("floorname"));
+       Buf = NewStrBuf();
+       serv_printf("CFLR %s|1", bstr("floorname"));
+       StrBufTCP_read_line(Buf, &WC->serv_sock, 0, &Err);
 
-       serv_printf("CFLR %s|1", floorname);
-       serv_getln(buf, sizeof buf);
-
-       if (buf[0] == '2') {
-               sprintf(message, _("New floor has been created."));
-       } else {
-               sprintf(message, "%s", &buf[4]);
+       if (GetServerStatus(Buf, NULL) == 2) {
+               StrBufPlain(Buf, _("New floor has been created."),-1);
+       }
+       else {
+               StrBufCutLeft(Buf, 4);
        }
 
-       display_floorconfig(message);
+       FlushRoomlist();
+       display_floorconfig(Buf);
+       FreeStrBuf(&Buf);
 }
 
-/**
- * \brief rename this floor
+
+/*
+ * rename this floor
  */
 void rename_floor(void) {
-       int floornum;
-       char buf[SIZ];
-       char message[SIZ];
-       char floorname[SIZ];
+       StrBuf *Buf;
 
-       floornum = atoi(bstr("floornum"));
-       strcpy(floorname, bstr("floorname"));
+       Buf = NewStrBuf();
+       FlushRoomlist();
 
-       serv_printf("EFLR %d|%s", floornum, floorname);
-       serv_getln(buf, sizeof buf);
+       serv_printf("EFLR %d|%s", ibstr("floornum"), bstr("floorname"));
+       StrBuf_ServGetln(Buf);
 
-       sprintf(message, "%s", &buf[4]);
+       StrBufCutLeft(Buf, 4);
 
-       display_floorconfig(message);
+       display_floorconfig(Buf);
+       FreeStrBuf(&Buf);
 }
 
+void _display_floorconfig(void) {display_floorconfig(NULL);}
 
-/*@}*/
+void 
+InitModule_FLOORS
+(void)
+{
+       WebcitAddUrlHandler(HKEY("delete_floor"), "", 0, delete_floor, 0);
+       WebcitAddUrlHandler(HKEY("rename_floor"), "", 0, rename_floor, 0);
+       WebcitAddUrlHandler(HKEY("create_floor"), "", 0, create_floor, 0);
+       WebcitAddUrlHandler(HKEY("display_floorconfig"), "", 0, _display_floorconfig, 0);
+}