From 338f5492338ab5b8b30ec5e973e1efc32aeb6326 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 2 Sep 2014 14:42:24 +0200 Subject: [PATCH] Add class ReadablePathValidator --- .../Form/Validator/ReadablePathValidator.php | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 library/Icinga/Web/Form/Validator/ReadablePathValidator.php diff --git a/library/Icinga/Web/Form/Validator/ReadablePathValidator.php b/library/Icinga/Web/Form/Validator/ReadablePathValidator.php new file mode 100644 index 000000000..4060f6ecd --- /dev/null +++ b/library/Icinga/Web/Form/Validator/ReadablePathValidator.php @@ -0,0 +1,58 @@ +_messageTemplates = array( + 'NOT_READABLE' => t('Path is not readable'), + 'DOES_NOT_EXIST' => t('Path does not exist') + ); + } + + /** + * Check whether the given value is a readable filepath + * + * @param string $value The value submitted in the form + * @param mixed $context The context of the form + * + * @return bool Whether the value was successfully validated + */ + public function isValid($value, $context = null) + { + if (false === file_exists($value)) { + $this->_error('DOES_NOT_EXIST'); + return false; + } + + if (false === is_readable($value)) { + $this->_error('NOT_READABLE'); + } + + return true; + } +}