Protect message deletion with security token system. (Secunia Advisory SA34627)
[squirrelmail.git] / src / options_highlight.php
CommitLineData
9d157cec 1<?php
895905c0 2
c57b0888 3/**
4 * options_highlight.php
5 *
c57b0888 6 * Displays message highlighting options
7 *
d4e46166 8 * @copyright &copy; 1999-2009 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 10 * @version $Id$
8f6f9ba5 11 * @package squirrelmail
ca479ad1 12 * @subpackage prefs
c57b0888 13 */
ef870322 14
ebd2391c 15/** This is the options_highlight page */
16define('PAGE_NAME', 'options_highlight');
17
30967a1e 18/**
202bcbcc 19 * Include the SquirrelMail initialization file.
30967a1e 20 */
202bcbcc 21require('../include/init.php');
86725763 22
202bcbcc 23// include_once(SM_PATH . 'functions/imap.php');
24require_once(SM_PATH . 'functions/forms.php');
9d157cec 25
fe369c70 26/* get globals */
62366261 27sqGetGlobalVar('action', $action);
28sqGetGlobalVar('theid', $theid);
29sqGetGlobalVar('identname', $identname);
30sqGetGlobalVar('newcolor_choose', $newcolor_choose);
31sqGetGlobalVar('newcolor_input', $newcolor_input);
32sqGetGlobalVar('color_type', $color_type);
33sqGetGlobalVar('match_type', $match_type);
34sqGetGlobalVar('value', $value);
199a9ab8 35sqgetGlobalVar('smtoken', $submitted_token, SQ_POST, '');
fe369c70 36
fe369c70 37/* end of get globals */
91e0dccc 38
c57b0888 39function oh_opt( $val, $sel, $tit ) {
d79e01f5 40 echo "<option value=\"$val\"";
c57b0888 41 if ( $sel )
e1728a7a 42 echo ' selected="selected"';
c57b0888 43 echo ">$tit</option>\n";
44}
e697b6cc 45
d79e01f5 46if (! isset($action)) {
47 $action = '';
48}
49if (! isset($message_highlight_list)) {
50 $message_highlight_list = array();
51}
52
8415b2d3 53if (isset($theid) && ($action == 'delete') ||
54 ($action == 'up') ||
55 ($action == 'down')) {
199a9ab8 56
57 // security check
58 sm_validate_security_token($submitted_token, 3600, TRUE);
59
1c159927 60 $new_rules = array();
8415b2d3 61 switch($action) {
62 case('delete'):
63 foreach($message_highlight_list as $rid => $rule) {
64 if($rid != $theid) {
65 $new_rules[] = $rule;
66 }
67 }
68 break;
69 case('down'):
70 $theid++;
71 case('up'):
72 foreach($message_highlight_list as $rid => $rule) {
73 if($rid == $theid) {
74 $temp_rule = $new_rules[$rid-1];
75 $new_rules[$rid-1] = $rule;
76 $new_rules[$rid] = $temp_rule;
77 } else {
78 $new_rules[$rid] = $rule;
79 }
80 }
81 break;
82 default:
83 $new_rules = $message_highlight_list;
84 break;
1c159927 85 }
134e4174 86 $message_highlight_list = $new_rules;
1c159927 87
88 setPref($data_dir, $username, 'hililist', serialize($message_highlight_list));
89
d7746ca5 90 header( 'Location: ' .get_location(). '/options_highlight.php' );
d79e01f5 91 exit;
92} else if ($action == 'save') {
1c159927 93
199a9ab8 94 // security check
95 sm_validate_security_token($submitted_token, 3600, TRUE);
96
d79e01f5 97 if ($color_type == 1) $newcolor = $newcolor_choose;
98 elseif ($color_type == 2) $newcolor = $newcolor_input;
99 else $newcolor = $color_type;
100
0f8a1ce9 101 $newcolor = str_replace('#', '', $newcolor);
102 $newcolor = str_replace('"', '', $newcolor);
103 $newcolor = str_replace('\'', '', $newcolor);
104 $value = str_replace(',', ' ', $value);
d79e01f5 105
1c159927 106 if(isset($theid)) {
91e0dccc 107 $message_highlight_list[$theid] =
1c159927 108 array( 'name' => $identname, 'color' => $newcolor,
109 'value' => $value, 'match_type' => $match_type );
110 } else {
91e0dccc 111 $message_highlight_list[] =
1c159927 112 array( 'name' => $identname, 'color' => $newcolor,
113 'value' => $value, 'match_type' => $match_type );
114 }
115
116 setPref($data_dir, $username, 'hililist', serialize($message_highlight_list));
d79e01f5 117}
876fdb60 118displayPageHeader($color);
c36ed9cf 119
85c8aff6 120/**
121 * Display the current rule list
122 */
123$rules = array();
124foreach($message_highlight_list as $index=>$rule) {
125 $a = array();
126
127 $a['Name'] = htmlspecialchars($rule['name']);
128 $a['Color'] = $rule['color'];
129 $a['MatchField'] = '';
130 $a['MatchValue'] = htmlspecialchars($rule['value']);
131 switch ($rule['match_type']) {
545238b1 132 case 'from' :
85c8aff6 133 $a['MatchField'] = _("From");
134 break;
545238b1 135 case 'to' :
85c8aff6 136 $a['MatchField'] = _("To");
137 break;
545238b1 138 case 'cc' :
85c8aff6 139 $a['MatchField'] = _("Cc");
140 break;
545238b1 141 case 'to_cc' :
85c8aff6 142 $a['MatchField'] = _("To or Cc");
143 break;
545238b1 144 case 'subject' :
85c8aff6 145 $a['MatchField'] = _("subject");
146 break;
d79e01f5 147 }
85c8aff6 148
149 $rules[$index] = $a;
d79e01f5 150}
85c8aff6 151
152$oTemplate->assign('current_rules', $rules);
153
154$oTemplate->assign('add_rule', 'options_highlight.php?action=add');
155$oTemplate->assign('edit_rule', 'options_highlight.php?action=edit&amp;theid=');
156$oTemplate->assign('delete_rule', 'options_highlight.php?action=delete&amp;theid=');
157$oTemplate->assign('move_up', 'options_highlight.php?action=up&amp;theid=');
158$oTemplate->assign('move_down', 'options_highlight.php?action=down&amp;theid=');
159
160$oTemplate->display('options_highlight_list.tpl');
161
162/**
163 * Optionally, display the add/edit dialog
164 */
d79e01f5 165if ($action == 'edit' || $action == 'add') {
d79e01f5 166
167 $color_list[0] = '4444aa';
168 $color_list[1] = '44aa44';
169 $color_list[2] = 'aaaa44';
170 $color_list[3] = '44aaaa';
171 $color_list[4] = 'aa44aa';
172 $color_list[5] = 'aaaaff';
173 $color_list[6] = 'aaffaa';
174 $color_list[7] = 'ffffaa';
175 $color_list[8] = 'aaffff';
176 $color_list[9] = 'ffaaff';
177 $color_list[10] = 'aaaaaa';
178 $color_list[11] = 'bfbfbf';
179 $color_list[12] = 'dfdfdf';
180 $color_list[13] = 'ffffff';
181
182 # helpful color chart from http://www.visibone.com/colorlab/big.html
183 $new_color_list["0,0"] = 'cccccc';
184 $new_color_list["0,1"] = '999999';
185 $new_color_list["0,2"] = '666666';
186 $new_color_list["0,3"] = '333333';
187 $new_color_list["0,4"] = '000000';
188
189 # red
190 $new_color_list["1,0"] = 'ff0000';
191 $new_color_list["1,1"] = 'cc0000';
192 $new_color_list["1,2"] = '990000';
193 $new_color_list["1,3"] = '660000';
194 $new_color_list["1,4"] = '330000';
195
196 $new_color_list["2,0"] = 'ffcccc';
197 $new_color_list["2,1"] = 'cc9999';
198 $new_color_list["2,2"] = '996666';
199 $new_color_list["2,3"] = '663333';
200 $new_color_list["2,4"] = '330000';
201
202 $new_color_list["3,0"] = 'ffcccc';
203 $new_color_list["3,1"] = 'ff9999';
204 $new_color_list["3,2"] = 'ff6666';
205 $new_color_list["3,3"] = 'ff3333';
206 $new_color_list["3,4"] = 'ff0000';
207
208 # green
209 $new_color_list["4,0"] = '00ff00';
210 $new_color_list["4,1"] = '00cc00';
211 $new_color_list["4,2"] = '009900';
212 $new_color_list["4,3"] = '006600';
213 $new_color_list["4,4"] = '003300';
214
215 $new_color_list["5,0"] = 'ccffcc';
216 $new_color_list["5,1"] = '99cc99';
217 $new_color_list["5,2"] = '669966';
218 $new_color_list["5,3"] = '336633';
219 $new_color_list["5,4"] = '003300';
220
221 $new_color_list["6,0"] = 'ccffcc';
222 $new_color_list["6,1"] = '99ff99';
223 $new_color_list["6,2"] = '66ff66';
224 $new_color_list["6,3"] = '33ff33';
225 $new_color_list["6,4"] = '00ff00';
226
227 # blue
228 $new_color_list["7,0"] = '0000ff';
229 $new_color_list["7,1"] = '0000cc';
230 $new_color_list["7,2"] = '000099';
231 $new_color_list["7,3"] = '000066';
232 $new_color_list["7,4"] = '000033';
233
234 $new_color_list["8,0"] = 'ccccff';
235 $new_color_list["8,1"] = '9999cc';
236 $new_color_list["8,2"] = '666699';
237 $new_color_list["8,3"] = '333366';
238 $new_color_list["8,4"] = '000033';
239
240 $new_color_list["9,0"] = 'ccccff';
241 $new_color_list["9,1"] = '9999ff';
242 $new_color_list["9,2"] = '6666ff';
243 $new_color_list["9,3"] = '3333ff';
244 $new_color_list["9,4"] = '0000ff';
245
246 # yellow
247 $new_color_list["10,0"] = 'ffff00';
248 $new_color_list["10,1"] = 'cccc00';
249 $new_color_list["10,2"] = '999900';
250 $new_color_list["10,3"] = '666600';
251 $new_color_list["10,4"] = '333300';
252
253 $new_color_list["11,0"] = 'ffffcc';
254 $new_color_list["11,1"] = 'cccc99';
255 $new_color_list["11,2"] = '999966';
256 $new_color_list["11,3"] = '666633';
257 $new_color_list["11,4"] = '333300';
258
259 $new_color_list["12,0"] = 'ffffcc';
260 $new_color_list["12,1"] = 'ffff99';
261 $new_color_list["12,2"] = 'ffff66';
262 $new_color_list["12,3"] = 'ffff33';
263 $new_color_list["12,4"] = 'ffff00';
264
265 # cyan
266 $new_color_list["13,0"] = '00ffff';
267 $new_color_list["13,1"] = '00cccc';
268 $new_color_list["13,2"] = '009999';
269 $new_color_list["13,3"] = '006666';
270 $new_color_list["13,4"] = '003333';
271
272 $new_color_list["14,0"] = 'ccffff';
273 $new_color_list["14,1"] = '99cccc';
274 $new_color_list["14,2"] = '669999';
275 $new_color_list["14,3"] = '336666';
276 $new_color_list["14,4"] = '003333';
277
278 $new_color_list["15,0"] = 'ccffff';
279 $new_color_list["15,1"] = '99ffff';
280 $new_color_list["15,2"] = '66ffff';
281 $new_color_list["15,3"] = '33ffff';
282 $new_color_list["15,4"] = '00ffff';
283
284 # magenta
285 $new_color_list["16,0"] = 'ff00ff';
286 $new_color_list["16,1"] = 'cc00cc';
287 $new_color_list["16,2"] = '990099';
288 $new_color_list["16,3"] = '660066';
289 $new_color_list["16,4"] = '330033';
290
291 $new_color_list["17,0"] = 'ffccff';
292 $new_color_list["17,1"] = 'cc99cc';
293 $new_color_list["17,2"] = '996699';
294 $new_color_list["17,3"] = '663366';
295 $new_color_list["17,4"] = '330033';
296
297 $new_color_list["18,0"] = 'ffccff';
298 $new_color_list["18,1"] = 'ff99ff';
299 $new_color_list["18,2"] = 'ff66ff';
300 $new_color_list["18,3"] = 'ff33ff';
301 $new_color_list["18,4"] = 'ff00ff';
302
62366261 303 $selected_input = FALSE;
62366261 304 $selected_choose = FALSE;
305 $selected_predefined = FALSE;
d79e01f5 306
85c8aff6 307 $name = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['name']) ? $message_highlight_list[$theid]['name'] : '';
308 $field = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['match_type']) ? $message_highlight_list[$theid]['match_type'] : '';
309 $value = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['value']) ? $message_highlight_list[$theid]['value'] : '';
310 $color = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['color']) ? $message_highlight_list[$theid]['color'] : '';
311
89465360 312 if ($action == 'edit' && isset($theid) && isset($message_highlight_list[$theid]['color'])) {
d79e01f5 313 for ($i=0; $i < 14; $i++) {
e1db998a 314 if ($color_list[$i] == $message_highlight_list[$theid]['color']) {
62366261 315 $selected_choose = TRUE;
89465360 316 continue;
cd928157 317 }
89465360 318 }
d79e01f5 319 }
545238b1 320
df2c5bc9 321 $pre_defined_color = 0;
545238b1 322 for($x = 0; $x < 5; $x++) {
323 for($y = 0; $y < 19; $y++) {
324 $gridindex = "$y,$x";
325 $gridcolor = $new_color_list[$gridindex];
85c8aff6 326 if ($gridcolor == $color) {
545238b1 327 $pre_defined_color = 1;
328 break;
329 }
330 }
331 }
332
935a06bb 333 if (isset($theid) && !isset($message_highlight_list[$theid]['color']))
62366261 334 $selected_choose = TRUE;
545238b1 335 else if ($pre_defined_color)
62366261 336 $selected_predefined = TRUE;
d79e01f5 337 else if ($selected_choose == '')
62366261 338 $selected_input = TRUE;
85c8aff6 339
340 $oTemplate->assign('rule_name', $name);
341 $oTemplate->assign('rule_value', $value);
342 $oTemplate->assign('rule_field', $field);
343 $oTemplate->assign('rule_color', $color);
344 $oTemplate->assign('color_radio', ($selected_choose ? 1 : ($selected_input ? 2 : 0)));
345 $oTemplate->assign('color_input', ($selected_input ? $color : ''));
346
199a9ab8 347 echo addForm('options_highlight.php', 'post', 'f', '', '', array(), TRUE).
62366261 348 addHidden('action', 'save');
349 if($action == 'edit') {
350 echo addHidden('theid', (isset($theid)?$theid:''));
351 }
85c8aff6 352
353 $oTemplate->display('options_highlight_addedit.tpl');
354
d79e01f5 355 echo "</form>\n";
356}
6e515418 357do_hook('options_highlight_bottom', $null);
a2b193bc 358
5c4ff7bf 359$oTemplate->display('footer.tpl');