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 65
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Controllers;
use Icinga\Exception\NotFoundError;
use Icinga\Module\Icingadb\Model\Downtime;
use Icinga\Module\Icingadb\Web\Controller;
use Icinga\Module\Icingadb\Widget\Detail\DowntimeDetail;
use Icinga\Module\Icingadb\Widget\Detail\ObjectHeader;
use ipl\Stdlib\Filter;
class DowntimeController extends Controller
{
/** @var Downtime */
protected $downtime;
public function init()
{
$this->addTitleTab(t('Downtime'));
$name = $this->params->getRequired('name');
$query = Downtime::on($this->getDb())->with([
'host',
'host.state',
'service',
'service.state',
'service.host',
'service.host.state',
'parent',
'parent.host',
'parent.host.state',
'parent.service',
'parent.service.state',
'triggered_by',
'triggered_by.host',
'triggered_by.host.state',
'triggered_by.service',
'triggered_by.service.state'
]);
$query->filter(Filter::equal('downtime.name', $name));
$this->applyRestrictions($query);
$downtime = $query->first();
if ($downtime === null) {
throw new NotFoundError(t('Downtime not found'));
}
$this->downtime = $downtime;
}
public function indexAction()
{
$detail = new DowntimeDetail($this->downtime);
$this->addControl(new ObjectHeader($this->downtime));
$this->addContent($detail);
$this->setAutorefreshInterval(10);
}
}
|