b60d36dc8d11018348ac2845931c11fc3961ed5d
[citadel.git] / webcit / preferences.c
1 /*
2  * $Id$
3  */
4 /**
5  * \defgroup ManagePrefs Manage user preferences with a little help from the Citadel server.
6  * \ingroup CitadelConfig
7  *
8  */
9 /*@{*/
10 #include "webcit.h"
11 #include "webserver.h"
12 #include "groupdav.h"
13
14
15 /**
16  * \brief display preferences dialog
17  */
18 void load_preferences(void) {
19         char buf[SIZ];
20         long msgnum = 0L;
21
22         serv_printf("GOTO %s", USERCONFIGROOM);
23         serv_getln(buf, sizeof buf);
24         if (buf[0] != '2') return;
25         
26         serv_puts("MSGS ALL|0|1");
27         serv_getln(buf, sizeof buf);
28         if (buf[0] == '8') {
29                 serv_puts("subj|__ WebCit Preferences __");
30                 serv_puts("000");
31         }
32         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
33                 msgnum = atol(buf);
34         }
35
36         if (msgnum > 0L) {
37                 serv_printf("MSG0 %ld", msgnum);
38                 serv_getln(buf, sizeof buf);
39                 if (buf[0] == '1') {
40                         while (serv_getln(buf, sizeof buf),
41                                 (strcmp(buf, "text") && strcmp(buf, "000"))) {
42                         }
43                         if (!strcmp(buf, "text")) {
44                                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
45                                         if (WC->preferences == NULL) {
46                                                 WC->preferences = malloc(SIZ);
47                                                 strcpy(WC->preferences, "");
48                                         }
49                                         else {
50                                                 WC->preferences = realloc(
51                                                         WC->preferences,
52                                                         strlen(WC->preferences)
53                                                         +SIZ
54                                                 );
55                                         }
56                                         strcat(WC->preferences, buf);
57                                         strcat(WC->preferences, "\n");
58                                 }
59                         }
60                 }
61         }
62
63         /** Go back to the room we're supposed to be in */
64         serv_printf("GOTO %s", WC->wc_roomname);
65         serv_getln(buf, sizeof buf);
66 }
67
68 /**
69  * \brief Goto the user's configuration room, creating it if necessary.
70  * \return 0 on success or nonzero upon failure.
71  */
72 int goto_config_room(void) {
73         char buf[SIZ];
74
75         serv_printf("GOTO %s", USERCONFIGROOM);
76         serv_getln(buf, sizeof buf);
77         if (buf[0] != '2') { /* try to create the config room if not there */
78                 serv_printf("CRE8 1|%s|4|0", USERCONFIGROOM);
79                 serv_getln(buf, sizeof buf);
80                 serv_printf("GOTO %s", USERCONFIGROOM);
81                 serv_getln(buf, sizeof buf);
82                 if (buf[0] != '2') return(1);
83         }
84         return(0);
85 }
86
87 /**
88  * \brief save the modifications
89  */
90 void save_preferences(void) {
91         char buf[SIZ];
92         long msgnum = 0L;
93
94         if (goto_config_room() != 0) return;    /* oh well. */
95         serv_puts("MSGS ALL|0|1");
96         serv_getln(buf, sizeof buf);
97         if (buf[0] == '8') {
98                 serv_puts("subj|__ WebCit Preferences __");
99                 serv_puts("000");
100         }
101         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
102                 msgnum = atol(buf);
103         }
104
105         if (msgnum > 0L) {
106                 serv_printf("DELE %ld", msgnum);
107                 serv_getln(buf, sizeof buf);
108         }
109
110         serv_printf("ENT0 1||0|1|__ WebCit Preferences __|");
111         serv_getln(buf, sizeof buf);
112         if (buf[0] == '4') {
113                 serv_puts(WC->preferences);
114                 serv_puts("");
115                 serv_puts("000");
116         }
117
118         /** Go back to the room we're supposed to be in */
119         serv_printf("GOTO %s", WC->wc_roomname);
120         serv_getln(buf, sizeof buf);
121 }
122
123 /**
124  * \brief query the actual setting of key in the citadel database
125  * \param key config key to query
126  * \param value value to the key to get
127  * \param value_len length of the value string
128  */
129 void get_preference(char *key, char *value, size_t value_len) {
130         int num_prefs;
131         int i;
132         char buf[SIZ];
133         char thiskey[SIZ];
134
135         strcpy(value, "");
136
137         num_prefs = num_tokens(WC->preferences, '\n');
138         for (i=0; i<num_prefs; ++i) {
139                 extract_token(buf, WC->preferences, i, '\n', sizeof buf);
140                 extract_token(thiskey, buf, 0, '|', sizeof thiskey);
141                 if (!strcasecmp(thiskey, key)) {
142                         extract_token(value, buf, 1, '|', value_len);
143                 }
144         }
145 }
146
147 /**
148  * \brief       Write a key into the webcit preferences database for this user
149  *
150  * \params      key             key whichs value is to be modified
151  * \param       value           value to set
152  * \param       save_to_server  1 = flush all data to the server, 0 = cache it for now
153  */
154 void set_preference(char *key, char *value, int save_to_server) {
155         int num_prefs;
156         int i;
157         char buf[SIZ];
158         char thiskey[SIZ];
159         char *newprefs = NULL;
160         size_t newprefs_len = 0;
161
162         newprefs_len = strlen(key) + strlen(value) + 10;
163         if (WC->preferences != NULL) newprefs_len += strlen(WC->preferences);
164         newprefs = malloc(newprefs_len);
165         if (newprefs == NULL) return;
166         strcpy(newprefs, "");
167
168         num_prefs = num_tokens(WC->preferences, '\n');
169         for (i=0; i<num_prefs; ++i) {
170                 extract_token(buf, WC->preferences, i, '\n', sizeof buf);
171                 if (num_tokens(buf, '|') == 2) {
172                         extract_token(thiskey, buf, 0, '|', sizeof thiskey);
173                         if (strcasecmp(thiskey, key)) {
174                                 strcat(newprefs, buf);
175                                 strcat(newprefs, "\n");
176                         }
177                 }
178         }
179
180         sprintf(&newprefs[strlen(newprefs)], "%s|%s\n", key, value);
181         free(WC->preferences);
182         WC->preferences = newprefs;
183
184         if (save_to_server) save_preferences();
185 }
186
187
188
189
190 /** 
191  * \brief display form for changing your preferences and settings
192  */
193 void display_preferences(void)
194 {
195         output_headers(1, 1, 2, 0, 0, 0);
196         char ebuf[300];
197         char buf[256];
198         char calhourformat[16];
199         int i;
200
201         wprintf("<div id=\"banner\">\n");
202         wprintf("<TABLE class=\"preferences_banner\"><TR><TD>");
203         wprintf("<img src=\"static/advanpage2_48x.gif\" ALT=\" \" ALIGN=MIDDLE>");
204         wprintf("<SPAN CLASS=\"titlebar\">&nbsp;");
205         wprintf(_("Preferences and settings"));
206         wprintf("</SPAN></TD><TD ALIGN=RIGHT>");
207         offer_start_page();
208         wprintf("</TD></TR></TABLE>\n");
209         wprintf("</div>\n"
210                 "<div id=\"content\">\n");
211
212         wprintf("<div class=\"fix_scrollbar_bug\">"
213                 "<table class=\"preferences_background\"><tr><td>\n");
214
215         /** begin form */
216         wprintf("<center>\n"
217                 "<form name=\"prefform\" action=\"set_preferences\" "
218                 "method=\"post\">\n"
219                 "<table border=0 cellspacing=5 cellpadding=5>\n");
220         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
221
222         /**
223          * Room list view
224          */
225         get_preference("roomlistview", buf, sizeof buf);
226         wprintf("<tr><td>");
227         wprintf(_("Room list view"));
228         wprintf("</td><td>");
229
230         wprintf("<input type=\"radio\" name=\"roomlistview\" VALUE=\"folders\"");
231         if (!strcasecmp(buf, "folders")) wprintf(" checked");
232         wprintf(">");
233         wprintf(_("Tree (folders) view"));
234         wprintf("<br></input>\n");
235
236         wprintf("<input type=\"radio\" name=\"roomlistview\" VALUE=\"rooms\"");
237         if (!strcasecmp(buf, "rooms")) wprintf(" checked");
238         wprintf(">");
239         wprintf(_("Table (rooms) view"));
240         wprintf("<br></input>\n");
241
242         wprintf("</td></tr>\n");
243
244         /**
245          * Calendar hour format
246          */
247         get_preference("calhourformat", calhourformat, sizeof calhourformat);
248         if (calhourformat[0] == 0) strcpy(calhourformat, "12");
249         wprintf("<tr><td>");
250         wprintf(_("Calendar hour format"));
251         wprintf("</td><td>");
252
253         wprintf("<input type=\"radio\" name=\"calhourformat\" VALUE=\"12\"");
254         if (!strcasecmp(calhourformat, "12")) wprintf(" checked");
255         wprintf(">");
256         wprintf(_("12 hour (am/pm)"));
257         wprintf("<br></input>\n");
258
259         wprintf("<input type=\"radio\" name=\"calhourformat\" VALUE=\"24\"");
260         if (!strcasecmp(calhourformat, "24")) wprintf(" checked");
261         wprintf(">");
262         wprintf(_("24 hour"));
263         wprintf("<br></input>\n");
264
265         wprintf("</td></tr>\n");
266
267         /**
268          * Calendar day view -- day start time
269          */
270         get_preference("daystart", buf, sizeof buf);
271         if (buf[0] == 0) strcpy(buf, "8");
272         wprintf("<tr><td>");
273         wprintf(_("Calendar day view begins at:"));
274         wprintf("</td><td>");
275
276         wprintf("<SELECT NAME=\"daystart\" SIZE=\"1\">\n");
277         for (i=0; i<=23; ++i) {
278
279                 if (!strcasecmp(calhourformat, "24")) {
280                         wprintf("<OPTION %s VALUE=\"%d\">%d:00</OPTION>\n",
281                                 ((atoi(buf) == i) ? "SELECTED" : ""),
282                                 i, i
283                         );
284                 }
285                 else {
286                         wprintf("<OPTION %s VALUE=\"%d\">%s</OPTION>\n",
287                                 ((atoi(buf) == i) ? "SELECTED" : ""),
288                                 i, hourname[i]
289                         );
290                 }
291
292         }
293         wprintf("</SELECT>\n");
294         wprintf("</td></tr>\n");
295
296         /**
297          * Calendar day view -- day end time
298          */
299         get_preference("dayend", buf, sizeof buf);
300         if (buf[0] == 0) strcpy(buf, "17");
301         wprintf("<tr><td>");
302         wprintf(_("Calendar day view ends at:"));
303         wprintf("</td><td>");
304
305         wprintf("<SELECT NAME=\"dayend\" SIZE=\"1\">\n");
306         for (i=0; i<=23; ++i) {
307
308                 if (!strcasecmp(calhourformat, "24")) {
309                         wprintf("<OPTION %s VALUE=\"%d\">%d:00</OPTION>\n",
310                                 ((atoi(buf) == i) ? "SELECTED" : ""),
311                                 i, i
312                         );
313                 }
314                 else {
315                         wprintf("<OPTION %s VALUE=\"%d\">%s</OPTION>\n",
316                                 ((atoi(buf) == i) ? "SELECTED" : ""),
317                                 i, hourname[i]
318                         );
319                 }
320
321         }
322         wprintf("</SELECT>\n");
323         wprintf("</td></tr>\n");
324
325         /**
326          * Signature
327          */
328         get_preference("use_sig", buf, sizeof buf);
329         if (buf[0] == 0) strcpy(buf, "no");
330         wprintf("<tr><td>");
331         wprintf(_("Attach signature to email messages?"));
332         wprintf("</td><td>");
333
334         wprintf("       <script type=\"text/javascript\">                                       "
335                 "       function show_or_hide_sigbox() {                                        "
336                 "               if ( $F('yes_sig') ) {                                          "
337                 "                       $('signature_box').style.display = 'inline';            "
338                 "               }                                                               "
339                 "               else {                                                          "
340                 "                       $('signature_box').style.display = 'none';              "
341                 "               }                                                               "
342                 "       }                                                                       "
343                 "       </script>                                                               "
344         );
345
346         wprintf("<input type=\"radio\" id=\"no_sig\" name=\"use_sig\" VALUE=\"no\"");
347         if (!strcasecmp(buf, "no")) wprintf(" checked");
348         wprintf(" onChange=\"show_or_hide_sigbox();\" >");
349         wprintf(_("No signature"));
350         wprintf("<br></input>\n");
351
352         wprintf("<input type=\"radio\" id=\"yes_sig\" name=\"use_sig\" VALUE=\"yes\"");
353         if (!strcasecmp(buf, "yes")) wprintf(" checked");
354         wprintf(" onChange=\"show_or_hide_sigbox();\" >");
355         wprintf(_("Use this signature:"));
356         wprintf("<div id=\"signature_box\">"
357                 "<br><textarea name=\"signature\" cols=\"40\" rows=\"5\">"
358         );
359         get_preference("signature", ebuf, sizeof ebuf);
360         euid_unescapize(buf, ebuf);
361         escputs(buf);
362         wprintf("</textarea>"
363                 "</div>"
364         );
365
366         wprintf("<br></input>\n");
367
368         wprintf("</td></tr>\n");
369
370         wprintf("       <script type=\"text/javascript\">       "
371                 "       show_or_hide_sigbox();                  "
372                 "       </script>                               "
373         );
374
375         /** Character set to assume is in use for improperly encoded headers */
376         get_preference("default_header_charset", buf, sizeof buf);
377         if (buf[0] == 0) strcpy(buf, "UTF-8");
378         wprintf("<tr><td>");
379         wprintf(_("Default character set for email headers:"));
380         wprintf("</td><td>");
381         wprintf("<input type=\"text\" NAME=\"default_header_charset\" MAXLENGTH=\"32\" VALUE=\"");
382         escputs(buf);
383         wprintf("\">");
384         wprintf("</td></tr>");
385
386         /** submit buttons */
387         wprintf("</table>\n"
388                 "<input type=\"submit\" name=\"change_button\" value=\"%s\">"
389                 "&nbsp;"
390                 "<INPUT type=\"submit\" name=\"cancel_button\" value=\"%s\">\n",
391                 _("Change"),
392                 _("Cancel")
393         );
394
395         /** end form */
396         wprintf("</form></center>\n");
397         wprintf("</td></tr></table></div>\n");
398         wDumpContent(1);
399 }
400
401 /**
402  * \brief Commit new preferences and settings
403  */
404 void set_preferences(void)
405 {
406         char ebuf[300];
407
408         if (IsEmptyStr(bstr("change_button"))) {
409                 safestrncpy(WC->ImportantMessage, 
410                         _("Cancelled.  No settings were changed."),
411                         sizeof WC->ImportantMessage);
412                 display_main_menu();
413                 return;
414         }
415
416         /**
417          * Set the last argument to 1 only for the final setting, so
418          * we don't send the prefs file to the server repeatedly
419          */
420         set_preference("roomlistview", bstr("roomlistview"), 0);
421         set_preference("calhourformat", bstr("calhourformat"), 0);
422         set_preference("use_sig", bstr("use_sig"), 0);
423         set_preference("daystart", bstr("daystart"), 0);
424         set_preference("dayend", bstr("dayend"), 0);
425         set_preference("default_header_charset", bstr("default_header_charset"), 0);
426
427         euid_escapize(ebuf, bstr("signature"));
428         set_preference("signature", ebuf, 1);
429
430         display_main_menu();
431 }
432
433
434 /*@}*/