mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
111 lines
3.4 KiB
PHP
111 lines
3.4 KiB
PHP
<?php
|
|
/*
|
|
* TnmsNeInfoController.php
|
|
*
|
|
* -Description-
|
|
*
|
|
* 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 2023 Tony Murray
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
*/
|
|
|
|
namespace App\Http\Controllers\Table;
|
|
|
|
use App\Models\TnmsneInfo;
|
|
use Illuminate\Http\Request;
|
|
|
|
class TnmsneController extends TableController
|
|
{
|
|
protected function rules()
|
|
{
|
|
return [
|
|
'device_id' => 'nullable|integer',
|
|
];
|
|
}
|
|
|
|
protected function sortFields($request)
|
|
{
|
|
return [
|
|
'neName',
|
|
'neLocation',
|
|
'neType',
|
|
'neOpMode',
|
|
'neAlarm',
|
|
'neOpState',
|
|
];
|
|
}
|
|
|
|
protected function searchFields(Request $request)
|
|
{
|
|
return [
|
|
'neName',
|
|
'neLocation',
|
|
'neType',
|
|
'neOpMode',
|
|
'neAlarm',
|
|
'neOpState',
|
|
];
|
|
}
|
|
|
|
protected function filterFields(Request $request)
|
|
{
|
|
return ['device_id'];
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function baseQuery(Request $request)
|
|
{
|
|
return TnmsneInfo::query();
|
|
}
|
|
|
|
/**
|
|
* @param TnmsneInfo $tnmsne
|
|
* @return array
|
|
*/
|
|
public function formatItem($tnmsne)
|
|
{
|
|
$neOp = $tnmsne->neOpMode == 'operation'
|
|
? '<span style="min-width:40px;" class="label label-success">operation</span>'
|
|
: '<span style="min-width:40px;" class="label label-danger">' . htmlspecialchars($tnmsne->neOpMode) . '</span>';
|
|
|
|
$opState = $tnmsne->neOpState == 'enabled'
|
|
? '<td class="list"><span style="min-width:40px;" class="label label-success">enabled</span></td>'
|
|
: '<td class="list"><span style="min-width:40px;" class="label label-danger">' . htmlspecialchars($tnmsne->neOpState) . '</span></td>';
|
|
|
|
return [
|
|
'neName' => htmlspecialchars($tnmsne->neName),
|
|
'neLocation' => htmlspecialchars($tnmsne->neLocation),
|
|
'neType' => htmlspecialchars($tnmsne->neType),
|
|
'neOpMode' => $neOp,
|
|
'neAlarm' => $this->getAlarmLabel($tnmsne->neAlarm),
|
|
'neOpState' => $opState,
|
|
];
|
|
}
|
|
|
|
private function getAlarmLabel(string $neAlarm): string
|
|
{
|
|
return match ($neAlarm) {
|
|
'cleared' => '<span style="min-width:40px;" class="label label-success">cleared</span>',
|
|
'warning' => '<span style="min-width:40px;" class="label label-warning">warning</span>',
|
|
'minor', 'major', 'critical', 'indeterminate' => '<span style="min-width:40px;" class="label label-danger">' . htmlspecialchars($neAlarm) . '</span>',
|
|
default => '<span style="min-width:40px;" class="label label-default">' . htmlspecialchars($neAlarm) . '</span>',
|
|
};
|
|
}
|
|
}
|