forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_group_admin.php
2577 lines (2177 loc) · 84 KB
/
user_group_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-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/ |
+-------------------------------------------------------------------------+
*/
include('./include/auth.php');
set_default_action();
$group_actions = array(
1 => __('Delete'),
2 => __('Copy'),
3 => __('Enable'),
4 => __('Disable')
);
$href_options = array(
3 => array(
'radio_value' => '4',
'radio_caption' => __('Defer to the Users Setting')
),
0 => array(
'radio_value' => '1',
'radio_caption' => __('Show the Page that the User pointed their browser to')
),
1 => array(
'radio_value' => '2',
'radio_caption' => __('Show the Console')
),
2 => array(
'radio_value' => '3',
'radio_caption' => __('Show the default Graph Screen')
)
);
$gperm_options = array(
0 => array(
'radio_value' => '1',
'radio_caption' => __('Defer to the Users Setting')
),
1 => array(
'radio_value' => '2',
'radio_caption' => __('Grant Access')
),
2 => array(
'radio_value' => '3',
'radio_caption' => __('Restrict Access')
)
);
$fields_user_group_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Group Name'),
'description' => __('The name of this Group.'),
'value' => '|arg1:name|',
'max_length' => '255'
),
'description' => array(
'method' => 'textbox',
'friendly_name' => __('Group Description'),
'description' => __('A more descriptive name for this group, that can include spaces or special characters.'),
'value' => '|arg1:description|',
'max_length' => '255'
),
'enabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Enabled'),
'description' => __('Determines if user is able to login.'),
'value' => '|arg1:enabled|',
'default' => ''
),
'grp1' => array(
'friendly_name' => __('General Group Options'),
'method' => 'checkbox_group',
'description' => __('Set any user account-specific options here.'),
'items' => array(
'graph_settings' => array(
'value' => '|arg1:graph_settings|',
'friendly_name' => __('Allow Users of this Group to keep custom User Settings'),
'form_id' => '|arg1:id|',
'default' => 'on'
)
)
),
'show_tree' => array(
'friendly_name' => __('Tree Rights'),
'method' => 'radio',
'description' => __('Should Users of this Group have access to the Tree?'),
'value' => '|arg1:show_tree|',
'default' => '1',
'items' => $gperm_options
),
'show_list' => array(
'friendly_name' => __('Graph List Rights'),
'method' => 'radio',
'description' => __('Should Users of this Group have access to the Graph List?'),
'value' => '|arg1:show_list|',
'default' => '1',
'items' => $gperm_options
),
'show_preview' => array(
'friendly_name' => __('Graph Preview Rights'),
'method' => 'radio',
'description' => __('Should Users of this Group have access to the Graph Preview?'),
'value' => '|arg1:show_preview|',
'default' => '1',
'items' => $gperm_options
),
'login_opts' => array(
'friendly_name' => __('Login Options'),
'method' => 'radio',
'default' => '1',
'description' => __('What to do when a User from this User Group logs in.'),
'value' => '|arg1:login_opts|',
'items' => $href_options
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_group' => array(
'method' => 'hidden',
'value' => '1'
)
);
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 'edit':
top_header();
group_edit();
bottom_footer();
break;
default:
if (!api_plugin_hook_function('user_group_admin_action', get_request_var('action'))) {
top_header();
user_group();
bottom_footer();
}
break;
}
}
/* --------------------------
Actions Function
-------------------------- */
function user_group_disable($id) {
db_execute_prepared("UPDATE user_auth_group SET enabled = '' WHERE id = ?", array($id));
}
function user_group_enable($id) {
db_execute_prepared("UPDATE user_auth_group SET enabled = 'on' WHERE id = ?", array($id));
}
function user_group_remove($id) {
db_execute_prepared('DELETE FROM user_auth_group WHERE id = ?', array($id));
db_execute_prepared('DELETE FROM user_auth_group_members WHERE group_id = ?', array($id));
db_execute_prepared('DELETE FROM user_auth_group_realm WHERE group_id = ?', array($id));
db_execute_prepared('DELETE FROM user_auth_group_perms WHERE group_id = ?', array($id));
}
function user_group_copy($id, $prefix = 'New Group') {
static $count = 1;
$name = $prefix . ' ' . $count;
db_execute_prepared('INSERT INTO user_auth_group
(name, description, graph_settings, login_opts, show_tree, show_list, show_preview,
policy_graphs, policy_trees, policy_hosts, policy_graph_templates, enabled)
SELECT ' . db_qstr($name) . ', description, graph_settings, login_opts, show_tree, show_list, show_preview,
policy_graphs, policy_trees, policy_hosts, policy_graph_templates, enabled
FROM user_auth_group WHERE id = ?', array($id));
$id = db_fetch_insert_id();
if (!empty($id)) {
$perms = db_fetch_assoc_prepared('SELECT *
FROM user_auth_group_perms
WHERE group_id = ?',
array($id));
if (sizeof($perms)) {
foreach($perms as $p) {
db_execute_prepared('INSERT INTO user_auth_group_perms
(group_id, item_id, type)
VALUES (?, ?, ?)',
array($id, $p['item_id'], $p['type']));
}
}
$realms = db_fetch_assoc_prepared('SELECT *
FROM user_auth_group_realm
WHERE group_id = ?',
array($id));
if (sizeof($realms)) {
foreach($realms as $r) {
db_execute_prepared('INSERT INTO user_auth_group_realm
(group_id, realm_id)
VALUES (?, ?)',
array($id, $r['realm_id']));
}
}
}
$count++;
}
function update_policies() {
$set = '';
$set .= isset_request_var('policy_graphs') ? 'policy_graphs=' . get_nfilter_request_var('policy_graphs'):'';
$set .= isset_request_var('policy_trees') ? ($set != '' ? ',':'') . 'policy_trees=' . get_nfilter_request_var('policy_trees'):'';
$set .= isset_request_var('policy_hosts') ? ($set != '' ? ',':'') . 'policy_hosts=' . get_nfilter_request_var('policy_hosts'):'';
$set .= isset_request_var('policy_graph_templates') ? ($set != '' ? ',':'') . 'policy_graph_templates=' . get_nfilter_request_var('policy_graph_templates'):'';
if ($set != '') {
db_execute_prepared("UPDATE user_auth_group SET $set WHERE id = ?", array(get_nfilter_request_var('id')));
}
header('Location: user_group_admin.php?action=edit&header=false&tab=' . get_nfilter_request_var('tab') . '&id=' . get_nfilter_request_var('id'));
exit;
}
function form_actions() {
global $group_actions, $user_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]);
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_group_perms
(group_id, item_id, type)
VALUES (?, ?, 3)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_group_perms
WHERE group_id = ?
AND item_id = ?
AND type = 3',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_group_admin.php?action=edit&header=false&tab=permsd&id=' . get_nfilter_request_var('id'));
exit;
} elseif (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]);
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_group_perms
(group_id, item_id, type)
VALUES (?, ?, 1)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_group_perms
WHERE group_id = ?
AND item_id = ?
AND type = 1',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_group_admin.php?action=edit&header=false&tab=permsg&id=' . get_nfilter_request_var('id'));
exit;
} elseif (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]);
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_group_perms
(group_id, item_id, type)
VALUES (?, ?, 4)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_group_perms
WHERE group_id = ?
AND item_id = ?
AND type = 4',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_group_admin.php?action=edit&header=false&tab=permste&id=' . get_nfilter_request_var('id'));
exit;
} elseif (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]);
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_group_perms
(group_id, item_id, type)
VALUES (?, ?, 2)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_group_perms
WHERE group_id = ?
AND item_id = ?
AND type = 2',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_group_admin.php?action=edit&header=false&tab=permstr&id=' . get_nfilter_request_var('id'));
exit;
} elseif (isset_request_var('associate_member')) {
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1]);
/* ==================================================== */
if (get_nfilter_request_var('drp_action') == '1') {
db_execute_prepared('REPLACE INTO user_auth_group_members
(group_id, user_id)
VALUES (?, ?)',
array(get_nfilter_request_var('id'), $matches[1]));
} else {
db_execute_prepared('DELETE FROM user_auth_group_members
WHERE group_id = ?
AND user_id = ?',
array(get_nfilter_request_var('id'), $matches[1]));
}
}
}
header('Location: user_group_admin.php?action=edit&header=false&tab=members&id=' . get_nfilter_request_var('id'));
exit;
} elseif (isset_request_var('selected_items')) {
$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<count($selected_items));$i++) {
user_group_remove($selected_items[$i]);
}
} elseif (get_nfilter_request_var('drp_action') == '2') { /* copy */
for ($i=0;($i<count($selected_items));$i++) {
user_group_copy($selected_items[$i], get_nfilter_request_var('group_prefix'));
}
} elseif (get_nfilter_request_var('drp_action') == '3') { /* enable */
for ($i=0;($i<count($selected_items));$i++) {
user_group_enable($selected_items[$i]);
}
} elseif (get_nfilter_request_var('drp_action') == '4') { /* disable */
for ($i=0;($i<count($selected_items));$i++) {
user_group_disable($selected_items[$i]);
}
}
}
header('Location: user_group_admin.php?header=false');
exit;
}
/* loop through each of the users and process them */
$group_list = '';
$group_array = array();
$i = 0;
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1]);
/* ==================================================== */
if (get_nfilter_request_var('drp_action') != '2') {
$group_list .= '<li>' . db_fetch_cell_prepared('SELECT name FROM user_auth_group WHERE id = ?', array($matches[1])) . '</li>';
}
$group_array[$i] = $matches[1];
$i++;
}
}
top_header();
form_start('user_group_admin.php');
html_start_box($group_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', '');
if (isset($group_array) && sizeof($group_array)) {
if ((get_nfilter_request_var('drp_action') == '1') && (sizeof($group_array))) { /* delete */
print "<tr>
<td class='textArea'>
<p>" . __n('Click \'Continue\' to delete the following User Group', 'Click \'Continue\' to delete following User Groups', sizeof($group_array)) . "</p>
<div class='itemlist'><ul>$group_list</ul></div>
</td>
</tr>\n";
$save_html = "<input type='button' value='" . __esc('Cancel') . "' onClick='cactiReturnTo()'> <input type='submit' value='" . __esc('Continue') . "' title='" . __n('Delete User Group', 'Delete User Groups', sizeof($group_array)) . "'>";
}
$group_id = '';
if ((get_nfilter_request_var('drp_action') == '2') && (sizeof($group_array))) { /* copy */
print "<tr>
<td class='textArea'>
<p>" . __n('Click \'Continue\' to Copy the following User Group to a new User Group.', 'Click \'Continue\' to Copy following User Groups to new User Groups.', sizeof($group_array)) . "</p>
<div class='itemlist'><ul>$group_list</ul></div>
</td>
</tr>
<tr>
<td class='textArea'>
<p>" . __('Group Prefix:') . " ";
print form_text_box('group_prefix', __('New Group'), '', 25);
print "</p></td>
</tr>\n";
$save_html = "<input type='button' value='" . __esc('Cancel') . "' onClick='cactiReturnTo()'> <input type='submit' value='" . __esc('Continue') . "' title='" . __n('Copy User Group', 'Copy User Groups', sizeof($group_array)) . "'>";
}
if ((get_nfilter_request_var('drp_action') == '3') && (sizeof($group_array))) { /* enable */
print "<tr>
<td class='textArea'>
<p>" . __n('Click \'Continue\' to enable the following User Group.', 'Click \'Continue\' to enable following User Groups.', sizeof($group_array)) . "</p>
<div class='itemlist'><ul>$group_list</ul></div>
</td>
</tr>\n";
$save_html = "<input type='button' value='" . __esc('Cancel') . "' onClick='cactiReturnTo()'> <input type='submit' value='" . __esc('Continue') . "' title='" . __n('Enable User Group', 'Enable User Groups', sizeof($group_array)) . "'>";
}
if ((get_nfilter_request_var('drp_action') == '4') && (sizeof($group_array))) { /* disable */
print "<tr>
<td class='textArea'>
<p>" . __n('Click \'Continue\' to disable the following User Group.', 'Click \'Continue\' to disable following User Groups.', sizeof($group_array)) . "</p>
<div class='itemlist'><ul>$group_list</ul></div>
</td>
</tr>\n";
$save_html = "<input type='button' value='" . __esc('Cancel') . "' onClick='cactiReturnTo()'> <input type='submit' value='" . __esc('Continue') . "' title='" . __n('Disable User Group', 'Disable User Groups', sizeof($group_array)) . "'>";
}
} else {
print "<tr><td class='even'><span class='textError'>" . __('You must select at least one Group.') . "</span></td></tr>\n";
$save_html = "<input type='button' value='" . __esc('Return') . "' onClick='cactiReturnTo()'>";
}
print "<tr>
<td class='saveRow'>
<input type='hidden' name='action' value='actions'>";
print "<input type='hidden' name='selected_items' value='" . (isset($group_array) ? serialize($group_array) : '') . "'>\n";
print "<input type='hidden' name='drp_action' value='" . get_nfilter_request_var('drp_action') . "'>
$save_html
</td>
</tr>\n";
html_end_box();
form_end();
bottom_footer();
}
/* --------------------------
Save Function
-------------------------- */
function form_save() {
global $settings_user;
if (isset_request_var('save_component_group')) {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('realm');
/* ==================================================== */
/* check duplicate group */
if (sizeof(db_fetch_row_prepared('SELECT * FROM user_auth_group WHERE name = ? AND id != ?', array(get_nfilter_request_var('name'), get_nfilter_request_var('id'))))) {
raise_message(12);
}
$save['id'] = get_nfilter_request_var('id');
$save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', "^[A-Za-z0-9\._\\\@\ -]+$", false, 3);
$save['description'] = form_input_validate(get_nfilter_request_var('description'), 'description', '', 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['enabled'] = form_input_validate(get_nfilter_request_var('enabled', ''), 'enabled', '', true, 3);
$save = api_plugin_hook_function('user_group_admin_setup_sql_save', $save);
if (!is_error_message()) {
$group_id = sql_save($save, 'user_auth_group');
if ($group_id) {
reset_group_perms($group_id);
raise_message(1);
} else {
raise_message(2);
}
}
header('Location: user_group_admin.php?action=edit&header=false&tab=general&id=' . (isset($group_id) && $group_id > 0 ? $group_id : get_nfilter_request_var('id')));
exit;
} elseif (isset_request_var('save_component_realm_perms')) {
db_execute_prepared('DELETE FROM user_auth_group_realm WHERE group_id = ?', array(get_filter_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_group_realm (group_id, realm_id) VALUES (?, ?)', array(get_request_var('id'), substr($var, 7)));
}
}
}
reset_group_perms(get_request_var('id'));
raise_message(1);
header('Location: user_group_admin.php?action=edit&header=false&tab=realms&id=' . get_request_var('id'));
exit;
} elseif (isset_request_var('save_component_graph_settings')) {
foreach ($settings_user as $tab_short_name => $tab_fields) {
foreach ($tab_fields as $field_name => $field_array) {
if ((isset($field_array['items'])) && (is_array($field_array['items']))) {
foreach ($field_array['items'] as $sub_field_name => $sub_field_array) {
db_execute_prepared('REPLACE INTO settings_user_group (group_id, name, value) VALUES (?, ?, ?)', array(get_filter_request_var('id'), $sub_field_name, get_nfilter_request_var($sub_field_name, '')));
}
} else {
db_execute_prepared('REPLACE INTO settings_user_group (group_id, name, value) VALUES (?, ?, ?)', array(get_request_var('id'), $field_name, get_nfilter_request_var($field_name)));
}
}
}
kill_session_var('sess_user_config_array');
reset_group_perms(get_request_var('id'));
raise_message(1);
header('Location: user_group_admin.php?action=edit&header=false&tab=settings&id=' . get_nfilter_request_var('id'));
exit;
} else {
api_plugin_hook('user_group_admin_save');
}
/* redirect to the appropriate page */
header('Location: user_group_admin.php?action=edit&header=false&tab=general&id=' . get_nfilter_request_var('id'));
}
/* --------------------------
Graph Permissions
-------------------------- */
function perm_remove() {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('group_id');
/* ==================================================== */
if (get_request_var('type') == 'graph') {
db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=1 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id')));
} elseif (get_request_var('type') == 'tree') {
db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=2 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id')));
} elseif (get_request_var('type') == 'host') {
db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=3 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id')));
} elseif (get_request_var('type') == 'graph_template') {
db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=4 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id')));
}
header('Location: user_group_admin.php?action=edit&header=false&tab=gperms&id=' . get_request_var('group_id'));
}
function user_group_members_edit($header_label) {
global $config, $auth_realms;
process_member_request_vars();
member_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 (username LIKE '%" . get_request_var('filter') . "%' OR full_name LIKE '%" . get_request_var('filter') . "%')";
} else {
$sql_where = '';
}
if (get_request_var('associated') == 'false') {
/* Show all items */
} else {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' (user_auth_group_members.group_id=' . get_request_var('id', 0) . ')';
}
$total_rows = db_fetch_cell("SELECT
COUNT(ua.id)
FROM user_auth AS ua
LEFT JOIN user_auth_group_members
ON (ua.id = user_auth_group_members.user_id)
$sql_where");
$sql_query = "SELECT DISTINCT ua.id, ua.username, ua.full_name, ua.enabled, ua.realm
FROM user_auth AS ua
LEFT JOIN user_auth_group_members
ON (ua.id = user_auth_group_members.user_id)
$sql_where
ORDER BY username, full_name
LIMIT " . ($rows*(get_request_var('page')-1)) . ',' . $rows;
$members = db_fetch_assoc($sql_query);
$nav = html_nav_bar('user_group_admin.php?action=edit&tab=members&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 7, __('Users'), 'page', 'main');
form_start(htmlspecialchars('user_group_admin.php?tab=members&id=' . get_request_var('id')), 'chk');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
$display_text = array( __('Login Name'), __('Full Name'), __('ID'), __('Membership'), __('Enabled'), __('Realm'));
html_header_checkbox($display_text, false);
if (sizeof($members)) {
foreach ($members as $g) {
form_alternate_row('line' . $g['id'], true);
form_selectable_cell(filter_value($g['username'], get_request_var('filter'), 'user_admin.php?action=user_edit&id=' . $g['id']), $g['id']);
form_selectable_cell(filter_value($g['full_name'], get_request_var('filter')), $g['id']);
form_selectable_cell($g['id'], $g['id']);
if (user_group_is_member($g['id'], get_request_var('id'))) {
form_selectable_cell('<span class="accessGranted">' . __('Group Member') . '</span>', $g['id']);
} else {
form_selectable_cell('<span class="accessRestricted">' . __('Non Member') . '</span>', $g['id']);
}
form_selectable_cell(($g['enabled'] == 'on' ? __('Enabled'): __('Disabled') ), $g['id']);
form_selectable_cell((isset($auth_realms[$g['realm']]) ? $auth_realms[$g['realm']]:'Unknown'), $g['id']);
form_checkbox_cell($g['full_name'], $g['id']);
form_end_row();
}
} else {
print '<tr><td><em>' . __('No Matching Group Members Found') . '</em></td></tr>';
}
html_end_box(false);
if (sizeof($members)) {
print $nav;
}
form_hidden_box('tab', 'members', '');
form_hidden_box('id', get_request_var('id'), '');
form_hidden_box('associate_member', '1', '');
$assoc_actions = array(
1 => __('Add to Group'),
2 => __('Remove from Group')
);
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($assoc_actions);
form_end();
}
function user_group_graph_perms_edit($tab, $header_label) {
global $config, $assoc_actions;
/* ================= input validation ================= */
get_filter_request_var('id');
/* ==================================================== */
$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_group WHERE id = ?', array(get_request_var('id')));
}
switch($tab) {
case 'permsg':
process_graph_request_vars();
graph_filter($header_label);
form_start('user_group_admin.php', 'policy');
/* box: device permissions */
html_start_box( __('Default Graph Policy'), '100%', '', '3', 'center', '');
?>
<tr class='even'>
<td><table><tr>
<td class='nowrap'><? print __('Default Graph policy for this User Group');?></td>
<td>
<?php form_dropdown('policy_graphs',$policy_array,'','',$policy['policy_graphs'],'',''); ?>
</td>
<td>
<input type='submit' 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>
<?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');
}
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
$sql_where = "WHERE (gtg.title_cache LIKE '%" . 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 (get_request_var('associated') == 'false') {
/* Show all items */
} else {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' (user_auth_group_perms.type = 1 AND user_auth_group_perms.group_id=' . get_request_var('id', 0) . ')';
}
$total_rows = db_fetch_cell("SELECT
COUNT(DISTINCT gtg.id)
FROM graph_templates_graph AS gtg
LEFT JOIN user_auth_group_perms
ON (gtg.local_graph_id = user_auth_group_perms.item_id AND user_auth_group_perms.type = 1 AND user_auth_group_perms.group_id = " . get_request_var('id') . ")
$sql_where");
$sql_query = "SELECT gtg.local_graph_id, gtg.title_cache, user_auth_group_perms.group_id
FROM graph_templates_graph AS gtg
LEFT JOIN user_auth_group_perms
ON (gtg.local_graph_id=user_auth_group_perms.item_id AND user_auth_group_perms.type = 1 AND user_auth_group_perms.group_id = " . get_request_var('id') . ")
$sql_where
ORDER BY title_cache
LIMIT " . ($rows*(get_request_var('page')-1)) . ',' . $rows;
$graphs = db_fetch_assoc($sql_query);
$nav = html_nav_bar('user_group_admin.php?action=edit&tab=permsg&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 7, __('Graphs'), 'page', 'main');
form_start(htmlspecialchars('user_group_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 (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']);
if (empty($g['group_id']) || $g['group_id'] == NULL) {
if ($policy['policy_graphs'] == 1) {
form_selectable_cell('<span class="accessGranted">' . __('Access Granted') . '</span>', $g['local_graph_id']);
} else {
form_selectable_cell('<span class="accessRestricted">' . __('Access Restricted') . '</span>', $g['local_graph_id']);
}
} else {
if ($policy['policy_graphs'] == 1) {
form_selectable_cell('<span class="accessRestricted">' . __('Access Restricted') . '</span>', $g['local_graph_id']);
} else {
form_selectable_cell('<span class="accessGranted">' . __('Access Granted') . '</span>', $g['local_graph_id']);
}
}
form_checkbox_cell($g['title_cache'], $g['local_graph_id']);
form_end_row();
}
} else {
print '<tr><td><em>' . __('No Matching Graphs Found') . '</em></td></tr>';
}
html_end_box(false);
if (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')
);
}
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($assoc_actions);
form_end();
break;
case 'permsd':
process_device_request_vars();
device_filter($header_label);
form_start('user_group_admin.php', 'policy');
/* box: device permissions */
html_start_box( __('Default Device Policy'), '100%', '', '3', 'center', '');
?>
<tr class='even'>
<td><table><tr>
<td class='nowrap'><? print __('Default Graph policy for this User Group');?></td>
<td>
<?php form_dropdown('policy_hosts',$policy_array,'','',$policy['policy_hosts'],'',''); ?>
</td>
<td>
<input type='submit' 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>
<?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');
}
/* form the 'where' clause for our main sql query */
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
$sql_where = "WHERE (host.hostname LIKE '%" . get_request_var('filter') . "%' OR host.description LIKE '%" . get_request_var('filter') . "%')";
} else {
$sql_where = '';
}
if (get_request_var('host_template_id') == '-1') {
/* Show all items */
} elseif (get_request_var('host_template_id') == '0') {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' host.host_template_id=0';
} elseif (!isempty_request_var('host_template_id')) {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' host.host_template_id=' . get_request_var('host_template_id');
}
if (get_request_var('associated') == 'false') {
/* Show all items */
} else {
$sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' user_auth_group_perms.group_id=' . get_request_var('id', 0);
}
$total_rows = db_fetch_cell("SELECT
COUNT(DISTINCT host.id)
FROM host
LEFT JOIN user_auth_group_perms
ON (host.id = user_auth_group_perms.item_id AND user_auth_group_perms.type = 3 AND user_auth_group_perms.group_id = " . get_request_var('id') . ")
$sql_where");
$host_graphs = array_rekey(db_fetch_assoc('SELECT host_id, count(*) AS graphs FROM graph_local GROUP BY host_id'), 'host_id', 'graphs');
$host_data_sources = array_rekey(db_fetch_assoc('SELECT host_id, count(*) AS data_sources FROM data_local GROUP BY host_id'), 'host_id', 'data_sources');
$sql_query = "SELECT host.*, user_auth_group_perms.group_id
FROM host
LEFT JOIN user_auth_group_perms
ON (host.id=user_auth_group_perms.item_id AND user_auth_group_perms.type = 3 AND user_auth_group_perms.group_id = " . get_request_var('id') . ")
$sql_where
ORDER BY description
LIMIT " . ($rows*(get_request_var('page')-1)) . ',' . $rows;
$hosts = db_fetch_assoc($sql_query);
$nav = html_nav_bar('user_group_admin.php?action=edit&tab=permsd&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 11, __('Devices'), 'page', 'main');
form_start(htmlspecialchars('user_group_admin.php?tab=permsd&id=' . get_request_var('id')), 'chk');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
$display_text = array( __('Description'), __('ID'), __('Effective Policy'), __('Graphs'), __('Data Sources'), __('Status'), __('Hostname') );
html_header_checkbox($display_text, false);
if (sizeof($hosts)) {
foreach ($hosts as $host) {
form_alternate_row('line' . $host['id'], true);
form_selectable_cell(filter_value($host['description'], get_request_var('filter')), $host['id']);
form_selectable_cell(round(($host['id']), 2), $host['id']);
if (empty($host['group_id']) || $host['group_id'] == NULL) {
if ($policy['policy_hosts'] == 1) {
form_selectable_cell('<span class="accessGranted">' . __('Access Granted') . '</span>', $host['id']);
} else {
form_selectable_cell('<span class="accessRestricted">' . __('Access Restricted') . '</span>', $host['id']);
}
} else {
if ($policy['policy_hosts'] == 1) {
form_selectable_cell('<span class="accessRestricted">' . __('Access Restricted') . '</span>', $host['id']);
} else {
form_selectable_cell('<span class="accessGranted">' . __('Access Granted') . '</span>', $host['id']);
}
}
form_selectable_cell((isset($host_graphs[$host['id']]) ? $host_graphs[$host['id']] : 0), $host['id']);
form_selectable_cell((isset($host_data_sources[$host['id']]) ? $host_data_sources[$host['id']] : 0), $host['id']);
form_selectable_cell(get_colored_device_status(($host['disabled'] == 'on' ? true : false), $host['status']), $host['id']);
form_selectable_cell(filter_value($host['hostname'], get_request_var('filter')), $host['id']);
form_checkbox_cell($host['description'], $host['id']);
form_end_row();
}
} else {
print '<tr><td><em>' . __('No Matching Devices Found') . '</em></td></tr>';
}
html_end_box(false);
if (sizeof($hosts)) {