summaryrefslogtreecommitdiffstats
path: root/library/Icinga/Web/Form/Validator/InternalUrlValidator.php
blob: f936bb562f7662d80b3195b4bb08adcdb2d2b7b8 (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
<?php
/* Icinga Web 2 | (c) 2016 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Form\Validator;

use Icinga\Application\Icinga;
use Zend_Validate_Abstract;
use Icinga\Web\Url;

/**
 * Validator that checks whether a textfield doesn't contain an external URL
 */
class InternalUrlValidator extends Zend_Validate_Abstract
{
    /**
     * {@inheritdoc}
     */
    public function isValid($value)
    {
        $url = Url::fromPath($value);
        if ($url->getRelativeUrl() === '' || $url->isExternal()) {
            $this->_error('IS_EXTERNAL');

            return false;
        }

        return true;
    }

    /**
     * {@inheritdoc}
     */
    protected function _error($messageKey, $value = null)
    {
        if ($messageKey === 'IS_EXTERNAL') {
            $this->_messages[$messageKey] = t('The url must not be external.');
        } else {
            parent::_error($messageKey, $value);
        }
    }
}