211 lines
7.3 KiB
PHP
211 lines
7.3 KiB
PHP
<?php
|
|
/*
|
|
* $Id$
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* This software consists of voluntary contributions made by many individuals
|
|
* and is licensed under the LGPL. For more information, see
|
|
* <http://www.phpdoctrine.org>.
|
|
*/
|
|
|
|
#namespace Doctrine::Validator;
|
|
|
|
/**
|
|
* Doctrine_Validator
|
|
* Doctrine_Validator performs validations on record properties
|
|
*
|
|
* @package Doctrine
|
|
* @subpackage Validator
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
* @link www.phpdoctrine.org
|
|
* @since 1.0
|
|
* @version $Revision$
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
*/
|
|
class Doctrine_Validator
|
|
{
|
|
/**
|
|
* @var array $validators an array of validator objects
|
|
*/
|
|
private static $validators = array();
|
|
|
|
/**
|
|
* returns a validator object
|
|
*
|
|
* @param string $name
|
|
* @return Doctrine_Validator_Interface
|
|
*/
|
|
public static function getValidator($name)
|
|
{
|
|
if ( ! isset(self::$validators[$name])) {
|
|
$class = 'Doctrine_Validator_' . ucwords(strtolower($name));
|
|
if (class_exists($class)) {
|
|
self::$validators[$name] = new $class;
|
|
} else if (class_exists($name)) {
|
|
self::$validators[$name] = new $name;
|
|
} else {
|
|
throw new Doctrine_Exception("Validator named '$name' not available.");
|
|
}
|
|
|
|
}
|
|
return self::$validators[$name];
|
|
}
|
|
|
|
/**
|
|
* validates a given record and saves possible errors
|
|
* in Doctrine_Validator::$stack
|
|
*
|
|
* @param Doctrine_Entity $record
|
|
* @return void
|
|
*/
|
|
public function validateRecord(Doctrine_Entity $record)
|
|
{
|
|
$classMetadata = $record->getTable();
|
|
$columns = $record->getTable()->getColumns();
|
|
$component = $record->getTable()->getComponentName();
|
|
|
|
$errorStack = $record->getErrorStack();
|
|
|
|
// if record is transient all fields will be validated
|
|
// if record is persistent only the modified fields will be validated
|
|
$fields = ($record->exists()) ? $record->getModified() : $record->getData();
|
|
$err = array();
|
|
foreach ($fields as $fieldName => $value) {
|
|
if ($value === Doctrine_Null::$INSTANCE) {
|
|
$value = null;
|
|
} else if ($value instanceof Doctrine_Entity) {
|
|
$ids = $value->identifier();
|
|
$value = count($ids) > 0 ? array_pop($ids) : null;
|
|
}
|
|
|
|
$dataType = $classMetadata->getTypeOf($fieldName);
|
|
|
|
// Validate field type, if type validation is enabled
|
|
if ($classMetadata->getAttribute(Doctrine::ATTR_VALIDATE) & Doctrine::VALIDATE_TYPES) {
|
|
if ( ! self::isValidType($value, $dataType)) {
|
|
$errorStack->add($fieldName, 'type');
|
|
}
|
|
if ($dataType == 'enum') {
|
|
$enumIndex = $classMetadata->enumIndex($fieldName, $value);
|
|
if ($enumIndex === false) {
|
|
$errorStack->add($fieldName, 'enum');
|
|
}
|
|
}
|
|
}
|
|
|
|
// Validate field length, if length validation is enabled
|
|
if ($record->getTable()->getAttribute(Doctrine::ATTR_VALIDATE) & Doctrine::VALIDATE_LENGTHS) {
|
|
if ( ! $this->validateLength($value, $dataType, $classMetadata->getFieldLength($fieldName))) {
|
|
$errorStack->add($fieldName, 'length');
|
|
}
|
|
}
|
|
|
|
// Run all custom validators
|
|
foreach ($classMetadata->getFieldValidators($fieldName) as $validatorName => $args) {
|
|
if ( ! is_string($validatorName)) {
|
|
$validatorName = $args;
|
|
$args = array();
|
|
}
|
|
$validator = self::getValidator($validatorName);
|
|
$validator->invoker = $record;
|
|
$validator->field = $fieldName;
|
|
$validator->args = $args;
|
|
if ( ! $validator->validate($value)) {
|
|
$errorStack->add($fieldName, $validatorName);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Validates the length of a field.
|
|
*/
|
|
private function validateLength($value, $type, $maximumLength)
|
|
{
|
|
if ($type == 'timestamp' || $type == 'integer' || $type == 'enum') {
|
|
return true;
|
|
} else if ($type == 'array' || $type == 'object') {
|
|
$length = strlen(serialize($value));
|
|
} else {
|
|
$length = strlen($value);
|
|
}
|
|
if ($length > $maximumLength) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* whether or not this validator has errors
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function hasErrors()
|
|
{
|
|
return (count($this->stack) > 0);
|
|
}
|
|
|
|
/**
|
|
* returns whether or not the given variable is
|
|
* valid type
|
|
*
|
|
* @param mixed $var
|
|
* @param string $type
|
|
* @return boolean
|
|
* @deprecated No more type validations like this. There will only be validators.
|
|
*/
|
|
public static function isValidType($var, $type)
|
|
{
|
|
if ($var === null) {
|
|
return true;
|
|
} else if (is_object($var)) {
|
|
return $type == 'object';
|
|
}
|
|
|
|
switch ($type) {
|
|
case 'float':
|
|
case 'double':
|
|
case 'decimal':
|
|
return (string)$var == strval(floatval($var));
|
|
case 'integer':
|
|
return (string)$var == strval(intval($var));
|
|
case 'string':
|
|
return is_string($var) || is_int($var) || is_float($var);
|
|
case 'blob':
|
|
case 'clob':
|
|
case 'gzip':
|
|
return is_string($var);
|
|
case 'array':
|
|
return is_array($var);
|
|
case 'object':
|
|
return is_object($var);
|
|
case 'boolean':
|
|
return is_bool($var);
|
|
case 'timestamp':
|
|
$validator = self::getValidator('timestamp');
|
|
return $validator->validate($var);
|
|
case 'time':
|
|
$validator = self::getValidator('time');
|
|
return $validator->validate($var);
|
|
case 'date':
|
|
$validator = self::getValidator('date');
|
|
return $validator->validate($var);
|
|
case 'enum':
|
|
return is_string($var) || is_int($var);
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
} |