Files
librenms-librenms/app/Http/Controllers/Table/TnmsneController.php
Tony Murray 9fca01830c Update Tnmsne table backend (#15384)
remove ridiculous sql injection vulnerability
2023-10-05 10:32:21 +02:00

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>',
};
}
}