1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Controllers;
use Icinga\Module\Icingadb\Model\History;
use Icinga\Module\Icingadb\Web\Controller;
use Icinga\Module\Icingadb\Widget\Detail\EventDetail;
use Icinga\Module\Icingadb\Widget\Detail\ObjectHeader;
use ipl\Stdlib\Filter;
class EventController extends Controller
{
/** @var History */
protected $event;
public function init()
{
$this->addTitleTab(t('Event'));
$id = $this->params->getRequired('id');
$query = History::on($this->getDb())
->with([
'host',
'host.state',
'service',
'service.state',
'comment',
'downtime',
'downtime.parent',
'downtime.parent.host',
'downtime.parent.host.state',
'downtime.parent.service',
'downtime.parent.service.state',
'downtime.triggered_by',
'downtime.triggered_by.host',
'downtime.triggered_by.host.state',
'downtime.triggered_by.service',
'downtime.triggered_by.service.state',
'flapping',
'notification',
'acknowledgement',
'state'
])
->filter(Filter::equal('id', hex2bin($id)));
$this->applyRestrictions($query);
$event = $query->first();
if ($event === null) {
$this->httpNotFound(t('Event not found'));
}
$this->event = $event;
}
public function indexAction()
{
$this->addControl(new ObjectHeader($this->event));
$this->addContent(new EventDetail($this->event));
}
}
|