2013-08-19 18:25:20 +02:00
|
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
|
/* Icinga Web 2 | (c) 2013 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
|
|
|
|
|
{
|
2015-02-12 09:05:40 +01:00
|
|
|
|
const NOT_WRITABLE = 'notWritable';
|
|
|
|
|
const DOES_NOT_EXIST = 'doesNotExist';
|
|
|
|
|
|
2013-08-19 18:25:20 +02:00
|
|
|
|
/**
|
|
|
|
|
* 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(
|
2015-02-12 09:05:40 +01:00
|
|
|
|
self::NOT_WRITABLE => 'Path is not writable',
|
|
|
|
|
self::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)) {
|
2015-02-12 09:05:40 +01:00
|
|
|
|
$this->_error(self::DOES_NOT_EXIST);
|
2013-08-20 17:06:44 +02:00
|
|
|
|
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;
|
|
|
|
|
}
|
2015-02-12 09:05:40 +01:00
|
|
|
|
|
|
|
|
|
$this->_error(self::NOT_WRITABLE);
|
2013-08-19 18:25:20 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|