mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Fallback template, give reason Print the error and notice of the fallback template being used. * more strict typing
116 lines
3.7 KiB
PHP
116 lines
3.7 KiB
PHP
<?php
|
|
/**
|
|
* Template.php
|
|
*
|
|
* Base Template class
|
|
*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*
|
|
* @link https://www.librenms.org
|
|
*
|
|
* @copyright 2018 Neil Lathwood
|
|
* @author Neil Lathwood <gh+n@laf.io>
|
|
*/
|
|
|
|
namespace LibreNMS\Alert;
|
|
|
|
use App\Models\AlertTemplate;
|
|
use Illuminate\Support\Facades\Blade;
|
|
use LibreNMS\Enum\AlertState;
|
|
|
|
class Template
|
|
{
|
|
public $template;
|
|
|
|
/**
|
|
* Get the template details
|
|
*
|
|
* @param array|null $obj
|
|
* @return mixed
|
|
*/
|
|
public function getTemplate($obj = null)
|
|
{
|
|
if ($this->template) {
|
|
// Return the cached template information.
|
|
return $this->template;
|
|
}
|
|
$this->template = AlertTemplate::whereHas('map', function ($query) use ($obj) {
|
|
$query->where('alert_rule_id', '=', $obj['rule_id']);
|
|
})->first();
|
|
if (! $this->template) {
|
|
$this->template = AlertTemplate::where('name', '=', 'Default Alert Template')->first();
|
|
}
|
|
|
|
return $this->template;
|
|
}
|
|
|
|
public function getTitle($data)
|
|
{
|
|
return $this->bladeTitle($data);
|
|
}
|
|
|
|
public function getBody($data)
|
|
{
|
|
return $this->bladeBody($data);
|
|
}
|
|
|
|
/**
|
|
* Parse Blade body
|
|
*
|
|
* @param array $data
|
|
* @return string
|
|
*/
|
|
public function bladeBody($data)
|
|
{
|
|
$alert['alert'] = new AlertData($data['alert']);
|
|
try {
|
|
return Blade::render($data['template']->template, $alert);
|
|
} catch (\Exception $e) {
|
|
return Blade::render($this->getDefaultTemplate($data['template']->name ?? '', $e->getMessage()), $alert);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Parse Blade title
|
|
*
|
|
* @param array $data
|
|
* @return string
|
|
*/
|
|
public function bladeTitle($data)
|
|
{
|
|
$alert['alert'] = new AlertData($data['alert']);
|
|
try {
|
|
return Blade::render($data['title'], $alert);
|
|
} catch (\Exception $e) {
|
|
return $data['title'] ?: Blade::render('Template ' . $data['name'], $alert);
|
|
}
|
|
}
|
|
|
|
public function getDefaultTemplate(string $template_name, string $error): string
|
|
{
|
|
return '{{ $alert->title }}' . PHP_EOL .
|
|
'Severity: {{ $alert->severity }}' . PHP_EOL .
|
|
'@if ($alert->state == ' . AlertState::RECOVERED . ')Time elapsed: {{ $alert->elapsed }} @endif ' . PHP_EOL .
|
|
'Timestamp: {{ $alert->timestamp }}' . PHP_EOL .
|
|
'Unique-ID: {{ $alert->uid }}' . PHP_EOL .
|
|
'Rule: @if ($alert->name) {{ $alert->name }} @else {{ $alert->rule }} @endif ' . PHP_EOL .
|
|
'@if ($alert->faults)Faults:' . PHP_EOL .
|
|
'@foreach ($alert->faults as $key => $value)' . PHP_EOL .
|
|
' #{{ $key }}: {{ $value[\'string\'] }} @endforeach' . PHP_EOL .
|
|
'@endif' . PHP_EOL .
|
|
'Alert sent to: @foreach ($alert->contacts as $key => $value) {{ $value }} <{{ $key }}> @endforeach' . PHP_EOL .
|
|
'Warning! Fallback template used due to error in template ' . htmlspecialchars($template_name) . ': ' . htmlspecialchars($error) . PHP_EOL;
|
|
}
|
|
}
|