icingaweb2-module-director/application/forms/DirectorDatafieldForm.php

142 lines
4.2 KiB
PHP
Raw Normal View History

2015-07-03 10:49:12 +02:00
<?php
namespace Icinga\Module\Director\Forms;
use Icinga\Exception\ConfigurationError;
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
use Icinga\Web\Hook;
use Exception;
2015-07-03 10:49:12 +02:00
class DirectorDatafieldForm extends DirectorObjectForm
2015-07-03 10:49:12 +02:00
{
protected $objectName = 'Data field';
2015-07-03 10:49:12 +02:00
public function setup()
{
$this->addHtmlHint(
$this->translate('Data fields allow you to customize input controls your custom variables.')
);
2015-07-03 10:49:12 +02:00
$this->addElement('text', 'varname', array(
'label' => $this->translate('Field name'),
'description' => $this->translate('The unique name of the field'),
'required' => true,
2015-07-03 10:49:12 +02:00
));
$this->addElement('text', 'caption', array(
'label' => $this->translate('Caption'),
'required' => true,
2015-07-03 11:41:47 +02:00
'description' => $this->translate('The caption which should be displayed')
2015-07-03 10:49:12 +02:00
));
$this->addElement('textarea', 'description', array(
'label' => $this->translate('Description'),
'description' => $this->translate('A description about the field'),
'rows' => '3',
2015-07-03 10:49:12 +02:00
));
$error = false;
try {
$types = $this->enumDataTypes();
} catch (Exception $e) {
$error = $e->getMessage();
$types = $this->optionalEnum(array());
}
$this->addElement('select', 'datatype', array(
'label' => $this->translate('Data type'),
'description' => $this->translate('Field type'),
'required' => true,
'multiOptions' => $types,
'class' => 'autosubmit',
2015-07-03 10:49:12 +02:00
));
if ($error) {
$this->getElement('datatype')->addError($error);
}
try {
if ($class = $this->getSentValue('datatype')) {
if ($class && array_key_exists($class, $types)) {
$this->addSettings($class);
}
} elseif ($class = $this->object()->datatype) {
$this->addSettings($class);
}
// TODO: next line looks like obsolete duplicate code to me
$this->addSettings();
} catch (Exception $e) {
$this->getElement('datatype')->addError($e->getMessage());
}
foreach ($this->object()->getSettings() as $key => $val) {
if ($el = $this->getElement($key)) {
$el->setValue($val);
}
}
}
protected function addSettings($class = null)
{
if ($class === null) {
$class = $this->getValue('datatype');
}
if ($class !== null) {
if (! class_exists($class)) {
throw new ConfigurationError(
'The hooked class "%s" for this data field does no longer exist',
$class
);
}
$class::addSettingsFormFields($this);
}
}
2015-07-03 10:49:12 +02:00
protected function clearOutdatedSettings()
{
$names = array();
$object = $this->object();
$global = array('varname', 'description', 'caption', 'datatype');
foreach ($this->getElements() as $el) {
if ($el->getIgnore()) continue;
$name = $el->getName();
if (in_array($name, $global)) continue;
$names[$name] = $name;
}
foreach ($object->getSettings() as $setting => $value) {
if (! array_key_exists($setting, $names)) {
unset($object->$setting);
}
}
}
public function onSuccess()
{
$this->clearOutdatedSettings();
if ($class = $this->getValue('datatype')) {
if (array_key_exists($class, $this->enumDataTypes())) {
$this->addHidden('format', $class::getFormat());
}
}
parent::onSuccess();
}
protected function enumDataTypes()
{
$hooks = Hook::all('Director\\DataType');
$enum = array(null => '- please choose -');
foreach ($hooks as $hook) {
$enum[get_class($hook)] = $hook->getName();
}
return $enum;
2015-07-03 10:49:12 +02:00
}
}