forked from librenms/librenms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajax_listports.php
34 lines (28 loc) · 947 Bytes
/
ajax_listports.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
<?php
/**
* LibreNMS
*
* This file is part of LibreNMS.
*
* @copyright (C) 2006 - 2012 Adam Armstrong
*/
use LibreNMS\Util\Debug;
$init_modules = ['web', 'auth'];
require realpath(__DIR__ . '/..') . '/includes/init.php';
if (! Auth::check()) {
exit('Unauthorized');
}
Debug::set($_REQUEST['debug']);
if (is_numeric($_GET['device_id'])) {
// use php to sort since we need call cleanPort
$interface_map = [];
foreach (dbFetchRows('SELECT * FROM ports WHERE device_id = ?', [$_GET['device_id']]) as $interface) {
$interface = cleanPort($interface);
$interface_map[$interface['label']] = $interface;
}
ksort($interface_map);
foreach ($interface_map as $interface) {
$string = addslashes(html_entity_decode($interface['label'] . ' - ' . $interface['ifAlias']));
echo "obj.options[obj.options.length] = new Option('" . $string . "','" . $interface['port_id'] . "');\n";
}
}