]> code.citadel.org Git - citadel.git/blobdiff - webcit/sieve.c
Fleshed out the rules editor some more
[citadel.git] / webcit / sieve.c
index be609ced806cb0c7de3b7b7bb8ef2ba79e48c027..6c39881e9ccee2e96a02536c78beb1ced7e14aea 100644 (file)
@@ -372,8 +372,30 @@ void create_script(void) {
 
 
 void display_rules_editor_inner_div(void) {
-       int i;
-       char buf[256], targ[256];
+       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...
@@ -385,22 +407,43 @@ void display_rules_editor_inner_div(void) {
                "                                                                       \n"
                "function UpdateRules() {                                               \n"
                "  for (i=0; i<%d; ++i) {                                               \n", MAX_RULES);
-       wprintf("  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"
-               "  } else if (d == 'redirect') {                                        \n"
-               "    $('div_fileinto'+i).style.display = 'none';                        \n"
+       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"
+               "    } else if (d == 'redirect') {                                      \n"
+               "      $('div_fileinto'+i).style.display = 'none';                      \n"
                "    $('div_redirect'+i).style.display = 'block';                       \n"
-               "  } else  {                                                            \n"
-               "    $('div_fileinto'+i).style.display = 'none';                        \n"
-               "    $('div_redirect'+i).style.display = 'none';                        \n"
+               "    } else  {                                                          \n"
+               "      $('div_fileinto'+i).style.display = 'none';                      \n"
+               "      $('div_redirect'+i).style.display = 'none';                      \n"
+               "    }                                                                  \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"
@@ -420,12 +463,44 @@ void display_rules_editor_inner_div(void) {
                "  $('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"
+               "                                                                       \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 class=\"mailbox_summary\" rules=rows cellpadding=2 "
                "style=\"width:100%%;-moz-user-select:none;\">"
        );
@@ -440,54 +515,96 @@ void display_rules_editor_inner_div(void) {
                wprintf("<input type=\"checkbox\" id=\"active%d\">", i);
                wprintf("</div>");
 
-               wprintf("%d. %s</td>", i+1, _("If") );
+               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 name=\"hfield%d\" size=1 onChange=\"UpdateRules();\">", i);
+
+               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=\"replyto\">%s</option>", _("Reply-to"));
                wprintf("<option value=\"sender\">%s</option>", _("Sender"));
-               wprintf("<option value=\"recipient\">%s</option>", _("Recipient"));
+               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("<select name=\"compare%d\" size=1 onChange=\"UpdateRules();\">", i);
-               wprintf("<option value=\"match\">%s</option>", _("matches"));
-               wprintf("<option value=\"notmatch\">%s</option>", _("does not match"));
+
+               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\" name=\"htext%d\">", i);
+               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=\"fileinto\">%s</option>", _("file into"));
-               wprintf("<option value=\"redirect\">%s</option>", _("forward to"));
-               wprintf("<option value=\"reject\">%s</option>", _("reject"));
+               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\">", i);
-               serv_puts("LKRA");      /* FIXME buffer this and keep reusing it */
-               serv_getln(buf, sizeof buf);
-               if (buf[0] == '1') {
-                       while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-                               extract_token(targ, buf, 0, '|', sizeof targ);
-                               if (!strcasecmp(targ, "Mail")) {
-                                       wprintf("<option selected>");
-                               }
-                               else {
-                                       wprintf("<option>");
-                               }
-                               escputs(targ);
-                               wprintf("\n");
+               //wprintf("<select name=\"fileinto%d\" id=\"fileinto%d\" style=\"width:100px\">", i, 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\" name=\"redirect%d\">", i);
+               wprintf("<input type=\"text\" id=\"redirect%d\" name=\"redirect%d\">", i, i);
                wprintf("</div>");
                wprintf("</td>");
 
@@ -496,7 +613,8 @@ void display_rules_editor_inner_div(void) {
                wprintf("<td>%s</td>", _("and then") );
 
                wprintf("<td>");
-               wprintf("<select name=\"final%d\" size=1 onChange=\"UpdateRules();\">", i);
+               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>");
@@ -507,14 +625,14 @@ void display_rules_editor_inner_div(void) {
        }
 
        wprintf("</table>");
-       wprintf("<a href=\"javascript:AddRule();\">Add rule</a>\n");
-
+       wprintf("<a href=\"javascript:AddRule();\">Add rule</a><br />\n");
 
        wprintf("<script type=\"text/javascript\">                                      \n"
                "UpdateRules();                                                         \n"
                "</script>                                                              \n"
        );
 
+       free(rooms);
 }