$value) {
if (!$value) {
continue;
}
$var = strtolower($var);
switch ($var) {
case 'up': $where[] = '(`ifAdminStatus` = "up" AND `ifOperStatus` IN ("up", "testing", "monitoring") AND `ignore` = 0 AND `deleted` = 0)'; break;
case 'down': $where[] = '(`ifAdminStatus` = "up" AND `ifOperStatus` IN ("lowerLayerDown", "down"))'; break;
case 'shutdown': $where[] = '`ifAdminStatus` = "down"'; break;
/* by port type
case 'ethernet': $where[] = '`ifType` IN ("ethernetCsmacd", "iso88023Csmacd", "gigabitEthernet", "fastEther", "fastEtherFX")'; break;
case 'virtual': $where[] = '`ifType` IN ("other", "softwareLoopback", "bridge", "propVirtual", "l2vlan", "l3ipvlan")'; break;
case 'optical': $where[] = '`ifType` LIKE "optical%"'; break;
case 'docs': $where[] = '`ifType` LIKE "docs%"'; break;
case 'dsl': $where[] = '`ifType` IN ("adsl", "vdsl")'; break;
*/
case 'ignore':
case 'ignored': $where[] = '`ignore` = 1'; break;
case 'delete':
case 'deleted': $where[] = '`deleted` = 1'; break;
case 'all':
// hide all
return '0';
//return [ 0 ];
default:
// by port type
if (isset($GLOBALS['config']['port_types'][$var])) {
$where[] = generate_query_values($GLOBALS['config']['port_types'][$var]['iftype'], 'ifType');
break;
}
}
}
if (empty($where)) {
return '';
}
return '`port_id` NOT IN (' . dbMakeQuery('SELECT `port_id` FROM `ports` WHERE `device_id` = ? AND ((' . implode(') OR (', $where) . '))', [ $device['device_id'] ]) . ')';
//$ids = dbFetchColumn('SELECT `port_id` FROM `ports` WHERE `device_id` = ? AND ((' . implode(') OR (', $where) . '))', [ $device['device_id'] ]);
//return generate_query_values_ng($ids, 'port_id', '!=');
}
function build_ports_where_array_ng($vars)
{
return remove_and_from_array(build_ports_where_array($vars));
}
/**
* Build ports WHERE array
*
* This function returns an array of "WHERE" statements from a $vars array.
* The returned array can be imploded and used on the ports table.
* Originally extracted from the /ports/ page
*
* @param array $vars
*
* @return array
*/
function build_ports_where_array($vars)
{
$where = [];
foreach ($vars as $var => $value) {
if (!safe_empty($value)) {
switch ($var) {
case 'location':
$where[] = generate_query_values_and($value, $var);
break;
case 'device_id':
$where[] = generate_query_values_and($value, 'ports.device_id');
break;
case 'group':
case 'group_id':
$values = get_group_entities($value);
$where[] = generate_query_values_and($values, 'ports.port_id');
break;
case 'device_group_id':
case 'device_group':
$values = get_group_entities($value, 'device');
$where[] = generate_query_values_and($values, 'ports.device_id');
break;
case 'disable':
$var = 'disabled';
case 'disabled': // FIXME. 'disabled' column never used in ports..
case 'deleted':
case 'ignore':
case 'ifSpeed':
case 'ifType':
case 'ifVlan':
case 'port_id':
$where[] = generate_query_values_and($value, 'ports.' . $var);
break;
case 'hostname':
case 'ifAlias':
case 'ifDescr':
$where[] = generate_query_values_and($value, $var, '%LIKE%');
break;
case 'label':
case 'port_label':
$where[] = generate_query_values_and($value, 'port_label', '%LIKE%');
break;
case 'mac':
case 'ifPhysAddress':
$value = str_replace(['.', '-', ':'], '', $value);
$where[] = generate_query_values_and($value, 'ifPhysAddress', '%LIKE%');
break;
case 'port_descr_type':
$where[] = generate_query_values_and($value, $var, 'LIKE');
break;
case 'errors':
if (get_var_true($value)) {
$where[] = " AND (`ifInErrors_delta` > 0 OR `ifOutErrors_delta` > 0)";
}
break;
case 'alerted':
if (get_var_true($value)) {
// this is just state=down
//$where[] = ' AND `ifAdminStatus` = "up" AND (`ifOperStatus` = "lowerLayerDown" OR `ifOperStatus` = "down")';
$var = 'state';
$value = 'down';
}
// do not break here
case 'state':
// Allowed multiple states as array
$state_where = [];
foreach ((array)$value as $state) {
switch ($state) {
case 'up': $state_where[] = '`ifAdminStatus` = "up" AND `ifOperStatus` IN ("up", "testing", "monitoring")'; break;
case 'down': $state_where[] = '`ifAdminStatus` = "up" AND `ifOperStatus` IN ("lowerLayerDown", "down")'; break;
case 'shutdown':
case 'admindown': $state_where[] = '`ifAdminStatus` = "down"'; break;
case 'adminup': $state_where[] = '`ifAdminStatus` != "down"'; break;
}
}
switch (count($state_where)) {
case 0:
// incorrect state passed, ignore
break;
case 1:
$where[] = ' AND ' . $state_where[0];
break;
default:
$where[] = ' AND ((' . implode(') OR (', $state_where) . '))';
}
break;
case 'cbqos':
if ($value && $value !== 'no') {
$where[] = generate_query_values_and($GLOBALS['cache']['ports']['cbqos'], 'ports.port_id');
}
break;
case 'mac_accounting':
if ($value && $value !== 'no') {
$where[] = generate_query_values_and($GLOBALS['cache']['ports']['mac_accounting'], 'ports.port_id');
}
break;
}
}
}
return $where;
}
/**
* Returns a string containing an HTML table to be used in popups for the port entity type
*
* @param array $port array
*
* @return string Table containing port header for popups
*/
function generate_port_popup_header($port)
{
// Push through processing function to set attributes
humanize_port($port);
$contents = generate_box_open();
$contents .= '
';
$contents .= generate_box_close();
return $contents;
}
/**
* Returns a string containing an HTML to be used as a port popups
*
* @param array $port array
* @param string $text to be used as port label
* @param string $type graph type to be used in graphs (bits, nupkts, etc)
*
* @return string HTML port popup contents
*/
function generate_port_popup($port, $text = NULL, $type = NULL)
{
if (!isset($port['os'])) {
$port = array_merge($port, device_by_id_cache($port['device_id']));
}
humanize_port($port);
if (!$text) {
$text = escape_html($port['port_label']);
}
if ($type) {
$port['graph_type'] = $type;
}
if (!isset($port['graph_type'])) {
$port['graph_type'] = 'port_bits';
}
if (!isset($port['os'])) {
$port = array_merge($port, device_by_id_cache($port['device_id']));
}
$content = generate_device_popup_header($port);
$content .= generate_port_popup_header($port);
if ($type != "none") {
$content .= '';
//$content .= generate_box_open(array('body-style' => 'width: 700px;'));
$graph_array['type'] = $port['graph_type'];
$graph_array['legend'] = "yes";
$graph_array['height'] = "100";
$graph_array['width'] = "275";
$graph_array['to'] = get_time();
$graph_array['from'] = get_time('day');
$graph_array['id'] = $port['port_id'];
$content .= generate_graph_tag($graph_array);
$graph_array['from'] = get_time('week');
$content .= generate_graph_tag($graph_array);
$graph_array['from'] = get_time('month');
$content .= generate_graph_tag($graph_array);
$graph_array['from'] = get_time('year');
$content .= generate_graph_tag($graph_array);
$content .= "
";
//$content .= generate_box_close();
}
return $content;
}
/**
* Returns an HTML port page link with mouse-over popup to permitted users or a text label to non-permitted users
*
* @param array $port array
* @param string $text text to be used as port label
* @param string $type graph type to be used in graphs (bits, nupkts, etc)
*
* @return string HTML link or text string
*/
function generate_port_link($port, $text = NULL, $type = NULL, $escape = FALSE, $short = FALSE)
{
humanize_port($port);
// Fixme -- does this function even need alternative $text? I think not. It's a hangover from before label.
// Sometime in $text included html
if (empty($text)) {
$text = $short ? $port['port_label_short'] : $port['port_label'];
$escape = TRUE; // FORCE label escaping
}
if (port_permitted($port['port_id'], $port['device_id'])) {
$url = generate_port_url($port);
if ($escape) {
$text = escape_html($text);
}
if ($short) {
//$port['html_class'] .= ' text-nowrap';
}
return '';
}
return escape_html($text);
}
// Just simplify function call, instead generate_port_link($port, NULL, NULL, TRUE, TRUE)
function generate_port_link_short($port, $text = NULL, $type = NULL, $escape = FALSE, $short = TRUE)
{
return generate_port_link($port, $text, $type, $escape, $short);
}
/**
* Returns a string containing a page URL built from a $port array and an array of optional variables
*
* @param array $port array
* @param array optional variables used when building the URL
*
* @return string port page URL
*/
function generate_port_url($port, $vars = [])
{
return generate_url(['page' => 'device', 'device' => $port['device_id'], 'tab' => 'port', 'port' => $port['port_id']], $vars);
}
/**
* Returns or echos a port graph thumbnail
*
* @param array $args of arguments used to build the graph image tag URL
* @param boolean $echo variable defining wether output should be returned or echoed
*
* @return string HTML port popup contents
*/
function generate_port_thumbnail($args, $echo = TRUE)
{
if (!$args['bg']) {
$args['bg'] = "FFFFFF";
}
$graph_array = [];
$graph_array['from'] = $args['from'];
$graph_array['to'] = $args['to'];
$graph_array['id'] = $args['port_id'];
$graph_array['type'] = $args['graph_type'];
$graph_array['width'] = $args['width'];
$graph_array['height'] = $args['height'];
$graph_array['bg'] = 'FFFFFF00';
$mini_graph = generate_graph_tag($graph_array);
$img = generate_port_link($args, $mini_graph);
if ($echo) {
echo($img);
} else {
return $img;
}
}
function print_port_row($port, $vars = [])
{
echo generate_port_row($port, $vars);
}
function generate_port_row($port, $vars = [])
{
global $config, $cache;
$device = device_by_id_cache($port['device_id']);
humanize_port($port);
if (!isset($vars['view'])) {
$vars['view'] = "basic";
}
// Pre-cache ports tables
if (!isset($cache['ports_cbqos'][$device['device_id']],
$cache['ports_mac_accounting'][$device['device_id']])) {
cache_ports_tables($device, $vars);
}
// Populate $port['tags'] with various tags to identify port statuses and features
// Port Errors
if ($port['ifInErrors_delta'] > 0 || $port['ifOutErrors_delta'] > 0) {
$port['tags'] .= generate_port_link($port, 'Errors', 'port_errors');
}
// Port Deleted
if ($port['deleted']) {
$port['tags'] .= 'Deleted';
}
if ($port['ignore']) {
$port['tags'] .= 'Ignored';
}
if ($port['disabled']) {
$port['tags'] .= 'Poll disabled';
}
// Port IPv6
if (isset($port['attribs']['ipv6-octets'])) {
$port['tags'] .= 'IPv6';
}
// Port CBQoS
if (in_array($port['port_id'], (array)$cache['ports_cbqos'][$device['device_id']])) {
$port['tags'] .= 'CBQoS';
}
// Port MAC Accounting
if (in_array($port['port_id'], (array)$cache['ports_mac_accounting'][$device['device_id']])) {
$port['tags'] .= 'MAC';
}
// Populated formatted versions of port rates.
$port['bps_in'] = format_bps($port['ifInOctets_rate'] * 8);
$port['bps_out'] = format_bps($port['ifOutOctets_rate'] * 8);
$port['pps_in'] = format_si($port['ifInUcastPkts_rate']) . "pps";
$port['pps_out'] = format_si($port['ifOutUcastPkts_rate']) . "pps";
$string = '';
if ($vars['view'] === "basic" || $vars['view'] === "graphs") {
// Print basic view table row
$table_cols = '8';
$string .= '
|
| ';
if ($vars['page'] !== "device" && !get_var_true($vars['popup'])) {
// Print a device name link if we're not inside the device page hierarchy.
$table_cols++; // Increment table columns by one to make sure graph line draws correctly
$string .= ' ' . generate_device_link_short($device, [], 20) . '
' . escape_html(truncate($port['location'], 32, "")) . ' | ';
}
$string .=
' ' . generate_port_link($port) . ' ' . $port['tags'] . ' ' .
' ' . escape_html(truncate($port['ifAlias'], 50, '')) . ' | ' .
'' . get_icon('arrow-down', NULL, ['style' => $port['bps_in_style']]) . ' ' . format_bps($port['in_rate']) . ' ' .
get_icon('arrow-up', NULL, ['style' => $port['bps_out_style']]) . ' ' . format_bps($port['out_rate']) . '
| ' .
'' . get_icon('arrow-down', NULL, ['style' => $port['bps_in_style']]) . ' ' . $port['ifInOctets_perc'] . '% ' .
get_icon('arrow-up', NULL, ['style' => $port['bps_out_style']]) . ' ' . $port['ifOutOctets_perc'] . '%
| ' .
'' . get_icon('arrow-down', NULL, ['style' => $port['pps_in_style']]) . ' ' . format_bi($port['ifInUcastPkts_rate']) . 'pps ' .
get_icon('arrow-up', NULL, ['style' => $port['pps_out_style']]) . ' ' . format_bi($port['ifOutUcastPkts_rate']) . 'pps | ' .
'' . $port['human_speed'] . ' ' . $port['ifMtu'] . ' |
' . $port['human_type'] . ' ' . $port['human_mac'] . ' |
';
} elseif (str_starts_with($vars['view'], "detail")) {
// Print detailed view table row
if (!isset($cache['ports_ipv4_addresses'][$device['device_id']],
$cache['ports_ipv6_addresses'][$device['device_id']],
$cache['ports_vlan'][$device['device_id']])) {
cache_ports_tables($device, $vars);
}
$table_cols = '9';
$string .= '
' . escape_html(truncate($port['location'], 32, "")) . '';
}
$string .= '
';
$string .= '
' . generate_port_link($port) . ' ' . $port['tags'] . '
' . escape_html($port['ifAlias']) . '';
if ($port['ifAlias']) {
$string .= ' ';
}
unset($break);
$ignore_type = $GLOBALS['config']['ip-address']['ignore_type'];
if (in_array($port['port_id'], (array)$cache['ports_ipv4_addresses'][$device['device_id']])) {
$sql = "SELECT * FROM `ipv4_addresses`";
// Do not show ignored ip types (Do not exclude IPv4 link-local)
$sql .= generate_where_clause('`port_id` = ?', generate_query_values(array_diff($ignore_type, ['link-local']), 'ipv4_type', '!='));
foreach (dbFetchRows($sql, [$port['port_id']]) as $address) {
$string .= $break . generate_popup_link('ip', $address['ipv4_address'] . '/' . $address['ipv4_prefixlen'], NULL, 'small');
$break = " ";
}
}
if (in_array($port['port_id'], (array)$cache['ports_ipv6_addresses'][$device['device_id']])) {
$sql = "SELECT * FROM `ipv6_addresses`";
// Do not show ignored ip types
$sql .= generate_where_clause('`port_id` = ?', generate_query_values($ignore_type, 'ipv6_type', '!='));
foreach (dbFetchRows($sql, [$port['port_id']]) as $address) {
$string .= $break . generate_popup_link('ip', $address['ipv6_address'] . '/' . $address['ipv6_prefixlen'], NULL, 'small');
$break = " ";
}
}
//$string .= '';
$string .= ' | ';
// Print port graph thumbnails
$string .= '';
$port['graph_type'] = "port_bits";
$graph_array = [];
$graph_array['to'] = get_time();
$graph_array['id'] = $port['port_id'];
$graph_array['type'] = $port['graph_type'];
$graph_array['width'] = 100;
$graph_array['height'] = 20;
$graph_array['bg'] = 'ffffff00';
$graph_array['from'] = get_time('day');
$string .= generate_port_link($port, generate_graph_tag($graph_array));
$port['graph_type'] = "port_upkts";
$graph_array['type'] = $port['graph_type'];
$string .= generate_port_link($port, generate_graph_tag($graph_array));
$port['graph_type'] = "port_errors";
$graph_array['type'] = $port['graph_type'];
$string .= generate_port_link($port, generate_graph_tag($graph_array));
$string .= ' | ';
$string .= '';
if ($port['ifOperStatus'] === "up" || $port['ifOperStatus'] === "monitoring") {
// Colours generated by humanize_port
$string .= ' ' . format_bps($port['in_rate']) . '
' . format_bps($port['out_rate']) . '
' . format_bi($port['ifInUcastPkts_rate']) . 'pps
' . format_bi($port['ifOutUcastPkts_rate']) . 'pps';
}
$string .= ' | ';
if ($port['ifType'] && $port['ifType'] != "") {
$string .= '' . $port['human_type'] . '';
} else {
$string .= '-';
}
$string .= ' ';
if ($port['ifSpeed']) {
$string .= '' . humanspeed($port['ifSpeed']) . '';
}
if ($port['ifDuplex'] && $port['ifDuplex'] !== "unknown") {
$string .= ' (' . str_replace("Duplex", "", $port['ifDuplex']) . ')';
}
$string .= ' ';
if ($port['ifMtu'] && $port['ifMtu'] != "") {
$string .= 'MTU ' . $port['ifMtu'] . '';
} else {
$string .= 'Unknown MTU';
}
//$string .= ' ';
// Set VLAN data if the port has ifTrunk populated
if (!safe_empty($port['ifTrunk']) &&
!in_array($port['ifTrunk'], [ 'access', 'routed' ])) { // Skip on routed (or access)
$vlans_cache = $cache['ports_vlan'][$device['device_id']];
if ($port['ifVlan']) {
// Native VLAN
$native_state = $vlans_cache[$port['port_id']][$port['ifVlan']]['state'];
$native_name = $vlans_cache[$port['port_id']][$port['ifVlan']]['vlan_name'];
switch ($native_state) {
case 'blocking':
$class = 'text-danger';
break;
case 'forwarding':
$class = 'text-success';
break;
default:
$class = 'muted';
}
if (empty($native_name)) {
$native_name = 'VLAN' . str_pad($port['ifVlan'], 4, '0', STR_PAD_LEFT);
}
$native_tooltip = 'NATIVE: ' . $port['ifVlan'] . ' [' . $native_name . '] ';
}
$vlans_count = safe_count($vlans_cache[$port['port_id']]);
$rel = ($vlans_count || $native_tooltip) ? 'tooltip' : ''; // Hide tooltip for empty
$string .= '' . $port['ifTrunk'] . ' ';
} elseif ($port['ifVlan']) {
$vlans_cache = $cache['ports_vlan'][$device['device_id']];
$native_state = $vlans_cache[$port['port_id']][$port['ifVlan']]['state'];
$native_name = $vlans_cache[$port['port_id']][$port['ifVlan']]['vlan_name'];
switch ($native_state) {
case 'blocking':
$class = 'label-error';
break;
case 'forwarding':
$class = 'label-success';
break;
default:
$class = '';
}
$rel = $native_name ? 'tooltip' : ''; // Hide tooltip for empty
$vlan_name = $port['ifTrunk'] !== 'access' ? nicecase($port['ifTrunk']) . ' ' : '';
$vlan_name .= 'VLAN ' . $port['ifVlan'];
$string .= ' ' . $vlan_name . '';
} elseif ($port['ifVrf']) {
// Print the VRF name if the port is assigned to a VRF
$vrf_name = dbFetchCell("SELECT `vrf_name` FROM `vrfs` WHERE `vrf_id` = ?", [$port['ifVrf']]);
$string .= ' ' . $vrf_name . '';
}
$string .= ' | ';
// Populate $port_adsl if the port has ADSL-MIB data
if (in_array($port['port_id'], (array)$cache['ports_adsl'][$device['device_id']])) {
$port_adsl = dbFetchRow("SELECT * FROM `ports_adsl` WHERE `port_id` = ?", [ $port['port_id'] ]);
}
// If the port is ADSL, print ADSL port data.
if ($port_adsl['adslLineCoding']) {
$string .= '';
$string .= '' . $port_adsl['adslLineCoding'] . ' ' . rewrite_adslLineType($port_adsl['adslLineType']) . '';
$string .= ' ';
$string .= 'SYN ' . format_bps($port_adsl['adslAtucChanCurrTxRate']) . ' ' . format_bps($port_adsl['adslAturChanCurrTxRate']);
$string .= ' ';
//$string .= 'Max:'.formatRates($port_adsl['adslAtucCurrAttainableRate']) . '/'. formatRates($port_adsl['adslAturCurrAttainableRate']);
//$string .= ' ';
$string .= 'ATN ' . $port_adsl['adslAtucCurrAtn'] . 'dBm ' . $port_adsl['adslAturCurrAtn'] . 'dBm';
$string .= ' ';
$string .= 'SNR ' . $port_adsl['adslAtucCurrSnrMgn'] . 'dB ' . $port_adsl['adslAturCurrSnrMgn'] . 'dB';
$string .= '';
} else {
// Otherwise, print normal port data
$string .= ' | ';
if (!safe_empty($port['ifPhysAddress'])) {
$string .= $port['human_mac'];
} else {
$string .= '-';
}
$string .= ' ' . $port['ifLastChange'] . '';
}
$string .= ' | ';
$string .= '';
if ($port['ifType'] !== 'softwareLoopback' && !str_contains($port['port_label'], 'oopback') &&
safe_empty($graph_type)) {
$br = '';
// Populate links array for ports with direct links
if (in_array($port['port_id'], (array)$cache['ports_neighbours'][$device['device_id']])) {
foreach (dbFetchRows('SELECT * FROM `neighbours` WHERE `port_id` = ? AND `active` = ?', [ $port['port_id'], 1 ]) as $neighbour) {
// print_r($neighbour);
if ($neighbour['remote_port_id']) {
// Do not show some "non-physical" interfaces links,
// see: https://jira.observium.org/browse/OBS-2979
$remote_port = get_port_by_id_cache($neighbour['remote_port_id']);
if (!in_array($remote_port['ifType'], ['propVirtual', 'ieee8023adLag'])) {
$int_links[$neighbour['remote_port_id']] = $neighbour['remote_port_id'];
$int_links_phys[$neighbour['remote_port_id']] = $neighbour['protocol'];
}
} else {
$int_links_unknown[] = $neighbour;
}
}
} // else { }
// Populate links array for devices which share an IPv4 subnet
if (in_array($port['port_id'], (array)$cache['ports_ipv4_addresses'][$device['device_id']])) {
$ignore_type = $GLOBALS['config']['ip-address']['ignore_type'];
$ignore_type[] = 'loopback'; // Always ignore loopback on links
$sql = 'SELECT DISTINCT(`ipv4_network_id`), `ipv4_network` FROM `ipv4_addresses` ' .
'LEFT JOIN `ipv4_networks` USING(`ipv4_network_id`) ' .
'WHERE `port_id` = ?';
$sql .= generate_query_values_and($ignore_type, 'ipv4_type', '!=');
if (!safe_empty($config['ignore_common_subnet'])) {
// If it's still exist (non default list)
$sql .= generate_query_values_and($config['ignore_common_subnet'], 'ipv4_network', '!=');
}
foreach (dbFetchRows($sql, [ $port['port_id'] ]) as $network) {
//r($network);
$link_sql = 'SELECT `device_id`, `port_id` FROM `ipv4_addresses` ' .
'LEFT JOIN `ports` USING (`device_id`, `port_id`) ' .
'WHERE `device_id` != ? AND `ipv4_network_id` = ? AND `ifAdminStatus` = "up"';
$params = [ $device['device_id'], $network['ipv4_network_id'] ];
foreach (dbFetchRows($link_sql, $params) as $new) {
//r($new);
if (!$config['web_show_disabled'] &&
in_array($new['device_id'], (array)$cache['devices']['disabled'])) {
continue;
}
$int_links[$new['port_id']] = $new['port_id'];
$int_links_v4[$new['port_id']][] = $network['ipv4_network'];
}
}
}
// Populate links array for devices which share an IPv6 subnet
if (in_array($port['port_id'], (array)$cache['ports_ipv6_addresses'][$device['device_id']])) {
$ignore_type = $GLOBALS['config']['ip-address']['ignore_type'];
$ignore_type[] = 'loopback'; // Always ignore loopback on links
$sql = 'SELECT DISTINCT(`ipv6_network_id`), `ipv6_network` FROM `ipv6_addresses` ' .
'LEFT JOIN `ipv6_networks` USING(`ipv6_network_id`) ' .
'WHERE `port_id` = ?';
$sql .= generate_query_values_and($ignore_type, 'ipv6_type', '!=');
if (!safe_empty($config['ignore_common_subnet'])) {
// If it's still exist (non default list)
$sql .= generate_query_values_and($config['ignore_common_subnet'], 'ipv6_network', '!=');
}
foreach (dbFetchRows($sql, [$port['port_id']]) as $network) {
//r($network);
$link_sql = 'SELECT `device_id`, `port_id` FROM `ipv6_addresses` ' .
'LEFT JOIN `ports` USING (`device_id`, `port_id`) ' .
'WHERE `device_id` != ? AND `ipv6_network_id` = ? AND `ifAdminStatus` = "up"';
$link_sql .= generate_query_values_and([ 'linklayer', 'wellknown' ], 'ipv6_origin', '!=');
$params = [ $device['device_id'], $network['ipv6_network_id'] ];
foreach (dbFetchRows($link_sql, $params) as $new) {
//r($new);
if (!$config['web_show_disabled'] &&
in_array($new['device_id'], (array)$cache['devices']['disabled'])) {
continue;
}
$int_links[$new['port_id']] = $new['port_id'];
$int_links_v6[$new['port_id']][] = $network['ipv6_network'];
}
}
}
// Output contents of links array
foreach ($int_links as $int_link) {
//r($int_link);
//r($int_links_phys);
$link_if = get_port_by_id_cache($int_link);
if (!device_permitted($link_if['device_id'])) {
continue;
} // Skip not permitted links
$link_dev = device_by_id_cache($link_if['device_id']);
$string .= $br;
if ($int_links_phys[$int_link]) {
$string .= generate_tooltip_link(NULL, NULL, 'Directly connected', $config['icon']['connected']) . ' ';
} else {
$string .= generate_tooltip_link(NULL, NULL, 'Same subnet', $config['icon']['network']) . ' ';
}
// for port_label_short - generate_port_link($link_if, NULL, NULL, TRUE, TRUE)
$string .= '' . generate_port_link_short($link_if) . ' on ' . generate_device_link_short($link_dev) . '';
if (isset($int_links_phys[$int_link]) && !is_numeric($int_links_phys[$int_link])) {
$string .= ' ' . nicecase($int_links_phys[$int_link]) . '';
}
## FIXME -- do something fancy here.
if ($int_links_v6[$int_link]) {
$string .= ' ' . overlib_link('', 'IPv6', implode(" ", $int_links_v6[$int_link]), NULL);
}
if ($int_links_v4[$int_link]) {
$string .= ' ' . overlib_link('', 'IPv4', implode(" ", $int_links_v4[$int_link]), NULL);
}
$br = " ";
}
// Output content of unknown links array (where ports don't exist in our database, or they weren't matched)
foreach ($int_links_unknown as $int_link) {
//r($int_link);
$string .= generate_tooltip_link(NULL, NULL, 'Directly connected', $config['icon']['connected']) . ' ';
$string .= '' . short_ifname($int_link['remote_port']) . ' on ';
$text = '';
if (!safe_empty($int_link['remote_platform'])) {
$text .= '' . $int_link['remote_platform'] . ' ';
}
$text .= $int_link['remote_version'] . ' ';
$string .= '' . generate_tooltip_link(NULL, $int_link['remote_hostname'], $text) . '';
$string .= ' ' . nicecase($int_link['protocol']) . ' ';
}
}
if (in_array($port['port_id'], (array)$cache['ports_pseudowires'][$device['device_id']])) {
foreach (dbFetchRows("SELECT * FROM `pseudowires` WHERE `port_id` = ?", [$port['port_id']]) as $pseudowire) {
//`port_id`,`peer_device_id`,`peer_ldp_id`,`pwID`,`pwIndex`
$pw_peer_int = dbFetchRow("SELECT * FROM `ports` AS I, `pseudowires` AS P WHERE I.`device_id` = ? AND P.`pwID` = ? AND P.`port_id` = I.`port_id`", [$pseudowire['peer_device_id'], $pseudowire['pwID']]);
if (is_array($pw_peer_int)) {
humanize_port($pw_peer_int);
$pw_peer_dev = device_by_id_cache($pseudowire['peer_device_id']);
$string .= $br . ' ' . generate_port_link_short($pw_peer_int) . ' on ' . generate_device_link_short($pw_peer_dev) . '';
} else {
$string .= $br . ' VC ' . $pseudowire['pwID'] . ' on ' . $pseudowire['peer_addr'] . '';
}
$string .= ' ' . $pseudowire['pwPsnType'] . '';
$string .= ' ' . $pseudowire['pwType'] . '';
$br = " ";
}
}
/** Disabled pending database rejigging to add it back
*
* if (!isset($cache['ports_option']['ports_pagp']) || in_array($port['ifIndex'], $cache['ports_option']['ports_pagp']))
* {
* foreach (dbFetchRows("SELECT * FROM `ports` WHERE `pagpGroupIfIndex` = ? AND `device_id` = ?", array($port['ifIndex'], $device['device_id'])) as $member)
* {
* humanize_port($member);
* $pagp[$device['device_id']][$port['ifIndex']][$member['ifIndex']] = TRUE;
* $string .= $br.' ' . generate_port_link($member) . ' [PAgP]';
* $br = " ";
* }
* }
*
* if ($port['pagpGroupIfIndex'] && $port['pagpGroupIfIndex'] != $port['ifIndex'])
* {
* $pagp[$device['device_id']][$port['pagpGroupIfIndex']][$port['ifIndex']] = TRUE;
* $parent = dbFetchRow("SELECT * FROM `ports` WHERE `ifIndex` = ? and `device_id` = ?", array($port['pagpGroupIfIndex'], $device['device_id']));
* humanize_port($parent);
* $string .= $br.' ' . generate_port_link($parent) . ' [PAgP]';
* $br = " ";
* }
**/
$higher_ifs = $cache['ports_stack'][$device['device_id']]['high'][$port['port_id']] ?? [];
foreach($higher_ifs as $high_if => $id) {
//if (isset($pagp[$device['device_id']][$higher_if['port_id_high']][$port['ifIndex']])) { continue; } // Skip if same PAgP port
if ($this_port = get_port_by_id_cache($high_if)) {
$label = '';
if ($this_port['ifType'] === 'l2vlan') {
$label = 'L2 VLAN ';
} elseif ($this_port['ifType'] === 'l3ipvlan' || $this_port['ifType'] === 'l3ipxvlan') {
$label = 'L3 VLAN ';
} elseif ($this_port['ifType'] === 'ieee8023adLag') {
$label = 'LAG ';
} elseif (str_starts($this_port['port_label'], 'Stack')) {
$label = 'STACK ';
} else {
$label = '' . $this_port['human_type'] . ' ';
//r($this_port);
}
$string .= $br . ' ' . generate_port_link($this_port) . ' ' . $label;
$br = " ";
}
}
$lower_ifs = $cache['ports_stack'][$device['device_id']]['low'][$port['port_id']] ?? [];
foreach($lower_ifs as $low_if => $id) {
if (isset($pagp[$device['device_id']][$port['ifIndex']][$low_if])) { continue; } // Skip if same PAgP ports
if ($this_port = get_port_by_id_cache($low_if)) {
$string .= $br . ' ' . generate_port_link($this_port) . '';
$br = " ";
}
}
unset($int_links, $int_links_v6, $int_links_v4, $int_links_phys, $br);
$string .= ' |
';
} // End Detailed View
// If we're showing graphs, generate the graph and print the img tags
if ($vars['graph'] === "etherlike") {
$graph_file = get_port_rrdfilename($port, "dot3", TRUE);
} else {
$graph_file = get_port_rrdfilename($port, NULL, TRUE);
}
if ($vars['graph'] && is_file($graph_file)) {
$string .= '';
$graph_array = [];
$graph_array['to'] = get_time();
$graph_array['id'] = $port['port_id'];
$graph_array['type'] = 'port_' . $vars['graph'];
$string .= generate_graph_row($graph_array);
$string .= ' |
';
}
return $string;
}
function print_port_minigraph($port, $graph_type = 'port_bits', $period = 'day')
{
$port['graph_type'] = $graph_type;
$graph_array = [];
$graph_array['to'] = get_time();
$graph_array['from'] = get_time($period);
$graph_array['id'] = $port['port_id'];
$graph_array['type'] = $port['graph_type'];
$graph_array['width'] = 400; //100;
$graph_array['height'] = 150; //20;
$graph_array['bg'] = 'ffffff00';
$graph_array['legend'] = "no";
$graph_array['graph_only'] = "yes";
$graph_array_zoom = $graph_array;
$graph_array_zoom['height'] = "175";
$graph_array_zoom['width'] = "600";
unset($graph_array_zoom['legend'], $graph_array_zoom['graph_only']);
$link_array = $graph_array;
$link_array['page'] = "graphs";
unset($link_array['height'], $link_array['width']);
echo generate_box_open([ 'box-style' => 'float: left; margin-left: 10px; margin-bottom: 10px; width:302px; min-width: 302px; max-width:302px; min-height:158px; max-height:158;',
'header-border' => TRUE, 'title' => $port['port_label_short'], 'url' => generate_port_url($port, [ 'view' => 'graphs' ]) ]);
//print_graph_popup($graph_array);
echo overlib_link(generate_url($link_array), generate_graph_tag($graph_array), generate_graph_tag($graph_array_zoom));
echo generate_box_close([ 'footer_content' => '' . short_port_descr($port['ifAlias']) . '',
'footer_nopadding' => TRUE ]);
}
function print_port_permission_box($mode, $perms, $params = []) {
global $config;
echo generate_box_open([ 'header-border' => TRUE, 'title' => 'Port Permissions' ]);
if (!safe_empty($perms['port'])) {
echo('' . PHP_EOL);
foreach (array_keys($perms['port']) as $entity_id) {
$port = get_port_by_id($entity_id);
$device = device_by_id_cache($port['device_id']);
echo(' |
' . get_icon($config['devicetypes'][$device['type']]['icon'] ?? $config['entities']['device']['icon']) . generate_entity_link('device', $device) . ' |
' . get_icon($config['entities']['port']['icon']) . generate_entity_link('port', $port) . '
' . $port['ifDescr'] . ' |
');
$form = [];
$form['type'] = 'simple';
$action_del = $mode === 'role' ? 'role_entity_del' : 'user_perm_del';
// Elements
$form['row'][0]['action'] = [
'type' => 'hidden',
'value' => $action_del
];
$form['row'][0]['entity_id'] = [
'type' => 'hidden',
'value' => $port['port_id']
];
$form['row'][0]['entity_type'] = [
'type' => 'hidden',
'value' => 'port'
];
$form['row'][0]['submit'] = [
'type' => 'submit',
'name' => '',
'class' => 'btn-danger btn-mini',
'icon' => 'icon-trash',
'value' => $action_del
];
print_form($form);
unset($form);
echo(' |
');
}
echo('
' . PHP_EOL);
} else {
echo('This '.$mode.' currently has no permitted ports
');
}
// Ports
$permissions_list = array_keys((array)$perms['port']);
// Display devices this user doesn't have Permissions to
$form = [];
$form['type'] = 'simple';
$form['style'] = 'padding: 7px; margin: 0px;';
// Elements
if ($mode === 'role') {
$action_add = 'role_entity_add';
$form['row'][0]['role_id'] = [
'type' => 'hidden',
'value' => $params['role_id']
];
} else {
$action_add = 'user_perm_add';
$form['row'][0]['user_id'] = [
'type' => 'hidden',
'value' => $params['user_id']
];
}
$form['row'][0]['entity_type'] = [
'type' => 'hidden',
'value' => 'port'
];
$form['row'][0]['action'] = [
'type' => 'hidden',
'value' => $action_add
];
$form_items['devices'] = generate_form_values('device', array_keys((array)$perms['device']), NULL,
[ 'filter_mode' => 'exclude', 'subtext' => '%location%', 'show_disabled' => TRUE, 'show_icon' => TRUE ]);
$form['row'][0]['device_id'] = [
'type' => 'select',
'name' => 'Select a device',
'width' => '150px',
'onload' => "getEntityList(NULL, this, 'device')",
'onchange' => "getEntityList(this.value, 'port_entity_id', 'port')",
'attribs' => ['data-load' => 'devices'],
//'value' => $vars['device_id'],
'groups' => ['', 'UP', 'DOWN', 'DISABLED'], // This is optgroup order for values (if required)
//'values' => $form_items['devices']
];
$form['row'][0]['port_entity_id'] = [
'type' => 'multiselect',
'name' => 'Permit Port',
'width' => '150px',
//'value' => $vars['port_entity_id'],
'values' => []
];
// add button
$form['row'][0]['Submit'] = [
'type' => 'submit',
'name' => 'Add',
'icon' => $config['icon']['plus'],
'right' => TRUE,
'value' => 'Add'
];
print_form($form);
echo generate_box_close();
}
function generate_port_sort($vars) {
if (isset($vars['sort'])) {
//$sort_order = get_sort_order($vars);
//$sort_neg = get_sort_order($vars, TRUE);
switch ($vars['sort']) {
case 'index':
return generate_query_sort('ifIndex', get_sort_order($vars), 'integer');
case 'traffic':
//$ports = array_sort_by($ports, 'ifOctets_rate', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifOctets_rate', get_sort_order($vars, TRUE));
case 'traffic_in':
//$ports = array_sort_by($ports, 'ifInOctets_rate', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifInOctets_rate', get_sort_order($vars, TRUE));
case 'traffic_out':
//$ports = array_sort_by($ports, 'ifOutOctets_rate', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifOutOctets_rate', get_sort_order($vars, TRUE));
case 'traffic_perc_in':
//$ports = array_sort_by($ports, 'ifInOctets_perc', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifInOctets_perc', get_sort_order($vars, TRUE));
case 'traffic_perc_out':
//$ports = array_sort_by($ports, 'ifOutOctets_perc', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifOutOctets_perc', get_sort_order($vars, TRUE));
case 'traffic_perc':
//$ports = array_sort_by($ports, 'ifOctets_perc', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifOctets_perc', get_sort_order($vars, TRUE));
case 'packets':
//$ports = array_sort_by($ports, 'ifUcastPkts_rate', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifUcastPkts_rate', get_sort_order($vars, TRUE));
case 'packets_in':
//$ports = array_sort_by($ports, 'ifInUcastPkts_rate', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifInUcastPkts_rate', get_sort_order($vars, TRUE));
case 'packets_out':
//$ports = array_sort_by($ports, 'ifOutUcastPkts_rate', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifOutUcastPkts_rate', get_sort_order($vars, TRUE));
case 'errors':
//$ports = array_sort_by($ports, 'ifErrors_rate', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifErrors_rate', get_sort_order($vars, TRUE));
case 'speed':
//$ports = array_sort_by($ports, 'ifSpeed', $sort_neg, SORT_NUMERIC);
return generate_query_sort('ifSpeed', get_sort_order($vars, TRUE));
case 'port':
//$ports = array_sort_by($ports, 'port_label', $sort_order, SORT_STRING);
return generate_query_sort('port_label', get_sort_order($vars));
case 'media':
//$ports = array_sort_by($ports, 'ifType', $sort_order, SORT_STRING);
return generate_query_sort('ifType', get_sort_order($vars));
case 'mtu':
//$ports = array_sort_by($ports, 'ifMtu', $sort_order, SORT_NUMERIC);
return generate_query_sort('ifMtu', get_sort_order($vars));
case 'descr':
//$ports = array_sort_by($ports, 'ifAlias', $sort_order, SORT_STRING);
return generate_query_sort('ifAlias', get_sort_order($vars));
case 'mac':
//$ports = array_sort_by($ports, 'ifPhysAddress', $sort_neg, SORT_STRING);
return generate_query_sort('ifPhysAddress', get_sort_order($vars, TRUE));
default:
//$ports = array_sort_by($ports, 'hostname', $sort_order, SORT_STRING, 'ifIndex', $sort_order, SORT_NUMERIC);
$sort_order = get_sort_order($vars);
return generate_query_sort([ 'hostname', 'ifIndex' ], $sort_order);
}
} else {
return generate_query_sort([ 'hostname', 'ifIndex' ]);
}
}
/**
* Start ports sorting based on port type, name and number
* Full sort order:
* 1. Port type (physical ports always first)
* 2. Port base name (TenGig, Gigabit, etc)
* 3. Module number
* 4. Port number
* 5. Port subinterface number
*
* @param array $device
* @param bool $get_ports When TRUE get sorted ports full arrays, otherwise only links (default)
* @return array
*/
function get_ports_links_sorted($device, $get_ports = FALSE) {
// Custom order for port types.
$sort_types = array_merge($GLOBALS['config']['port_types']['ethernet']['iftype'],
$GLOBALS['config']['port_types']['aggregation']['iftype'],
$GLOBALS['config']['port_types']['docsmac']['iftype'],
$GLOBALS['config']['port_types']['optical']['iftype'],
$GLOBALS['config']['port_types']['dsl']['iftype'],
$GLOBALS['config']['port_types']['radio']['iftype'],
$GLOBALS['config']['port_types']['virtual']['iftype'],
$GLOBALS['config']['port_types']['tunnel']['iftype'],
$GLOBALS['config']['port_types']['loopback']['iftype'],
$GLOBALS['config']['port_types']['other']['iftype']);
/*
$sort_types = [
'ethernetCsmacd', 'iso88023Csmacd',
'gigabitEthernet', 'fastEther', 'starLan', // Obsolete types same as Ethernet
'ieee8023adLag',
'docsCableMaclayer',
'fibreChannel', 'opticalChannel',
'adsl', 'adsl2', 'adsl2plus', 'vdsl', 'vdsl2', 'radsl', 'sdsl', 'idsl', 'hdsl2', 'shdsl',
'ieee80211',
'l2vlan', 'ciscoISLvlan', // L2 VLAN (802.1Q)
'l3ipvlan', 'l3ipxvlan', // L3 VLAN (IP), L3 VLAN (IPX)
'propVirtual',
'tunnel', 'mplsTunnel',
'virtualTg',
'softwareLoopback',
'other',
];
*/
//r($sort_types);
$ports_links = [];
// We could possibly use different sorting methods for different devices. ifIndex is useful for most Cisco devices.
$sql = "SELECT * FROM `ports` WHERE `device_id` = ? AND `deleted` != ? ORDER BY `ifIndex`";
foreach (dbFetchRows($sql, [ $device['device_id'], '1' ]) as $port) {
// Workaround for devices/ports who long time not updated and have empty port_label
if (safe_empty($port['port_label']) || safe_empty($port['port_label_short']) || safe_empty($port['port_label_base'] . $port['port_label_num'])) {
unset($port['port_label'], $port['port_label_short'], $port['port_label_base'], $port['port_label_num']);
process_port_label($port, $device);
//r($port);
}
if (!in_array($port['ifType'], $sort_types, TRUE)) {
$sort_types[] = $port['ifType'];
}
$ports_links[$port['ifType']][$port['ifIndex']] = $port;
// Index example for TenGigabitEthernet3/10.324:
// $ports_links['Ethernet'][] = array('port_label_base' => 'TenGigabitEthernet', 'port_label_num' => '3/10.324')
$label_num = str_replace([ ':', '_' ], [ '/', '-' ], $port['port_label_num']);
//$label_num = preg_replace('![^\d\.\/]!', '', substr($port['port_label'], strlen($port['port_label_base']))); // Remove base part and all not-numeric chars
//preg_match('!^(\d+)(?:\/(\d+)(?:\.(\d+))*)*!', $label_num, $label_nums); // Split by slash and point (1/1.324)
$label_nums = [];
$i = 2;
//r(array_reverse(explode('/', $label_num)));
foreach (array_reverse(explode('/', $label_num)) as $num) {
//$num = preg_replace('/[^0-9.]/', '', $num); // Remove all not-numeric chars
if ($i === 2) {// && strpos($num, '-') !== FALSE)
$num = str_replace('-', '.', $num);
[ $label_nums[$i], $label_nums[$i + 1] ] = explode('.', $num, 2);
} else {
$label_nums[$i] = $num;
}
$i--;
}
$port['label_num0'] = $label_nums[0] ?: 0;
$port['label_num1'] = $label_nums[1] ?: 0;
$port['label_num2'] = $label_nums[2] ?: 0;
$port['label_num3'] = $label_nums[3] ?: 0;
$ports_links[$port['ifType']][$port['ifIndex']] = $port;
}
//r($ports_links);
// Sorting
$ports = [];
foreach ($sort_types as $port_type) {
if (!isset($ports_links[$port_type])) {
continue;
}
// Second sort iteration (by port label base name and port numbers)
$ports_links[$port_type] = array_sort_by($ports_links[$port_type], 'label_base', SORT_DESC, SORT_STRING,
'label_num0', SORT_ASC, SORT_NUMERIC,
'label_num1', SORT_ASC, SORT_NUMERIC,
'label_num2', SORT_ASC, SORT_NUMERIC,
'label_num3', SORT_ASC, SORT_NUMERIC);
foreach ($ports_links[$port_type] as $ifIndex => $port) {
$ports[] = $get_ports ? $port : generate_port_link_short($port);
}
}
//r(safe_count($ports));
return $ports;
}
/**
* Pre-cache exist device ports options. Used in generate_port_row()
*
* @param array $device
* @param array $vars
* @return void
*/
function cache_ports_tables($device, $vars = []) {
global $cache;
if (!is_intnum($device['device_id'])) {
return;
}
// Cache ports cbqos
if (!isset($cache['ports_cbqos'][$device['device_id']])) { // already cached?
$cache['ports_cbqos'][$device['device_id']] = dbFetchColumn("SELECT DISTINCT `port_id` FROM `ports_cbqos` WHERE `device_id` = ?", [ $device['device_id'] ]);
}
// Cache ports mac_accounting
if (!isset($cache['ports_mac_accounting'][$device['device_id']])) { // already cached?
$cache['ports_mac_accounting'][$device['device_id']] = dbFetchColumn("SELECT DISTINCT `port_id` FROM `mac_accounting` WHERE `device_id` = ?", [ $device['device_id'] ]);
}
// Other info used only in detail view
if (!str_starts_with($vars['view'], 'detail')) {
return;
}
// Cache ports addresses
if (!isset($cache['ports_ipv4_addresses'][$device['device_id']], $cache['ports_ipv6_addresses'][$device['device_id']])) { // already cached?
$cache['ports_ipv4_addresses'][$device['device_id']] = dbFetchColumn("SELECT DISTINCT `port_id` FROM `ipv4_addresses` WHERE `device_id` = ?", [ $device['device_id'] ]);
$cache['ports_ipv6_addresses'][$device['device_id']] = dbFetchColumn("SELECT DISTINCT `port_id` FROM `ipv6_addresses` WHERE `device_id` = ?", [ $device['device_id'] ]);
}
// Cache ports adsl
if (!isset($cache['ports_adsl'][$device['device_id']])) { // already cached?
$cache['ports_adsl'][$device['device_id']] = dbFetchColumn("SELECT DISTINCT `port_id` FROM `ports_adsl` WHERE `device_id` = ?", [ $device['device_id'] ]);
}
// Cache ports pseudowires
if (!isset($cache['ports_pseudowires'][$device['device_id']])) { // already cached?
$cache['ports_pseudowires'][$device['device_id']] = dbFetchColumn("SELECT DISTINCT `port_id` FROM `pseudowires` WHERE `device_id` = ?", [ $device['device_id'] ]);
}
// Cache ports neighbours
if (!isset($cache['ports_neighbours'][$device['device_id']])) { // already cached?
$sql = "SELECT DISTINCT `port_id` FROM `neighbours` WHERE `device_id` = ? AND `active` = 1";
$cache['ports_neighbours'][$device['device_id']] = dbFetchColumn($sql, [ $device['device_id'] ]);
}
// Pre-cache all port stacks for device
if (!isset($cache['ports_stack'][$device['device_id']])) { // already cached?
$cache['ports_stack'][$device['device_id']] = [];
foreach (dbFetchRows("SELECT `port_id_low`, `port_id_high` FROM `ports_stack` WHERE `device_id` = ? AND `ifStackStatus` = ?", [ $device['device_id'], 'active' ]) as $stack) {
$cache['ports_stack'][$device['device_id']]['high'][$stack['port_id_low']][$stack['port_id_high']] = $stack['port_id_high'];
$cache['ports_stack'][$device['device_id']]['low'][$stack['port_id_high']][$stack['port_id_low']] = $stack['port_id_low'];
}
}
// Cache ports vlans
if (!isset($cache['ports_vlan'][$device['device_id']])) { // already cached?
$cache['ports_vlan'][$device['device_id']] = [];
foreach (dbFetchRows('SELECT * FROM `ports_vlans` AS PV LEFT JOIN vlans AS V ON PV.`vlan` = V.`vlan_vlan` AND PV.`device_id` = V.`device_id`
WHERE PV.`device_id` = ? ORDER BY PV.`vlan`', [ $device['device_id'] ]) as $entry) {
$cache['ports_vlan'][$device['device_id']][$entry['port_id']][$entry['vlan']] = $entry;
}
}
}
// TESTME needs unit testing
// DOCME needs phpdoc block
function port_permitted($port_id, $device_id = NULL)
{
return is_entity_permitted($port_id, 'port', $device_id);
}
// TESTME needs unit testing
// DOCME needs phpdoc block
function port_permitted_array(&$ports)
{
// Strip out the ports the user isn't allowed to see, if they don't have global rights
if ($_SESSION['userlevel'] < '7') {
foreach ($ports as $key => $port) {
if (!port_permitted($port['port_id'], $port['device_id'])) {
//r($ports[$key]);
unset($ports[$key]);
}
}
}
}
// EOF