-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathwmi_queries.php
477 lines (403 loc) · 13.9 KB
/
wmi_queries.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
<?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/ |
+-------------------------------------------------------------------------+
*/
chdir('../../');
include('./include/auth.php');
include_once($config['base_path'] . '/plugins/wmi/functions.php');
include_once($config['base_path'] . '/plugins/wmi/linux_wmi.php');
$ds_actions = array(
1 => __('Delete', 'wmi')
);
if (!isset_request_var('tab')) {
set_request_var('tab', 'queries');
}
global $wmi_frequencies;
set_default_action();
$ns = array('root\\\\CIMV2', 'root\\\\MSCluster');
$query_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name', 'wmi'),
'description' => __('Give this query a meaningful name that will be displayed.', 'wmi'),
'value' => '|arg1:name|',
'max_length' => '64',
),
'frequency' => array(
'method' => 'drop_array',
'friendly_name' => __('Collection Frequency', 'wmi'),
'description' => __('When this WMI Query is added to a Device, this is the Frequency of Data Collection that will be used.', 'wmi'),
'value' => '|arg1:frequency|',
'default' => '300',
'array' => $wmi_frequencies
),
'enabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Enabled', 'wmi'),
'description' => __('Should this Query be enabled on hosts using it', 'wmi'),
'value' => '|arg1:enabled|',
'default' => ''
),
'namespace' => array(
'method' => 'textbox',
'friendly_name' => __('Namespace', 'wmi'),
'description' => __('The Namespace for this Query.', 'wmi'),
'value' => '|arg1:namespace|',
'max_length' => '64',
),
'query' => array(
'method' => 'textarea',
'friendly_name' => __('Query', 'wmi'),
'description' => __('The Query to execute for gathering WMI data from the device.', 'wmi'),
'value' => '|arg1:query|',
'textarea_rows' => '4',
'textarea_cols' => '80',
'max_length' => '1024',
),
'primary_key' => array(
'method' => 'textbox',
'friendly_name' => __('Primary Key', 'wmi'),
'description' => __('When a WMI Query returns multiple rows, which Keyname will be the primary key or index? If the Primary Key includes multiple columns, separate them with a comma.', 'wmi'),
'value' => '|arg1:primary_key|',
'max_length' => '128',
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
)
);
switch (get_request_var('action')) {
case 'actions':
actions_queries();
break;
case 'save':
save_queries();
break;
case 'edit':
top_header();
display_tabs();
edit_queries();
bottom_footer();
break;
default:
top_header();
display_tabs();
show_queries();
bottom_footer();
break;
}
function actions_queries() {
global $colors, $ds_actions, $config;
/* ================= input validation ================= */
input_validate_input_number(get_request_var_post('drp_action'));
/* ==================================================== */
if (isset_request_var('selected_items')) {
$selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items'));
if ($selected_items != false) {
if (get_request_var('drp_action') == '1') {
for ($i=0; $i<count($selected_items); $i++) {
/* ================= input validation ================= */
input_validate_input_number($selected_items[$i]);
/* ==================================================== */
db_execute_prepared('DELETE FROM host_wmi_query WHERE wmi_query_id = ?', array($selected_items[$i]));
db_execute_prepared('DELETE FROM host_wmi_cache WHERE wmi_query_id = ?', array($selected_items[$i]));
db_execute_prepared('DELETE FROM host_template_wmi_query WHERE wmi_query_id = ?', array($selected_items[$i]));
db_execute_prepared('DELETE FROM wmi_wql_queries WHERE id = ?', array($selected_items[$i]));
}
}
}
header('Location: wmi_queries.php?header=false');
exit;
}
/* setup some variables */
$query_list = '';
/* loop through each of the queries 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]);
/* ==================================================== */
$query_list .= '<li>' . db_fetch_cell_prepared('SELECT name
FROM wmi_wql_queries
WHERE id = ?',
array($matches[1])) . '</li>';
$query_array[] = $matches[1];
}
}
top_header();
form_start('wmi_queries.php');
html_start_box($ds_actions[get_request_var('drp_action')], '60%', '', '3', 'center', '');
if (get_request_var('drp_action') == '1') { /* Delete */
print "<tr>
<td colspan='2' class='textArea'>
<p>" . __('Click \'Continue\' to Delete the following WMI Queries.', 'wmi') . "</p>
<div class='itemlist'><ul>$query_list</ul></div>
</td>
</tr>";
}
if (!isset($query_array)) {
print "<tr><td class='odd'><span class='textError'>" . __('You must select at least one WMI Query.', 'wmi') . "</span></td></tr>";
$save_html = "<input type='button' value='" . __('Return', 'wmi') . "' onClick='cactiReturnTo()'>";
}else{
$save_html = "<input type='button' value='" . __('Cancel', 'wmi') . "' onClick='cactiReturnTo()'> <input type='submit' value='" . __('Continue', 'wmi') . "' title='" . __('Delete WMI Query', 'wmi') . "'>";
}
print "<tr>
<td class='saveRow'>
<input type='hidden' name='action' value='actions'>
<input type='hidden' name='selected_items' value='" . (isset($query_array) ? serialize($query_array) : '') . "'>
<input type='hidden' name='drp_action' value='" . get_request_var('drp_action') . "'>
$save_html
</td>
</tr>";
html_end_box();
form_end();
bottom_footer();
}
function save_queries() {
if (isset_request_var('id')) {
$save['id'] = get_filter_request_var('id');
} else {
$save['id'] = '';
}
$save['name'] = get_nfilter_request_var('name');
$save['hash'] = get_hash_wmi_query($save['id']);
$save['namespace'] = get_nfilter_request_var('namespace');
$save['frequency'] = get_filter_request_var('frequency');
$save['enabled'] = isset_request_var('enabled') ? 'on':'';
$save['query'] = get_nfilter_request_var('query');
$save['primary_key'] = get_nfilter_request_var('primary_key');
$id = sql_save($save, 'wmi_wql_queries', 'id');
if (is_error_message()) {
header('Location: wmi_queries.php?header=false&action=edit&id=' . (empty($id) ? get_request_var('id') : $id));
exit;
}
header('Location: wmi_queries.php?header=false');
exit;
}
function edit_queries() {
global $query_edit;
$query = array();
if (isset_request_var('id')) {
$query = db_fetch_row_prepared('SELECT *
FROM wmi_wql_queries
WHERE id= ?',
array(get_filter_request_var('id')));
$header_label = __('Query [edit: %s]', $query['name'], 'wmi');
}else{
$header_label = __('Query [new]', 'wmi');
}
form_start('wmi_queries.php', 'query_edit');
html_start_box($header_label, '100%', '', '3', 'center', '');
draw_edit_form(
array(
'config' => array('no_form_tag' => true),
'fields' => inject_form_variables($query_edit, $query)
)
);
html_end_box();
form_save_button('wmi_queries.php');
}
function query_filter() {
global $item_rows;
html_start_box( __('WMI Queries', 'wmi'), '100%', '', '3', 'center', 'wmi_queries.php?action=edit');
?>
<tr class='even'>
<td>
<form id='form_wmi' action='queries.php'>
<table class='filterTable'>
<tr>
<td>
<?php print __('Search', 'wmi');?>
</td>
<td>
<input type='text' id='filter' size='25' value='<?php print html_escape_request_var('filter');?>'>
</td>
<td>
<?php print __('Queries', 'wmi');?>
</td>
<td>
<select id='rows' onChange='applyFilter()'>
<option value='-1'<?php print (get_request_var('rows') == '-1' ? ' selected>':'>') . __('Default', 'wmi');?></option>
<?php
if (sizeof($item_rows)) {
foreach ($item_rows as $key => $value) {
print "<option value='" . $key . "'"; if (get_request_var('rows') == $key) { print ' selected'; } print '>' . $value . "</option>";
}
}
?>
</select>
</td>
<td>
<input type='checkbox' id='has_graphs' <?php print (get_request_var('has_graphs') == 'true' ? 'checked':'');?>>
</td>
<td>
<label for='has_graphs'><?php print __('Has Graphs', 'wmi');?></label>
</td>
<td>
<input type='button' Value='<?php print __x('filter: use', 'Go');?>' id='refresh'>
</td>
<td>
<input type='button' Value='<?php print __x('filter: reset', 'Clear');?>' id='clear'>
</td>
</tr>
</table>
<input type='hidden' id='page' value='<?php print get_filter_request_var('page');?>'>
</form>
<script type='text/javascript'>
function applyFilter() {
strURL = 'wmi_queries.php?filter='+$('#filter').val()+'&rows='+$('#rows').val()+'&page='+$('#page').val()+'&has_graphs='+$('#has_graphs').is(':checked')+'&header=false';
loadPageNoHeader(strURL);
}
function clearFilter() {
strURL = 'wmi_queries.php?clear=1&header=false';
loadPageNoHeader(strURL);
}
$(function() {
$('#refresh').click(function() {
applyFilter();
});
$('#has_graphs').click(function() {
applyFilter();
});
$('#clear').click(function() {
clearFilter();
});
$('#form_wmi').submit(function(event) {
event.preventDefault();
applyFilter();
});
});
</script>
</td>
</tr>
<?php
html_end_box();
}
function show_queries() {
global $action, $host, $username, $password, $command;
global $config, $ds_actions;
/* ================= 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' => ''
),
'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')
),
);
validate_store_request_vars($filters, 'sess_wmiq');
/* ================= input validation ================= */
$total_rows = 0;
$queries = array();
if (get_request_var('rows') == '-1') {
$rows = read_config_option('num_rows_table');
}else{
$rows = get_request_var('rows');
}
if (get_request_var('filter') != '') {
$sql_where = 'WHERE name LIKE ' . db_qstr('%' . get_request_var('filter') . '%');
} else {
$sql_where = '';
}
query_filter();
$queries = db_fetch_assoc("SELECT *
FROM wmi_wql_queries
$sql_where
ORDER BY name
LIMIT " . ($rows*(get_request_var('page')-1)) . ", " . $rows);
$total_rows = sizeof($queries);
$nav = html_nav_bar('wmi_queries.php', MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 5, __('Queries', 'wmi'), 'page', 'main');
form_start('wmi_queries.php', 'chk');
print $nav;
html_start_box(__('WMI Queries', 'wmi'), '100%', '', '3', 'center', 'wmi_queries.php?action=edit');
html_header_checkbox(
array(
'name' => array(
'display' => __('Name', 'wmi'),
'align' => 'left',
'sort' => 'ASC'
),
'id' => array(
'display' => __('ID', 'wmi'),
'align' => 'right',
'sort' => 'ASC'
),
'frequency' => array(
'display' => __('Frequency', 'wmi'),
'align' => 'right',
'sort' => 'ASC'
),
'namespace' => array(
'display' => __('Namespace', 'wmi'),
'align' => 'left',
'sort' => 'ASC'
),
'query' => array(
'display' => __('WQL Query', 'wmi'),
'align' => 'left',
'sort' => 'ASC'
),
'primary_key' => array(
'display' => __('Primary Key', 'wmi'),
'align' => 'left',
'sort' => 'ASC'
)
)
);
if (!empty($queries)) {
foreach ($queries as $row) {
form_alternate_row('line' . $row['id'], true);
form_selectable_cell('<a class="linkEditMain" href="' . htmlspecialchars('wmi_queries.php?&action=edit&id=' . $row['id']) . '">' . $row['name'] . '</a>', $row['id']);
form_selectable_cell($row['id'], $row['id'], '', 'right');
form_selectable_cell($row['frequency'], $row['id'], '', 'right');
form_selectable_cell($row['namespace'], $row['id']);
form_selectable_cell($row['query'], $row['id']);
form_selectable_cell($row['primary_key'], $row['id']);
form_checkbox_cell($row['name'], $row['id']);
form_end_row();
}
}
html_end_box(false);
if (sizeof($queries)) {
print $nav;
}
draw_actions_dropdown($ds_actions);
form_end();
}