mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 00:34:05 +02:00
parent
2aa8a55c3b
commit
0d36d56cbb
@ -0,0 +1,56 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Icinga\Module\Director\PropertyModifier;
|
||||||
|
|
||||||
|
use Icinga\Exception\InvalidPropertyException;
|
||||||
|
use Icinga\Module\Director\Hook\PropertyModifierHook;
|
||||||
|
use Icinga\Module\Director\Web\Form\QuickForm;
|
||||||
|
|
||||||
|
class PropertyModifierJsonDecode extends PropertyModifierHook
|
||||||
|
{
|
||||||
|
public static function addSettingsFormFields(QuickForm $form)
|
||||||
|
{
|
||||||
|
$form->addElement('select', 'on_failure', array(
|
||||||
|
'label' => 'On failure',
|
||||||
|
'description' => $form->translate(
|
||||||
|
'What should we do in case we are unable to decode the given string?'
|
||||||
|
),
|
||||||
|
'multiOptions' => $form->optionalEnum(array(
|
||||||
|
'null' => $form->translate('Set no value (null)'),
|
||||||
|
'keep' => $form->translate('Keep the JSON string as is'),
|
||||||
|
'fail' => $form->translate('Let the whole import run fail'),
|
||||||
|
)),
|
||||||
|
'required' => true,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getName()
|
||||||
|
{
|
||||||
|
return 'Decode a JSON string';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function transform($value)
|
||||||
|
{
|
||||||
|
if (null === $value) {
|
||||||
|
return $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$decoded = @json_decode($value);
|
||||||
|
if ($decoded === null && JSON_ERROR_NONE === json_last_error()) {
|
||||||
|
switch ($this->getSetting('on_failure')) {
|
||||||
|
case 'null':
|
||||||
|
return null;
|
||||||
|
case 'keep':
|
||||||
|
return $value;
|
||||||
|
case 'fail':
|
||||||
|
default:
|
||||||
|
throw new InvalidPropertyException(
|
||||||
|
'JSON decoding failed for %s',
|
||||||
|
$value
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $decoded;
|
||||||
|
}
|
||||||
|
}
|
1
run.php
1
run.php
@ -33,6 +33,7 @@ $this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\Pro
|
|||||||
$this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\PropertyModifierFromLatin1');
|
$this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\PropertyModifierFromLatin1');
|
||||||
$this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\PropertyModifierBitmask');
|
$this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\PropertyModifierBitmask');
|
||||||
$this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\PropertyModifierMakeBoolean');
|
$this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\PropertyModifierMakeBoolean');
|
||||||
|
$this->provideHook('director/PropertyModifier', $prefix . 'PropertyModifier\\PropertyModifierJsonDecode');
|
||||||
|
|
||||||
$this->provideHook('director/Job', $prefix . 'Job\\HousekeepingJob');
|
$this->provideHook('director/Job', $prefix . 'Job\\HousekeepingJob');
|
||||||
$this->provideHook('director/Job', $prefix . 'Job\\ConfigJob');
|
$this->provideHook('director/Job', $prefix . 'Job\\ConfigJob');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user