forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth_profile.php
434 lines (364 loc) · 14.2 KB
/
auth_profile.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
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2017 The Cacti Group |
| |
| 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDTool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
$guest_account = true;
include('./include/auth.php');
/* set default action */
set_default_action();
switch (get_request_var('action')) {
case 'save':
form_save();
break;
case 'logout_everywhere':
api_auth_logout_everywhere();
break;
default:
// We must exempt ourselves from the page refresh, or else the settings page could update while the user is making changes
$_SESSION['custom'] = 1;
general_header();
unset($_SESSION['custom']);
settings();
bottom_footer();
break;
}
/* --------------------------
The Save Function
-------------------------- */
function api_auth_logout_everywhere() {
$user = $_SESSION['sess_user_id'];
if (!empty($user)) {
db_execute_prepared('DELETE FROM user_auth_cache WHERE user_id=?', array($user));
}
}
function form_save() {
global $settings_user;
// Save the users profile information
if (isset_request_var('full_name') && isset_request_var('email_address') && isset($_SESSION['sess_user_id'])) {
db_execute_prepared("UPDATE user_auth SET full_name = ?, email_address = ? WHERE id = ?", array(get_nfilter_request_var('full_name'), get_nfilter_request_var('email_address'), $_SESSION['sess_user_id']));
}
// Save the users graph settings if they have permission
if (is_view_allowed('graph_settings') == true) {
foreach ($settings_user as $tab_short_name => $tab_fields) {
foreach ($tab_fields as $field_name => $field_array) {
/* Check every field with a numeric default value and reset it to default if the inputted value is not numeric */
if (isset($field_array['default']) && is_numeric($field_array['default']) && !is_numeric(get_nfilter_request_var($field_name))) {
set_request_var($field_name, $field_array['default']);
}
if ($field_array['method'] == 'checkbox') {
if (isset_request_var($field_name)) {
db_execute_prepared("REPLACE INTO settings_user (user_id,name,value) VALUES (?, ?, 'on')", array($_SESSION['sess_user_id'], $field_name));
} else {
db_execute_prepared("REPLACE INTO settings_user (user_id,name,value) VALUES (?, ?, '')", array($_SESSION['sess_user_id'], $field_name));
}
} elseif ($field_array['method'] == 'checkbox_group') {
foreach ($field_array['items'] as $sub_field_name => $sub_field_array) {
if (isset_request_var($sub_field_name)) {
db_execute_prepared("REPLACE INTO settings_user (user_id,name,value) VALUES (?, ?, 'on')", array($_SESSION['sess_user_id'], $sub_field_name));
} else {
db_execute_prepared("REPLACE INTO settings_user (user_id,name,value) VALUES (?, ?, '')", array($_SESSION['sess_user_id'], $sub_field_name));
}
}
} elseif ($field_array['method'] == 'textbox_password') {
if (get_nfilter_request_var($field_name) != get_nfilter_request_var($field_name.'_confirm')) {
raise_message(4);
break;
} elseif (isset_request_var($field_name)) {
db_execute_prepared('REPLACE INTO settings_user (user_id, name, value) VALUES (?, ?, ?)', array($_SESSION['sess_user_id'], $field_name, get_nfilter_request_var($field_name)));
}
} elseif ((isset($field_array['items'])) && (is_array($field_array['items']))) {
foreach ($field_array['items'] as $sub_field_name => $sub_field_array) {
if (isset_request_var($sub_field_name)) {
db_execute_prepared('REPLACE INTO settings_user (user_id, name, value) values (?, ?, ?)', array($_SESSION['sess_user_id'], $sub_field_name, get_nfilter_request_var($sub_field_name)));
}
}
}else if (isset_request_var($field_name)) {
db_execute_prepared('REPLACE INTO settings_user (user_id, name, value) values (?, ?, ?)', array($_SESSION['sess_user_id'], $field_name, get_nfilter_request_var($field_name)));
}
}
}
}
raise_message(1);
/* reset local settings cache so the user sees the new settings */
kill_session_var('sess_user_language');
kill_session_var('sess_user_config_array');
}
/* --------------------------
User Settings Functions
-------------------------- */
function settings() {
global $tabs_graphs, $settings_user, $current_user, $graph_views, $current_user;
/* you cannot have per-user graph settings if cacti's user management is not turned on */
if (read_config_option('auth_method') == 0) {
raise_message(6);
display_output_messages();
return;
}
if (get_request_var('action') == 'edit') {
if (isset($_SERVER['HTTP_REFERER'])) {
$timespan_sel_pos = strpos($_SERVER['HTTP_REFERER'],'&predefined_timespan');
if ($timespan_sel_pos) {
$_SERVER['HTTP_REFERER'] = substr($_SERVER['HTTP_REFERER'],0,$timespan_sel_pos);
}
}
$_SESSION['profile_referer'] = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER']:'graph_view.php');
}
form_start('auth_profile.php');
html_start_box( __('User Account Details'), '100%', true, '3', 'center', '');
$current_user = db_fetch_row_prepared('SELECT * FROM user_auth WHERE id = ?', array($_SESSION['sess_user_id']));
if (!sizeof($current_user)) {
return;
}
// Set the graph views the user has permission to
unset($graph_views);
if (is_view_allowed('show_tree')) {
$graph_views[1] = __('Tree View');
}
if (is_view_allowed('show_list')) {
$graph_views[2] = __('List View');
}
if (is_view_allowed('show_preview')) {
$graph_views[2] = __('Preview View');
}
if (sizeof($graph_views)) {
$settings_user['general']['default_view_mode']['array'] = $graph_views;
} else {
unset($settings_user['general']['default_view_mode']);
}
/* file: user_admin.php, action: user_edit (host) */
$fields_user = array(
'username' => array(
'method' => 'value',
'friendly_name' => __('User Name'),
'description' => __('The login name for this user.'),
'value' => '|arg1:username|',
'max_length' => '40',
'size' => '40'
),
'full_name' => array(
'method' => 'textbox',
'friendly_name' => __('Full Name'),
'description' => __('A more descriptive name for this user, that can include spaces or special characters.'),
'value' => '|arg1:full_name|',
'max_length' => '120',
'size' => '60'
),
'email_address' => array(
'method' => 'textbox',
'friendly_name' => __('Email Address'),
'description' => __('An Email Address you be reached at.'),
'value' => '|arg1:email_address|',
'max_length' => '60',
'size' => '60'
),
'private_data' => array(
'method' => 'button',
'friendly_name' => __('Clear Private Data'),
'description' => __('Clear Private Data including Column sizing.'),
'value' => __('Clear Private Data'),
'on_click' => 'clearPrivateData()'
)
);
if (read_config_option('auth_cache_enabled') == 'on') {
$fields_user += array(
'logout_everywhere' => array(
'method' => 'button',
'friendly_name' => __('Logout Everywhere'),
'description' => __('Clear all your Login Session Tokens.'),
'value' => __('Logout Everywhere'),
'on_click' => 'logoutEverywhere()'
)
);
}
draw_edit_form(
array(
'config' => array('no_form_tag' => true),
'fields' => inject_form_variables($fields_user, (isset($current_user) ? $current_user : array()))
)
);
html_end_box(true, true);
if (is_view_allowed('graph_settings') == true) {
if (read_config_option('auth_method') != 0) {
$settings_user['tree']['default_tree_id']['sql'] = get_allowed_trees(false, true);
}
html_start_box( __('User Settings'), '100%', true, '3', 'center', '');
foreach ($settings_user as $tab_short_name => $tab_fields) {
$collapsible = true;
print "<div class='spacer formHeader" . ($collapsible ? ' collapsible':'') . "' id='row_$tab_short_name'><div class='formHeaderText'>" . $tabs_graphs[$tab_short_name] . ($collapsible ? "<div style='float:right;padding-right:4px;'><i class='fa fa-angle-double-up'></i></div>":"") . "</div></div>\n";
$form_array = array();
foreach ($tab_fields as $field_name => $field_array) {
$form_array += array($field_name => $tab_fields[$field_name]);
if ((isset($field_array['items'])) && (is_array($field_array['items']))) {
foreach ($field_array['items'] as $sub_field_name => $sub_field_array) {
if (graph_config_value_exists($sub_field_name, $_SESSION['sess_user_id'])) {
$form_array[$field_name]['items'][$sub_field_name]['form_id'] = 1;
}
$form_array[$field_name]['items'][$sub_field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings_user WHERE name = ? AND user_id = ?', array($sub_field_name, $_SESSION['sess_user_id']));
}
} else {
if (graph_config_value_exists($field_name, $_SESSION['sess_user_id'])) {
$form_array[$field_name]['form_id'] = 1;
}
$form_array[$field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings_user WHERE name = ? AND user_id = ?', array($field_name, $_SESSION['sess_user_id']));
}
}
draw_edit_form(
array(
'config' => array(
'no_form_tag' => true
),
'fields' => $form_array
)
);
}
print "</td></tr>\n";
html_end_box(true, true);
}
?>
<script type="text/javascript">
var themeFonts=<?php print read_config_option('font_method');?>;
var themeChanged = false;
var langChanged = false;
var currentTheme = '<?php print get_selected_theme();?>';
var currentLang = '<?php print read_config_option('user_language');?>';
function clearPrivateData() {
$.localStorage.removeAll();
$.sessionStorage.removeAll();
$('body').append('<div style="display:none;" id="cleared" title="<?php print __('Private Data Cleared');?>"><p><?php print __('Your Private Data has been cleared.');?></p></div>');
$('#cleared').dialog({
modal: true,
resizable: false,
draggable: false,
height:140,
buttons: {
Ok: function() {
$(this).dialog('close');
$('#cleared').remove();
}
}
});
$('#cleared').dialog('open');
}
function logoutEverywhere() {
$.get('auth_profile.php?action=logout_everywhere', function(data) {
$('body').append('<div style="display:none;" id="cleared" title="<?php print __('User Sessions Cleared');?>"><p><?php print __('All your login sessions have been cleared.');?></p></div>');
$('#cleared').dialog({
modal: true,
resizable: false,
draggable: false,
height:140,
buttons: {
Ok: function() {
$(this).dialog('close');
$('#cleared').remove();
}
}
});
$('#cleared').dialog('open');
});
}
function graphSettings() {
if (themeFonts == 1) {
$('#row_fonts').hide();
$('#row_custom_fonts').hide();
$('#row_title_size').hide();
$('#row_title_font').hide();
$('#row_legend_size').hide();
$('#row_legend_font').hide();
$('#row_axis_size').hide();
$('#row_axis_font').hide();
$('#row_unit_size').hide();
$('#row_unit_font').hide();
} else {
var custom_fonts = $('#custom_fonts').is(':checked');
switch(custom_fonts) {
case true:
$('#row_fonts').show();
$('#row_title_size').show();
$('#row_title_font').show();
$('#row_legend_size').show();
$('#row_legend_font').show();
$('#row_axis_size').show();
$('#row_axis_font').show();
$('#row_unit_size').show();
$('#row_unit_font').show();
break;
case false:
$('#row_fonts').show();
$('#row_title_size').hide();
$('#row_title_font').hide();
$('#row_legend_size').hide();
$('#row_legend_font').hide();
$('#row_axis_size').hide();
$('#row_axis_font').hide();
$('#row_unit_size').hide();
$('#row_unit_font').hide();
break;
}
}
}
function themeChange() {
if ($('#selected_theme').val() != currentTheme) {
themeChanged = true;
} else {
themeChanged = false;
}
}
function langChange() {
if ($('#user_language').val() != currentLang) {
langChanged = true;
} else {
langChanged = false;
}
}
$(function() {
graphSettings();
$('#navigation').show();
$('#navigation_right').show();
$('input[value="Save"]').unbind().click(function(event) {
event.preventDefault();
if (themeChanged != true && langChanged != true) {
$.post('auth_profile.php?header=false', $('input, select, textarea').serialize()).done(function(data) {
loadPageNoHeader('auth_profile.php?action=noreturn&header=false');
});
} else {
$.post('auth_profile.php?header=false', $('input, select, textarea').serialize()).done(function(data) {
document.location = 'auth_profile.php?newtheme=1';
});
}
});
$('#selected_theme').change(function() {
themeChange();
});
$('#user_language').change(function() {
langChange();
});
$('input[value="Return"]').unbind().click(function(event) {
document.location = '<?php print $_SESSION['profile_referer'];?>';
});
});
</script>
<?php
form_hidden_box('save_component_graph_config','1','');
form_save_buttons(array(array('id' => 'return', 'value' => 'Return'), array('id' => 'save', 'value' => 'Save')));
form_end();
}