source: subversion/trunk/roundcubemail/program/steps/settings/save_prefs.inc @ 5662

Last change on this file since 5662 was 5662, checked in by alec, 18 months ago
  • Add separate pagesize setting for mail messages and contacts (#1488269)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.1 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/settings/save_prefs.inc                                 |
6 |                                                                       |
7 | This file is part of the Roundcube Webmail client                     |
8 | Copyright (C) 2005-2009, The Roundcube Dev Team                       |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Save user preferences to DB and to the current session              |
13 |                                                                       |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id$
19
20*/
21
22$CURR_SECTION = get_input_value('_section', RCUBE_INPUT_POST);
23
24$a_user_prefs = array();
25
26// set options for specified section
27switch ($CURR_SECTION)
28{
29  case 'general':
30    $a_user_prefs = array(
31      'language'     => isset($_POST['_language']) ? get_input_value('_language', RCUBE_INPUT_POST) : $CONFIG['language'],
32      'timezone'     => isset($_POST['_timezone']) ? (is_numeric($_POST['_timezone']) ? floatval($_POST['_timezone']) : get_input_value('_timezone', RCUBE_INPUT_POST)) : $CONFIG['timezone'],
33      'dst_active'   => isset($_POST['_dst_active']) ? TRUE : FALSE,
34      'date_format'  => isset($_POST['_date_format']) ? get_input_value('_date_format', RCUBE_INPUT_POST) : $CONFIG['date_format'],
35      'time_format'  => isset($_POST['_time_format']) ? get_input_value('_time_format', RCUBE_INPUT_POST) : ($CONFIG['time_format'] ? $CONFIG['time_format'] : 'H:i'),
36      'prettydate'   => isset($_POST['_pretty_date']) ? TRUE : FALSE,
37      'skin'         => isset($_POST['_skin']) ? get_input_value('_skin', RCUBE_INPUT_POST) : $CONFIG['skin'],
38    );
39
40    // compose derived date/time format strings
41    if ((isset($_POST['_date_format']) || isset($_POST['_time_format'])) && $a_user_prefs['date_format'] && $a_user_prefs['time_format']) {
42      $a_user_prefs['date_short'] = 'D ' . $a_user_prefs['time_format'];
43      $a_user_prefs['date_long'] = $a_user_prefs['date_format'] . ' ' . $a_user_prefs['time_format'];
44    }
45
46  break;
47
48  case 'mailbox':
49    $a_user_prefs = array(
50      'preview_pane'         => isset($_POST['_preview_pane']) ? TRUE : FALSE,
51      'preview_pane_mark_read' => isset($_POST['_preview_pane_mark_read']) ? intval($_POST['_preview_pane_mark_read']) : $CONFIG['preview_pane_mark_read'],
52      'autoexpand_threads'   => isset($_POST['_autoexpand_threads']) ? intval($_POST['_autoexpand_threads']) : 0,
53      'mdn_requests'         => isset($_POST['_mdn_requests']) ? intval($_POST['_mdn_requests']) : 0,
54      'keep_alive'           => isset($_POST['_keep_alive']) ? intval($_POST['_keep_alive'])*60 : $CONFIG['keep_alive'],
55      'check_all_folders'    => isset($_POST['_check_all_folders']) ? TRUE : FALSE,
56      'mail_pagesize'        => is_numeric($_POST['_mail_pagesize']) ? max(2, intval($_POST['_mail_pagesize'])) : $CONFIG['mail_pagesize'],
57    );
58
59  break;
60
61  case 'mailview':
62    $a_user_prefs = array(
63      'prefer_html'     => isset($_POST['_prefer_html']) ? TRUE : FALSE,
64      'inline_images'   => isset($_POST['_inline_images']) ? TRUE : FALSE,
65      'show_images'     => isset($_POST['_show_images']) ? intval($_POST['_show_images']) : 0,
66      'display_next'    => isset($_POST['_display_next']) ? TRUE : FALSE,
67      'default_charset' => get_input_value('_default_charset', RCUBE_INPUT_POST),
68    );
69
70  break;
71
72  case 'compose':
73    $a_user_prefs = array(
74      'htmleditor'         => intval($_POST['_htmleditor']),
75      'draft_autosave'     => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0,
76      'mime_param_folding' => isset($_POST['_mime_param_folding']) ? intval($_POST['_mime_param_folding']) : 0,
77      'force_7bit'         => isset($_POST['_force_7bit']) ? TRUE : FALSE,
78      'mdn_default'        => isset($_POST['_mdn_default']) ? TRUE : FALSE,
79      'dsn_default'        => isset($_POST['_dsn_default']) ? TRUE : FALSE,
80      'reply_same_folder'  => isset($_POST['_reply_same_folder']) ? TRUE : FALSE,
81      'spellcheck_before_send' => isset($_POST['_spellcheck_before_send']) ? TRUE : FALSE,
82      'spellcheck_ignore_syms' => isset($_POST['_spellcheck_ignore_syms']) ? TRUE : FALSE,
83      'spellcheck_ignore_nums' => isset($_POST['_spellcheck_ignore_nums']) ? TRUE : FALSE,
84      'spellcheck_ignore_caps' => isset($_POST['_spellcheck_ignore_caps']) ? TRUE : FALSE,
85      'show_sig'           => isset($_POST['_show_sig']) ? intval($_POST['_show_sig']) : 1,
86      'top_posting'        => !empty($_POST['_top_posting']),
87      'strip_existing_sig' => isset($_POST['_strip_existing_sig']),
88      'sig_above'          => !empty($_POST['_sig_above']) && !empty($_POST['_top_posting']),
89      'default_font'       => get_input_value('_default_font', RCUBE_INPUT_POST),
90    );
91
92  break;
93
94  case 'addressbook':
95    $a_user_prefs = array(
96      'default_addressbook'  => get_input_value('_default_addressbook', RCUBE_INPUT_POST, true),
97      'autocomplete_single'  => isset($_POST['_autocomplete_single']) ? TRUE : FALSE,
98      'addressbook_pagesize' => is_numeric($_POST['_addressbook_pagesize']) ? max(2, intval($_POST['_addressbook_pagesize'])) : $CONFIG['addressbook_pagesize'],
99    );
100
101  break;
102
103  case 'server':
104    $a_user_prefs = array(
105      'read_when_deleted' => isset($_POST['_read_when_deleted']) ? TRUE : FALSE,
106      'skip_deleted'      => isset($_POST['_skip_deleted']) ? TRUE : FALSE,
107      'flag_for_deletion' => isset($_POST['_flag_for_deletion']) ? TRUE : FALSE,
108      'delete_always'     => isset($_POST['_delete_always']) ? TRUE : FALSE,
109      'logout_purge'      => isset($_POST['_logout_purge']) ? TRUE : FALSE,
110      'logout_expunge'    => isset($_POST['_logout_expunge']) ? TRUE : FALSE,
111    );
112
113  break;
114
115  case 'folders':
116    $a_user_prefs = array(
117      'drafts_mbox' => get_input_value('_drafts_mbox', RCUBE_INPUT_POST, true),
118      'sent_mbox'   => get_input_value('_sent_mbox', RCUBE_INPUT_POST, true),
119      'junk_mbox'   => get_input_value('_junk_mbox', RCUBE_INPUT_POST, true),
120      'trash_mbox'  => get_input_value('_trash_mbox', RCUBE_INPUT_POST, true),
121    );
122
123  break;
124}
125
126$plugin = rcmail::get_instance()->plugins->exec_hook('preferences_save',
127  array('prefs' => $a_user_prefs, 'section' => $CURR_SECTION));
128
129$a_user_prefs = $plugin['prefs'];
130
131// don't override these parameters
132foreach ((array)$CONFIG['dont_override'] as $p)
133  $a_user_prefs[$p] = $CONFIG[$p];
134
135
136// verify some options
137switch ($CURR_SECTION)
138{
139  case 'general':
140
141    // switch UI language
142    if (isset($_POST['_language']) && $a_user_prefs['language'] != $_SESSION['language']) {
143      $RCMAIL->load_language($a_user_prefs['language']);
144      $OUTPUT->command('reload', 500);
145    }
146
147    // switch skin (if valid, otherwise unset the pref and fall back to default)
148    if (!$OUTPUT->set_skin($a_user_prefs['skin']))
149      unset($a_user_prefs['skin']);
150    else if ($RCMAIL->config->get('skin') != $a_user_prefs['skin'])
151      $OUTPUT->command('reload', 500);
152
153    // force min size
154    if ($a_user_prefs['mail_pagesize'] < 1)
155      $a_user_prefs['mail_pagesize'] = 10;
156    if ($a_user_prefs['addressbook_pagesize'] < 1)
157      $a_user_prefs['addressbook_pagesize'] = 10;
158
159    if (isset($CONFIG['max_pagesize']) && ($a_user_prefs['mail_pagesize'] > $CONFIG['max_pagesize']))
160      $a_user_prefs['mail_pagesize'] = (int) $CONFIG['max_pagesize'];
161    if (isset($CONFIG['max_pagesize']) && ($a_user_prefs['addressbook_pagesize'] > $CONFIG['max_pagesize']))
162      $a_user_prefs['addressbook_pagesize'] = (int) $CONFIG['max_pagesize'];
163
164    $a_user_prefs['timezone'] = (string) $a_user_prefs['timezone'];
165
166  break;
167  case 'mailbox':
168
169    // force keep_alive
170    if (isset($a_user_prefs['keep_alive'])) {
171      $a_user_prefs['keep_alive'] = max(60, $CONFIG['min_keep_alive'], $a_user_prefs['keep_alive']);
172      if (!empty($CONFIG['session_lifetime']))
173        $a_user_prefs['keep_alive'] = min($CONFIG['session_lifetime']*60, $a_user_prefs['keep_alive']);
174    }
175
176  break;
177  case 'folders':
178
179    // special handling for 'default_imap_folders'
180    if (in_array('default_imap_folders', (array)$CONFIG['dont_override'])) {
181      foreach (array('drafts_mbox','sent_mbox','junk_mbox','trash_mbox') as $p)
182        $a_user_prefs[$p] = $CONFIG[$p];
183    } else {
184      $a_user_prefs['default_imap_folders'] = array('INBOX');
185      foreach (array('drafts_mbox','sent_mbox','junk_mbox','trash_mbox') as $p) {
186        if ($a_user_prefs[$p])
187          $a_user_prefs['default_imap_folders'][] = $a_user_prefs[$p];
188      }
189    }
190
191  break;
192}
193
194// Save preferences
195if (!$plugin['abort'])
196  $saved = $RCMAIL->user->save_prefs($a_user_prefs);
197else
198  $saved = $plugin['result'];
199
200if ($saved)
201  $OUTPUT->show_message('successfullysaved', 'confirmation');
202else
203  $OUTPUT->show_message($plugin['message'] ? $plugin['message'] : 'errorsaving', 'error');
204
205// display the form again
206rcmail_overwrite_action('edit-prefs');
207
Note: See TracBrowser for help on using the repository browser.