* print errormessages into templates if possible in <pre>
[citadel.git] / webcit / inetconf.c
index 87964d30554208acc8c65a8d22bba9ef0b8ceaa8..1f234a4f8866f2b46b8823f7906d7dbb4a5d3a21 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include "webcit.h"
+#include "webserver.h"
 
 /*
  * display the inet config dialog 
@@ -154,6 +155,7 @@ void display_inetconf(void)
 }
 
 
+
 /*
  * save changes to the inet config
  */
@@ -195,7 +197,7 @@ void save_inetconf(void) {
                serv_puts(newconfig);
                if (!strcasecmp(bstr("oper"), "add")) {
                        serv_printf("%s|%s", bstr("ename"), bstr("etype") );
-                       sprintf(WC->ImportantMessage, "%s added.", bstr("ename"));
+                       sprintf(WC->ImportantMessage, _("%s added."), bstr("ename"));
                }
                serv_puts("000");
        }
@@ -208,10 +210,207 @@ void save_inetconf(void) {
        free(newconfig);
 }
 
+typedef enum _e_cfg {
+       ic_localhost,
+       ic_directory,
+       ic_smarthost,
+       ic_rbl,
+       ic_spamass,
+       ic_masq,
+       ic_max
+} ECfg;
+
+typedef struct _ConstStrBuf {
+       const char *name;
+       size_t len;
+} ConstStrBuf;
+
+
+  /* These are server config keywords; do not localize! */
+ConstStrBuf CfgNames[] = {
+       { HKEY("localhost") },
+       { HKEY("directory") },
+       { HKEY("smarthost") },
+       { HKEY("rbl") },
+       { HKEY("spamassassin") },
+       { HKEY("masqdomain") }
+};
+
+       
+
+
+/*
+ * display the inet config dialog 
+ */
+void load_inetconf(void)
+{
+       struct wcsession *WCC = WC;
+       StrBuf *Buf, *Token, *Value;
+       void *vHash;
+       HashList *Hash;
+       char nnn[64];
+       char buf[SIZ];
+       int i, len, nUsed;
+       
+       WCC->InetCfg = NewHash(1, NULL);
+
+       for (i = 0; i < (sizeof(CfgNames) / sizeof(ConstStrBuf)); i++) {
+               Hash = NewHash(1, NULL);
+               Put(WCC->InetCfg, CfgNames[i].name, CfgNames[i].len, Hash, HDeleteHash);
+       }
+
+       serv_printf("CONF GETSYS|application/x-citadel-internet-config");
+       serv_getln(buf, sizeof buf);
+       
+       if (buf[0] == '1') {
+               Buf = NewStrBuf();
+               Token = NewStrBuf();
+               while ((len = StrBuf_ServGetln(Buf),
+                       strcmp(ChrPtr(Buf), "000"))) {
+                       Value = NewStrBuf();
+                       StrBufExtract_token(Token, Buf, 1, '|');
+                       StrBufExtract_token(Value, Buf, 0, '|');
+                       GetHash(WCC->InetCfg, ChrPtr(Token), StrLength(Token), &vHash);
+                       Hash = (HashList*) vHash;
+                       if (Hash == NULL) {
+                               lprintf(1, "ERROR Loading inet config line: [%s]\n", 
+                                       ChrPtr(Buf));
+                               FreeStrBuf(&Value);
+                               continue;
+                       }
+                       nUsed = GetCount(Hash);
+                       nUsed = snprintf(nnn, sizeof(nnn), "%d", nUsed+1);
+                       Put(Hash, nnn, nUsed, Value, HFreeStrBuf); 
+               }
+               FreeStrBuf(&Buf);
+               FreeStrBuf(&Token);
+       }
+}
+
+
+/*
+ * save changes to the inet config
+ */
+void new_save_inetconf(void) {
+       struct wcsession *WCC = WC;
+       HashList *Hash;
+       StrBuf *Str;
+       const StrBuf *eType, *eNum, *eName;
+       char nnn[64];
+       void *vHash, *vStr;
+       char buf[SIZ];
+       int i, nUsed;
+
+       load_inetconf();
+       eType = sbstr("etype");
+
+       GetHash(WCC->InetCfg, ChrPtr(eType), StrLength(eType), &vHash);
+       Hash = (HashList*) vHash;
+       if (Hash == NULL) {
+               sprintf(WC->ImportantMessage, _("Invalid Parameter"));
+               url_do_template();
+               return;
+       }
+
+       if (strcasecmp(bstr("oper"), "delete") == 0) {
+               eNum = sbstr("ename");
+               if (!GetHash(Hash, ChrPtr(eNum), StrLength(eNum), &vStr) ||
+                   (vStr == NULL)) {
+                       sprintf(WC->ImportantMessage, _("Invalid Parameter"));
+                       url_do_template();
+                       return;
+               }
+
+               Str = (StrBuf*)vStr;
+               sprintf(WC->ImportantMessage, _("%s has been deleted."), ChrPtr(Str));
+               FlushStrBuf(Str);       
+       }
+       else if (!strcasecmp(bstr("oper"), "add")) {
+               eName = sbstr("ename");
+               if (eName == NULL) {
+                       sprintf(WC->ImportantMessage, _("Invalid Parameter"));
+                       url_do_template();
+                       return;
+               }
+
+               nUsed = GetCount(Hash);
+               nUsed = snprintf(nnn, sizeof(nnn), "%d", nUsed+1);
+       
+               Put(Hash, nnn, nUsed, NewStrBufDup(eName), HFreeStrBuf); 
+               sprintf(WC->ImportantMessage, "%s added.", ChrPtr(eName));
+       }
+
+       serv_printf("CONF PUTSYS|application/x-citadel-internet-config");
+       serv_getln(buf, SIZ);
+       if (buf[0] == '4') {
+               for (i = 0; i < (sizeof(CfgNames) / sizeof(ConstStrBuf)); i++) {
+                       HashPos *where;
+                       const char *Key;
+                       long KeyLen;
+
+                       GetHash(WCC->InetCfg, CfgNames[i].name, CfgNames[i].len, &vHash);
+                       Hash = (HashList*) vHash;
+                       if (Hash == NULL) {
+                               sprintf(WC->ImportantMessage, _("Invalid Parameter"));
+                               url_do_template();
+                               return;
+                       }
+                       if (GetCount(Hash) > 0) {
+                               where = GetNewHashPos();
+                               while (GetNextHashPos(Hash, where, &KeyLen, &Key, &vStr)) {
+                                       Str = (StrBuf*) vStr;
+                                       if ((Str!= NULL) && (StrLength(Str) > 0))
+                                               serv_printf("%s|%s", 
+                                                           ChrPtr(Str),
+                                                           CfgNames[i].name); 
+                               }
+                               DeleteHashPos(&where);
+                       }                       
+               }
+               serv_puts("000");
+               DeleteHash(&WCC->InetCfg);
+       }
+       
+       url_do_template();
+}
+
+void InetCfgSubst(StrBuf *TemplBuffer, void *vContext, WCTemplateToken *Token)
+{
+       SVPutBuf("SERVCFG:INET:HOSTNAME", vContext, 1);
+}
+
+void DeleteInectConfHash(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context)
+{
+       struct wcsession *WCC = WC;
+       if (WCC->InetCfg == NULL)
+               load_inetconf();
+       DeleteHash(&WCC->InetCfg);
+
+}
+
+
+HashList *GetInetConfHash(WCTemplateToken *Token)
+{
+       struct wcsession *WCC = WC;
+       void *vHash;
+
+       if (WCC->InetCfg == NULL)
+               load_inetconf();
+       GetHash(WCC->InetCfg, 
+               Token->Params[2]->Start, 
+               Token->Params[2]->len,
+               &vHash);
+       svprintf(HKEY("SERVCFG:INET:TYPE"), WCS_STRING, Token->Params[2]->Start);
+       return vHash;
+}
+
 void 
 InitModule_INETCONF
 (void)
 {
        WebcitAddUrlHandler(HKEY("display_inetconf"), display_inetconf, 0);
-       WebcitAddUrlHandler(HKEY("save_inetconf"), save_inetconf, AJAX);
+       WebcitAddUrlHandler(HKEY("save_inetconf"), new_save_inetconf, AJAX);
+       RegisterIterator("SERVCFG:INET", 1, NULL, GetInetConfHash, InetCfgSubst, NULL);
+       RegisterNamespace("SERVCFG:FLUSHINETCFG",0, 0, DeleteInectConfHash);
 }