icingaweb2-module-director/application/controllers/ServicetemplateController.php

177 lines
6.0 KiB
PHP

<?php
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Objects\IcingaObject;
use Icinga\Module\Director\Objects\IcingaService;
use Icinga\Module\Director\Web\Controller\Extension\DirectorDb;
use Icinga\Module\Director\Web\Table\ApplyRulesTable;
use Icinga\Module\Director\Web\Table\ObjectsTableService;
use Icinga\Module\Director\Web\Table\TemplatesTable;
use Icinga\Module\Director\Web\Table\TemplateUsageTable;
use ipl\Html\FormattedString;
use ipl\Html\Html;
use ipl\Html\Link;
use ipl\Web\CompatController;
use ipl\Web\Component\UnorderedList;
class ServicetemplateController extends CompatController
{
use DirectorDb;
public function objectsAction()
{
$template = $this->requireTemplate();
$this
->addSingleTab($this->translate('Single Services'))
->setAutorefreshInterval(10)
->addTitle(
$this->translate('Services based on %s'),
$template->getObjectName()
)->addBackToUsageLink($template);
$table = new ObjectsTableService($this->db());
$table->setAuth($this->Auth());
$table->filterTemplate($template, $this->params->get('inheritance', 'direct'));
$table->renderTo($this);
}
public function templatesAction()
{
$template = $this->requireTemplate();
$this
->addSingleTab($this->translate('Service Templates'))
->setAutorefreshInterval(10)
->addTitle(
$this->translate('Service templates based on %s'),
$template->getObjectName()
)->addBackToUsageLink($template);
$table = TemplatesTable::create('service', $this->db());
$table->filterTemplate($template, $this->params->get('inheritance', 'direct'));
$table->renderTo($this);
}
public function applyrulesAction()
{
$template = $this->requireTemplate();
$this
->addSingleTab($this->translate('Applied services'))
->setAutorefreshInterval(10)
->addTitle(
$this->translate('Service Apply Rules based on %s'),
$template->getObjectName()
)->addBackToUsageLink($template);
$table = new ApplyRulesTable($this->db());
$table->setType('service');
$table->filterTemplate($template, $this->params->get('inheritance', 'direct'));
$table->renderTo($this);
}
protected function addBackToUsageLink(IcingaObject $template)
{
$this->actions()->add(
Link::create(
$this->translate('Back'),
'director/servicetemplate/usage',
['name' => $template->getObjectName()],
['class' => 'icon-left-big']
)
);
return $this;
}
public function usageAction()
{
$template = $this->requireTemplate();
$templateName = $template->getObjectName();
$this
->addSingleTab($this->translate('Service Template Usage'))
->addTitle($this->translate('Template: %s'), $templateName)
->setAutorefreshInterval(10);
$this->actions()->add([
Link::create(
$this->translate('Modify'),
'director/service/edit',
['name' => $templateName],
['class' => 'icon-edit']
),
Link::create(
$this->translate('Preview'),
'director/service/render',
['name' => $templateName],
[
'title' => $this->translate('Template rendering preview'),
'class' => 'icon-doc-text'
]
),
Link::create(
$this->translate('History'),
'director/service/history',
['name' => $templateName],
[
'title' => $this->translate('Template history'),
'class' => 'icon-history'
]
)
]);
$this->content()->addPrintf(
$this->translate(
'This is the "%s" Service Template. Based on this, you might want to:'
),
$templateName
)->add(
new UnorderedList([
new FormattedString($this->translate('Create new Service Checks for %s'), [
Link::create(
$this->translate('specific Hosts'),
'director/servicetemplate/addhost',
['name' => $templateName]
)
]),
new FormattedString($this->translate('Assign this Template multiple times using %s'), [
Link::create(
$this->translate('Apply Rules'),
'director/service/add',
['apply' => $templateName]
)
]),
new FormattedString($this->translate('Create a new %s inheriting from this one'), [
Link::create(
$this->translate('Template'),
'director/servicetemplate/addhost',
['name' => $templateName]
)
]),
new FormattedString($this->translate('Make a Service based on this Template member of a %s'), [
Link::create(
$this->translate('Service Set'),
'director/servicetemplate/addtoset',
['name' => $templateName]
),
])
], [
'class' => 'vertical-action-list'
])
)->add(
Html::tag('h2', null, $this->translate('Current Template Usage'))
);
$this->content()->add(
TemplateUsageTable::forTemplate($template)
);
}
protected function requireTemplate()
{
return IcingaService::load([
'object_name' => $this->params->get('name')
], $this->db());
}
}