-
Notifications
You must be signed in to change notification settings - Fork 25
/
mactrack_macwatch.php
448 lines (368 loc) · 13.6 KB
/
mactrack_macwatch.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
<?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('./plugins/mactrack/lib/mactrack_functions.php');
$macw_actions = array(
1 => __('Delete', 'mactrack'),
2 => __('Disable', 'mactrack')
);
set_default_action();
switch (get_request_var('action')) {
case 'save':
form_save();
break;
case 'actions':
form_actions();
break;
case 'edit':
top_header();
mactrack_macw_edit();
bottom_footer();
break;
default:
top_header();
mactrack_macw();
bottom_footer();
break;
}
/* --------------------------
The Save Function
-------------------------- */
function form_save() {
if ((isset_request_var('save_component_macw')) && (isempty_request_var('add_dq_y'))) {
$mac_id = api_mactrack_macw_save(get_nfilter_request_var('mac_id'),
get_nfilter_request_var('mac_address'), get_nfilter_request_var('name'),
get_nfilter_request_var('ticket_number'), get_nfilter_request_var('description'),
get_nfilter_request_var('notify_schedule'), get_nfilter_request_var('email_addresses'));
if ($mac_id) {
raise_message(1);
} else {
raise_message(2);
}
header('Location: mactrack_macwatch.php?action=edit&header=false&id=' . (empty($mac_id) ? get_request_var('mac_id') : $mac_id));
}
}
/* ------------------------
The 'actions' function
------------------------ */
function form_actions() {
global $config, $macw_actions, $fields_mactrack_macw_edit;
/* ================= input validation ================= */
get_filter_request_var('drp_action');
/* ==================================================== */
/* 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_request_var('drp_action') == '1') { /* delete */
for ($i=0; $i<cacti_sizeof($selected_items); $i++) {
api_mactrack_macw_remove($selected_items[$i]);
}
}
header('Location: mactrack_macwatch.php');
exit;
}
}
/* setup some variables */
$macw_list = ''; $i = 0;
/* loop through each of the mac watch items 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]);
/* ==================================================== */
$macw_info = db_fetch_cell_prepared('SELECT name
FROM mac_track_macwatch
WHERE mac_id = ?',
array($matches[1]));
$macw_list .= '<li>' . $macw_info . '</li>';
$macw_array[$i] = $matches[1];
$i++;
}
}
top_header();
form_start('mactrack_macwatch.php');
html_start_box($macw_actions[get_request_var('drp_action')], '60%', '', '3', 'center', '');
if (!isset($macw_array)) {
raise_message(40);
header('Location: mactrack_macwatch.php');
exit;
} else {
$save_html = "<input type='submit' name='save' value='" . __esc('Continue', 'mactrack') . "'>";
if (get_request_var('drp_action') == '1') { /* delete */
print "<tr>
<td class='textArea'>
<p>" . __('Click \'Continue\' to delete the following watched Mac\'s?', 'mactrack') . "</p>
<ul>$macw_list</ul>
</td>
</tr>";
}
}
print "<tr>
<td align='right' class='saveRow'>
<input type='hidden' name='action' value='actions'>
<input type='hidden' name='selected_items' value='" . (isset($macw_array) ? serialize($macw_array) : '') . "'>
<input type='hidden' name='drp_action' value='" . get_request_var('drp_action') . "'>" . ($save_html != '' ? "
<input type='button' name='cancel' onClick='cactiReturnTo()' value='" . __esc('Cancel', 'mactrack') . "'>
$save_html" : "<input type='button' onClick='cactiReturnTo()' name='cancel' value='" . __esc('Return', 'mactrack') . "'>") . "
</td>
</tr>";
html_end_box();
form_end();
bottom_footer();
}
function api_mactrack_macw_save($mac_id, $mac_address, $name, $ticket_number, $description, $notify_schedule, $email_addresses) {
$save['mac_id'] = $mac_id;
$save['mac_address'] = form_input_validate($mac_address, 'mac_address', '', false, 3);
$save['name'] = form_input_validate($name, 'name', '', false, 3);
$save['ticket_number'] = form_input_validate($ticket_number, 'ticket_number', '', false, 3);
$save['description'] = form_input_validate($description, 'description', '', false, 3);
$save['notify_schedule'] = form_input_validate($notify_schedule, 'notify_schedule', '', false, 3);
$save['email_addresses'] = form_input_validate($email_addresses, 'email_addresses', '', false, 3);
$mac_id = 0;
if (!is_error_message()) {
$mac_id = sql_save($save, 'mac_track_macwatch', 'mac_address', false);
if ($mac_id) {
raise_message(1);
} else {
raise_message(2);
}
}
return $mac_id;
}
function api_mactrack_macw_remove($mac_id) {
db_execute_prepared('DELETE FROM mac_track_macwatch WHERE mac_id = ?', array($mac_id));
}
/* ---------------------
MacWatch Functions
--------------------- */
function mactrack_macw_get_macw_records(&$sql_where, $rows, $apply_limits = true) {
$sql_where = '';
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
$sql_where = "WHERE (mac_address LIKE '%" . get_request_var('filter') . "%' OR " .
"name LIKE '%" . get_request_var('filter') . "%' OR " .
"ticket_number LIKE '%" . get_request_var('filter') . "%' OR " .
"description LIKE '%" . get_request_var('filter') . "%')";
}
$sql_order = get_order_string();
if ($apply_limits) {
$sql_limit = ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ',' . $rows;
} else {
$sql_limit = '';
}
$query_string = "SELECT *
FROM mac_track_macwatch
$sql_where
$sql_order
$sql_limit";
return db_fetch_assoc($query_string);
}
function mactrack_macw_edit() {
global $fields_mactrack_macw_edit;
/* ================= input validation ================= */
get_filter_request_var('mac_id');
/* ==================================================== */
if (!isempty_request_var('mac_id')) {
$mac_record = db_fetch_row_prepared('SELECT *
FROM mac_track_macwatch
WHERE mac_id = ?',
array(get_request_var('mac_id')));
$header_label = __('Mactrack MacWatch [edit: %s]', $mac_record['name'], 'mactrack');
} else {
$header_label = __('Mactrack MacWatch [new]', 'mactrack');
}
form_start('mactrack_macwatch.php', 'mactrack_macwatch');
html_start_box($header_label, '100%', '', '3', 'center', '');
draw_edit_form(
array(
'config' => array('no_form_tag' => true),
'fields' => inject_form_variables($fields_mactrack_macw_edit, (isset($mac_record) ? $mac_record : array()))
)
);
html_end_box();
form_save_button('mactrack_macwatch.php', 'return');
}
function mactrack_macw() {
global $macw_actions, $config, $item_rows;
/* ================= 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_CALLBACK,
'pageset' => true,
'default' => '',
'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')
)
);
validate_store_request_vars($filters, 'sess_mt_macw');
/* ================= input validation ================= */
if (get_request_var('rows') == -1) {
$rows = read_config_option('num_rows_table');
}elseif (get_request_var('rows') == -2) {
$rows = 999999;
} else {
$rows = get_request_var('rows');
}
html_start_box(__('Mactrack MacWatch Filters', 'mactrack'), '100%', '', '3', 'center', 'mactrack_macwatch.php?action=edit');
mactrack_macw_filter();
html_end_box();
$sql_where = '';
$macw = mactrack_macw_get_macw_records($sql_where, $rows);
$total_rows = db_fetch_cell("SELECT count(*) FROM mac_track_macwatch $sql_where");
$display_text = array(
'name' => array(
'display' => __('Watch Name', 'mactrack'),
'sort' => 'ASC'
),
'mac_address' => array(
'display' => __('Mac Address', 'mactrack'),
'sort' => 'ASC'
),
'ticket_number' => array(
'display' => __('Ticket Number', 'mactrack'),
'sort' => 'ASC'
),
'date_first_seen' => array(
'display' => __('First Seen', 'mactrack'),
'sort' => 'ASC'
),
'date_last_seen' => array(
'display' => __('Last Seen', 'mactrack'),
'sort' => 'ASC'
)
);
$columns = cacti_sizeof($display_text) + 1;
$nav = html_nav_bar('mactrack_macwatch.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, $columns, __('Watches', 'mactrack'), 'page', 'main');
form_start('mactrack_macwatch.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'));
$i = 0;
if (cacti_sizeof($macw)) {
foreach ($macw as $mac) {
form_alternate_row('line' . $mac['mac_id'], true);
form_selectable_cell(filter_value($mac['name'], get_request_var('filter'), 'mactrack_macwatch.php?action=edit&mac_id=' . $mac['mac_id']), $mac['mac_id']);
form_selectable_cell(filter_value($mac['mac_address'], get_request_var('filter')), $mac['mac_id']);
form_selectable_cell(filter_value($mac['ticket_number'], get_request_var('filter')), $mac['mac_id']);
form_selectable_cell($mac['date_first_seen'] == '0000-00-00 00:00:00' ? __('N/A', 'mactrack') : $mac['date_first_seen'], $mac['mac_id']);
form_selectable_cell($mac['date_last_seen'] == '0000-00-00 00:00:00' ? __('N/A', 'mactrack') : $mac['date_last_seen'], $mac['mac_id']);
form_checkbox_cell($mac['name'], $mac['mac_id']);
form_end_row();
}
} else {
print '<tr><td colspan="' . $columns . '"><em>' . __('No Mactrack Watched Macs Found', 'mactrack') . '</em></td></tr>';
}
html_end_box(false);
if (cacti_sizeof($macw)) {
print $nav;
}
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($macw_actions);
form_end();
}
function mactrack_macw_filter() {
global $item_rows;
?>
<tr class='even'>
<td>
<form id='mactrack'>
<table class='filterTable'>
<tr>
<td>
<?php print __('Search', 'mactrack');?>
</td>
<td>
<input type='text' id='filter' size='25' value='<?php print get_request_var('filter');?>'>
</td>
<td>
<?php print __('Watches', 'mactrack');?>
</td>
<td>
<select id='rows' onChange='applyFilter()'>
<option value='-1'<?php if (get_request_var('rows') == '-1') {?> selected<?php }?>><?php print __('Default', 'mactrack');?></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 '>' . $value . '</option>';
}
}
?>
</select>
</td>
<td>
<span class='nowrap'>
<input type='submit' id='go' value='<?php print __esc('Go', 'mactrack');?>'>
<input type='button' id='clear' value='<?php print __esc('Clear', 'mactrack');?>'>
</span>
</td>
</tr>
</table>
<input type='hidden' id='page' value='<?php print get_request_var('page');?>'>
</form>
<script type='text/javascript'>
function applyFilter() {
strURL = urlPath+'plugins/mactrack/mactrack_macwatch.php?header=false';
strURL += '&filter=' + $('#filter').val();
strURL += '&rows=' + $('#rows').val();
loadPageNoHeader(strURL);
}
function clearFilter() {
strURL = urlPath+'plugins/mactrack/mactrack_macwatch.php?header=false&clear=true';
loadPageNoHeader(strURL);
}
$(function() {
$('#mactrack').submit(function(event) {
event.preventDefault();
applyFilter();
});
$('#clear').click(function() {
clearFilter();
});
});
</script>
</td>
</td>
</tr>
<?php
}