IcingaDependencyForm: cleanup, description
This commit is contained in:
parent
01f2666ff2
commit
e9bde184f1
|
@ -191,12 +191,13 @@ class IcingaDependencyForm extends DirectorObjectForm
|
||||||
$dependency = $this->getObject();
|
$dependency = $this->getObject();
|
||||||
$parentHost = $dependency->get('parent_host');
|
$parentHost = $dependency->get('parent_host');
|
||||||
if ($parentHost === null) {
|
if ($parentHost === null) {
|
||||||
$parentHost = $dependency->get('parent_host_var');
|
$parentHost = '$' . $dependency->get('parent_host_var') . '$';
|
||||||
}
|
}
|
||||||
$this->addElement('text', 'parent_host', [
|
$this->addElement('text', 'parent_host', [
|
||||||
'label' => $this->translate('Parent Host'),
|
'label' => $this->translate('Parent Host'),
|
||||||
'description' => $this->translate(
|
'description' => $this->translate(
|
||||||
'The parent host.'
|
'The parent host. You might want to refer Host Custom Variables'
|
||||||
|
. ' via $host.vars.varname$'
|
||||||
),
|
),
|
||||||
'class' => "autosubmit director-suggest",
|
'class' => "autosubmit director-suggest",
|
||||||
'data-suggestion-context' => 'hostnames',
|
'data-suggestion-context' => 'hostnames',
|
||||||
|
@ -226,31 +227,29 @@ class IcingaDependencyForm extends DirectorObjectForm
|
||||||
// otherwise apply rules will determine child object.
|
// otherwise apply rules will determine child object.
|
||||||
if ($dependency->isObject()) {
|
if ($dependency->isObject()) {
|
||||||
$this->addElement('text', 'child_host', [
|
$this->addElement('text', 'child_host', [
|
||||||
'label' => $this->translate('Child Host'),
|
'label' => $this->translate('Child Host'),
|
||||||
'description' => $this->translate(
|
'description' => $this->translate('The child host.'),
|
||||||
'The child host.'
|
'value' => $dependency->get('child_host'),
|
||||||
),
|
'order' => 30,
|
||||||
'value' => $dependency->get('child_host'),
|
'class' => 'autosubmit director-suggest',
|
||||||
'order' => 30,
|
'required' => $this->isObject(),
|
||||||
'class' => "autosubmit director-suggest",
|
|
||||||
'required' => $this->isObject(),
|
|
||||||
'data-suggestion-context' => 'hostnames',
|
'data-suggestion-context' => 'hostnames',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$sent_child=$this->getSentOrObjectValue("child_host");
|
$sentChild = $this->getSentOrObjectValue('child_host');
|
||||||
|
|
||||||
if (!empty($sent_child)) {
|
if (!empty($sentChild)) {
|
||||||
$this->addElement('text', 'child_service', [
|
$this->addElement('text', 'child_service', [
|
||||||
'label' => $this->translate('Child Service'),
|
'label' => $this->translate('Child Service'),
|
||||||
'description' => $this->translate(
|
'description' => $this->translate(
|
||||||
'Optional. The child service. If omitted this dependency'
|
'Optional. The child service. If omitted this dependency'
|
||||||
. ' object is treated as host dependency.'
|
. ' object is treated as host dependency.'
|
||||||
),
|
),
|
||||||
'class' => "autosubmit director-suggest",
|
'class' => 'autosubmit director-suggest',
|
||||||
'order' => 40,
|
'order' => 40,
|
||||||
'value' => $this->getObject()->get('child_service'),
|
'value' => $this->getObject()->get('child_service'),
|
||||||
'data-suggestion-context' => 'servicenames',
|
'data-suggestion-context' => 'servicenames',
|
||||||
'data-suggestion-for-host' => $sent_child,
|
'data-suggestion-for-host' => $sentChild,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -291,15 +290,9 @@ class IcingaDependencyForm extends DirectorObjectForm
|
||||||
if (isset($values['parent_host'])
|
if (isset($values['parent_host'])
|
||||||
&& $this->isCustomVar($values['parent_host'])
|
&& $this->isCustomVar($values['parent_host'])
|
||||||
) {
|
) {
|
||||||
$values['parent_host_var'] = $values['parent_host'];
|
$values['parent_host_var'] = \trim($values['parent_host'], '$');
|
||||||
$values['parent_host'] = '';
|
$values['parent_host'] = '';
|
||||||
}
|
}
|
||||||
if (isset($values['parent_service'])
|
|
||||||
&& $this->isCustomVar($values['parent_service'])
|
|
||||||
) {
|
|
||||||
$values['parent_service_var'] = $values['parent_service'];
|
|
||||||
$values['parent_service'] = '';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
parent::handleProperties($object, $values);
|
parent::handleProperties($object, $values);
|
||||||
|
@ -307,6 +300,7 @@ class IcingaDependencyForm extends DirectorObjectForm
|
||||||
|
|
||||||
protected function isCustomVar($string)
|
protected function isCustomVar($string)
|
||||||
{
|
{
|
||||||
return \preg_match('/^(?:host|service)\.vars\./', $string);
|
return \preg_match('/^\$(?:host)\.vars\..+\$$/', $string);
|
||||||
|
// Eventually: return \preg_match('/^\$(?:host|service)\.vars\..+\$$/', $string);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue