162 lines
5.0 KiB
PHP
Raw Normal View History

<?php
/**
* ports.inc.php
*
* Exports the ports table to json
*
* 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 3 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2016 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
$where = "`D`.`hostname` != '' ";
$param = array();
$sql = 'FROM `ports`';
if (is_admin() === false && is_read() === false) {
$sql .= ' LEFT JOIN `devices_perms` AS `DP` ON `ports`.`device_id` = `DP`.`device_id`';
$sql .= ' LEFT JOIN `ports_perms` AS `PP` ON `ports`.`port_id` = `PP`.`port_id`';
$where .= ' AND (`DP`.`user_id`=? OR `PP`.`user_id`=?)';
$param[] = $_SESSION['user_id'];
$param[] = $_SESSION['user_id'];
}
$sql .= ' LEFT JOIN `devices` AS `D` ON `ports`.`device_id` = `D`.`device_id`';
if (!empty($_POST['hostname'])) {
$where .= ' AND `D`.`hostname` LIKE ?';
$param[] = '%' . $_POST['hostname'] . '%';
}
if (!empty($_POST['location'])) {
$where .= " AND `D`.`location` = ?";
$param[] = $_POST['location'];
}
$sql .= " WHERE $where ";
if (!empty($_POST['errors'])) {
$sql .= " AND (`ports`.`ifInErrors_delta` > 0 OR `ports`.`ifOutErrors_delta` > 0)";
}
if (!empty($_POST['device_id'])) {
$sql .= ' AND `ports`.`device_id`=?';
$param[] = $_POST['device_id'];
}
if (!empty($_POST['state'])) {
$sql .= ' AND `ports`.`ifOperStatus`=?';
$param[] = $_POST['state'];
}
if (!empty($_POST['ifSpeed'])) {
$sql .= ' AND `ports`.`ifSpeed`=?';
$param[] = $_POST['ifSpeed'];
}
if (!empty($_POST['ifType'])) {
$sql .= ' AND `ports`.`ifType`=?';
$param[] = $_POST['ifType'];
}
if (!empty($_POST['port_descr_type'])) {
$sql .= ' AND `ports`.`port_descr_type`=?';
$param[] = $_POST['port_descr_type'];
}
if (!empty($_POST['ifAlias'])) {
$sql .= ' AND `ports`.`ifAlias` LIKE ?';
$param[] = '%'.$_POST['ifAlias'].'%';
}
$sql .= ' AND `ports`.`disabled`=?';
$param[] = (int)(isset($_POST['disabled']) && $_POST['disabled']);
$sql .= ' AND `ports`.`ignore`=?';
$param[] = (int)(isset($_POST['ignore']) && $_POST['ignore']);
$sql .= ' AND `ports`.`deleted`=?';
$param[] = (int)(isset($_POST['deleted']) && $_POST['deleted']);
$count_sql = "SELECT COUNT(`ports`.`port_id`) $sql";
$total = (int)dbFetchCell($count_sql, $param);
if (isset($sort) && !empty($sort)) {
list($sort_column, $sort_order) = explode(' ', trim($sort));
if ($sort_column == 'device') {
$sql .= " ORDER BY `D`.`hostname` $sort_order";
} elseif ($sort_column == 'port') {
$sql .= " ORDER BY `ifDescr` $sort_order";
} else {
$sql .= " ORDER BY `$sort_column` $sort_order";
}
}
if (isset($current)) {
$limit_low = (($current * $rowCount) - ($rowCount));
$limit_high = $rowCount;
}
if ($rowCount != -1) {
$sql .= " LIMIT $limit_low,$limit_high";
}
$sql = "SELECT DISTINCT(`ports`.`port_id`),`ports`.* $sql";
foreach (dbFetchRows($sql, $param) as $port) {
$device = device_by_id_cache($port['device_id']);
// FIXME what actions should we have?
$actions = '<div class="container-fluid"><div class="row">';
$actions .= '<div class="col-xs-1"><a href="';
$actions .= generate_device_url($device, array('tab' => 'alerts'));
$actions .= '"><img src="images/16/bell.png" border="0" align="absmiddle" alt="View alerts" title="View alerts" /></a></div>';
if ($_SESSION['userlevel'] >= '7') {
$actions .= '<div class="col-xs-1"><a href="';
$actions .= generate_device_url($device, array('tab' => 'edit', 'section' => 'ports'));
$actions .= '"><img src="images/16/wrench.png" border="0" align="absmiddle" alt="Edit ports" title="Edit ports" /></a></div>';
}
$actions .= '</div></div>';
$response[] = array(
'device' => generate_device_link($device),
'port' => generate_port_link($port),
'ifSpeed' => $port['ifSpeed'],
'ifInOctets_rate' => $port['ifInOctets_rate'],
'ifOutOctets_rate' => $port['ifOutOctets_rate'],
'ifInUcastPkts_rate' => $port['ifInUcastPkts_rate'],
'ifOutUcastPkts_rate' => $port['ifOutUcastPkts_rate'],
'ifInErrors' => $port['ifInErrors'],
'ifOutErrors' => $port['ifOutErrors'],
'ifType' => humanmedia($port['ifType']),
'description' => $port['ifAlias'],
'actions' => $actions,
);
}
$output = array(
'current' => $current,
'rowCount' => $rowCount,
'rows' => $response,
'total' => $total,
);
echo _json_encode($output);