2016-04-12 21:00:48 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Forms;
|
|
|
|
|
|
|
|
use Icinga\Module\Director\Objects\IcingaObject;
|
|
|
|
use Icinga\Module\Director\Web\Form\QuickForm;
|
|
|
|
|
|
|
|
class IcingaImportObjectForm extends QuickForm
|
|
|
|
{
|
2016-11-01 18:28:36 +01:00
|
|
|
/** @var IcingaObject */
|
2016-04-12 21:00:48 +02:00
|
|
|
protected $object;
|
|
|
|
|
|
|
|
public function setup()
|
|
|
|
{
|
|
|
|
$this->addNote($this->translate(
|
2016-07-21 17:43:57 +02:00
|
|
|
"Importing an object means that its type will change from"
|
2016-04-12 21:00:48 +02:00
|
|
|
. ' "external" to "object". That way it will make part of the'
|
|
|
|
. ' next deployment. So in case you imported this object from'
|
|
|
|
. ' your Icinga node make sure to remove it from your local'
|
|
|
|
. ' configuration before issueing the next deployment. In case'
|
|
|
|
. ' of a conflict nothing bad will happen, just your config'
|
|
|
|
. " won't deploy."
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->submitLabel = sprintf(
|
|
|
|
$this->translate('Import external "%s"'),
|
|
|
|
$this->object->object_name
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onSuccess()
|
|
|
|
{
|
2016-11-01 18:28:36 +01:00
|
|
|
$object = $this->object;
|
|
|
|
if ($object->set('object_type', 'object')->store()) {
|
2016-04-12 21:00:48 +02:00
|
|
|
$this->redirectOnSuccess(sprintf(
|
|
|
|
$this->translate('%s "%s" has been imported"'),
|
|
|
|
$object->getShortTableName(),
|
2016-11-01 18:28:36 +01:00
|
|
|
$object->getObjectName()
|
2016-04-12 21:00:48 +02:00
|
|
|
));
|
|
|
|
} else {
|
2016-11-01 18:28:36 +01:00
|
|
|
$this->addError(sprintf(
|
2016-04-12 21:00:48 +02:00
|
|
|
$this->translate('Failed to import %s "%s"'),
|
|
|
|
$object->getShortTableName(),
|
2016-11-01 18:28:36 +01:00
|
|
|
$object->getObjectName()
|
2016-04-12 21:00:48 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setObject(IcingaObject $object)
|
|
|
|
{
|
|
|
|
$this->object = $object;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|