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

258 lines
8.7 KiB
PHP
Raw Normal View History

<?php
2015-10-20 22:34:04 +02:00
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Forms\ImportRowModifierForm;
use Icinga\Module\Director\Forms\ImportSourceForm;
use Icinga\Module\Director\Web\ActionBar\AutomationObjectActionBar;
use Icinga\Module\Director\Web\Controller\ActionController;
use Icinga\Module\Director\Objects\ImportSource;
use Icinga\Module\Director\Web\Form\CloneImportSourceForm;
use Icinga\Module\Director\Web\Table\ImportrunTable;
use Icinga\Module\Director\Web\Table\ImportsourceHookTable;
use Icinga\Module\Director\Web\Table\PropertymodifierTable;
use Icinga\Module\Director\Web\Tabs\ImportsourceTabs;
use Icinga\Module\Director\Web\Widget\ImportSourceDetails;
2017-10-09 15:23:27 +02:00
use dipl\Html\Link;
2015-10-20 22:34:04 +02:00
class ImportsourceController extends ActionController
{
/**
2018-06-23 09:05:10 +02:00
* @throws \Icinga\Exception\AuthenticationException
* @throws \Icinga\Exception\Http\HttpNotFoundException
2018-06-23 09:05:10 +02:00
* @throws \Icinga\Exception\NotFoundError
* @throws \Icinga\Security\SecurityException
*/
public function init()
{
parent::init();
$id = $this->params->get('source_id', $this->params->get('id'));
$tabs = $this->tabs(new ImportsourceTabs($id));
$action = $this->getRequest()->getActionName();
if ($tabs->has($action)) {
$tabs->activate($action);
}
}
protected function addMainActions()
{
$this->actions(new AutomationObjectActionBar(
$this->getRequest()
));
}
/**
* @throws \Icinga\Exception\ConfigurationError
2018-06-23 09:05:10 +02:00
* @throws \Icinga\Exception\IcingaException
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
public function indexAction()
{
$this->addMainActions();
$source = ImportSource::load($this->params->getRequired('id'), $this->db());
if ($this->params->get('format') === 'json') {
2018-06-23 09:05:10 +02:00
$this->sendJson($this->getResponse(), $source->export());
return;
}
$this->addTitle(
$this->translate('Import source: %s'),
$source->get('source_name')
)->setAutorefreshInterval(10);
$this->content()->add(new ImportSourceDetails($source));
}
/**
* @throws \Icinga\Exception\ConfigurationError
*/
public function addAction()
{
$this->addTitle($this->translate('Add import source'))
->content()->add(
ImportSourceForm::load()->setDb($this->db())
->setSuccessUrl('director/importsources')
->handleRequest()
);
}
/**
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\MissingParameterException
*/
public function editAction()
{
$this->addMainActions();
$this->tabs()->activateMainWithPostfix($this->translate('Modify'));
$id = $this->params->getRequired('id');
$form = ImportSourceForm::load()->setDb($this->db())
->loadObject($id)
->setListUrl('director/importsources')
->handleRequest();
$this->addTitle(
$this->translate('Import source: %s'),
$form->getObject()->get('source_name')
)->setAutorefreshInterval(10);
$this->content()->add($form);
}
/**
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
public function cloneAction()
{
$this->addMainActions();
$this->tabs()->activateMainWithPostfix($this->translate('Clone'));
$id = $this->params->getRequired('id');
$source = ImportSource::load($id, $this->db());
$this->addTitle('Clone: %s', $source->get('source_name'));
$form = new CloneImportSourceForm($source);
$this->content()->add($form);
$form->handleRequest($this->getRequest());
}
/**
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
2015-07-26 15:42:21 +02:00
public function previewAction()
{
$source = ImportSource::load($this->params->getRequired('id'), $this->db());
$this->addTitle(
$this->translate('Import source preview: %s'),
$source->get('source_name')
2015-07-26 15:42:21 +02:00
);
$this->actions()->add(Link::create('[..]', '#', null, [
'onclick' => 'javascript:$("table.raw-data-table").toggleClass("collapsed");'
]));
(new ImportsourceHookTable())->setImportSource($source)->renderTo($this);
2015-07-26 15:42:21 +02:00
}
/**
* @return ImportSource
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
protected function requireImportSourceAndAddModifierTable()
2016-02-18 11:25:51 +01:00
{
$source = ImportSource::load($this->params->getRequired('source_id'), $this->db());
PropertymodifierTable::load($source, $this->url())
->handleSortPriorityActions($this->getRequest(), $this->getResponse())
->renderTo($this);
return $source;
}
2016-02-18 11:25:51 +01:00
/**
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
public function modifierAction()
{
$source = $this->requireImportSourceAndAddModifierTable();
$this->addTitle($this->translate('Property modifiers: %s'), $source->get('source_name'));
$this->addAddLink(
2016-06-13 20:21:33 +02:00
$this->translate('Add property modifier'),
'director/importsource/addmodifier',
['source_id' => $source->getId()],
'_self'
);
2016-02-18 11:25:51 +01:00
}
/**
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
public function historyAction()
{
$source = ImportSource::load($this->params->getRequired('id'), $this->db());
$this->addTitle($this->translate('Import run history: %s'), $source->get('source_name'));
// TODO: temporarily disabled, find a better place for stats:
// $this->view->stats = $this->db()->fetchImportStatistics();
ImportrunTable::load($source)->renderTo($this);
}
/**
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\Http\HttpNotFoundException
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
public function addmodifierAction()
{
$source = $this->requireImportSourceAndAddModifierTable();
$this->addTitle(
$this->translate('%s: add Property Modifier'),
$source->get('source_name')
)->addBackToModifiersLink($source);
$this->tabs()->activate('modifier');
$this->content()->prepend(
ImportRowModifierForm::load()->setDb($this->db())
->setSource($source)
->setSuccessUrl(
'director/importsource/modifier',
['source_id' => $source->getId()]
)->handleRequest()
);
}
/**
* @throws \Icinga\Exception\ConfigurationError
* @throws \Icinga\Exception\Http\HttpNotFoundException
* @throws \Icinga\Exception\MissingParameterException
* @throws \Icinga\Exception\NotFoundError
*/
public function editmodifierAction()
{
// We need to load the table AFTER adding the title, otherwise search
// will not be placed next to the title
$source = ImportSource::load($this->params->getRequired('source_id'), $this->db());
$this->addTitle(
$this->translate('%s: Property Modifier'),
$source->get('source_name')
)->addBackToModifiersLink($source);
$source = $this->requireImportSourceAndAddModifierTable();
$this->tabs()->activate('modifier');
$listUrl = 'director/importsource/modifier?source_id='
. (int) $source->get('id');
$this->content()->prepend(
ImportRowModifierForm::load()->setDb($this->db())
->loadObject($this->params->getRequired('id'))
->setListUrl($listUrl)
->setSource($source)
->handleRequest()
);
}
/**
* @param ImportSource $source
* @return $this
*/
protected function addBackToModifiersLink(ImportSource $source)
{
$this->actions()->add(
Link::create(
$this->translate('back'),
'director/importsource/modifier',
['source_id' => $source->getId()],
['class' => 'icon-left-big']
)
);
return $this;
}
}