summaryrefslogtreecommitdiffstats
path: root/library/Director/PropertyModifier/PropertyModifierSplit.php
blob: 3eec77d4e54ca36e2af0f72238039e6dc9e5a41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php

namespace Icinga\Module\Director\PropertyModifier;

use Icinga\Module\Director\Hook\PropertyModifierHook;
use Icinga\Module\Director\Web\Form\QuickForm;

class PropertyModifierSplit extends PropertyModifierHook
{
    public static function addSettingsFormFields(QuickForm $form)
    {
        $form->addElement('text', 'delimiter', array(
            'label'       => $form->translate('Delimiter'),
            'required'    => true,
            'description' => $form->translate(
                'One or more characters that should be used to split this string'
            )
        ));

        $form->addElement('select', 'when_empty', array(
            'label'       => $form->translate('When empty'),
            'required'    => true,
            'description' => $form->translate(
                'What should happen when the given string is empty?'
            ),
            'value'        => 'empty_array',
            'multiOptions' => $form->optionalEnum(array(
                'empty_array' => $form->translate('return an empty array'),
                'null'        => $form->translate('return NULL'),
            ))
        ));
    }

    public function transform($value)
    {
        if ($value === null || ! strlen(trim($value))) {
            if ($this->getSetting('when_empty', 'empty_array') === 'empty_array') {
                return array();
            } else {
                return null;
            }
        }

        return preg_split(
            '/' . preg_quote($this->getSetting('delimiter'), '/') . '/',
            $value,
            -1,
            PREG_SPLIT_NO_EMPTY
        );
    }
}