summaryrefslogtreecommitdiffstats
path: root/library/Icinga/Web/Form/Validator/TimeFormatValidator.php
blob: 9c1c99ac81a33ce53d08889a387e1056302640a8 (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
52
53
54
55
56
57
58
<?php
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Form\Validator;

use Zend_Validate_Abstract;

/**
 * Validator that checks if a textfield contains a correct time format
 */
class TimeFormatValidator extends Zend_Validate_Abstract
{

    /**
     * Valid time characters according to @see http://www.php.net/manual/en/function.date.php
     *
     * @var array
     * @see http://www.php.net/manual/en/function.date.php
     */
    private $validChars = array('a', 'A', 'B', 'g', 'G', 'h', 'H', 'i', 's', 'u');

    /**
     * List of sensible time separators
     *
     * @var array
     */
    private $validSeparators = array(' ', ':', '-', '/', ';', ',', '.');

    /**
     * Error templates
     *
     * @var array
     * @see Zend_Validate_Abstract::$_messageTemplates
     */
    protected $_messageTemplates = array(
        'INVALID_CHARACTERS' => 'Invalid time format'
    );

    /**
     * Validate the input value
     *
     * @param   string    $value    The format string to validate
     * @param   null      $context  The form context (ignored)
     *
     * @return  bool True when the input is valid, otherwise false
     *
     * @see     Zend_Validate_Abstract::isValid()
     */
    public function isValid($value, $context = null)
    {
        $rest = trim($value, join(' ', array_merge($this->validChars, $this->validSeparators)));
        if (strlen($rest) > 0) {
            $this->_error('INVALID_CHARACTERS');
            return false;
        }
        return true;
    }
}