forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_admin.php
3017 lines (2533 loc) · 93.3 KB
/
user_admin.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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 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/ |
+-------------------------------------------------------------------------+
*/
include('./include/auth.php');
$actions = array(
1 => __('Delete'),
2 => __('Copy'),
3 => __('Enable'),
4 => __('Disable'),
5 => __('Batch Copy')
);
set_default_action();
if (isset_request_var('update_policy')) {
update_policies();
} else {
switch (get_request_var('action')) {
case 'actions':
form_actions();
break;
case 'save':
form_save();
break;
case 'perm_remove':
perm_remove();
break;
case 'user_edit':
top_header();
user_edit();
bottom_footer();
break;
case 'checkpass':
$error = secpass_check_pass(get_nfilter_request_var('password'));
if ($error == '') {
print $error;
} else {
print 'ok';
}
break;
default:
if (!api_plugin_hook_function('user_admin_action', get_request_var('action'))) {
top_header();
user();
bottom_footer();
}
break;
}
}
function update_policies() {
$policies = array('policy_graphs', 'policy_trees', 'policy_hosts', 'policy_graph_templates');
foreach ($policies as $p) {
if (isset_request_var($p)) {
db_execute_prepared("UPDATE `user_auth` SET `$p` = ? WHERE `id` = ?", array(get_filter_request_var($p), get_filter_request_var('id')));
}
}
header('Location: user_admin.php?action=user_edit&tab=' . get_nfilter_request_var('tab') . '&id=' . get_nfilter_request_var('id'));
exit;
}
function form_actions() {
global $actions, $auth_realms;
/* if we are to save this form, instead of display it */
if (isset_request_var('associate_host')) {
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id, item_id, type)
VALUES (?, ?, 3)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE user_id = ?
AND item_id = ?
AND type = 3',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_admin.php?action=user_edit&tab=permsd&id=' . get_nfilter_request_var('id'));
exit;
}
if (isset_request_var('associate_graph')) {
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id, item_id, type)
VALUES (?, ?, 1)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE user_id = ?
AND item_id = ?
AND type = 1',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_admin.php?action=user_edit&tab=permsg&id=' . get_nfilter_request_var('id'));
exit;
}
if (isset_request_var('associate_template')) {
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id, item_id, type)
VALUES (?, ?, 4)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE user_id = ?
AND item_id = ?
AND type = 4',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_admin.php?action=user_edit&tab=permste&id=' . get_nfilter_request_var('id'));
exit;
}
if (isset_request_var('associate_groups')) {
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_group_members
(user_id, group_id)
VALUES (?, ?)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_group_members
WHERE user_id = ?
AND group_id = ?',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_admin.php?action=user_edit&tab=permsgr&id=' . get_nfilter_request_var('id'));
exit;
}
if (isset_request_var('associate_tree')) {
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id, item_id, type)
VALUES (?, ?, 2)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE user_id = ?
AND item_id = ?
AND type = 2',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_admin.php?action=user_edit&tab=permstr&id=' . get_nfilter_request_var('id'));
exit;
}
if (isset_request_var('selected_items')) {
if (get_nfilter_request_var('drp_action') == '2') { /* copy */
/* ================= input validation ================= */
get_filter_request_var('selected_items');
get_filter_request_var('new_realm');
/* ==================================================== */
$new_username = get_nfilter_request_var('new_username');
$new_realm = get_nfilter_request_var('new_realm', 0);
$template_user = db_fetch_row_prepared('SELECT username, realm
FROM user_auth
WHERE id = ?',
array(get_nfilter_request_var('selected_items')));
$overwrite = array( 'full_name' => get_nfilter_request_var('new_fullname') );
if ($new_username != '') {
if (cacti_sizeof(db_fetch_assoc_prepared('SELECT username FROM user_auth WHERE username = ? AND realm = ?', array($new_username, $new_realm)))) {
raise_message(19);
} else {
if (user_copy($template_user['username'], $new_username, $template_user['realm'], $new_realm, false, $overwrite) === false) {
raise_message(2);
} else {
raise_message(1);
}
}
}
} else {
$selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items'));
if ($selected_items != false) {
if (get_nfilter_request_var('drp_action') == '1') { // delete
for ($i=0;($i < cacti_count($selected_items));$i++) {
if ($_SESSION[SESS_USER_ID] != $selected_items[$i]) {
user_remove($selected_items[$i]);
} else {
raise_message('attempt current', __('You are not allowed to delete the current login account'), MESSAGE_LEVEL_ERROR);
}
}
} elseif (get_nfilter_request_var('drp_action') == '3') { // enable
for ($i=0;($i < cacti_count($selected_items));$i++) {
user_enable($selected_items[$i]);
}
} elseif (get_nfilter_request_var('drp_action') == '4') { // disable
for ($i=0;($i < cacti_count($selected_items));$i++) {
if ($_SESSION[SESS_USER_ID] != $selected_items[$i]) {
user_disable($selected_items[$i]);
} else {
raise_message('attempt current', __('You are not allowed to disable the current login account'), MESSAGE_LEVEL_ERROR);
}
}
} elseif (get_nfilter_request_var('drp_action') == '5') { // batch copy
/* ================= input validation ================= */
get_filter_request_var('template_user');
/* ==================================================== */
$copy_error = false;
$template = db_fetch_row_prepared('SELECT username, realm
FROM user_auth
WHERE id = ?',
array(get_nfilter_request_var('template_user')));
for ($i=0;($i < cacti_count($selected_items));$i++) {
$user = db_fetch_row_prepared('SELECT username, realm
FROM user_auth
WHERE id = ?',
array($selected_items[$i]));
if ((isset($user)) && (isset($template))) {
if (user_copy($template['username'], $user['username'], $template['realm'], $user['realm'], true) === false) {
$copy_error = true;
}
}
}
if ($copy_error) {
raise_message(2);
} else {
raise_message(1);
}
}
}
}
header('Location: user_admin.php');
exit;
} else {
$ilist = '';
$iarray = array();
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
if (get_nfilter_request_var('drp_action') != '2') {
$ilist .= '<li>' . html_escape(db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array($matches[1]))) . '</li>';
}
$iarray[] = $matches[1];
}
}
if (cacti_sizeof($iarray)) {
$user_id = $iarray[0];
$user_realm = db_fetch_cell_prepared('SELECT realm FROM user_auth WHERE id = ?', array($user_id));
$template = html_escape(db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array($user_id)));
$usernames = db_fetch_assoc('SELECT id, username FROM user_auth WHERE realm = 0 ORDER BY username');
} else {
$user_id = null;
$user_realm = null;
$template = null;
$usernames = null;
}
$form_data = array(
'general' => array(
'page' => 'user_admin.php',
'actions' => $actions,
'optvar' => 'drp_action',
'item_array' => $iarray,
'item_list' => $ilist
),
'options' => array(
1 => array(
'smessage' => __('Click \'Continue\' to Delete the following User.'),
'pmessage' => __('Click \'Continue\' to Delete following Users.'),
'scont' => __('Delete User'),
'pcont' => __('Delete Users')
),
2 => array(
'message' => __('Click \'Continue\' to Copy the following User.'),
'cont' => __('Copy User'),
'extra' => array(
'template_username' => array(
'method' => 'other',
'title' => __('Template Username:'),
'default' => $template
),
'new_username' => array(
'method' => 'textbox',
'title' => __('Username:'),
'default' => '',
'width' => 25
),
'new_fullname' => array(
'method' => 'textbox',
'title' => __('Full Name:'),
'default' => '',
'width' => 35
),
'new_realm' => array(
'method' => 'drop_array',
'title' => __('Realm:'),
'array' => $auth_realms,
'default' => $user_realm
)
)
),
3 => array(
'smessage' => __('Click \'Continue\' to Enable the following User.'),
'pmessage' => __('Click \'Continue\' to Enable following Users.'),
'scont' => __('Enable User'),
'pcont' => __('Enable Users')
),
4 => array(
'smessage' => __('Click \'Continue\' to Disable the following User.'),
'pmessage' => __('Click \'Continue\' to Disable following Users.'),
'scont' => __('Disable User'),
'pcont' => __('Disable Users')
),
5 => array(
'smessage' => __('Click \'Continue\' to Overwrite the User settings with the selected Template User settings and permissions. The original User Full Name, Password, Realm and Enable status will be retained, all other fields will be overwritten from the Template User.'),
'pmessage' => __('Click \'Continue\' to Overwrite the Users settings with the selected Template User settings and permissions. The original Users Full Name, Password, Realm and Enable status will be retained, all other fields will be overwritten from the Template User.'),
'scont' => __('Replace User Settings for User'),
'pcont' => __('Replace User Settings for Users'),
'extra' => array(
'new_realm' => array(
'method' => 'drop_array',
'title' => __('Template User:'),
'array' => $usernames,
'variable' => 'username',
'id' => 'id'
)
)
)
)
);
form_continue_confirmation($form_data);
}
}
function form_save() {
global $settings_user;
/* graph permissions */
if ((isset_request_var('save_component_graph_perms')) && (!is_error_message())) {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('perm_graphs');
get_filter_request_var('perm_trees');
get_filter_request_var('perm_hosts');
get_filter_request_var('perm_graph_templates');
get_filter_request_var('policy_graphs');
get_filter_request_var('policy_trees');
get_filter_request_var('policy_hosts');
get_filter_request_var('policy_graph_templates');
/* ==================================================== */
$add_button_clicked = false;
if (isset_request_var('add_graph_x')) {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id,item_id,type)
VALUES (?, ?, 1)',
array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_graphs')));
$add_button_clicked = true;
} elseif (isset_request_var('add_tree_x')) {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id,item_id,type)
VALUES (?, ?, 2)',
array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_trees')));
$add_button_clicked = true;
} elseif (isset_request_var('add_host_x')) {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id,item_id,type)
VALUES (?, ?, 3)',
array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_hosts')));
$add_button_clicked = true;
} elseif (isset_request_var('add_graph_template_x')) {
db_execute_prepared('REPLACE INTO user_auth_perms
(user_id,item_id,type)
VALUES (?, ?, 4)',
array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_graph_templates')));
$add_button_clicked = true;
}
if ($add_button_clicked == true) {
header('Location: user_admin.php?action=user_edit&tab=graph_perms_edit&id=' . get_nfilter_request_var('id'));
exit;
}
} elseif (isset_request_var('save_component_user')) {
/* user management save */
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('realm');
get_filter_request_var('policy_hosts');
get_filter_request_var('policy_graphs');
get_filter_request_var('policy_trees');
get_filter_request_var('policy_graph_templates');
/* ==================================================== */
$old_password = db_fetch_cell_prepared('SELECT password
FROM user_auth
WHERE id = ?',
array(get_nfilter_request_var('id')));
if ((get_nfilter_request_var('password') == '') && (get_nfilter_request_var('password_confirm') == '')) {
$password = $old_password;
} else {
$password = compat_password_hash(get_nfilter_request_var('password'), PASSWORD_DEFAULT);
if ($password != $old_password) {
db_execute_prepared('DELETE FROM user_auth_cache
WHERE user_id = ?',
array(get_nfilter_request_var('id')));
}
}
/* check duplicate username */
if (cacti_sizeof(db_fetch_row_prepared('SELECT * FROM user_auth WHERE realm = ? AND username = ? AND id != ?', array(get_nfilter_request_var('realm'), get_nfilter_request_var('username'), get_nfilter_request_var('id'))))) {
raise_message(12);
}
/* check for guest or template user */
$username = db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array(get_nfilter_request_var('id')));
$history = db_fetch_cell_prepared('SELECT password_history FROM user_auth WHERE id = ?', array(get_nfilter_request_var('id')));
/* deprecating as we are storing the id and not the username any longer */
//if ($username != '' && $username != get_nfilter_request_var('username')) {
// if (is_template_account(get_filter_request_var('id'))) {
// raise_message(20);
// }
//
// if (get_filter_request_var('id') === get_guest_account()) {
// raise_message(20);
// }
//}
/* check to make sure the passwords match; if not error */
if (get_nfilter_request_var('password') != get_nfilter_request_var('password_confirm')) {
raise_message(4);
}
if (get_nfilter_request_var('must_change_password') == 'on' && get_nfilter_request_var('password_change') != 'on') {
raise_message('password_change');
}
$save['id'] = get_nfilter_request_var('id');
$save['username'] = form_input_validate(get_nfilter_request_var('username'), 'username', "^[A-Za-z0-9\._\\\@\ -]+$", false, 3);
$save['full_name'] = form_input_validate(get_nfilter_request_var('full_name'), 'full_name', '', true, 3);
$save['password'] = $password;
$save['must_change_password'] = form_input_validate(get_nfilter_request_var('must_change_password', ''), 'must_change_password', '', true, 3);
$save['password_change'] = form_input_validate(get_nfilter_request_var('password_change', ''), 'password_change', '', true, 3);
$save['show_tree'] = form_input_validate(get_nfilter_request_var('show_tree', ''), 'show_tree', '', true, 3);
$save['show_list'] = form_input_validate(get_nfilter_request_var('show_list', ''), 'show_list', '', true, 3);
$save['show_preview'] = form_input_validate(get_nfilter_request_var('show_preview', ''), 'show_preview', '', true, 3);
$save['graph_settings'] = form_input_validate(get_nfilter_request_var('graph_settings', ''), 'graph_settings', '', true, 3);
$save['login_opts'] = form_input_validate(get_nfilter_request_var('login_opts'), 'login_opts', '', true, 3);
$save['password_history'] = $history;
/* force enable/disable on template accounts */
if (read_config_option('admin_user') == get_nfilter_request_var('id')) {
$save['enabled'] = 'on';
$save['realm'] = get_nfilter_request_var('realm', 0);
} elseif (is_template_account(get_nfilter_request_var('id'))) {
$save['enabled'] = '';
$save['realm'] = 0;
} else {
$save['enabled'] = form_input_validate(get_nfilter_request_var('enabled', ''), 'enabled', '', true, 3);
$save['realm'] = get_nfilter_request_var('realm', 0);
}
$save['email_address'] = form_input_validate(get_nfilter_request_var('email_address', ''), 'email_address', '', true, 3);
$save['locked'] = form_input_validate(get_nfilter_request_var('locked', ''), 'locked', '', true, 3);
$save['reset_perms'] = mt_rand();
if ($save['locked'] == '') {
$save['failed_attempts'] = 0;
}
$save = api_plugin_hook_function('user_admin_setup_sql_save', $save);
if (!is_error_message()) {
$user_id = sql_save($save, 'user_auth');
if ($user_id) {
raise_message(1);
} else {
raise_message(2);
}
}
} elseif (isset_request_var('save_component_realm_perms')) {
/* ================= input validation ================= */
get_filter_request_var('id');
/* ==================================================== */
db_execute_prepared('DELETE FROM user_auth_realm
WHERE user_id = ?',
array(get_nfilter_request_var('id')));
foreach ($_POST as $var => $val) {
if (preg_match('/^[section]/i', $var)) {
if (substr($var, 0, 7) == 'section') {
db_execute_prepared('REPLACE INTO user_auth_realm
(user_id, realm_id)
VALUES (?, ?)',
array(get_nfilter_request_var('id'), substr($var, 7)));
}
}
}
reset_user_perms(get_nfilter_request_var('id'));
raise_message(1);
} elseif (isset_request_var('save_component_graph_settings')) {
/* ================= input validation ================= */
get_filter_request_var('id');
/* ==================================================== */
save_user_settings(get_request_var('id'));
/* reset local settings cache so the user sees the new settings */
kill_session_var(OPTIONS_USER);
reset_user_perms(get_request_var('id'));
raise_message(1);
} elseif (isset_request_var('save_component_graph_perms')) {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('policy_hosts');
get_filter_request_var('policy_graphs');
get_filter_request_var('policy_trees');
get_filter_request_var('policy_graph_templates');
/* ==================================================== */
db_execute_prepared('UPDATE user_auth
SET policy_graphs = ?,
policy_trees = ?,
policy_hosts = ?,
policy_graph_templates = ?
WHERE id = ?',
array(
get_nfilter_request_var('policy_graphs'),
get_nfilter_request_var('policy_trees'),
get_nfilter_request_var('policy_hosts'),
get_nfilter_request_var('policy_graph_templates'),
get_nfilter_request_var('id')
)
);
} else {
api_plugin_hook('user_admin_user_save');
reset_user_perms(get_filter_request_var('id'));
}
/* redirect to the appropriate page */
header('Location: user_admin.php?action=user_edit&id=' . (empty($user_id) ? get_filter_request_var('id') : $user_id));
}
function perm_remove() {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('user_id');
/* ==================================================== */
if (get_request_var('type') == 'graph') {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE type = 1
AND user_id = ?
AND item_id = ?',
array(get_request_var('user_id'), get_request_var('id')));
} elseif (get_request_var('type') == 'tree') {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE type = 2
AND user_id = ?
AND item_id = ?',
array(get_request_var('user_id'), get_request_var('id')));
} elseif (get_request_var('type') == 'host') {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE type = 3
AND user_id = ?
AND item_id = ?',
array(get_request_var('user_id'), get_request_var('id')));
} elseif (get_request_var('type') == 'graph_template') {
db_execute_prepared('DELETE FROM user_auth_perms
WHERE type = 4
AND user_id = ?
AND item_id = ?',
array(get_request_var('user_id'), get_request_var('id')));
}
header('Location: user_admin.php?action=user_edit&tab=graph_perms_edit&id=' . get_request_var('user_id'));
}
function graph_perms_edit($tab, $header_label) {
/* ================= input validation ================= */
get_filter_request_var('id');
/* ==================================================== */
$sql_where = '';
$sql_join = '';
$limit = '';
$sql_having = '';
$policy_array = array(
1 => __('Allow'),
2 => __('Deny')
);
if (!isempty_request_var('id')) {
$policy = db_fetch_row_prepared('SELECT policy_graphs, policy_trees, policy_hosts, policy_graph_templates
FROM user_auth
WHERE id = ?', array(get_request_var('id')));
} else {
$policy = array(
'policy_graphs' => '1',
'policy_trees' => '1',
'policy_hosts' => '1',
'policy_graph_templates' => '1'
);
}
switch($tab) {
case 'permsg':
if (isempty_request_var('id')) {
header('Location: user_admin.php');
}
process_graph_request_vars();
graph_filter($header_label);
form_start('user_admin.php', 'policy');
$graph_auth_method = read_config_option('graph_auth_method');
if ($graph_auth_method == 1) {
$policy_note = __('<b>Note:</b> System Graph Policy is \'Permissive\' meaning the User must have access to at least one of Graph, Device, or Graph Template to gain access to the Graph');
} elseif ($graph_auth_method == 2) {
$policy_note = __('<b>Note:</b> System Graph Policy is \'Restrictive\' meaning the User must have access to either the Graph or the Device and Graph Template to gain access to the Graph');
} elseif ($graph_auth_method == 3) {
$policy_note = __('<b>Note:</b> System Graph Policy is \'Device\' meaning the User must have access to the Graph or Device to gain access to the Graph');
} else {
$policy_note = __('<b>Note:</b> System Graph Policy is \'Graph Template\' meaning the User must have access to the Graph or Graph Template to gain access to the Graph');
}
/* box: device permissions */
html_start_box(__('Default Graph Policy'), '100%', '', '3', 'center', '');
?>
<tr class='even'>
<td><table><tr>
<td class='nowrap'><?php print __('Default Graph Policy for this User');?></td>
<td>
<?php form_dropdown('policy_graphs',$policy_array,'','',$policy['policy_graphs'],'',''); ?>
</td>
<td>
<input type='submit' class='ui-button ui-corner-all ui-widget' name='update_policy' value='<?php print __esc('Update');?>'>
<input type='hidden' name='tab' value='<?php print $tab;?>'>
<input type='hidden' name='id' value='<?php print get_request_var('id');?>'>
<input type='hidden' name='update_policy' value='1'>
</td>
</tr></table></td>
</tr>
<tr class='even'>
<td><br><?php print $policy_note;?></td>
</tr>
<?php
html_end_box();
form_end();
/* if the number of rows is -1, set it to the default */
if (get_request_var('rows') == -1) {
$rows = read_config_option('num_rows_table');
} else {
$rows = get_request_var('rows');
}
$user_id = get_filter_request_var('id');
$policies = get_policies($user_id);
$policies = array_reverse($policies);
$limit = 'LIMIT ' . ($rows * (get_request_var('page') - 1)) . ',' . $rows;
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
$sql_where = 'WHERE (
gtg.title_cache LIKE ' . db_qstr('%' . get_request_var('filter') . '%') . '
AND gtg.local_graph_id > 0)';
} else {
$sql_where = 'WHERE (gtg.local_graph_id > 0)';
}
if (get_request_var('graph_template_id') == '-1') {
/* Show all items */
} elseif (get_request_var('graph_template_id') == '0') {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' gtg.graph_template_id=0';
} elseif (!isempty_request_var('graph_template_id')) {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' gtg.graph_template_id=' . get_request_var('graph_template_id');
}
/**
* if viewing just the graphs that the user has access to
* we use a custom crafted sql_where clause to calculate
* permissions due to the inefficient nature of the HAVING
* SQL clause.
*/
if (get_request_var('associated') == 'false') {
$sql_where = get_policy_where($graph_auth_method, $policies, $sql_where);
}
/**
* get the sql join and select to display the policy information
* this includes the four graph permission types
*/
$details = get_policy_join_select($policies);
if (cacti_sizeof($details)) {
$sql_join = $details['sql_join'];
$sql_select = $details['sql_select'];
} else {
$sql_join = '';
$sql_select = '';
}
$graphs = db_fetch_assoc("SELECT gtg.local_graph_id, h.description,
h.disabled, h.deleted, gt.name AS template_name,
gtg.title_cache, gtg.width, gtg.height, gl.snmp_index, gl.snmp_query_id, $sql_select
FROM graph_templates_graph AS gtg
INNER JOIN graph_local AS gl
ON gl.id = gtg.local_graph_id
LEFT JOIN graph_templates AS gt
ON gt.id = gl.graph_template_id
LEFT JOIN host AS h
ON h.id = gl.host_id
$sql_join
$sql_where
ORDER BY gtg.title_cache
$limit");
$total_rows = db_fetch_cell("SELECT COUNT(DISTINCT gl.id)
FROM graph_templates_graph AS gtg
INNER JOIN graph_local AS gl
ON gl.id = gtg.local_graph_id
LEFT JOIN graph_templates AS gt
ON gt.id = gl.graph_template_id
LEFT JOIN host AS h
ON h.id = gl.host_id
$sql_where");
$nav = html_nav_bar('user_admin.php?action=user_edit&tab=permsg&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 11, __('Graphs'), 'page', 'main');
form_start('user_admin.php?tab=permsg&id=' . get_request_var('id'), 'chk');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
$display_text = array(__('Graph Title'), __('ID'), __('Effective Policy'));
html_header_checkbox($display_text, false);
if (cacti_sizeof($graphs)) {
foreach ($graphs as $g) {
form_alternate_row('line' . $g['local_graph_id'], true);
form_selectable_cell(filter_value($g['title_cache'], get_request_var('filter')), $g['local_graph_id']);
form_selectable_cell($g['local_graph_id'], $g['local_graph_id']);
form_selectable_cell(get_permission_string($g, $policies), $g['local_graph_id']);
form_checkbox_cell($g['title_cache'], $g['local_graph_id']);
form_end_row();
}
} else {
print '<tr><td colspan="' . (cacti_sizeof($display_text) + 1) . '"><em>' . __('No Matching Graphs Found') . '</em></td></tr>';
}
html_end_box(false);
if (cacti_sizeof($graphs)) {
print $nav;
}
form_hidden_box('tab',$tab,'');
form_hidden_box('id', get_request_var('id'), '');
form_hidden_box('associate_graph', '1', '');
if ($policy['policy_graphs'] == 1) {
$assoc_actions = array(
1 => __('Revoke Access'),
2 => __('Grant Access')
);
} else {
$assoc_actions = array(
1 => __('Grant Access'),
2 => __('Revoke Access')
);
}
?>
<script type='text/javascript'>
$(function() {
$(document).tooltip({
items: '[data-tooltip]',
content: function() {
return $(this).attr('data-tooltip');
}
});
});
</script>
<?php
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($assoc_actions);
form_end();
break;
case 'permsgr':
if (isempty_request_var('id')) {
header('Location: user_admin.php');
}
process_group_request_vars();
group_filter($header_label);
/* if the number of rows is -1, set it to the default */
if (get_request_var('rows') == -1) {
$rows = read_config_option('num_rows_table');
} else {
$rows = get_request_var('rows');
}
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
$sql_where = 'WHERE (
uag.name LIKE ' . db_qstr('%' . get_request_var('filter') . '%') . '
OR uag.description LIKE ' . db_qstr('%' . get_request_var('filter') . '%') . ')';
} else {
$sql_where = '';
}
if (get_request_var('associated') != 'false') {
/* Show all items */
} else {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' uagm.user_id=' . get_request_var('id');
}
$total_rows = db_fetch_cell('SELECT
COUNT(DISTINCT uag.id)
FROM user_auth_group AS uag
LEFT JOIN (SELECT user_id, group_id FROM user_auth_group_members WHERE user_id=' . get_request_var('id') . ") AS uagm
ON uag.id = uagm.group_id
$sql_where");
$sql_query = 'SELECT DISTINCT uag.*, uagm.user_id
FROM user_auth_group AS uag
LEFT JOIN (SELECT user_id, group_id FROM user_auth_group_members WHERE user_id=' . get_request_var('id') . ") AS uagm
ON uag.id = uagm.group_id
$sql_where
ORDER BY name
LIMIT " . ($rows * (get_request_var('page') - 1)) . ',' . $rows;
$groups = db_fetch_assoc($sql_query);
$nav = html_nav_bar('user_admin.php?action=user_edit&tab=permsgr&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 11, __('Groups'), 'page', 'main');
form_start('user_admin.php?tab=permsd&id=' . get_request_var('id'), 'chk');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
$display_text = array(__('Name'), __('Description'), __('Member'), __('ID'), __('Policies (Graph/Device/Template)'), __('Enabled'));
html_header_checkbox($display_text, false);
if (cacti_sizeof($groups)) {
foreach ($groups as $g) {
form_alternate_row('line' . $g['id'], true);
form_selectable_cell(filter_value($g['name'], get_request_var('filter'), 'user_group_admin.php?action=edit&id=' . $g['id']), $g['id']);
form_selectable_cell(filter_value($g['description'], get_request_var('filter')), $g['id']);
form_selectable_cell($g['user_id'] > 0 ? __('Member'):__('Non Member'), $g['id']);
form_selectable_cell(($g['id']), $g['id']);
form_selectable_cell(($g['policy_graphs'] == 1 ? __('ALLOW'):__('DENY')) . '/' . ($g['policy_hosts'] == 1 ? __('ALLOW'):__('DENY')) . '/' . ($g['policy_graph_templates'] == 1 ? __('ALLOW'):__('DENY')), $g['id']);
form_selectable_cell($g['enabled'] == 'on' ? __('Enabled'):__('Disabled'), $g['id']);
form_checkbox_cell($g['name'], $g['id']);
form_end_row();
}
} else {
print '<tr><td colspan="' . (cacti_sizeof($display_text) + 1) . '"><em>' . __('No Matching User Groups Found') . '</em></td></tr>';
}
html_end_box(false);
if (cacti_sizeof($groups)) {
print $nav;
}
form_hidden_box('tab',$tab,'');
form_hidden_box('id', get_request_var('id'), '');
form_hidden_box('associate_groups', '1', '');
$assoc_actions = array(
1 => __('Assign Membership'),