]> code.citadel.org Git - citadel.git/blobdiff - webcit/sieve.c
More work on the rules editor
[citadel.git] / webcit / sieve.c
index 3fdb54f253f580d43285766f4e3439abe5bdd6e4..210345ec7c794885a6f57f61e4271e6d493c0294 100644 (file)
@@ -9,6 +9,7 @@
 #include "webcit.h"
 
 #define MAX_SCRIPTS    100
+#define MAX_RULES      25
 
 /**
  * \brief view/edit sieve config
@@ -68,7 +69,8 @@ void display_sieve(void)
 
        wprintf("<div id=\"banner\">\n");
        wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#444455\"><TR><TD>");
-       wprintf("<SPAN CLASS=\"titlebar\">");
+       wprintf("<SPAN CLASS=\"titlebar\">"
+               "<img src=\"static/advanpage2_48x.gif\">");
        wprintf(_("View/edit server-side mail filters"));
        wprintf("</SPAN>\n");
        wprintf("</TD></TR></TABLE>\n");
@@ -111,12 +113,9 @@ void display_sieve(void)
        /* The "webcit managed scripts" div */
 
        wprintf("<div id=\"sievediv1\" style=\"display:none\">\n");
-       wprintf("<div align=\"center\"><br /><br />");
-       wprintf("FIXME div 1 isn't finished yet");
-       wprintf("<br /><br /></div>\n");
+       display_rules_editor_inner_div();
        wprintf("</div>\n");
 
-
        /* The "I'm smart and can write my own Sieve scripts" div */
 
        wprintf("<div id=\"sievediv2\" style=\"display:none\">\n");
@@ -134,6 +133,11 @@ void display_sieve(void)
                wprintf("</select>\n");
        }
 
+       wprintf("&nbsp;&nbsp;&nbsp;");
+       wprintf("<a href=\"display_add_remove_scripts\">%s</a>\n", _("Add or delete scripts"));
+
+       wprintf("<br />\n");
+
        if (num_scripts > 0) {
                for (i=0; i<num_scripts; ++i) {
                        wprintf("<div id=\"script_%s\" style=\"display:none\">\n", script_names[i]);
@@ -210,30 +214,447 @@ void save_sieve(void) {
        bigaction = atoi(bstr("bigaction"));
 
        if (bigaction == 0) {
-               lprintf(9, "MSIV setactive||");
+               serv_puts("MSIV setactive||");
+               serv_getln(buf, sizeof buf);
        }
 
        else if (bigaction == 2) {
-               lprintf(9, "MSIV setactive|%s|", bstr("active_script"));
+               serv_printf("MSIV setactive|%s|", bstr("active_script"));
+               serv_getln(buf, sizeof buf);
        }
 
        if (num_scripts > 0) {
                for (i=0; i<num_scripts; ++i) {
-                       lprintf(9, "MSIV putscript|%s|", script_names[i]);
-                       snprintf(this_name, sizeof this_name, "text_%s", script_names[i]);
-                       lprintf(9, "%s\n", bstr(this_name));
-                       lprintf(9, "000\n");
+                       serv_printf("MSIV putscript|%s|", script_names[i]);
+                       serv_getln(buf, sizeof buf);
+                       if (buf[0] == '4') {
+                               snprintf(this_name, sizeof this_name, "text_%s", script_names[i]);
+                               striplt(bstr(this_name));
+                               serv_printf("%s", bstr(this_name));
+                               serv_puts("000");
+                       }
                }
        }
 
+       strcpy(WC->ImportantMessage, _("Your changes have been saved."));
+       display_main_menu();
+       return;
+}
 
 
+/**
+ * \brief show a list of available scripts to add/remove them
+ */
+void display_add_remove_scripts(char *message)
+{
+       char buf[256];
+       char script_name[256];
 
+       output_headers(1, 1, 2, 0, 0, 0);
+       wprintf("<div id=\"banner\">\n");
+       wprintf("<table width=100%% border=0 bgcolor=#444455><tr>"
+               "<td>"
+               "<span class=\"titlebar\">"
+               "<img src=\"static/advanpage2_48x.gif\">");
+       wprintf(_("Add or delete scripts"));
+       wprintf("</span></td></tr></table>\n"
+               "</div>\n<div id=\"content\">\n"
+       );
 
-       strcpy(WC->ImportantMessage, "FIXME");
-       display_main_menu();
-       return;
+       if (message != NULL) wprintf(message);
+
+       wprintf("<table border=0 cellspacing=10><tr valign=top><td>\n");
+
+       svprintf("BOXTITLE", WCS_STRING, _("Add a new script"));
+       do_template("beginbox");
+
+       wprintf(_("To create a new script, enter the desired "
+               "script name in the box below and click 'Create'."));
+       wprintf("<br /><br />");
+
+        wprintf("<center><form method=\"POST\" action=\"create_script\">\n");
+        wprintf(_("Script name: "));
+        wprintf("<input type=\"text\" name=\"script_name\"><br />\n"
+               "<input type=\"submit\" name=\"create_button\" value=\"%s\">"
+               "</form></center>\n", _("Create"));
+
+       do_template("endbox");
+
+       svprintf("BOXTITLE", WCS_STRING, _("Edit scripts"));
+       do_template("beginbox");
+       wprintf("<br /><div align=center><a href=\"display_sieve\">%s</a><br /><br />\n",
+               _("Return to the script editing screen")
+       );
+       do_template("endbox");
+
+       wprintf("</td><td>");
+
+       svprintf("BOXTITLE", WCS_STRING, _("Delete scripts"));
+       do_template("beginbox");
+
+       wprintf(_("To delete an existing script, select the script "
+               "name from the list and click 'Delete'."));
+       wprintf("<br /><br />");
+       
+        wprintf("<center>"
+               "<form method=\"POST\" action=\"delete_script\">\n");
+        wprintf("<select name=\"script_name\" size=10 style=\"width:100%%\">\n");
+
+        serv_puts("MSIV listscripts");
+        serv_getln(buf, sizeof buf);
+        if (buf[0] == '1') {
+                while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
+                        extract_token(script_name, buf, 0, '|', sizeof script_name);
+                       if (extract_int(buf, 1) == 0) {
+                               wprintf("<option>");
+                               escputs(script_name);
+                               wprintf("</option>\n");
+                       }
+                }
+        }
+        wprintf("</select><br />\n");
+
+        wprintf("<input type=\"submit\" name=\"delete_button\" value=\"%s\" "
+               "onClick=\"return confirm('%s');\">", _("Delete script"), _("Delete this script?"));
+        wprintf("</form></center>\n");
+       do_template("endbox");
+
+       wprintf("</td></tr></table>\n");
+
+       wDumpContent(1);
 }
 
 
+
+/**
+ * \brief delete a script
+ */
+void delete_script(void) {
+       char buf[256];
+
+       serv_printf("MSIV deletescript|%s", bstr("script_name"));
+       serv_getln(buf, sizeof buf);
+       display_add_remove_scripts(&buf[4]);
+}
+               
+
+
+/**
+ * \brief create a new script
+ * take the web environment script name and create it on the citadel server
+ */
+void create_script(void) {
+       char buf[256];
+
+       serv_printf("MSIV getscript|%s", bstr("script_name"));
+       serv_getln(buf, sizeof buf);
+       if (buf[0] == '1') {
+               while (serv_getln(buf, sizeof(buf)), strcmp(buf, "000")) {
+                       /* flush */
+               }
+               display_add_remove_scripts(_("A script by that name already exists."));
+               return;
+       }
+       
+       serv_printf("MSIV putscript|%s", bstr("script_name"));
+       serv_getln(buf, sizeof buf);
+       if (buf[0] == '4') {
+               serv_puts("keep;");
+               serv_puts("000");
+               display_add_remove_scripts(_("A new script has been created.  Return to the script editing screen to edit and activate it."));
+               return;
+       }
+
+       display_add_remove_scripts(&buf[4]);
+}
+
+
+
+
+void display_rules_editor_inner_div(void) {
+       int i, j;
+       char buf[256];
+
+       struct {
+               char name[128];
+       } *rooms = NULL;
+       int num_roomnames = 0;
+       int num_roomnames_alloc = 0;
+
+
+       /* load the roomnames */
+       serv_puts("LKRA");
+       serv_getln(buf, sizeof buf);
+       if (buf[0] == '1') {
+               while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
+                       ++num_roomnames;
+                       if (num_roomnames > num_roomnames_alloc) {
+                               num_roomnames_alloc += 250;
+                               rooms = realloc(rooms, (num_roomnames_alloc * 128));
+                       }
+                       extract_token(rooms[num_roomnames-1].name, buf, 0, '|', 128);
+               }
+       }
+
+
+/*
+ * This script should get called by every onChange event...
+ *
+ */
+       wprintf("<script type=\"text/javascript\">                                      \n"
+               "                                                                       \n"
+               "var highest_active_rule = (-1);                                        \n"
+               "                                                                       \n"
+               "function UpdateRules() {                                               \n"
+               "  for (i=0; i<%d; ++i) {                                               \n", MAX_RULES);
+       wprintf("    d = ($('movedown'+i));                                             \n"
+               "    if (i < highest_active_rule) {                                     \n"
+               "      d.style.display = 'block';                                       \n"
+               "    }                                                                  \n"
+               "    else {                                                             \n"
+               "      d.style.display = 'none';                                        \n"
+               "    }                                                                  \n"
+               "    d = ($('hfield'+i).options[$('hfield'+i).selectedIndex].value);    \n"
+               "    if (d == 'all') {                                                  \n"
+               "      $('div_size'+i).style.display = 'none';                          \n"
+               "      $('div_compare'+i).style.display = 'none';                       \n"
+               "    }                                                                  \n"
+               "    else if (d == 'size') {                                            \n"
+               "      $('div_size'+i).style.display = 'block';                         \n"
+               "      $('div_compare'+i).style.display = 'none';                       \n"
+               "    }                                                                  \n"
+               "    else {                                                             \n"
+               "      $('div_size'+i).style.display = 'none';                          \n"
+               "      $('div_compare'+i).style.display = 'block';                      \n"
+               "    }                                                                  \n"
+               "    d = ($('action'+i).options[$('action'+i).selectedIndex].value);    \n"
+               "    if (d == 'fileinto') {                                             \n"
+               "      $('div_fileinto'+i).style.display = 'block';                     \n"
+               "      $('div_redirect'+i).style.display = 'none';                      \n"
+               "      $('div_automsg'+i).style.display = 'none';                       \n"
+               "    } else if (d == 'redirect') {                                      \n"
+               "      $('div_fileinto'+i).style.display = 'none';                      \n"
+               "      $('div_redirect'+i).style.display = 'block';                     \n"
+               "      $('div_automsg'+i).style.display = 'none';                       \n"
+               "    } else if ((d == 'reject') || (d == 'vacation'))  {                \n"
+               "      $('div_fileinto'+i).style.display = 'none';                      \n"
+               "      $('div_redirect'+i).style.display = 'none';                      \n"
+               "      $('div_automsg'+i).style.display = 'block';                      \n"
+               "    } else {                                                           \n"
+               "      $('div_fileinto'+i).style.display = 'none';                      \n"
+               "      $('div_redirect'+i).style.display = 'none';                      \n"
+               "      $('div_automsg'+i).style.display = 'none';                       \n"
+               "    }                                                                  \n"
+               "    if (highest_active_rule < %d) {                                    \n", MAX_RULES-1 );
+       wprintf("      $('div_addrule').style.display = 'block';                        \n"
+               "    } else {                                                           \n"
+               "      $('div_addrule').style.display = 'none';                         \n"
+               "    }                                                                  \n"
+               "  }                                                                    \n"
+       );
+/*
+ * Show only the active rows...
+ */
+       wprintf("  highest_active_rule = (-1);                                          \n");
+       wprintf("  for (i=0; i<%d; ++i) {                                               \n", MAX_RULES);
+       wprintf("   if ($('active'+i).checked) {                                        \n"
+               "     $('rule' + i).style.display = 'block';                            \n"
+               "     highest_active_rule = i;                                          \n"
+               "   }                                                                   \n"
+               "   else {                                                              \n"
+               "     $('rule' + i).style.display = 'none';                             \n"
+               "   }                                                                   \n"
+               "  }                                                                    \n"
+               "}                                                                      \n"
+/*
+ * Add a rule (really, just un-hide it)
+ */
+               "function AddRule() {                                                   \n"
+               "  highest_active_rule = highest_active_rule + 1;                       \n"
+               "  $('active'+highest_active_rule).checked = true;                      \n"
+               "  UpdateRules();                                                       \n"
+               "}                                                                      \n"
+/*
+ * Swap two rules
+ */
+               "function SwapRules(ra, rb) {                                           \n"
+               "                                                                       \n"
+               "  var things = new Array();                                            \n"
+               "  things[0] = 'hfield';                                                \n"
+               "  things[1] = 'compare';                                               \n"
+               "  things[2] = 'htext';                                                 \n"
+               "  things[3] = 'action';                                                \n"
+               "  things[4] = 'fileinto';                                              \n"
+               "  things[5] = 'redirect';                                              \n"
+               "  things[6] = 'final';                                                 \n"
+               "  things[7] = 'sizecomp';                                              \n"
+               "  things[8] = 'sizeval';                                               \n"
+               "  things[9] = 'automsg';                                               \n"
+               "                                                                       \n"
+               "  for (i=0; i<=9; ++i) {                                               \n"
+               "    tempval=$(things[i]+ra).value;                                     \n"
+               "    $(things[i]+ra).value = $(things[i]+rb).value;                     \n"
+               "    $(things[i]+rb).value = tempval;                                   \n"
+               "  }                                                                    \n"
+               "}                                                                      \n"
+/*
+ * Delete a rule (percolate the deleted rule out to the end,
+ *                and then decrement highest_active_rule)
+ */
+               "function DeleteRule(rd) {                                              \n"
+               "  for (i=rd; i<highest_active_rule; ++i) {                             \n"
+               "    SwapRules(i, (i+1));                                               \n"
+               "  }                                                                    \n"
+               "  $('active'+highest_active_rule).checked = false;                     \n"
+               "}                                                                      \n"
+               "</script>                                                              \n"
+       );
+
+
+       wprintf("<br />");
+
+       wprintf("<table border=1 cellpadding=2 width=100%%>");
+
+       for (i=0; i<MAX_RULES; ++i) {
+               
+               wprintf("<tr id=\"rule%d\">", i);
+
+               wprintf("<td>");
+
+               wprintf("<div style=\"display:none\">");
+               wprintf("<input type=\"checkbox\" id=\"active%d\">", i);
+               wprintf("</div>");
+
+               if (i>0) wprintf("<a href=\"javascript:SwapRules(%d,%d);UpdateRules();\">"
+                       "<img border=\"0\" src=\"static/up_pointer.gif\" /></a>", i-1, i);
+
+               wprintf("<a href=\"javascript:SwapRules(%d,%d);UpdateRules();\">"
+                       "<img id=\"movedown%d\" border=\"0\" src=\"static/down_pointer.gif\" /></a>",
+                       i, i+1, i);
+
+               wprintf("<a href=\"javascript:DeleteRule(%d);UpdateRules();\">"
+                       "<img id=\"delete%d\" border=\"0\" src=\"static/delete.gif\" /></a>",
+                       i, i);
+
+               wprintf("&nbsp;%d.&nbsp;%s</td>", i+1, _("If") );
+
+               wprintf("<td>");
+
+               wprintf("<select id=\"hfield%d\" name=\"hfield%d\" size=1 onChange=\"UpdateRules();\">",
+                       i, i);
+               wprintf("<option value=\"from\">%s</option>", _("From"));
+               wprintf("<option value=\"tocc\">%s</option>", _("To or Cc"));
+               wprintf("<option value=\"subject\">%s</option>", _("Subject"));
+               wprintf("<option value=\"replyto\">%s</option>", _("Reply-to"));
+               wprintf("<option value=\"sender\">%s</option>", _("Sender"));
+               wprintf("<option value=\"resentfrom\">%s</option>", _("Resent-From"));
+               wprintf("<option value=\"resentto\">%s</option>", _("Resent-To"));
+               wprintf("<option value=\"envfrom\">%s</option>", _("Envelope From"));
+               wprintf("<option value=\"envto\">%s</option>", _("Envelope To"));
+               wprintf("<option value=\"xmailer\">%s</option>", _("X-Mailer"));
+               wprintf("<option value=\"xspamflag\">%s</option>", _("X-Spam-Flag"));
+               wprintf("<option value=\"xspamstatus\">%s</option>", _("X-Spam-Status"));
+               wprintf("<option value=\"size\">%s</option>", _("Message size"));
+               wprintf("<option value=\"all\">%s</option>", _("(All messages)"));
+               wprintf("</select>");
+               wprintf("</td>");
+
+               wprintf("<td>");
+
+               wprintf("<div id=\"div_compare%d\">", i);
+               wprintf("<select id=\"compare%d\" name=\"compare%d\" size=1 onChange=\"UpdateRules();\">",
+                       i, i);
+               wprintf("<option value=\"contains\">%s</option>", _("contains"));
+               wprintf("<option value=\"notcontains\">%s</option>", _("does not contain"));
+               wprintf("<option value=\"is\">%s</option>", _("is"));
+               wprintf("<option value=\"isnot\">%s</option>", _("is not"));
+               wprintf("</select>");
+
+               wprintf("<input type=\"text\" id=\"htext%d\" name=\"htext%d\">", i, i);
+               wprintf("</div>");
+
+               wprintf("<div id=\"div_size%d\">", i);
+               wprintf("<select id=\"sizecomp%d\" name=\"sizecomp%d\" size=1 onChange=\"UpdateRules();\">",
+                       i, i);
+               wprintf("<option value=\"larger\">%s</option>", _("is larger than"));
+               wprintf("<option value=\"smaller\">%s</option>", _("is smaller than"));
+               wprintf("</select>");
+
+               wprintf("<input type=\"text\" id=\"sizeval%d\" name=\"sizeval%d\">", i, i);
+               wprintf("bytes");
+               wprintf("</div>");
+
+               wprintf("</td>");
+
+               wprintf("<td>");
+               wprintf("<select id=\"action%d\" name=\"action%d\" size=1 onChange=\"UpdateRules();\">",
+                       i, i);
+               wprintf("<option value=\"keep\">%s</option>", _("Keep"));
+               wprintf("<option value=\"discard\">%s</option>", _("Discard silently"));
+               wprintf("<option value=\"reject\">%s</option>", _("Reject"));
+               wprintf("<option value=\"fileinto\">%s</option>", _("Move message to"));
+               wprintf("<option value=\"redirect\">%s</option>", _("Forward to"));
+               wprintf("<option value=\"vacation\">%s</option>", _("Vacation"));
+               wprintf("</select>");
+
+               wprintf("<div id=\"div_fileinto%d\">", i);
+               wprintf("<select name=\"fileinto%d\" id=\"fileinto%d\">", i, i);
+               for (j=0; j<num_roomnames; ++j) {
+                       wprintf("<option ");
+                       if (!strcasecmp(rooms[j].name, "Mail")) {
+                               wprintf("selected ");
+                       }
+                       wprintf("value=\"");
+                       urlescputs(rooms[j].name);
+                       wprintf("\">");
+                       escputs(rooms[j].name);
+                       wprintf("</option>\n");
+               }
+               wprintf("</select>\n");
+               wprintf("</div>");
+
+               wprintf("<div id=\"div_redirect%d\">", i);
+               wprintf("<input type=\"text\" id=\"redirect%d\" name=\"redirect%d\">", i, i);
+               wprintf("</div>");
+
+               wprintf("<div id=\"div_automsg%d\">", i);
+               wprintf(_("Message:"));
+               wprintf("<textarea name=\"automsg%d\" id=\"automsg%d\" wrap=soft rows=5>\n", i, i);
+               wprintf("</textarea>");
+               wprintf("</div>");
+
+               wprintf("</td>");
+
+
+
+               wprintf("<td>%s</td>", _("and then") );
+
+               wprintf("<td>");
+               wprintf("<select name=\"final%d\" id=\"final%d\" size=1 onChange=\"UpdateRules();\">",
+                       i, i);
+               wprintf("<option value=\"stop\">%s</option>", _("stop"));
+               wprintf("<option value=\"continue\">%s</option>", _("continue processing"));
+               wprintf("</select>");
+               wprintf("</td>");
+
+               wprintf("</tr>\n");
+
+       }
+
+       wprintf("</table>");
+       wprintf("<div id=\"div_addrule\"><a href=\"javascript:AddRule();\">Add rule</a><br /></div>\n");
+
+       wprintf("<script type=\"text/javascript\">                                      \n"
+               "UpdateRules();                                                         \n"
+               "</script>                                                              \n"
+       );
+
+       free(rooms);
+}
+
+
+
+
+
+
 /*@}*/