forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
host_templates.php
897 lines (750 loc) · 27.5 KB
/
host_templates.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
<?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');
include_once('./lib/api_data_source.php');
include_once('./lib/api_device.php');
include_once('./lib/api_graph.php');
include_once('./lib/api_tree.php');
include_once('./lib/data_query.php');
include_once('./lib/poller.php');
include_once('./lib/template.php');
include_once('./lib/utility.php');
$actions = array(
1 => __('Delete'),
2 => __('Duplicate'),
3 => __('Sync Devices')
);
/* set default action */
set_default_action();
api_plugin_hook('device_template_top');
switch (get_request_var('action')) {
case 'save':
form_save();
break;
case 'actions':
form_actions();
break;
case 'item_add_gt':
template_item_add_gt();
header('Location: host_templates.php?action=edit&id=' . get_filter_request_var('host_template_id'));
break;
case 'item_remove_gt_confirm':
template_item_remove_gt_confirm();
break;
case 'item_remove_gt':
template_item_remove_gt();
header('Location: host_templates.php?action=edit&id=' . get_filter_request_var('host_template_id'));
break;
case 'item_add_dq':
template_item_add_dq();
header('Location: host_templates.php?action=edit&id=' . get_filter_request_var('host_template_id'));
break;
case 'item_remove_dq_confirm':
template_item_remove_dq_confirm();
break;
case 'item_remove_dq':
template_item_remove_dq();
header('Location: host_templates.php?action=edit&id=' . get_filter_request_var('host_template_id'));
break;
case 'edit':
top_header();
template_edit();
bottom_footer();
break;
default:
top_header();
template();
bottom_footer();
break;
}
function form_save() {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('host_template_id');
get_filter_request_var('snmp_query_id');
get_filter_request_var('graph_template_id');
/* ==================================================== */
if (isset_request_var('save_component_template')) {
$save['id'] = get_nfilter_request_var('id');
$save['hash'] = get_hash_host_template(get_nfilter_request_var('id'));
$save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', '', false, 3);
$save['class'] = form_input_validate(get_nfilter_request_var('class'), 'class', '', false, 3);
if (!is_error_message()) {
$host_template_id = sql_save($save, 'host_template');
if ($host_template_id) {
raise_message(1);
} else {
raise_message(2);
}
}
header('Location: host_templates.php?action=edit&id=' . (empty($host_template_id) ? get_nfilter_request_var('id') : $host_template_id));
}
}
function template_item_add_dq() {
/* ================= input validation ================= */
get_filter_request_var('host_template_id');
get_filter_request_var('snmp_query_id');
/* ==================================================== */
db_execute_prepared(
'REPLACE INTO host_template_snmp_query
(host_template_id, snmp_query_id)
VALUES (?, ?)',
array(get_request_var('host_template_id'), get_request_var('snmp_query_id'))
);
raise_message(41);
}
function template_item_add_gt() {
/* ================= input validation ================= */
get_filter_request_var('host_template_id');
get_filter_request_var('graph_template_id');
/* ==================================================== */
db_execute_prepared(
'REPLACE INTO host_template_graph
(host_template_id, graph_template_id)
VALUES (?, ?)',
array(get_request_var('host_template_id'), get_request_var('graph_template_id'))
);
raise_message(41);
}
function form_actions() {
global $actions;
/* ================= input validation ================= */
get_filter_request_var('drp_action', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z0-9_]+)$/')));
/* ==================================================== */
/* if we are to save this form, instead of display it */
if (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
db_execute('DELETE FROM host_template WHERE ' . array_to_sql_or($selected_items, 'id'));
db_execute('DELETE FROM host_template_snmp_query WHERE ' . array_to_sql_or($selected_items, 'host_template_id'));
db_execute('DELETE FROM host_template_graph WHERE ' . array_to_sql_or($selected_items, 'host_template_id'));
/* "undo" any device that is currently using this template */
db_execute('UPDATE host SET host_template_id = 0 WHERE deleted = "" AND ' . array_to_sql_or($selected_items, 'host_template_id'));
} elseif (get_nfilter_request_var('drp_action') == '2') { // duplicate
for ($i=0;($i<cacti_count($selected_items));$i++) {
api_duplicate_device_template($selected_items[$i], get_nfilter_request_var('title_format'));
}
} elseif (get_nfilter_request_var('drp_action') == '3') { // sync
for ($i = 0; ($i < cacti_count($selected_items)); $i++) {
api_device_template_sync_template($selected_items[$i]);
}
}
}
header('Location: host_templates.php');
exit;
} else {
$ilist = '';
$iarray = array();
/* loop through each of the host templates selected on the previous page and get more info about them */
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
$ilist .= '<li>' . html_escape(db_fetch_cell_prepared('SELECT name FROM host_template WHERE id = ?', array($matches[1]))) . '</li>';
$iarray[] = $matches[1];
}
}
$form_data = array(
'general' => array(
'page' => 'host_templates.php',
'actions' => $actions,
'optvar' => 'drp_action',
'item_array' => $iarray,
'item_list' => $ilist
),
'options' => array(
1 => array(
'smessage' => __('Click \'Continue\' to Delete the following Device Template.'),
'pmessage' => __('Click \'Continue\' to Delete following Device Templates.'),
'scont' => __('Delete Device Template'),
'pcont' => __('Delete Device Templates')
),
2 => array(
'smessage' => __('Click \'Continue\' to Duplicate the following Device Template.'),
'pmessage' => __('Click \'Continue\' to Duplicate following Device Templates.'),
'scont' => __('Duplicate Device Template'),
'pcont' => __('Duplicate Device Templates'),
'extra' => array(
'title_format' => array(
'method' => 'textbox',
'title' => __('Title Format:'),
'default' => '<template_title> (1)',
'width' => 25
)
)
),
3 => array(
'smessage' => __('Click \'Continue\' to Sync Devices to the following Device Template.'),
'pmessage' => __('Click \'Continue\' to Sync Devices to the following Device Templates.'),
'scont' => __('Sync Device Template'),
'pcont' => __('Sync Device Templates')
),
)
);
form_continue_confirmation($form_data);
}
}
function template_item_remove_gt_confirm() {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('host_template_id');
/* ==================================================== */
form_start('host_templates.php?action=edit&id' . get_request_var('host_template_id'));
html_start_box('', '100%', '', '3', 'center', '');
$template = db_fetch_row_prepared('SELECT * FROM graph_templates WHERE id = ?', array(get_request_var('id')));
?>
<tr>
<td class='topBoxAlt'>
<p><?php print __('Click \'Continue\' to delete the following Graph Template will be disassociated from the Device Template.'); ?></p>
<p><?php print __('Graph Template Name: %s', html_escape($template['name'])); ?>'<br>
</td>
</tr>
<tr>
<td class='right'>
<input type='button' class='ui-button ui-corner-all ui-widget' id='cancel' value='<?php print __esc('Cancel'); ?>' onClick='$("#cdialog").dialog("close")' name='cancel'>
<input type='button' class='ui-button ui-corner-all ui-widget' id='continue' value='<?php print __esc('Continue'); ?>' name='continue' title='<?php print __esc('Remove Graph Template'); ?>'>
</td>
</tr>
<?php
html_end_box();
form_end();
?>
<script type='text/javascript'>
$('#continue').click(function(data) {
var options = {
url: 'host_templates.php?action=item_remove_gt',
noState: true,
}
var data = {
__csrf_magic: csrfMagicToken,
host_template_id: <?php print get_request_var('host_template_id'); ?>,
id: <?php print get_request_var('id'); ?>
}
postUrl(options, data);
});
</script>
<?php
}
function template_item_remove_gt() {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('host_template_id');
/* ==================================================== */
db_execute_prepared(
'DELETE FROM host_template_graph
WHERE graph_template_id = ?
AND host_template_id = ?',
array(get_request_var('id'), get_request_var('host_template_id'))
);
raise_message(41);
}
function template_item_remove_dq_confirm() {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('host_template_id');
/* ==================================================== */
form_start('host_templates.php?action=edit&id' . get_request_var('host_template_id'));
html_start_box('', '100%', '', '3', 'center', '');
$query = db_fetch_row_prepared('SELECT * FROM snmp_query WHERE id = ?', array(get_request_var('id')));
?>
<tr>
<td class='topBoxAlt'>
<p><?php print __('Click \'Continue\' to delete the following Data Queries will be disassociated from the Device Template.'); ?></p>
<p><?php print __('Data Query Name: %s', html_escape($query['name'])); ?>'<br>
</td>
</tr>
<tr>
<td class='right'>
<input type='button' class='ui-button ui-corner-all ui-widget' id='cancel' value='<?php print __esc('Cancel'); ?>' onClick='$("#cdialog").dialog("close")' name='cancel'>
<input type='button' class='ui-button ui-corner-all ui-widget' id='continue' value='<?php print __esc('Continue'); ?>' name='continue' title='<?php print __esc('Remove Data Query'); ?>'>
</td>
</tr>
<?php
html_end_box();
form_end();
?>
<script type='text/javascript'>
$('#continue').click(function(data) {
var options = {
url: 'host_templates.php?action=item_remove_dq',
noState: true,
}
var data = {
__csrf_magic: csrfMagicToken,
host_template_id: <?php print get_request_var('host_template_id'); ?>,
id: <?php print get_request_var('id'); ?>
}
postUrl(options, data);
});
</script>
<?php
}
function template_item_remove_dq() {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('host_template_id');
/* ==================================================== */
db_execute_prepared(
'DELETE FROM host_template_snmp_query
WHERE snmp_query_id = ?
AND host_template_id = ?',
array(get_request_var('id'), get_request_var('host_template_id'))
);
raise_message(41);
}
function template_edit() {
global $fields_host_template_edit;
/* ================= input validation ================= */
get_filter_request_var('id');
/* ==================================================== */
if (!isempty_request_var('id')) {
$host_template = db_fetch_row_prepared(
'SELECT *
FROM host_template
WHERE id = ?',
array(get_request_var('id'))
);
$header_label = __esc('Device Templates [edit: %s]', $host_template['name']);
} else {
$header_label = __('Device Templates [new]');
set_request_var('id', 0);
}
form_start('host_templates.php', 'form_network');
html_start_box($header_label, '100%', true, '3', 'center', '');
draw_edit_form(
array(
'config' => array('no_form_tag' => 'true'),
'fields' => inject_form_variables($fields_host_template_edit, (isset($host_template) ? $host_template : array()))
)
);
/* we have to hide this button to make a form change in the main form trigger the correct
* submit action */
print "<div style='display:none;'><input type='submit' class='ui-button ui-corner-all ui-widget' value='" . __esc('Default Submit Button') . "'></div>";
html_end_box(true, true);
if (!isempty_request_var('id')) {
html_start_box(__('Associated Graph Templates'), '100%', '', '3', 'center', '');
$selected_graph_templates = db_fetch_assoc_prepared('SELECT
graph_templates.id,
graph_templates.name
FROM (graph_templates,host_template_graph)
WHERE graph_templates.id = host_template_graph.graph_template_id
AND host_template_graph.host_template_id = ?
ORDER BY graph_templates.name', array(get_request_var('id')));
$i = 0;
if (cacti_sizeof($selected_graph_templates)) {
foreach ($selected_graph_templates as $item) {
form_alternate_row("gt$i", true);
?>
<td class='left'>
<strong><?php print $i; ?>)</strong> <?php print html_escape($item['name']); ?>
</td>
<td class='right'>
<a class='delete deleteMarker fa fa-times' title='<?php print __esc('Delete'); ?>' href='<?php print html_escape('host_templates.php?action=item_remove_gt_confirm&id=' . $item['id'] . '&host_template_id=' . get_request_var('id')); ?>'></a>
</td>
<?php
form_end_row();
$i++;
}
} else {
print '<tr><td><em>' . __('No associated graph templates.') . '</em></td></tr>';
}
?>
<tr class='odd'>
<td colspan='2'>
<table>
<tr style='line-height:10px'>
<td class='nowrap templateAdd'>
<?php print __('Add Graph Template'); ?>
</td>
<td class='noHide'>
<?php form_dropdown('graph_template_id', db_fetch_assoc_prepared('SELECT gt.id, gt.name
FROM graph_templates AS gt
LEFT JOIN host_template_graph AS htg
ON gt.id=htg.graph_template_id
AND htg.host_template_id = ?
WHERE htg.host_template_id IS NULL
AND gt.id NOT IN (SELECT graph_template_id FROM snmp_query_graph)
ORDER BY gt.name', array(get_request_var('id'))), 'name', 'id', '', '', ''); ?>
</td>
<td class='noHide'>
<input type='button' class='ui-button ui-corner-all ui-widget' value='<?php print __esc('Add'); ?>' id='add_gt' title='<?php print __esc('Add Graph Template to Device Template'); ?>'>
</td>
</tr>
</table>
</td>
</tr>
<?php
html_end_box();
html_start_box(__('Associated Data Queries'), '100%', '', '3', 'center', '');
$selected_data_queries = db_fetch_assoc_prepared('SELECT snmp_query.id, snmp_query.name
FROM (snmp_query, host_template_snmp_query)
WHERE snmp_query.id = host_template_snmp_query.snmp_query_id
AND host_template_snmp_query.host_template_id = ?
ORDER BY snmp_query.name', array(get_request_var('id')));
$i = 0;
if (cacti_sizeof($selected_data_queries)) {
foreach ($selected_data_queries as $item) {
form_alternate_row("dq$i", true);
?>
<td class='left'>
<strong><?php print $i; ?>)</strong> <?php print html_escape($item['name']); ?>
</td>
<td class='right'>
<a class='delete deleteMarker fa fa-times' title='<?php print __esc('Delete'); ?>' href='<?php print html_escape('host_templates.php?action=item_remove_dq_confirm&id=' . $item['id'] . '&host_template_id=' . get_request_var('id')); ?>'></a>
</td>
<?php
form_end_row();
$i++;
}
} else {
print '<tr><td><em>' . __('No associated data queries.') . '</em></td></tr>';
}
?>
<tr class='odd'>
<td colspan='2'>
<table>
<tr style='line-height:10px;'>
<td class='nowrap queryAdd'>
<?php print __('Add Data Query'); ?>
</td>
<td class='noHide'>
<?php form_dropdown('snmp_query_id', db_fetch_assoc_prepared('SELECT snmp_query.id, snmp_query.name
FROM snmp_query LEFT JOIN host_template_snmp_query
ON (snmp_query.id = host_template_snmp_query.snmp_query_id AND host_template_snmp_query.host_template_id = ?)
WHERE host_template_snmp_query.host_template_id is null
ORDER BY snmp_query.name', array(get_request_var('id'))), 'name', 'id', '', '', ''); ?>
</td>
<td class='noHide'>
<input type='button' class='ui-button ui-corner-all ui-widget' value='<?php print __esc('Add'); ?>' id='add_dq' title='<?php print __esc('Add Data Query to Device Template'); ?>'>
</td>
</tr>
</table>
</td>
</tr>
<?php
html_end_box();
api_plugin_hook('device_template_edit');
}
form_save_button('host_templates.php', 'return');
?>
<script type='text/javascript'>
function deleteFinalize(options, data) {
$('#cdialog').dialog({
title: '<?php print __('Delete Item from Device Template'); ?>',
close: function() {
$('.delete').blur();
$('.selectable').removeClass('selected');
},
minHeight: 80,
minWidth: 500
});
}
$(function() {
$('#cdialog').remove();
$('#main').append("<div id='cdialog' class='cdialog'></div>");
$('.delete').click(function(event) {
event.preventDefault();
var options = {
url: $(this).attr('href'),
noState: true,
funcEnd: 'deleteFinalize',
elementId: 'cdialog',
};
loadUrl(options);
}).css('cursor', 'pointer');
$('#add_dq').click(function() {
var options = {
url: 'host_templates.php?action=item_add_dq',
noState: true,
}
var data = {
host_template_id: $('#id').val(),
snmp_query_id: $('#snmp_query_id').val(),
reindex_method: $('#reindex_method').val(),
__csrf_magic: csrfMagicToken
}
postUrl(options, data);
});
$('#add_gt').click(function() {
var options = {
url: 'host_templates.php?action=item_add_gt',
noState: true,
}
var data = {
host_template_id: $('#id').val(),
graph_template_id: $('#graph_template_id').val(),
__csrf_magic: csrfMagicToken
}
postUrl(options, data);
});
});
</script>
<?php
}
function template() {
global $actions, $item_rows, $device_classes;
/* ================= input validation and session storage ================= */
$filters = array(
'rows' => array(
'filter' => FILTER_VALIDATE_INT,
'pageset' => true,
'default' => '-1'
),
'page' => array(
'filter' => FILTER_VALIDATE_INT,
'default' => '1'
),
'filter' => array(
'filter' => FILTER_DEFAULT,
'pageset' => true,
'default' => ''
),
'class' => array(
'filter' => FILTER_CALLBACK,
'default' => '-1',
'pageset' => true,
'sort' => 'ASC',
'options' => array('options' => 'sanitize_search_string')
),
'sort_column' => array(
'filter' => FILTER_CALLBACK,
'default' => 'name',
'options' => array('options' => 'sanitize_search_string')
),
'sort_direction' => array(
'filter' => FILTER_CALLBACK,
'default' => 'ASC',
'options' => array('options' => 'sanitize_search_string')
),
'has_hosts' => array(
'filter' => FILTER_VALIDATE_REGEXP,
'options' => array('options' => array('regexp' => '(true|false)')),
'pageset' => true,
'default' => read_config_option('default_has') == 'on' ? 'true' : 'false'
)
);
validate_store_request_vars($filters, 'sess_ht');
/* ================= input validation ================= */
if (get_request_var('rows') == '-1') {
$rows = read_config_option('num_rows_table');
} else {
$rows = get_request_var('rows');
}
html_start_box(__('Device Templates'), '100%', '', '3', 'center', 'host_templates.php?action=edit');
?>
<tr class='even noprint'>
<td>
<form id='form_host_template' action='host_templates.php'>
<table class='filterTable'>
<tr>
<td>
<?php print __('Search'); ?>
</td>
<td>
<input type='text' class='ui-state-default ui-corner-all' id='filter' size='25' value='<?php print html_escape_request_var('filter'); ?>'>
</td>
<td>
<?php print __('Device Class'); ?>
</td>
<td>
<select id='class' onChange='applyFilter()'>
<option value='-1' <?php print (get_request_var('class') == '-1' ? ' selected>' : '>') . __('All'); ?></option>
<?php
if (cacti_sizeof($device_classes)) {
foreach ($device_classes as $key => $value) {
print "<option value='" . $key . "'";
if (get_request_var('class') == $key) {
print ' selected';
}
print '>' . html_escape($value) . "</option>\n";
}
}
?>
</select>
</td>
<td>
<?php print __('Device Templates'); ?>
</td>
<td>
<select id='rows' onChange='applyFilter()'>
<option value='-1' <?php print (get_request_var('rows') == '-1' ? ' selected>' : '>') . __('Default'); ?></option>
<?php
if (cacti_sizeof($item_rows)) {
foreach ($item_rows as $key => $value) {
print "<option value='" . $key . "'";
if (get_request_var('rows') == $key) {
print ' selected';
}
print '>' . html_escape($value) . "</option>\n";
}
}
?>
</select>
</td>
<td>
<span>
<input type='checkbox' id='has_hosts' <?php print(get_request_var('has_hosts') == 'true' ? 'checked' : ''); ?>>
<label for='has_hosts'><?php print __('Has Devices'); ?></label>
</span>
</td>
<td>
<span>
<input type='button' class='ui-button ui-corner-all ui-widget' id='refresh' value='<?php print __esc('Go'); ?>' title='<?php print __esc('Set/Refresh Filters'); ?>'>
<input type='button' class='ui-button ui-corner-all ui-widget' id='clear' value='<?php print __esc('Clear'); ?>' title='<?php print __esc('Clear Filters'); ?>'>
</span>
</td>
</tr>
</table>
</form>
</td>
<script type='text/javascript'>
function applyFilter() {
strURL = 'host_templates.php';
strURL += '?filter=' + $('#filter').val();
strURL += '&class=' + $('#class').val();
strURL += '&rows=' + $('#rows').val();
strURL += '&has_hosts=' + $('#has_hosts').is(':checked');
loadUrl({
url: strURL
})
}
function clearFilter() {
strURL = 'host_templates.php?clear=1';
loadUrl({
url: strURL
})
}
$(function() {
$('#refresh, #has_hosts').click(function() {
applyFilter();
});
$('#clear').click(function() {
clearFilter();
});
$('#form_host_template').submit(function(event) {
event.preventDefault();
applyFilter();
});
});
</script>
</tr>
<?php
html_end_box();
/* form the 'where' clause for our main sql query */
$sql_where = '';
if (get_request_var('filter') != '') {
$sql_where .= 'WHERE (host_template.name LIKE ' . db_qstr('%' . get_request_var('filter') . '%') . ')';
}
if (get_request_var('class') != '-1') {
$sql_where .= 'WHERE (host_template.class = ' . db_qstr(get_request_var('class')) . ')';
}
if (get_request_var('has_hosts') == 'true') {
$sql_having = 'HAVING hosts > 0';
} else {
$sql_having = '';
}
$total_rows = db_fetch_cell("SELECT COUNT(*)
FROM host_template
$sql_where
$sql_having");
$sql_order = get_order_string();
$sql_limit = ' LIMIT ' . ($rows * (get_request_var('page') - 1)) . ',' . $rows;
$template_list = db_fetch_assoc("SELECT
host_template.id, host_template.name, host_template.class, devices AS hosts
FROM host_template
$sql_where
$sql_having
$sql_order
$sql_limit");
$display_text = array(
'name' => array(
'display' => __('Device Template Name'),
'align' => 'left',
'sort' => 'ASC',
'tip' => __('The name of this Device Template.')
),
'host_template.class' => array(
'display' => __('Device Class'),
'align' => 'left',
'sort' => 'ASC',
'tip' => __('The Class of this Device Template. The Class Name should be representative of it\'s function.')
),
'host_template.id' => array(
'display' => __('ID'),
'align' => 'right',
'sort' => 'ASC',
'tip' => __('The internal database ID for this Device Template. Useful when performing automation or debugging.')
),
'nosort' => array(
'display' => __('Deletable'),
'align' => 'right',
'sort' => '',
'tip' => __('Device Templates in use cannot be Deleted. In use is defined as being referenced by a Device.')
),
'hosts' => array(
'display' => __('Devices Using'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The number of Devices using this Device Template.')
)
);
$nav = html_nav_bar('host_templates.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, cacti_sizeof($display_text) + 1, __('Device Templates'), 'page', 'main');
form_start('host_templates.php', 'chk');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false);
$i = 0;
if (cacti_sizeof($template_list)) {
foreach ($template_list as $template) {
if ($template['hosts'] > 0) {
$disabled = true;
} else {
$disabled = false;
}
form_alternate_row('line' . $template['id'], true, $disabled);
form_selectable_cell(filter_value($template['name'], get_request_var('filter'), 'host_templates.php?action=edit&id=' . $template['id']), $template['id']);
if ($template['class'] != '') {
form_selectable_cell($device_classes[$template['class']], $template['id']);
} else {
form_selectable_cell(__('Unassigned'), $template['id']);
}
form_selectable_cell($template['id'], $template['id'], '', 'right');
form_selectable_cell($disabled ? __('No') : __('Yes'), $template['id'], '', 'right');
form_selectable_cell('<a class="linkEditMain" href="' . html_escape('host.php?reset=true&host_template_id=' . $template['id']) . '">' . number_format_i18n($template['hosts'], '-1') . '</a>', $template['id'], '', 'right');
form_checkbox_cell($template['name'], $template['id'], $disabled);
form_end_row();
}
} else {
print "<tr class='tableRow'><td colspan='" . (cacti_sizeof($display_text) + 1) . "'><em>" . __('No Device Templates Found') . "</em></td></tr>\n";
}
html_end_box(false);
if (cacti_sizeof($template_list)) {
print $nav;
}
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($actions);
form_end();
}