2014-09-04 08:47:16 +02:00
|
|
|
<?php
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
|
|
|
namespace Icinga\Module\Monitoring\Form\Config;
|
|
|
|
|
|
|
|
use InvalidArgumentException;
|
|
|
|
use Icinga\Exception\ConfigurationError;
|
2014-10-29 13:36:09 +01:00
|
|
|
use Icinga\Form\ConfigForm;
|
|
|
|
use Icinga\Module\Monitoring\Command\Transport\LocalCommandFile;
|
|
|
|
use Icinga\Module\Monitoring\Command\Transport\RemoteCommandFile;
|
2014-09-04 08:47:16 +02:00
|
|
|
use Icinga\Module\Monitoring\Form\Config\Instance\LocalInstanceForm;
|
|
|
|
use Icinga\Module\Monitoring\Form\Config\Instance\RemoteInstanceForm;
|
2014-10-29 13:36:09 +01:00
|
|
|
use Icinga\Web\Notification;
|
|
|
|
use Icinga\Web\Request;
|
2014-09-04 08:47:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form for modifying/creating monitoring instances
|
|
|
|
*/
|
|
|
|
class InstanceConfigForm extends ConfigForm
|
|
|
|
{
|
|
|
|
/**
|
2014-10-29 13:36:09 +01:00
|
|
|
* (non-PHPDoc)
|
|
|
|
* @see Form::init() For the method documentation.
|
2014-09-04 08:47:16 +02:00
|
|
|
*/
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
$this->setName('form_config_monitoring_instance');
|
2014-10-21 17:22:16 +02:00
|
|
|
$this->setSubmitLabel(mt('monitoring', 'Save Changes'));
|
2014-09-04 08:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-10-29 13:36:09 +01:00
|
|
|
* Get a form object for the given instance type
|
2014-09-04 08:47:16 +02:00
|
|
|
*
|
2014-10-29 13:36:09 +01:00
|
|
|
* @param string $type The instance type for which to return a form
|
2014-09-04 08:47:16 +02:00
|
|
|
*
|
2014-10-29 13:36:09 +01:00
|
|
|
* @return LocalInstanceForm|RemoteInstanceForm
|
2014-09-04 08:47:16 +02:00
|
|
|
*
|
|
|
|
* @throws InvalidArgumentException In case the given instance type is invalid
|
|
|
|
*/
|
|
|
|
public function getInstanceForm($type)
|
|
|
|
{
|
2014-10-29 13:36:09 +01:00
|
|
|
switch (strtolower($type)) {
|
|
|
|
case LocalCommandFile::TRANSPORT:
|
|
|
|
$form = new LocalInstanceForm();
|
|
|
|
break;
|
|
|
|
case RemoteCommandFile::TRANSPORT;
|
|
|
|
$form = new RemoteInstanceForm();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new InvalidArgumentException(
|
|
|
|
sprintf(mt('monitoring', 'Invalid instance type "%s" given'), $type)
|
|
|
|
);
|
2014-09-04 08:47:16 +02:00
|
|
|
}
|
2014-10-29 13:36:09 +01:00
|
|
|
return $form;
|
2014-09-04 08:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new instance
|
|
|
|
*
|
|
|
|
* The resource to add is identified by the array-key `name'.
|
|
|
|
*
|
|
|
|
* @param array $values The values to extend the configuration with
|
|
|
|
*
|
|
|
|
* @return self
|
|
|
|
*
|
|
|
|
* @throws InvalidArgumentException In case the resource already exists
|
|
|
|
*/
|
|
|
|
public function add(array $values)
|
|
|
|
{
|
|
|
|
$name = isset($values['name']) ? $values['name'] : '';
|
|
|
|
if (! $name) {
|
2014-10-21 17:22:16 +02:00
|
|
|
throw new InvalidArgumentException(mt('monitoring', 'Instance name missing'));
|
2014-10-29 13:36:09 +01:00
|
|
|
}
|
|
|
|
if (isset($this->config->{$name})) {
|
2014-10-21 17:22:16 +02:00
|
|
|
throw new InvalidArgumentException(mt('monitoring', 'Instance already exists'));
|
2014-09-04 08:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unset($values['name']);
|
|
|
|
$this->config->{$name} = $values;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit an existing instance
|
|
|
|
*
|
|
|
|
* @param string $name The name of the resource to edit
|
|
|
|
* @param array $values The values to edit the configuration with
|
|
|
|
*
|
|
|
|
* @return array The edited resource configuration
|
|
|
|
*
|
|
|
|
* @throws InvalidArgumentException In case the resource name is missing or invalid
|
|
|
|
*/
|
|
|
|
public function edit($name, array $values)
|
|
|
|
{
|
|
|
|
if (! $name) {
|
2014-10-21 17:22:16 +02:00
|
|
|
throw new InvalidArgumentException(mt('monitoring', 'Old instance name missing'));
|
2014-09-04 08:47:16 +02:00
|
|
|
} elseif (! ($newName = isset($values['name']) ? $values['name'] : '')) {
|
2014-10-21 17:22:16 +02:00
|
|
|
throw new InvalidArgumentException(mt('monitoring', 'New instance name missing'));
|
2014-09-04 08:47:16 +02:00
|
|
|
} elseif (! ($instanceConfig = $this->config->get($name))) {
|
2014-10-21 17:22:16 +02:00
|
|
|
throw new InvalidArgumentException(mt('monitoring', 'Unknown instance name provided'));
|
2014-09-04 08:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unset($values['name']);
|
|
|
|
unset($this->config->{$name});
|
2014-10-29 13:36:09 +01:00
|
|
|
$this->config->{$newName} = $values;
|
2014-09-04 08:47:16 +02:00
|
|
|
return $this->config->{$newName};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a instance
|
|
|
|
*
|
|
|
|
* @param string $name The name of the resource to remove
|
|
|
|
*
|
2014-10-29 13:36:09 +01:00
|
|
|
* @return array The removed resource configuration
|
2014-09-04 08:47:16 +02:00
|
|
|
*
|
|
|
|
* @throws InvalidArgumentException In case the resource name is missing or invalid
|
|
|
|
*/
|
|
|
|
public function remove($name)
|
|
|
|
{
|
|
|
|
if (! $name) {
|
2014-10-21 17:22:16 +02:00
|
|
|
throw new InvalidArgumentException(mt('monitoring', 'Instance name missing'));
|
2014-09-04 08:47:16 +02:00
|
|
|
} elseif (! ($instanceConfig = $this->config->get($name))) {
|
2014-10-21 17:22:16 +02:00
|
|
|
throw new InvalidArgumentException(mt('monitoring', 'Unknown instance name provided'));
|
2014-09-04 08:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unset($this->config->{$name});
|
|
|
|
return $instanceConfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-10-29 13:36:09 +01:00
|
|
|
* @see Form::onRequest() For the method documentation.
|
|
|
|
* @throws ConfigurationError In case the instance name is missing or invalid
|
2014-09-04 08:47:16 +02:00
|
|
|
*/
|
2014-10-29 13:36:09 +01:00
|
|
|
public function onRequest(Request $request)
|
2014-09-04 08:47:16 +02:00
|
|
|
{
|
|
|
|
$instanceName = $request->getQuery('instance');
|
2014-10-29 13:36:09 +01:00
|
|
|
if ($instanceName !== null) {
|
|
|
|
if (! $instanceName) {
|
|
|
|
throw new ConfigurationError(mt('monitoring', 'Instance name missing'));
|
|
|
|
}
|
|
|
|
if (! isset($this->config->{$instanceName})) {
|
|
|
|
throw new ConfigurationError(mt('monitoring', 'Unknown instance name given'));
|
|
|
|
}
|
2014-09-04 08:47:16 +02:00
|
|
|
|
2014-10-29 13:36:09 +01:00
|
|
|
$instanceConfig = $this->config->{$instanceName}->toArray();
|
|
|
|
$instanceConfig['name'] = $instanceName;
|
|
|
|
$this->populate($instanceConfig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* (non-PHPDoc)
|
|
|
|
* @see Form::onSuccess() For the method documentation.
|
|
|
|
*/
|
|
|
|
public function onSuccess(Request $request)
|
|
|
|
{
|
|
|
|
$instanceName = $request->getQuery('instance');
|
2014-09-04 08:47:16 +02:00
|
|
|
try {
|
|
|
|
if ($instanceName === null) { // create new instance
|
|
|
|
$this->add($this->getValues());
|
2014-10-21 17:22:16 +02:00
|
|
|
$message = mt('monitoring', 'Instance "%s" created successfully.');
|
2014-09-04 08:47:16 +02:00
|
|
|
} else { // edit existing instance
|
|
|
|
$this->edit($instanceName, $this->getValues());
|
2014-10-21 17:22:16 +02:00
|
|
|
$message = mt('monitoring', 'Instance "%s" edited successfully.');
|
2014-09-04 08:47:16 +02:00
|
|
|
}
|
|
|
|
} catch (InvalidArgumentException $e) {
|
|
|
|
Notification::error($e->getMessage());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->save()) {
|
|
|
|
Notification::success(sprintf($message, $this->getElement('name')->getValue()));
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-10-29 13:36:09 +01:00
|
|
|
* (non-PHPDoc)
|
|
|
|
* @see Form::createElements() For the method documentation.
|
2014-09-04 08:47:16 +02:00
|
|
|
*/
|
2014-10-29 13:36:09 +01:00
|
|
|
public function createElements(array $formData = array())
|
2014-09-04 08:47:16 +02:00
|
|
|
{
|
2014-10-29 13:36:09 +01:00
|
|
|
$instanceType = isset($formData['transport']) ? $formData['transport'] : LocalCommandFile::TRANSPORT;
|
2014-09-04 08:47:16 +02:00
|
|
|
|
2014-10-29 13:36:09 +01:00
|
|
|
$this->addElements(array(
|
2014-09-04 08:47:16 +02:00
|
|
|
array(
|
2014-10-29 13:36:09 +01:00
|
|
|
'text',
|
|
|
|
'name',
|
|
|
|
array(
|
|
|
|
'required' => true,
|
|
|
|
'label' => mt('monitoring', 'Instance Name')
|
|
|
|
)
|
|
|
|
),
|
2014-09-04 08:47:16 +02:00
|
|
|
array(
|
2014-10-29 13:36:09 +01:00
|
|
|
'select',
|
|
|
|
'transport',
|
|
|
|
array(
|
|
|
|
'required' => true,
|
|
|
|
'autosubmit' => true,
|
|
|
|
'label' => mt('monitoring', 'Instance Type'),
|
|
|
|
'multiOptions' => array(
|
|
|
|
LocalCommandFile::TRANSPORT => mt('monitoring', 'Local Command File'),
|
|
|
|
RemoteCommandFile::TRANSPORT => mt('monitoring', 'Remote Command File')
|
|
|
|
),
|
|
|
|
'value' => $instanceType
|
|
|
|
)
|
2014-09-04 08:47:16 +02:00
|
|
|
)
|
2014-10-29 13:36:09 +01:00
|
|
|
));
|
2014-09-04 08:47:16 +02:00
|
|
|
|
|
|
|
$this->addElements($this->getInstanceForm($instanceType)->createElements($formData)->getElements());
|
|
|
|
}
|
|
|
|
}
|