forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
save.php
314 lines (284 loc) · 8.34 KB
/
save.php
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
<?php
// Callback function for inline editing.
//
// webtrees: Web based Family History software
// Copyright (C) 2013 webtrees development team.
//
// 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; either version 2 of the License, or
// (at your option) any later version.
//
// 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; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
define('WT_SCRIPT_NAME', 'save.php');
require './includes/session.php';
Zend_Session::writeClose();
// The script must always end by calling one of these two functions.
function ok() {
global $value;
header('Content-type: text/html; charset=UTF-8');
echo $value;
exit;
}
function fail() {
// Any 4xx code should work. jeditable recommends 406
header('HTTP/1.0 406 Not Acceptable');
exit;
}
// Do we have a valid CSRF token?
if (!WT_Filter::checkCsrf()) {
fail();
}
// The data item to updated must identified with a single "id" element.
// The id must be a valid CSS identifier, so it can be used in HTML.
// We use "[A-Za-z0-9_]+" separated by "-".
$id=WT_Filter::post('id', '[a-zA-Z0-9_-]+');
list($table, $id1, $id2, $id3)=explode('-', $id.'---');
// The replacement value.
$value=WT_Filter::post('value');
// Every switch must have a default case, and every case must end in ok() or fail()
switch ($table) {
case 'site_setting':
//////////////////////////////////////////////////////////////////////////////
// Table name: WT_SITE_SETTING
// ID format: site_setting-{setting_name}
//////////////////////////////////////////////////////////////////////////////
// Authorisation
if (!WT_USER_IS_ADMIN) {
fail();
}
// Validation
switch ($id1) {
case 'MAX_EXECUTION_TIME':
if ($value=='') {
// Delete the existing value
$value=null;
} elseif (!is_numeric($value)) {
fail();
}
break;
case 'SESSION_TIME':
case 'SMTP_PORT':
if (!is_numeric($value)) {
fail();
}
break;
case 'INDEX_DIRECTORY':
if (!is_dir($value) || substr($value, -1)!='/') {
fail();
}
break;
case 'MEMORY_LIMIT':
if ($value=='') {
// Delete the existing value
$value=null;
} elseif (!preg_match('/^[0-9]+[KMG]$/', $value)) {
// A number must be followed by K, M or G.
fail();
}
break;
case 'USE_REGISTRATION_MODULE':
case 'REQUIRE_ADMIN_AUTH_REGISTRATION':
case 'ALLOW_USER_THEMES':
case 'ALLOW_CHANGE_GEDCOM':
case 'SMTP_AUTH':
case 'SHOW_REGISTER_CAUTION':
$value=(int)$value;
break;
case 'WELCOME_TEXT_AUTH_MODE_4':
// Save a different version of this for each language.
$id1 = 'WELCOME_TEXT_AUTH_MODE_' . WT_LOCALE;
break;
case 'LOGIN_URL':
if ($value && !preg_match('/^https?:\/\//', $value)) {
fail();
}
break;
case 'THEME_DIR':
case 'SERVER_URL':
case 'SMTP_ACTIVE':
case 'SMTP_AUTH_USER':
case 'SMTP_FROM_NAME':
case 'SMTP_HELO':
case 'SMTP_HOST':
case 'SMTP_SSL':
case 'WELCOME_TEXT_AUTH_MODE':
break;
case 'SMTP_AUTH_PASS':
// The password will be displayed as "click to edit" on screen.
// Accept the update, but pretend to fail. This will leave the "click to edit" on screen
if ($value) {
WT_Site::preference($id1, $value);
}
fail();
default:
// An unrecognized setting
fail();
}
// Authorised and valid - make update
WT_Site::preference($id1, $value);
ok();
case 'site_access_rule':
//////////////////////////////////////////////////////////////////////////////
// Table name: WT_SITE_ACCESS_RULE
// ID format: site_access_rule-{column_name}-{user_id}
//////////////////////////////////////////////////////////////////////////////
if (!WT_USER_IS_ADMIN) {
fail();
}
switch ($id1) {
case 'ip_address_start':
case 'ip_address_end':
WT_DB::prepare("UPDATE `##site_access_rule` SET {$id1}=INET_ATON(?) WHERE site_access_rule_id=?")
->execute(array($value, $id2));
$value=WT_DB::prepare(
"SELECT INET_NTOA({$id1}) FROM `##site_access_rule` WHERE site_access_rule_id=?"
)->execute(array($id2))->fetchOne();
ok();
break;
case 'user_agent_pattern':
case 'rule':
case 'comment':
WT_DB::prepare("UPDATE `##site_access_rule` SET {$id1}=? WHERE site_access_rule_id=?")
->execute(array($value, $id2));
ok();
}
fail();
case 'user':
//////////////////////////////////////////////////////////////////////////////
// Table name: WT_USER
// ID format: user-{column_name}-{user_id}
//////////////////////////////////////////////////////////////////////////////
// Authorisation
if (!(WT_USER_IS_ADMIN || WT_USER_ID && WT_USER==$id2)) {
fail();
}
// Validation
switch ($id1) {
case 'password':
// The password will be displayed as "click to edit" on screen.
// Accept the update, but pretend to fail. This will leave the "click to edit" on screen
if ($value) {
set_user_password($id2, $value);
}
fail();
case 'user_name':
case 'real_name':
case 'email':
break;
default:
// An unrecognized setting
fail();
}
// Authorised and valid - make update
try {
WT_DB::prepare("UPDATE `##user` SET {$id1}=? WHERE user_id=?")
->execute(array($value, $id2));
AddToLog('User ID: '.$id2. ' changed '.$id1.' to '.$value, 'auth');
ok();
} catch (PDOException $ex) {
// Duplicate email or username?
fail();
}
case 'user_gedcom_setting':
//////////////////////////////////////////////////////////////////////////////
// Table name: WT_USER_GEDCOM_SETTING
// ID format: user_gedcom_setting-{user_id}-{gedcom_id}-{setting_name}
//////////////////////////////////////////////////////////////////////////////
// Authorisation
if (!(WT_USER_IS_ADMIN || userGedcomAdmin($id2, $id3))) {
fail();
}
// Validation
switch($id3) {
case 'rootid':
case 'gedcomid':
case 'canedit':
case 'RELATIONSHIP_PATH_LENGTH':
break;
default:
// An unrecognized setting
fail();
}
// Authorised and valid - make update
WT_Tree::get($id2)->userPreference($id1, $id3, $value);
ok();
case 'user_setting':
//////////////////////////////////////////////////////////////////////////////
// Table name: WT_USER_SETTING
// ID format: user_setting-{user_id}-{setting_name}
//////////////////////////////////////////////////////////////////////////////
// Authorisation
if (!(WT_USER_IS_ADMIN || WT_USER_ID && get_user_setting($id1, 'editaccount') && _array($id2, array('language','visible_online','contact_method')))) {
fail();
}
// Validation
switch ($id2) {
case 'canadmin':
// Cannot change our own admin status - either to add it or remove it
if (WT_USER_ID==$id1) {
fail();
}
break;
case 'verified_by_admin':
// Approving for the first time? Send a confirmation email
if ($value && get_user_setting($id1, $id2)!=$value && get_user_setting($id1, 'sessiontime')==0) {
WT_I18N::init(get_user_setting($id1, 'language'));
WT_Mail::system_message(
$WT_TREE,
$id1,
WT_I18N::translate('Approval of account at %s', WT_SERVER_NAME.WT_SCRIPT_PATH),
WT_I18N::translate('The administrator at the webtrees site %s has approved your application for an account. You may now login by accessing the following link: %s', WT_SERVER_NAME.WT_SCRIPT_PATH, WT_SERVER_NAME.WT_SCRIPT_PATH)
);
}
break;
case 'auto_accept':
case 'editaccount':
case 'verified':
case 'visibleonline':
case 'max_relation_path':
$value=(int)$value;
break;
case 'contactmethod':
case 'comment':
case 'language':
case 'theme':
break;
default:
// An unrecognized setting
fail();
}
// Authorised and valid - make update
set_user_setting($id1, $id2, $value);
ok();
case 'module':
//////////////////////////////////////////////////////////////////////////////
// Table name: WT_MODULE
// ID format: module-{column}-{module_name}
//////////////////////////////////////////////////////////////////////////////
// Authorisation
if (!WT_USER_IS_ADMIN) {
fail();
}
switch($id1) {
case 'status':
case 'tab_order':
case 'menu_order':
case 'sidebar_order':
WT_DB::prepare("UPDATE `##module` SET {$id1}=? WHERE module_name=?")
->execute(array($value, $id2));
ok();
default:
fail();
}
default:
// An unrecognized table
fail();
}