2013-08-19 18:25:20 +02:00
|
|
|
|
<?php
|
2015-02-04 10:46:36 +01:00
|
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
2013-08-19 18:25:20 +02:00
|
|
|
|
|
|
|
|
|
namespace Icinga\Web\Form\Validator;
|
|
|
|
|
|
2014-08-27 15:51:49 +02:00
|
|
|
|
use Zend_Validate_Abstract;
|
2013-08-19 18:25:20 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Validator that interprets the value as a path and checks if it's writable
|
|
|
|
|
*/
|
|
|
|
|
class WritablePathValidator extends Zend_Validate_Abstract
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The messages to write on differen error states
|
|
|
|
|
*
|
|
|
|
|
* @var array
|
2013-08-21 11:02:53 +02:00
|
|
|
|
*
|
2013-08-19 18:25:20 +02:00
|
|
|
|
* @see Zend_Validate_Abstract::$_messageTemplates‚
|
|
|
|
|
*/
|
|
|
|
|
protected $_messageTemplates = array(
|
2013-08-21 11:02:53 +02:00
|
|
|
|
'NOT_WRITABLE' => 'Path is not writable',
|
|
|
|
|
'DOES_NOT_EXIST' => 'Path does not exist'
|
2013-08-19 18:25:20 +02:00
|
|
|
|
);
|
|
|
|
|
|
2013-08-20 17:06:44 +02:00
|
|
|
|
/**
|
|
|
|
|
* When true, the file or directory must exist
|
|
|
|
|
*
|
|
|
|
|
* @var bool
|
|
|
|
|
*/
|
|
|
|
|
private $requireExistence = false;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set this validator to require the target file to exist
|
|
|
|
|
*/
|
|
|
|
|
public function setRequireExistence()
|
|
|
|
|
{
|
|
|
|
|
$this->requireExistence = true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-19 18:25:20 +02:00
|
|
|
|
/**
|
|
|
|
|
* Check whether the given value is writable path
|
|
|
|
|
*
|
2013-08-21 11:02:53 +02:00
|
|
|
|
* @param string $value The value submitted in the form
|
|
|
|
|
* @param mixed $context The context of the form
|
|
|
|
|
*
|
|
|
|
|
* @return bool True when validation worked, otherwise false
|
2013-08-19 18:25:20 +02:00
|
|
|
|
*
|
2013-08-21 11:02:53 +02:00
|
|
|
|
* @see Zend_Validate_Abstract::isValid()
|
2013-08-19 18:25:20 +02:00
|
|
|
|
*/
|
|
|
|
|
public function isValid($value, $context = null)
|
|
|
|
|
{
|
|
|
|
|
$value = (string) $value;
|
|
|
|
|
|
2013-08-27 17:17:09 +02:00
|
|
|
|
$this->_setValue($value);
|
2013-08-20 17:06:44 +02:00
|
|
|
|
if ($this->requireExistence && !file_exists($value)) {
|
|
|
|
|
$this->_error('DOES_NOT_EXIST');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-19 18:25:20 +02:00
|
|
|
|
if ((file_exists($value) && is_writable($value)) ||
|
2013-08-20 17:06:44 +02:00
|
|
|
|
(is_dir(dirname($value)) && is_writable(dirname($value)))
|
|
|
|
|
) {
|
2013-08-19 18:25:20 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
$this->_error('NOT_WRITABLE');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|