X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fnetconf.c;h=83c391429c95aa0d7a4b10fed5706fa6facda289;hp=7479fb2b3a360ca527d07e46ef9403c69cf0cd0a;hb=HEAD;hpb=bedf5c0b955473d8ad02eaf628e8d209f534f2b6 diff --git a/webcit/netconf.c b/webcit/netconf.c index 7479fb2b3..6ff53fa56 100644 --- a/webcit/netconf.c +++ b/webcit/netconf.c @@ -1,322 +1,296 @@ -/* - * $Id$ - */ -/** - * \defgroup NetShareConf Functions which handle network and sharing configuration. - * - * \ingroup CitadelConfig - */ -/*@{*/ +// Copyright (c) 1999-2004 by the citadel.org team +// This program is open source software. Use, duplication, or disclosure is subject to the GNU General Public License v3. + + #include "webcit.h" -/** - * \brief edit a network node - */ -void edit_node(void) { +void display_netconf(void); + +CtxType CTX_NODECONF = CTX_NONE; +/*----------------------------------------------------------------------*/ +/* Business Logic */ +/*----------------------------------------------------------------------*/ + +typedef struct _nodeconf { + int DeleteMe; + StrBuf *NodeName; + StrBuf *Secret; + StrBuf *Host; + StrBuf *Port; +} NodeConf; + +void DeleteNodeConf(void *vNode) { + NodeConf *Node = (NodeConf*) vNode; + FreeStrBuf(&Node->NodeName); + FreeStrBuf(&Node->Secret); + FreeStrBuf(&Node->Host); + FreeStrBuf(&Node->Port); + free(Node); +} + +NodeConf *NewNode(StrBuf *SerializedNode) { + NodeConf *Node; + + if (StrLength(SerializedNode) < 8) + return NULL; /* we need at least 4 pipes and some other text so its invalid. */ + Node = (NodeConf *) malloc(sizeof(NodeConf)); + Node->DeleteMe = 0; + Node->NodeName=NewStrBuf(); + StrBufExtract_token(Node->NodeName, SerializedNode, 0, '|'); + Node->Secret=NewStrBuf(); + StrBufExtract_token(Node->Secret, SerializedNode, 1, '|'); + Node->Host=NewStrBuf(); + StrBufExtract_token(Node->Host, SerializedNode, 2, '|'); + Node->Port=NewStrBuf(); + StrBufExtract_token(Node->Port, SerializedNode, 3, '|'); + return Node; +} + +NodeConf *HttpGetNewNode(void) { + NodeConf *Node; + + if (!havebstr("node") || + !havebstr("secret")|| + !havebstr("host")|| + !havebstr("port")) + return NULL; + + Node = (NodeConf *) malloc(sizeof(NodeConf)); + Node->DeleteMe = 0; + Node->NodeName = NewStrBufDup(sbstr("node")); + Node->Secret = NewStrBufDup(sbstr("secret")); + Node->Host = NewStrBufDup(sbstr("host")); + Node->Port = NewStrBufDup(sbstr("port")); + return Node; +} + +void SerializeNode(NodeConf *Node, StrBuf *Buf) { + StrBufPrintf(Buf, "%s|%s|%s|%s", + ChrPtr(Node->NodeName), + ChrPtr(Node->Secret), + ChrPtr(Node->Host), + ChrPtr(Node->Port)); +} + + +HashList *load_netconf(StrBuf *Target, WCTemplputParams *TP) { + StrBuf *Buf; + HashList *Hash; + char nnn[64]; char buf[SIZ]; - char node[SIZ]; - char cnode[SIZ]; - FILE *fp; - - if (strlen(bstr("ok_button")) > 0) { - strcpy(node, bstr("node") ); - fp = tmpfile(); - if (fp != NULL) { - serv_puts("CONF getsys|application/x-citadel-ignet-config"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cnode, buf, 0, '|', sizeof cnode); - if (strcasecmp(node, cnode)) { - fprintf(fp, "%s\n", buf); - } - } - fprintf(fp, "%s|%s|%s|%s\n", - bstr("node"), - bstr("secret"), - bstr("host"), - bstr("port") ); + int nUsed; + NodeConf *Node; + + serv_puts("CONF getsys|application/x-citadel-ignet-config"); + serv_getln(buf, sizeof buf); + if (buf[0] == '1') { + Hash = NewHash(1, NULL); + + Buf = NewStrBuf(); + while (StrBuf_ServGetln(Buf), strcmp(ChrPtr(Buf), "000")) { + Node = NewNode(Buf); + if (Node != NULL) { + nUsed = GetCount(Hash); + nUsed = snprintf(nnn, sizeof(nnn), "%d", nUsed+1); + Put(Hash, nnn, nUsed, Node, DeleteNodeConf); } - rewind(fp); - - serv_puts("CONF putsys|application/x-citadel-ignet-config"); - serv_getln(buf, sizeof buf); - if (buf[0] == '4') { - while (fgets(buf, sizeof buf, fp) != NULL) { - buf[strlen(buf)-1] = 0; - serv_puts(buf); + } + FreeStrBuf(&Buf); + return Hash; + } + return NULL; +} + + + +void save_net_conf(HashList *Nodelist) { + char buf[SIZ]; + StrBuf *Buf; + HashPos *where; + void *vNode; + NodeConf *Node; + const char *Key; + long KeyLen; + + serv_puts("CONF putsys|application/x-citadel-ignet-config"); + serv_getln(buf, sizeof buf); + if (buf[0] == '4') { + if ((Nodelist != NULL) && (GetCount(Nodelist) > 0)) { + where = GetNewHashPos(Nodelist, 0); + Buf = NewStrBuf(); + while (GetNextHashPos(Nodelist, where, &KeyLen, &Key, &vNode)) { + Node = (NodeConf*) vNode; + if (Node->DeleteMe==0) { + SerializeNode(Node, Buf); + serv_putbuf(Buf); } - serv_puts("000"); } - fclose(fp); + FreeStrBuf(&Buf); + DeleteHashPos(&where); } + serv_puts("000"); } - - display_netconf(); } -/** - * \brief add a node - */ -void display_add_node(void) -{ - output_headers(1, 1, 2, 0, 0, 0); - wprintf("
\n"); - wprintf("
"); - wprintf(""); - wprintf(_("Add a new node")); - wprintf(""); - wprintf("
\n"); - wprintf("
\n
\n"); - - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("
\n"); - wprintf("", _("Node name")); - wprintf("\n"); - wprintf("", _("Shared secret")); - wprintf("\n"); - wprintf("", _("Host or IP address")); - wprintf("\n"); - wprintf("", _("Port number")); - wprintf("\n"); - wprintf("
%s
%s
%s
%s

"); - wprintf("", _("Add node")); - wprintf(" "); - wprintf("", _("Cancel")); - wprintf("
\n"); - wDumpContent(1); -} +/*----------------------------------------------------------------------*/ +/* WEB Handlers */ +/*----------------------------------------------------------------------*/ -/** - * \brief modify an existing node - */ -void display_edit_node(void) -{ - char buf[512]; - char node[256]; - char cnode[256]; - char csecret[256]; - char chost[256]; - char cport[256]; - - strcpy(node, bstr("node")); - - output_headers(1, 1, 2, 0, 0, 0); - wprintf("
\n"); - wprintf("
"); - wprintf(""); - wprintf(_("Edit node configuration for ")); - escputs(node); - wprintf("\n"); - wprintf("
\n"); - wprintf("
\n
\n"); - serv_puts("CONF getsys|application/x-citadel-ignet-config"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cnode, buf, 0, '|', sizeof cnode); - extract_token(csecret, buf, 1, '|', sizeof csecret); - extract_token(chost, buf, 2, '|', sizeof chost); - extract_token(cport, buf, 3, '|', sizeof cport); - - if (!strcasecmp(node, cnode)) { - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("
\n"); - wprintf(""); - wprintf("\n", cnode); - wprintf(""); - wprintf("\n", csecret); - wprintf(""); - wprintf("\n", chost); - wprintf(""); - wprintf("\n", cport); - wprintf("
"); - wprintf(_("Node name")); - wprintf("
"); - wprintf(_("Shared secret")); - wprintf("
"); - wprintf(_("Host or IP address")); - wprintf("
"); - wprintf(_("Port number")); - wprintf("

"); - wprintf("", - _("Save changes")); - wprintf(" "); - wprintf("", - _("Cancel")); - wprintf("
\n"); - } +/* + * edit a network node + */ +void edit_node(void) { + HashList *NodeConfig; + const StrBuf *Index; + NodeConf *NewNode; + + if (havebstr("ok_button")) { + Index = sbstr("index"); + NewNode = HttpGetNewNode(); + if ((NewNode == NULL) || (Index == NULL)) { + AppendImportantMessage(_("Invalid Parameter"), -1); + url_do_template(); + return; } + + NodeConfig = load_netconf(NULL, &NoCtx); + Put(NodeConfig, ChrPtr(Index), StrLength(Index), NewNode, DeleteNodeConf); + save_net_conf(NodeConfig); + DeleteHash(&NodeConfig); } + url_do_template(); +} + - else { /** command error getting configuration */ - wprintf("%s
\n", &buf[4]); +/* + * modify an existing node + */ +void display_edit_node(void) { + WCTemplputParams SubTP; + HashList *NodeConfig; + const StrBuf *Index; + void *vNode; + const StrBuf *Tmpl; + + Index = sbstr("index"); + if (Index == NULL) { + AppendImportantMessage(_("Invalid Parameter"), -1); + url_do_template(); + return; } - wDumpContent(1); + NodeConfig = load_netconf(NULL, &NoCtx); + if (!GetHash(NodeConfig, ChrPtr(Index), StrLength(Index), &vNode) || + (vNode == NULL)) { + AppendImportantMessage(_("Invalid Parameter"), -1); + url_do_template(); + DeleteHash(&NodeConfig); + return; + } + StackContext(NULL, &SubTP, vNode, CTX_NODECONF, 0, NULL); + { + begin_burst(); + Tmpl = sbstr("template"); + output_headers(1, 0, 0, 0, 1, 0); + DoTemplate(SKEY(Tmpl), NULL, &SubTP); + end_burst(); + } + UnStackContext(&SubTP); + DeleteHash(&NodeConfig); + } -/** - * \brief display all configured nodes +/* + * display all configured nodes */ -void display_netconf(void) -{ - char buf[SIZ]; - char node[SIZ]; - - output_headers(1, 1, 2, 0, 0, 0); - wprintf("
\n"); - wprintf("
"); - wprintf(""); - wprintf(_("Network configuration")); - wprintf("\n"); - wprintf("
\n"); - wprintf("
\n
\n"); - - wprintf("
"); - wprintf(""); - wprintf(_("Add a new node")); - wprintf("
\n"); - wprintf("
"); - - wprintf("
"); - wprintf(""); - wprintf(_("Currently configured nodes")); - wprintf("\n"); - wprintf("
\n"); - serv_puts("CONF getsys|application/x-citadel-ignet-config"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - wprintf("
\n"); - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(node, buf, 0, '|', sizeof node); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf("\n"); - } - wprintf("
"); - escputs(node); - wprintf(""); - wprintf(_("(Edit)")); - wprintf(""); - wprintf(_("(Delete)")); - wprintf("
\n"); - } +void display_netconf(void) { wDumpContent(1); } -/** - * \brief display the dialog to verify the deletion +/* + * display the dialog to verify the deletion */ -void display_confirm_delete_node(void) -{ - char node[SIZ]; - - output_headers(1, 1, 2, 0, 0, 0); - wprintf("
\n"); - wprintf("
"); - wprintf(""); - wprintf(_("Confirm delete")); - wprintf("\n"); - wprintf("
\n"); - wprintf("
\n
\n"); - - strcpy(node, bstr("node")); - wprintf("
"); - wprintf(_("Are you sure you want to delete ")); - wprintf(""); - escputs(node); - wprintf("?
\n"); - wprintf(""); - wprintf(_("Yes")); - wprintf("   "); - wprintf(""); - wprintf(_("No")); - wprintf("
\n"); +void display_confirm_delete_node(void) { wDumpContent(1); } -/** - * \brief actually delete the node + +/* + * actually delete the node */ -void delete_node(void) -{ - char buf[SIZ]; - char node[SIZ]; - char cnode[SIZ]; - FILE *fp; - - strcpy(node, bstr("node") ); - fp = tmpfile(); - if (fp != NULL) { - serv_puts("CONF getsys|application/x-citadel-ignet-config"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cnode, buf, 0, '|', sizeof cnode); - if (strcasecmp(node, cnode)) { - fprintf(fp, "%s\n", buf); - } - } - } - rewind(fp); - - serv_puts("CONF putsys|application/x-citadel-ignet-config"); - serv_getln(buf, sizeof buf); - if (buf[0] == '4') { - while (fgets(buf, sizeof buf, fp) != NULL) { - buf[strlen(buf)-1] = 0; - serv_puts(buf); - } - serv_puts("000"); - } - fclose(fp); +void delete_node(void) { + HashList *NodeConfig; + const StrBuf *Index; + NodeConf *Node; + void *vNode; + + Index = sbstr("index"); + if (Index == NULL) { + AppendImportantMessage(_("Invalid Parameter"), -1); + url_do_template(); + return; + } + + NodeConfig = load_netconf(NULL, &NoCtx); + if (!GetHash(NodeConfig, ChrPtr(Index), StrLength(Index), &vNode) || + (vNode == NULL)) { + AppendImportantMessage(_("Invalid Parameter"), -1); + url_do_template(); + DeleteHash(&NodeConfig); + return; } + Node = (NodeConf *) vNode; + Node->DeleteMe = 1; + save_net_conf(NodeConfig); + DeleteHash(&NodeConfig); + + url_do_template(); - display_netconf(); } -/** - * \brief add a new node - */ -void add_node(void) -{ - char node[SIZ]; - char buf[SIZ]; - strcpy(node, bstr("node")); - - if (strlen(bstr("add_button")) > 0) { - sprintf(buf, "NSET addnode|%s", node); - serv_puts(buf); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - output_headers(1, 1, 0, 0, 0, 0); - server_to_text(); - wprintf(""); - wprintf(_("Back to menu")); - wprintf("\n"); - wDumpContent(1); - } else { - strcpy(WC->ImportantMessage, &buf[4]); - display_netconf(); - } - } +void tmplput_NodeName(StrBuf *Target, WCTemplputParams *TP) { + NodeConf *Node = (NodeConf*) CTX(CTX_NODECONF); + StrBufAppendTemplate(Target, TP, Node->NodeName, 0); } +void tmplput_Secret(StrBuf *Target, WCTemplputParams *TP) { + NodeConf *Node = (NodeConf*) CTX(CTX_NODECONF); + StrBufAppendTemplate(Target, TP, Node->Secret, 0); +} + +void tmplput_Host(StrBuf *Target, WCTemplputParams *TP) { + NodeConf *Node= (NodeConf*) CTX(CTX_NODECONF); + StrBufAppendTemplate(Target, TP, Node->Host, 0); +} + +void tmplput_Port(StrBuf *Target, WCTemplputParams *TP) { + NodeConf *Node= (NodeConf*) CTX(CTX_NODECONF); + StrBufAppendTemplate(Target, TP, Node->Port, 0); +} -/*@}*/ +void +InitModule_NETCONF +(void) +{ + RegisterCTX(CTX_NODECONF); + WebcitAddUrlHandler(HKEY("display_edit_node"), "", 0, display_edit_node, 0); + + WebcitAddUrlHandler(HKEY("aide_ignetconf_edit_node"), "", 0, edit_node, 0); + WebcitAddUrlHandler(HKEY("display_netconf"), "", 0, display_netconf, 0); + WebcitAddUrlHandler(HKEY("display_confirm_delete_node"), "", 0, display_confirm_delete_node, 0); + WebcitAddUrlHandler(HKEY("delete_node"), "", 0, delete_node, 0); + + + RegisterNamespace("CFG:IGNET:NODE", 0, 1, tmplput_NodeName, NULL, CTX_NODECONF); + RegisterNamespace("CFG:IGNET:SECRET", 0, 1, tmplput_Secret, NULL, CTX_NODECONF); + RegisterNamespace("CFG:IGNET:HOST", 0, 1, tmplput_Host, NULL, CTX_NODECONF); + RegisterNamespace("CFG:IGNET:PORT", 0, 1, tmplput_Port, NULL, CTX_NODECONF); + + RegisterIterator("NODECONFIG", 0, NULL, load_netconf, NULL, DeleteHash, CTX_NODECONF, CTX_NONE, IT_NOFLAG); +}