2015-07-21 15:16:18 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-20 22:34:04 +02:00
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
use Icinga\Module\Director\Forms\ImportRowModifierForm;
|
|
|
|
use Icinga\Module\Director\Forms\ImportSourceForm;
|
2015-07-21 15:16:18 +02:00
|
|
|
use Icinga\Module\Director\Web\Controller\ActionController;
|
2015-07-22 10:12:50 +02:00
|
|
|
use Icinga\Module\Director\Objects\ImportSource;
|
2017-08-16 14:58:23 +02:00
|
|
|
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;
|
|
|
|
use ipl\Html\Link;
|
2015-07-21 15:16:18 +02:00
|
|
|
|
2015-10-20 22:34:04 +02:00
|
|
|
class ImportsourceController extends ActionController
|
2015-07-21 15:16:18 +02:00
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-26 15:51:05 +02:00
|
|
|
public function indexAction()
|
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$source = ImportSource::load($this->params->getRequired('id'), $this->db());
|
|
|
|
$this->addTitle(
|
2016-06-26 15:51:05 +02:00
|
|
|
$this->translate('Import source: %s'),
|
2017-08-16 14:58:23 +02:00
|
|
|
$source->get('source_name')
|
|
|
|
)->setAutorefreshInterval(10);
|
2016-06-26 15:51:05 +02:00
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
$this->content()->add(new ImportSourceDetails($source));
|
2016-06-26 15:51:05 +02:00
|
|
|
}
|
|
|
|
|
2015-07-21 15:16:18 +02:00
|
|
|
public function addAction()
|
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$this->addTitle($this->translate('Add import source'))
|
|
|
|
->content()->add(
|
|
|
|
ImportSourceForm::load()->setDb($this->db())
|
|
|
|
->setSuccessUrl('director/importsources')
|
|
|
|
->handleRequest()
|
|
|
|
);
|
2015-07-21 15:16:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function editAction()
|
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$form = ImportSourceForm::load()->setDb($this->db())
|
|
|
|
->loadObject($this->params->getRequired('id'))
|
|
|
|
->setListUrl('director/importsources')
|
|
|
|
->handleRequest();
|
2016-06-26 15:51:05 +02:00
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
$this->content()->add($form);
|
2015-07-21 15:16:18 +02:00
|
|
|
}
|
|
|
|
|
2015-07-26 15:42:21 +02:00
|
|
|
public function previewAction()
|
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$source = ImportSource::load($this->params->getRequired('id'), $this->db());
|
2015-11-03 09:57:16 +01:00
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
$this->addTitle(
|
2015-07-26 15:42:21 +02:00
|
|
|
$this->translate('Import source preview: "%s"'),
|
2017-08-16 14:58:23 +02:00
|
|
|
$source->get('source_name')
|
2015-07-26 15:42:21 +02:00
|
|
|
);
|
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
(new ImportsourceHookTable())->setImportSource($source)->renderTo($this);
|
2015-07-26 15:42:21 +02:00
|
|
|
}
|
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
protected function requireImportSourceAndAddModifierTable()
|
2016-02-18 11:25:51 +01:00
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$source = ImportSource::load($this->params->getRequired('source_id'), $this->db());
|
|
|
|
PropertymodifierTable::load($source)->renderTo($this);
|
|
|
|
return $source;
|
|
|
|
}
|
2016-02-18 11:25:51 +01:00
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
public function modifierAction()
|
|
|
|
{
|
|
|
|
$source = $this->requireImportSourceAndAddModifierTable();
|
|
|
|
$this->addAddLink(
|
2016-06-13 20:21:33 +02:00
|
|
|
$this->translate('Add property modifier'),
|
|
|
|
'director/importsource/addmodifier',
|
2017-08-16 14:58:23 +02:00
|
|
|
['source_id' => $source->getId()],
|
|
|
|
'_self'
|
|
|
|
)->addTitle($this->translate('Property modifiers'));
|
2016-02-18 11:25:51 +01:00
|
|
|
}
|
|
|
|
|
2016-06-16 14:47:12 +02:00
|
|
|
public function historyAction()
|
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$source = ImportSource::load($this->params->getRequired('id'), $this->db());
|
|
|
|
$this->addTitle($this->translate('Import run history'));
|
2016-08-23 16:26:06 +02:00
|
|
|
|
|
|
|
// TODO: temporarily disabled, find a better place for stats:
|
|
|
|
// $this->view->stats = $this->db()->fetchImportStatistics();
|
2017-08-16 14:58:23 +02:00
|
|
|
ImportrunTable::load($source)->renderTo($this);
|
2015-07-21 15:16:18 +02:00
|
|
|
}
|
2015-11-03 09:57:16 +01:00
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
public function addmodifierAction()
|
2016-02-18 23:33:22 +01:00
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$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()
|
|
|
|
);
|
2016-02-18 23:33:22 +01:00
|
|
|
}
|
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
public function editmodifierAction()
|
2016-02-18 23:33:22 +01:00
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$source = $this->requireImportSourceAndAddModifierTable();
|
|
|
|
$this->addTitle(
|
|
|
|
$this->translate('%s: Property Modifier'),
|
|
|
|
$source->get('source_name')
|
|
|
|
)->addBackToModifiersLink($source);
|
|
|
|
$this->tabs()->activate('modifier');
|
|
|
|
|
|
|
|
$this->content()->prepend(
|
|
|
|
ImportRowModifierForm::load()->setDb($this->db())
|
|
|
|
->loadObject($this->params->getRequired('id'))
|
|
|
|
->setSource($source)
|
|
|
|
->handleRequest()
|
|
|
|
);
|
2016-02-18 23:33:22 +01:00
|
|
|
}
|
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
protected function addBackToModifiersLink(ImportSource $source)
|
2015-11-03 09:57:16 +01:00
|
|
|
{
|
2017-08-16 14:58:23 +02:00
|
|
|
$this->actions()->add(
|
|
|
|
Link::create(
|
|
|
|
$this->translate('back'),
|
|
|
|
'director/importsource/modifier',
|
|
|
|
['source_id' => $source->getId()],
|
|
|
|
['class' => 'icon-left-big']
|
|
|
|
)
|
|
|
|
);
|
2015-11-03 09:57:16 +01:00
|
|
|
|
2017-08-16 14:58:23 +02:00
|
|
|
return $this;
|
2015-11-03 09:57:16 +01:00
|
|
|
}
|
2015-07-21 15:16:18 +02:00
|
|
|
}
|