-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig_editor.inc.php
More file actions
360 lines (315 loc) · 10.8 KB
/
config_editor.inc.php
File metadata and controls
360 lines (315 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<?
/*
This file is part of the 'Science Fair In A Box' project
SFIAB Website: http://www.sfiab.ca
Copyright (C) 2005 Sci-Tech Ontario Inc <info@scitechontario.org>
Copyright (C) 2005 James Grant <james@lightbox.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, version 2.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
?>
<?
function config_editor_load($category, $year)
{
$query = "SELECT * FROM config WHERE year='$year' AND category='$category' ORDER BY ord";
$q = mysql_query($query);
print(mysql_error());
$var = array();
while($r=mysql_fetch_object($q)) {
$var[$r->var]['val'] = $r->val;
$var[$r->var]['desc'] = $r->description;
$var[$r->var]['category'] = $r->category;
$var[$r->var]['ord'] = $r->ord;
$var[$r->var]['type'] = $r->type;
$var[$r->var]['type_values'] = $r->type_values;
}
return $var;
}
function config_editor_parse_from_http_headers($array_name)
{
$ans = array();
if(!is_array($_POST[$array_name])) return $ans;
$keys = array_keys($_POST[$array_name]);
foreach($keys as $id) {
if(is_array($_POST[$array_name][$id])) {
$ans[$id] = array();
foreach($_POST[$array_name][$id] as $k=>$v) {
if($v != '') {
$ans[$id][$k]=stripslashes($v);
}
}
} else {
$ans[$id] = stripslashes($_POST[$array_name][$id]);
}
}
return $ans;
}
/* Ensure the fairyear has all variables that are in -1. This is called:
* - From the database update script (which could add new variables to
* the -1 year, and we want them automatically copied to the current year
* - From the rollover script to copy all last year variables to
* the new year
* - After an install to copy all the variables to the current year
*/
function config_update_variables($fairyear=NULL, $lastfairyear=NULL)
{
global $config;
/* if fairyear isn't specified... */
if($fairyear == NULL) $fairyear = $config['FAIRYEAR'];
if($lastfairyear == NULL) $lastfairyear = $fairyear - 1;
/* The master list of variables is the year=-1, grab
* ALL config variables that exist for -1 but
* do NOT exist for $fairyear */
$q = "SELECT config.var FROM `config`
LEFT JOIN `config` AS C2 ON(config.var=C2.var
AND C2.year='$fairyear')
WHERE config.year=-1 AND C2.year IS NULL";
$r = mysql_query($q);
while($i = mysql_fetch_assoc($r)) {
$var = $i['var'];
/* See if this var exists for last year or
* the -1 year, prefer last year's value */
$q = "SELECT * FROM `config`
WHERE config.var='$var'
AND (config.year='$lastfairyear'
OR config.year='-1')
ORDER BY config.year DESC";
$r2 = mysql_query($q);
if(mysql_num_rows($r2) < 1) {
/* Uhoh, this shouldn't happen */
echo "ERROR, Variable '$var' doesn't exist";
exit;
}
$v = mysql_fetch_object($r2);
mysql_query("INSERT INTO config (var,val,category,type,type_values,ord,description,year) VALUES (
'".mysql_escape_string($v->var)."',
'".mysql_escape_string($v->val)."',
'".mysql_escape_string($v->category)."',
'".mysql_escape_string($v->type)."',
'".mysql_escape_string($v->type_values)."',
'".mysql_escape_string($v->ord)."',
'".mysql_escape_string($v->description)."',
'$fairyear')");
}
}
$config_editor_actions_done = false;
$config_editor_updated = false;
function config_editor_handle_actions($category, $year, $array_name)
{
global $config;
global $config_editor_actions_done;
$config_vars = config_editor_load($category, $year);
$config_editor_actions_done = true;
$updated = false;
if($_POST['action']=="update") {
$var = config_editor_parse_from_http_headers($array_name);
$varkeys = array_keys($var);
foreach($varkeys as $k) {
if(is_array($var[$k]))
$val = implode(',',$var[$k]);
else
$val = $var[$k];
/* If it hasn't changed, don't update it (do a string
* compare so numbers aren't interpreted.. php thinks
* "1.0" == "1") */
if(strcmp($config[$k], $val) == 0) continue;
switch($config_vars[$k]['type']) {
case 'number':
if(ereg("[0-9]+(\.[0-9]+)?", $val, $regs)) {
$val = $regs[0];
} else {
$val = 0;
}
break;
}
/* Prep for MySQL update */
$val = mysql_escape_string($val);
$v = mysql_escape_string(stripslashes($k));
mysql_query("UPDATE config SET val=\"$val\"
WHERE var=\"$v\"
AND `year`='$year'");
print mysql_error();
// echo "Saving {$v} = $val<br>";
$config_editor_updated = true;
$updated = true;
}
if($updated == true) {
message_push(happy(i18n("Configuration Updated")));;
}
return 'update';
}
}
/* A complete question editor. Just call it with the
* section you want to edit, a year, the array_name to use for
* POSTing and GETting the questions (so you can put more than one
* edtior on a single page), and give it $_SERVER['PHP_SELF'], because
* php_self inside this function is this file.
* FUTURE WORK: it would be nice to hide the order, and just implement
* a bunch of up/down arrows, and dynamically compute the order for
* all elements */
function config_editor($category, $year, $array_name, $self)
{
global $config;
global $config_editor_actions_done, $config_editor_updated;
if($config_editor_actions_done == false) {
config_editor_handle_actions($category, $year, $array_name);
}
/* Load questions, then handle up and down, because with up and down we
* have to modify 2 questions to maintain the order */
$var = config_editor_load($category, $year);
echo "<form method=\"post\" action=\"$self\">";
echo "<table cellpadding=\"3\">";
$varkeys = array_keys($var);
//compute the optimal input size to use
$biggest=0;
foreach($varkeys as $k) {
if(strlen($var[$k]['val'])>$biggest)
$biggest=strlen($var[$k]['val']);
}
if($biggest>30) $size=30;
else $size=$biggest+1;
//make sure size is at minimum 8, this way if all fields are empty you dont end up with 1 character long text boxes
if($size<8) $size=8;
$line = 1;
foreach($varkeys as $k) {
$trclass = ($line % 2 == 0) ? "even" : "odd";
$line++;
print("<tr class=\"$trclass\">");
print("<td>".i18n($var[$k]['desc'])."</td>");
print("<td>");
$val = htmlspecialchars($var[$k]['val']);
$name = "${array_name}[$k]";
switch($var[$k]['type']) {
case "yesno":
print("<select name=\"$name\">");
$sel = ($val == 'yes') ? 'selected=selected' : '';
print("<option $sel value=\"yes\">".i18n("Yes")."</option>");
$sel = ($val == 'no') ? 'selected=selected' : '';
print("<option $sel value=\"no\">".i18n("No")."</option>");
print("</select>");
break;
case "enum":
$val = split(',', $val);
$values = $var[$k]['type_values'];
/* Split values */
/* The PERL regex here matches any string of the form
* key=val| , where the = and 'val' and '|' are
* optional. val is allowed to contain spaces. Using
* preg_match_all runs this regex multiple times, and
* creates arrays for each subpattern that matches.
* For example, "aa=Aye|bb=Bee Bee|cc|dd=Dee"
* Would construct the following Array of Arrays:
* Array ( [0] => Array ( [0] => "aa=Aye|",
[1] => "bb=Bee Bee|",
[2] => "cc|",
[3] => "dd=Dee" ),
[1] => Array ( [0] => "aa",
[1] => "bb",
[2] => "cc",
[3] => "dd" ),
[2] => Array ( [0] => "Aye",
[1] => "Bee Bee",
[2] => "",
[3] => "Dee" ) )
* neat eh? :) We use [1] and [2] to form the keys and
* values that we show the user */
preg_match_all("/([^\|=]+)(?:=([^\|]+))?\|?/", $values, $regs);
// print_r($regs);
print("<select name=\"$name\">");
for($x=0; $x<count($regs[1]); $x++) {
$e_key = trim($regs[1][$x]);
$e_val = trim($regs[2][$x]);
if($e_val == "") $e_val = $e_key;
$sel = in_array($e_key, $val) ? 'selected=selected' : '';
print("<option $sel value=\"$e_key\">".i18n($e_val)."</option>");
}
print("</select>");
break;
case 'multisel':
/* same PERL parse statements as above */
$val = split(',', $val);
$values = $var[$k]['type_values'];
preg_match_all("/([^\|=]+)(?:=([^\|]+))?\|?/", $values, $regs);
/* Decide which way to show this list */
$c = count($regs[1]);
$rows = 0;
if($c > 5) {
$rows = intval(($c+2) / 3);
print("</td></tr><tr class=\"$trclass\"><td colspan=2>");
print("<table width=\"100%\"><tr><td width=\"10%\"> ");
} else {
$rows = $c;
}
for($x=0; $x<$c; $x++) {
if(($x % $rows) == 0 && $rows > 0 && $c > 5) {
print("</td><td width=\"30%\">");
}
$e_key = trim($regs[1][$x]);
$e_val = trim($regs[2][$x]);
if($e_val == "") $e_val = $e_key;
$ch = (in_array($e_key, $val)) ? 'checked="checked"' : '';
print("<input type=\"checkbox\" name=\"{$name}[]\" value=\"$e_key\" $ch />");
print(i18n($e_val)."<br />");
}
if($c > 5) print("</td></tr></table>");
break;
case 'language':
print("<select name=\"$name\">");
foreach($config['languages'] as $k=>$lang) {
$sel = ($config['default_language'] == $k) ? 'selected=selected' : '';
print("<option $sel value=\"$k\">$lang</option>");
}
print("</select>");
break;
case 'theme':
print("<select name=\"$name\">");
/* Find all theme directories */
$cwd=getcwd();
$themeroot = $cwd."/../theme";
// $themeroot = "{$_SERVER['DOCUMENT_ROOT']}{$config['SFIABDIRECTORY']}/theme";
$d = opendir($themeroot);
while(($f = readdir($d))) {
/* Load the theme. Loads theme into a local theme, not overwriting
* the global $theme */
if($var[$k]['type_values'] == 'icons') {
$theme_php = "$themeroot/$f/icons.php";
$cur = $config['theme_icons'];
$rvar = 'theme_icons';
} else {
$theme_php = "$themeroot/$f/theme.php";
$cur = $config['theme'];
$rvar = 'theme';
}
if(!file_exists($theme_php)) continue;
include($theme_php);
$t = $$rvar;
$sel = ($cur == $f) ? 'selected=selected' : '';
print("<option $sel value=\"$f\">{$t['name']}</option>");
}
closedir($d);
print("</select>");
break;
default:
print("<input size=\"$size\" type=\"text\" name=\"$name\" value=\"$val\">\n");
break;
}
echo "</td></tr>";
}
print("</table>");
print("<input type=\"hidden\" name=\"category\" value=\"$category\" >\n");
print("<input type=\"hidden\" name=\"action\" value=\"update\" >\n");
print("<input type=\"submit\" value=\"".i18n("Save Configuration")."\" />\n");
echo "</form>";
/* Returns TRUE if config variables were updated */
return $updated;
}
?>