]> code.citadel.org Git - citadel.git/blobdiff - webcit/preferences.c
* fetching the 12/24 Hours switch from config over and over is expansive. (gprof...
[citadel.git] / webcit / preferences.c
index 1c51b9844c164f55d8641496777be39cf7f621ef..279dac08583a16c3dbffc0585ec575d1143054c0 100644 (file)
@@ -1,34 +1,20 @@
 /*
  * $Id$
- *
- * Manage user preferences with a little help from the Citadel server.
+ */
+/**
+ * \defgroup ManagePrefs Manage user preferences with a little help from the Citadel server.
+ * \ingroup CitadelConfig
  *
  */
-
-#include <ctype.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <sys/socket.h>
-#include <sys/time.h>
-#include <limits.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <string.h>
-#include <pwd.h>
-#include <errno.h>
-#include <stdarg.h>
-#include <pthread.h>
-#include <signal.h>
+/*@{*/
 #include "webcit.h"
 #include "webserver.h"
+#include "groupdav.h"
 
 
-
+/**
+ * \brief display preferences dialog
+ */
 void load_preferences(void) {
        char buf[SIZ];
        long msgnum = 0L;
@@ -74,14 +60,14 @@ void load_preferences(void) {
                }
        }
 
-       /* Go back to the room we're supposed to be in */
+       /** Go back to the room we're supposed to be in */
        serv_printf("GOTO %s", WC->wc_roomname);
        serv_getln(buf, sizeof buf);
 }
 
-/*
- * Goto the user's configuration room, creating it if necessary.
- * Returns 0 on success or nonzero upon failure.
+/**
+ * \brief Goto the user's configuration room, creating it if necessary.
+ * \return 0 on success or nonzero upon failure.
  */
 int goto_config_room(void) {
        char buf[SIZ];
@@ -98,7 +84,9 @@ int goto_config_room(void) {
        return(0);
 }
 
-
+/**
+ * \brief save the modifications
+ */
 void save_preferences(void) {
        char buf[SIZ];
        long msgnum = 0L;
@@ -127,11 +115,17 @@ void save_preferences(void) {
                serv_puts("000");
        }
 
-       /* Go back to the room we're supposed to be in */
+       /** Go back to the room we're supposed to be in */
        serv_printf("GOTO %s", WC->wc_roomname);
        serv_getln(buf, sizeof buf);
 }
 
+/**
+ * \brief query the actual setting of key in the citadel database
+ * \param key config key to query
+ * \param value value to the key to get
+ * \param value_len length of the value string
+ */
 void get_preference(char *key, char *value, size_t value_len) {
        int num_prefs;
        int i;
@@ -150,12 +144,26 @@ void get_preference(char *key, char *value, size_t value_len) {
        }
 }
 
+/**
+ * \brief      Write a key into the webcit preferences database for this user
+ *
+ * \params     key             key whichs value is to be modified
+ * \param      value           value to set
+ * \param      save_to_server  1 = flush all data to the server, 0 = cache it for now
+ */
 void set_preference(char *key, char *value, int save_to_server) {
        int num_prefs;
        int i;
        char buf[SIZ];
        char thiskey[SIZ];
        char *newprefs = NULL;
+       size_t newprefs_len = 0;
+
+       newprefs_len = strlen(key) + strlen(value) + 10;
+       if (WC->preferences != NULL) newprefs_len += strlen(WC->preferences);
+       newprefs = malloc(newprefs_len);
+       if (newprefs == NULL) return;
+       strcpy(newprefs, "");
 
        num_prefs = num_tokens(WC->preferences, '\n');
        for (i=0; i<num_prefs; ++i) {
@@ -163,20 +171,13 @@ void set_preference(char *key, char *value, int save_to_server) {
                if (num_tokens(buf, '|') == 2) {
                        extract_token(thiskey, buf, 0, '|', sizeof thiskey);
                        if (strcasecmp(thiskey, key)) {
-                               if (newprefs == NULL) newprefs = strdup("");
-                               newprefs = realloc(newprefs,
-                                       strlen(newprefs) + SIZ );
                                strcat(newprefs, buf);
                                strcat(newprefs, "\n");
                        }
                }
        }
 
-
-       if (newprefs == NULL) newprefs = strdup("");
-       newprefs = realloc(newprefs, strlen(newprefs) + SIZ);
        sprintf(&newprefs[strlen(newprefs)], "%s|%s\n", key, value);
-
        free(WC->preferences);
        WC->preferences = newprefs;
 
@@ -186,94 +187,259 @@ void set_preference(char *key, char *value, int save_to_server) {
 
 
 
-/* 
- * display form for changing your preferences and settings
+/** 
+ * \brief display form for changing your preferences and settings
  */
 void display_preferences(void)
 {
-       output_headers(1, 1, 2, 0, 0, 0, 0);
+       output_headers(1, 1, 1, 0, 0, 0);
+       char ebuf[300];
        char buf[256];
+       int i;
+       int time_format;
+       
+       time_format = get_time_format_cached ();
 
-       wprintf("<div id=\"banner\">\n");
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#444455\"><TR><TD>");
-       wprintf("<IMG SRC=\"/static/advanpage2_48x.gif\" ALT=\" \" ALIGN=MIDDLE>");
-       wprintf("<SPAN CLASS=\"titlebar\">&nbsp;Preferences and settings");
-       wprintf("</SPAN></TD><TD ALIGN=RIGHT>");
-       offer_start_page();
-       wprintf("</TD></TR></TABLE>\n");
-       wprintf("</div>\n"
-               "<div id=\"content\">\n");
+        wprintf("<div class=\"box\">\n");
+        wprintf("<div class=\"boxlabel\">");
+        wprintf(_("Preferences and settings"));
+        wprintf("</div>");
 
-       wprintf("<div id=\"fix_scrollbar_bug\">"
-               "<table border=0 width=100%% bgcolor=\"#ffffff\"><tr><td>\n");
+        wprintf("<div class=\"boxcontent\">");
 
-       /* begin form */
-       wprintf("<center>\n"
-               "<form name=\"prefform\" action=\"set_preferences\" "
-               "method=\"post\">\n"
-               "<table border=0 cellspacing=5 cellpadding=5>\n");
+       /** begin form */
+       wprintf("<form name=\"prefform\" action=\"set_preferences\" "
+               "method=\"post\">\n");
+       wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
 
+       /** begin table */
+        wprintf("<table class=\"altern\">\n");
 
+       /**
+        * Room list view
+        */
        get_preference("roomlistview", buf, sizeof buf);
-       wprintf("<tr><td>Room list view</td><td>");
+       wprintf("<tr class=\"even\"><td>");
+       wprintf(_("Room list view"));
+       wprintf("</td><td>");
 
        wprintf("<input type=\"radio\" name=\"roomlistview\" VALUE=\"folders\"");
        if (!strcasecmp(buf, "folders")) wprintf(" checked");
-       wprintf(">Tree (folders) view<br></input>\n");
+       wprintf(">");
+       wprintf(_("Tree (folders) view"));
+       wprintf("</input>&nbsp;&nbsp;&nbsp;");
 
        wprintf("<input type=\"radio\" name=\"roomlistview\" VALUE=\"rooms\"");
        if (!strcasecmp(buf, "rooms")) wprintf(" checked");
-       wprintf(">Table (rooms) view<br></input>\n");
+       wprintf(">");
+       wprintf(_("Table (rooms) view"));
+       wprintf("</input>\n");
 
        wprintf("</td></tr>\n");
 
+       /**
+        * Calendar hour format
+        */
 
-       get_preference("calhourformat", buf, sizeof buf);
-       if (buf[0] == 0) strcpy(buf, "12");
-       wprintf("<tr><td>Calendar hour format</td><td>");
+       wprintf("<tr class=\"odd\"><td>");
+       wprintf(_("Calendar hour format"));
+       wprintf("</td><td>");
 
        wprintf("<input type=\"radio\" name=\"calhourformat\" VALUE=\"12\"");
-       if (!strcasecmp(buf, "12")) wprintf(" checked");
-       wprintf(">12 hour (am/pm)<br></input>\n");
+       if (time_format == WC_TIMEFORMAT_AMPM) 
+               wprintf(" checked");
+       wprintf(">");
+       wprintf(_("12 hour (am/pm)"));
+       wprintf("</input>&nbsp;&nbsp;&nbsp;");
 
        wprintf("<input type=\"radio\" name=\"calhourformat\" VALUE=\"24\"");
-       if (!strcasecmp(buf, "24")) wprintf(" checked");
-       wprintf(">24 hour<br></input>\n");
+       if (time_format == WC_TIMEFORMAT_24)
+               wprintf(" checked");
+       wprintf(">");
+       wprintf(_("24 hour"));
+       wprintf("</input>\n");
 
        wprintf("</td></tr>\n");
 
-       wprintf("</table>\n"
-               "<input type=\"submit\" name=\"action\" value=\"Change\">"
-               "&nbsp;"
-               "<INPUT type=\"submit\" name=\"action\" value=\"Cancel\">\n");
+       /**
+        * Calendar day view -- day start time
+        */
+       get_preference("daystart", buf, sizeof buf);
+       if (buf[0] == 0) strcpy(buf, "8");
+       wprintf("<tr class=\"even\"><td>");
+       wprintf(_("Calendar day view begins at:"));
+       wprintf("</td><td>");
+
+       wprintf("<select name=\"daystart\" size=\"1\">\n");
+       for (i=0; i<=23; ++i) {
+
+               if (time_format == WC_TIMEFORMAT_24) {
+                       wprintf("<option %s value=\"%d\">%d:00</option>\n",
+                               ((atoi(buf) == i) ? "selected" : ""),
+                               i, i
+                       );
+               }
+               else {
+                       wprintf("<option %s value=\"%d\">%s</option>\n",
+                               ((atoi(buf) == i) ? "selected" : ""),
+                               i, hourname[i]
+                       );
+               }
+
+       }
+       wprintf("</select>\n");
+       wprintf("</td></tr>\n");
+
+       /**
+        * Calendar day view -- day end time
+        */
+       get_preference("dayend", buf, sizeof buf);
+       if (buf[0] == 0) strcpy(buf, "17");
+       wprintf("<tr class=\"odd\"><td>");
+       wprintf(_("Calendar day view ends at:"));
+       wprintf("</td><td>");
+
+       wprintf("<select name=\"dayend\" size=\"1\">\n");
+       for (i=0; i<=23; ++i) {
+
+               if (time_format == WC_TIMEFORMAT_24) {
+                       wprintf("<option %s value=\"%d\">%d:00</option>\n",
+                               ((atoi(buf) == i) ? "selected" : ""),
+                               i, i
+                       );
+               }
+               else {
+                       wprintf("<option %s value=\"%d\">%s</option>\n",
+                               ((atoi(buf) == i) ? "selected" : ""),
+                               i, hourname[i]
+                       );
+               }
 
-       wprintf("</form></center>\n");
+       }
+       wprintf("</select>\n");
+       wprintf("</td></tr>\n");
 
-       /* end form */
+       /**
+        * Signature
+        */
+       get_preference("use_sig", buf, sizeof buf);
+       if (buf[0] == 0) strcpy(buf, "no");
+       wprintf("<tr class=\"even\"><td>");
+       wprintf(_("Attach signature to email messages?"));
+       wprintf("</td><td>");
+
+       wprintf("       <script type=\"text/javascript\">                                       "
+               "       function show_or_hide_sigbox() {                                        "
+               "               if ( $F('yes_sig') ) {                                          "
+               "                       $('signature_box').style.display = 'inline';            "
+               "               }                                                               "
+               "               else {                                                          "
+               "                       $('signature_box').style.display = 'none';              "
+               "               }                                                               "
+               "       }                                                                       "
+               "       </script>                                                               "
+       );
+
+       wprintf("<input type=\"radio\" id=\"no_sig\" name=\"use_sig\" VALUE=\"no\"");
+       if (!strcasecmp(buf, "no")) wprintf(" checked");
+       wprintf(" onChange=\"show_or_hide_sigbox();\" >");
+       wprintf(_("No signature"));
+       wprintf("</input>&nbsp,&nbsp;&nbsp;\n");
+
+       wprintf("<input type=\"radio\" id=\"yes_sig\" name=\"use_sig\" VALUE=\"yes\"");
+       if (!strcasecmp(buf, "yes")) wprintf(" checked");
+       wprintf(" onChange=\"show_or_hide_sigbox();\" >");
+       wprintf(_("Use this signature:"));
+       wprintf("<div id=\"signature_box\">"
+               "<br><textarea name=\"signature\" cols=\"40\" rows=\"5\">"
+       );
+       get_preference("signature", ebuf, sizeof ebuf);
+       euid_unescapize(buf, ebuf);
+       escputs(buf);
+       wprintf("</textarea>"
+               "</div>"
+       );
+
+       wprintf("</input>\n");
 
+       wprintf("</td></tr>\n");
 
-       wprintf("</td></tr></table></div>\n");
+       wprintf("       <script type=\"text/javascript\">       "
+               "       show_or_hide_sigbox();                  "
+               "       </script>                               "
+       );
+
+       /** Character set to assume is in use for improperly encoded headers */
+       get_preference("default_header_charset", buf, sizeof buf);
+       if (buf[0] == 0) strcpy(buf, "UTF-8");
+       wprintf("<tr class=\"odd\"><td>");
+       wprintf(_("Default character set for email headers:"));
+       wprintf("</td><td>");
+       wprintf("<input type=\"text\" NAME=\"default_header_charset\" MAXLENGTH=\"32\" VALUE=\"");
+       escputs(buf);
+       wprintf("\">");
+       wprintf("</td></tr>");
+
+       /** end table */
+       wprintf("</table>\n");
+
+       /** submit buttons */
+       wprintf("<div class=\"buttons\"> ");
+       wprintf("<input type=\"submit\" name=\"change_button\" value=\"%s\">"
+               "&nbsp;"
+               "<INPUT type=\"submit\" name=\"cancel_button\" value=\"%s\">\n",
+               _("Change"),
+               _("Cancel")
+       );
+       wprintf("</div>\n");
+
+       /** end form */
+       wprintf("</form>\n");
+       wprintf("</div>\n");
        wDumpContent(1);
 }
 
-/*
- * Commit new preferences and settings
+/**
+ * \brief Commit new preferences and settings
  */
 void set_preferences(void)
 {
-       if (strcmp(bstr("action"), "Change")) {
+       char *fmt;
+       char ebuf[300];
+       int *time_format_cache;
+       
+       time_format_cache = &(WC->time_format_cache);
+
+       if (IsEmptyStr(bstr("change_button"))) {
                safestrncpy(WC->ImportantMessage, 
-                       "Cancelled.  No settings were changed.",
+                       _("Cancelled.  No settings were changed."),
                        sizeof WC->ImportantMessage);
                display_main_menu();
                return;
        }
 
-       /* Set the last argument to 1 only for the final setting, so
+       /**
+        * Set the last argument to 1 only for the final setting, so
         * we don't send the prefs file to the server repeatedly
         */
        set_preference("roomlistview", bstr("roomlistview"), 0);
-       set_preference("calhourformat", bstr("calhourformat"), 1);
+       fmt = bstr("calhourformat");
+       set_preference("calhourformat", fmt, 0);
+       if (!strcasecmp(fmt, "24")) 
+               *time_format_cache = WC_TIMEFORMAT_24;
+       else
+               *time_format_cache = WC_TIMEFORMAT_AMPM;
+
+       set_preference("use_sig", bstr("use_sig"), 0);
+       set_preference("daystart", bstr("daystart"), 0);
+       set_preference("dayend", bstr("dayend"), 0);
+       set_preference("default_header_charset", bstr("default_header_charset"), 0);
+
+       euid_escapize(ebuf, bstr("signature"));
+       set_preference("signature", ebuf, 1);
 
        display_main_menu();
 }
+
+
+/*@}*/