2018-09-20 15:33:03 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* SyslogController.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 2018 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Table;
|
|
|
|
|
|
|
|
use App\Models\Syslog;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
|
|
|
|
class SyslogController extends TableController
|
|
|
|
{
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'device' => 'nullable|int',
|
2019-08-08 02:59:14 +02:00
|
|
|
'device_group' => 'nullable|int',
|
2018-09-20 15:33:03 -05:00
|
|
|
'program' => 'nullable|string',
|
|
|
|
'priority' => 'nullable|string',
|
|
|
|
'to' => 'nullable|date',
|
|
|
|
'from' => 'nullable|date',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-01-14 14:00:05 -06:00
|
|
|
public function searchFields($request)
|
|
|
|
{
|
|
|
|
return ['msg'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function filterFields($request)
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'device_id' => 'device',
|
|
|
|
'program' => 'program',
|
|
|
|
'priority' => 'priority',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2018-09-20 15:33:03 -05:00
|
|
|
/**
|
|
|
|
* Defines the base query for this resource
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @return \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder
|
|
|
|
*/
|
|
|
|
public function baseQuery($request)
|
|
|
|
{
|
|
|
|
/** @var Builder $query */
|
2019-08-08 02:59:14 +02:00
|
|
|
return Syslog::hasAccess($request->user())
|
|
|
|
->with('device')
|
|
|
|
->when($request->device_group, function ($query) use ($request) {
|
|
|
|
$query->inDeviceGroup($request->device_group);
|
|
|
|
})
|
|
|
|
->when($request->from, function ($query) use ($request) {
|
|
|
|
$query->where('timestamp', '>=', $request->from);
|
|
|
|
})
|
|
|
|
->when($request->to, function ($query) use ($request) {
|
|
|
|
$query->where('timestamp', '<=', $request->to);
|
|
|
|
});
|
2018-09-20 15:33:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function formatItem($syslog)
|
|
|
|
{
|
|
|
|
$device = $syslog->device;
|
|
|
|
|
|
|
|
return [
|
2020-06-05 05:25:34 +02:00
|
|
|
'label' => $this->setLabel($syslog),
|
2018-09-20 15:33:03 -05:00
|
|
|
'timestamp' => $syslog->timestamp,
|
2018-09-21 08:22:15 -05:00
|
|
|
'level' => htmlentities($syslog->level),
|
2018-09-20 15:33:03 -05:00
|
|
|
'device_id' => $device ? \LibreNMS\Util\Url::deviceLink($device, $device->shortDisplayName()) : '',
|
2018-09-21 07:33:34 -05:00
|
|
|
'program' => htmlentities($syslog->program),
|
|
|
|
'msg' => htmlentities($syslog->msg),
|
2018-09-21 08:22:15 -05:00
|
|
|
'priority' => htmlentities($syslog->priority),
|
2018-09-20 15:33:03 -05:00
|
|
|
];
|
|
|
|
}
|
2020-06-05 05:25:34 +02:00
|
|
|
|
|
|
|
private function setLabel($syslog)
|
|
|
|
{
|
|
|
|
$output = "<span class='alert-status ";
|
|
|
|
$output .= $this->priorityLabel($syslog->priority);
|
|
|
|
$output .= "'>";
|
|
|
|
$output .= "</span>";
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $syslog_priority
|
|
|
|
* @return string $syslog_priority_icon
|
|
|
|
*/
|
|
|
|
private function priorityLabel($syslog_priority)
|
|
|
|
{
|
|
|
|
switch ($syslog_priority) {
|
|
|
|
case "debug":
|
|
|
|
return "label-default"; //Debug
|
|
|
|
case "info":
|
|
|
|
return "label-info"; //Informational
|
|
|
|
case "notice":
|
|
|
|
return "label-primary"; //Notice
|
|
|
|
case "warning":
|
|
|
|
return "label-warning"; //Warning
|
|
|
|
case "err":
|
|
|
|
return "label-danger"; //Error
|
|
|
|
case "crit":
|
|
|
|
return "label-danger"; //Critical
|
|
|
|
case "alert":
|
|
|
|
return "label-danger"; //Alert
|
|
|
|
case "emerg":
|
|
|
|
return "label-danger"; //Emergency
|
|
|
|
}
|
|
|
|
} // end syslog_priority
|
2018-09-20 15:33:03 -05:00
|
|
|
}
|