refactored Validator API
This commit is contained in:
parent
d8ac77d5e1
commit
70ff3b261f
18 changed files with 201 additions and 214 deletions
|
@ -136,7 +136,11 @@ class Doctrine_Validator extends Doctrine_Object
|
||||||
}
|
}
|
||||||
|
|
||||||
$validator = self::getValidator($name);
|
$validator = self::getValidator($name);
|
||||||
if ( ! $validator->validate($record, $key, $value, $args)) {
|
$validator->invoker = $record;
|
||||||
|
$validator->field = $key;
|
||||||
|
$validator->args = $args;
|
||||||
|
|
||||||
|
if ( ! $validator->validate($value)) {
|
||||||
$errorStack->add($key, $name);
|
$errorStack->add($key, $name);
|
||||||
|
|
||||||
//$err[$key] = 'not valid';
|
//$err[$key] = 'not valid';
|
||||||
|
@ -182,14 +186,15 @@ class Doctrine_Validator extends Doctrine_Object
|
||||||
return (count($this->stack) > 0);
|
return (count($this->stack) > 0);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* phpType
|
||||||
* converts a doctrine type to native php type
|
* converts a doctrine type to native php type
|
||||||
*
|
*
|
||||||
* @param $doctrineType
|
* @param $portableType portable doctrine type
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function phpType($doctrineType)
|
public static function phpType($portableType)
|
||||||
{
|
{
|
||||||
switch ($doctrineType) {
|
switch ($portableType) {
|
||||||
case 'enum':
|
case 'enum':
|
||||||
return 'integer';
|
return 'integer';
|
||||||
case 'blob':
|
case 'blob':
|
||||||
|
@ -201,7 +206,7 @@ class Doctrine_Validator extends Doctrine_Object
|
||||||
return 'string';
|
return 'string';
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return $doctrineType;
|
return $portableType;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
@ -236,7 +241,7 @@ class Doctrine_Validator extends Doctrine_Object
|
||||||
case 'NULL':
|
case 'NULL':
|
||||||
return true;
|
return true;
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* returns the type of loosely typed variable
|
* returns the type of loosely typed variable
|
||||||
|
@ -259,6 +264,6 @@ class Doctrine_Validator extends Doctrine_Object
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return $type;
|
return $type;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -277,6 +277,8 @@ class Doctrine_Validator_Country
|
||||||
'zr' => 'Zaire',
|
'zr' => 'Zaire',
|
||||||
'zw' => 'Zimbabwe');
|
'zw' => 'Zimbabwe');
|
||||||
/**
|
/**
|
||||||
|
* returns all available country codes
|
||||||
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function getCountries()
|
public static function getCountries()
|
||||||
|
@ -284,15 +286,15 @@ class Doctrine_Validator_Country
|
||||||
return self::$countries;
|
return self::$countries;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value is a valid country code
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
$value = strtolower($value);
|
$value = strtolower($value);
|
||||||
|
|
||||||
return isset(self::$countries[$value]);
|
return isset(self::$countries[$value]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,17 +31,15 @@
|
||||||
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
||||||
*/
|
*/
|
||||||
class Doctrine_Validator_Creditcard
|
class Doctrine_Validator_Creditcard
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* checks if given value is a valid credit card number
|
||||||
|
*
|
||||||
* @link http://www.owasp.org/index.php/OWASP_Validation_Regex_Repository
|
* @link http://www.owasp.org/index.php/OWASP_Validation_Regex_Repository
|
||||||
* @param Doctrine_Record $record
|
|
||||||
* @param string $key
|
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
return preg_match('#^((4\d{3})|(5[1-5]\d{2})|(6011)|(7\d{3}))-?\d{4}-?\d{4}-?\d{4}|3[4,7]\d{13}$#', $value);
|
return preg_match('#^((4\d{3})|(5[1-5]\d{2})|(6011)|(7\d{3}))-?\d{4}-?\d{4}-?\d{4}|3[4,7]\d{13}$#', $value);
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,18 +33,18 @@
|
||||||
class Doctrine_Validator_Date
|
class Doctrine_Validator_Date
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value is a valid date
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
if (empty($value)) {
|
if (empty($value)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
$e = explode("-", $value);
|
$e = explode('-', $value);
|
||||||
|
|
||||||
if (count($e) !== 3) {
|
if (count($e) !== 3) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,10 +67,6 @@ class Doctrine_Validator_Driver
|
||||||
*/
|
*/
|
||||||
public function __set($arg, $value)
|
public function __set($arg, $value)
|
||||||
{
|
{
|
||||||
if ( ! isset($this->_args[$arg])) {
|
|
||||||
throw new Doctrine_Plugin_Exception('Unknown argument ' . $arg);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->_args[$arg] = $value;
|
$this->_args[$arg] = $value;
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
|
@ -98,10 +94,6 @@ class Doctrine_Validator_Driver
|
||||||
*/
|
*/
|
||||||
public function setArg($arg, $value)
|
public function setArg($arg, $value)
|
||||||
{
|
{
|
||||||
if ( ! isset($this->_args[$arg])) {
|
|
||||||
throw new Doctrine_Plugin_Exception('Unknown argument ' . $arg);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->_args[$arg] = $value;
|
$this->_args[$arg] = $value;
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
|
|
|
@ -33,22 +33,21 @@
|
||||||
class Doctrine_Validator_Email
|
class Doctrine_Validator_Email
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
* checks if given value is a valid email address
|
||||||
|
*
|
||||||
* @link http://iamcal.com/publish/articles/php/parsing_email/pdf/
|
* @link http://iamcal.com/publish/articles/php/parsing_email/pdf/
|
||||||
* @param Doctrine_Record $record
|
|
||||||
* @param string $key
|
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
if (empty($value)) {
|
if (empty($value)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (isset($args[0])) {
|
if (isset($this->args)) {
|
||||||
$parts = explode("@", $value);
|
$parts = explode('@', $value);
|
||||||
if (isset($parts[1]) && function_exists("checkdnsrr")) {
|
if (isset($parts[1]) && function_exists('checkdnsrr')) {
|
||||||
if ( ! checkdnsrr($parts[1], "MX")) {
|
if ( ! checkdnsrr($parts[1], 'MX')) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,24 +56,24 @@ class Doctrine_Validator_Email
|
||||||
$qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]';
|
$qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]';
|
||||||
$dtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]';
|
$dtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]';
|
||||||
$atom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+';
|
$atom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+';
|
||||||
$quoted_pair = '\\x5c[\\x00-\\x7f]';
|
$quotedPair = '\\x5c[\\x00-\\x7f]';
|
||||||
$domain_literal = "\\x5b($dtext|$quoted_pair)*\\x5d";
|
$domainLiteral = "\\x5b($dtext|$quotedPair)*\\x5d";
|
||||||
$quoted_string = "\\x22($qtext|$quoted_pair)*\\x22";
|
$quotedString = "\\x22($qtext|$quotedPair)*\\x22";
|
||||||
$domain_ref = $atom;
|
$domain_ref = $atom;
|
||||||
$sub_domain = "($domain_ref|$domain_literal)";
|
$subDomain = "($domain_ref|$domainLiteral)";
|
||||||
$word = "($atom|$quoted_string)";
|
$word = "($atom|$quotedString)";
|
||||||
$domain = "$sub_domain(\\x2e$sub_domain)+";
|
$domain = "$subDomain(\\x2e$subDomain)+";
|
||||||
/*
|
/*
|
||||||
following psudocode to allow strict checking - ask pookey about this if you're puzzled
|
following pseudocode to allow strict checking - ask pookey about this if you're puzzled
|
||||||
|
|
||||||
if ($this->getValidationOption('strict_checking') == true) {
|
if ($this->getValidationOption('strict_checking') == true) {
|
||||||
$domain = "$sub_domain(\\x2e$sub_domain)*";
|
$domain = "$sub_domain(\\x2e$sub_domain)*";
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
$local_part = "$word(\\x2e$word)*";
|
$localPart = "$word(\\x2e$word)*";
|
||||||
$addr_spec = "$local_part\\x40$domain";
|
$addrSpec = "$localPart\\x40$domain";
|
||||||
|
|
||||||
return (bool)preg_match("!^$addr_spec$!D", $value);
|
return (bool) preg_match("!^$addrSpec$!D", $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,8 +109,6 @@ class Doctrine_Validator_ErrorStack extends Doctrine_Access implements Countable
|
||||||
$this->errors = array();
|
$this->errors = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** IteratorAggregate implementation */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enter description here...
|
* Enter description here...
|
||||||
*
|
*
|
||||||
|
@ -120,9 +118,6 @@ class Doctrine_Validator_ErrorStack extends Doctrine_Access implements Countable
|
||||||
{
|
{
|
||||||
return new ArrayIterator($this->errors);
|
return new ArrayIterator($this->errors);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Countable implementation */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enter description here...
|
* Enter description here...
|
||||||
*
|
*
|
||||||
|
|
|
@ -33,13 +33,12 @@
|
||||||
class Doctrine_Validator_HtmlColor
|
class Doctrine_Validator_HtmlColor
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value is a valid html color code
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
if ( ! preg_match("/^#{0,1}[0-9]{6}$/", $value)) {
|
if ( ! preg_match("/^#{0,1}[0-9]{6}$/", $value)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -33,13 +33,12 @@
|
||||||
class Doctrine_Validator_Ip
|
class Doctrine_Validator_Ip
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value is valid ip address
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
return (bool) ip2long(str_replace("\0", '', $value));
|
return (bool) ip2long(str_replace("\0", '', $value));
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,48 +1,50 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* This software consists of voluntary contributions made by many individuals
|
* This software consists of voluntary contributions made by many individuals
|
||||||
* and is licensed under the LGPL. For more information, see
|
* and is licensed under the LGPL. For more information, see
|
||||||
* <http://www.phpdoctrine.com>.
|
* <http://www.phpdoctrine.com>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Doctrine_Validator_Regexp
|
* Doctrine_Validator_Regexp
|
||||||
*
|
*
|
||||||
* @package Doctrine
|
* @package Doctrine
|
||||||
* @category Object Relational Mapping
|
* @category Object Relational Mapping
|
||||||
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
* @link www.phpdoctrine.com
|
* @link www.phpdoctrine.com
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
* @author Gijs van Dulmen <gijs@vandulmen.net>
|
* @author Gijs van Dulmen <gijs@vandulmen.net>
|
||||||
*/
|
*/
|
||||||
class Doctrine_Validator_Minlength {
|
class Doctrine_Validator_Minlength
|
||||||
/**
|
{
|
||||||
* @param Doctrine_Record $record
|
/**
|
||||||
* @param string $key
|
* checks if given value is more length than the minimum length required
|
||||||
* @param mixed $value
|
*
|
||||||
* @param string $args
|
* @param mixed $value
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args) {
|
public function validate($value)
|
||||||
if(isset($args) && strlen( $value ) < $args)
|
{
|
||||||
return false;
|
if (isset($this->args) && strlen($value) < $this->args) {
|
||||||
|
return false;
|
||||||
return true;
|
}
|
||||||
}
|
|
||||||
}
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,17 +30,16 @@
|
||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
||||||
*/
|
*/
|
||||||
class Doctrine_Validator_Nospace
|
class Doctrine_Validator_Nospace extends Doctrine_Validator_Driver
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks that value doesn't contain any space chars
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
return ($value === null || ! preg_match('/\s\t\r\n/',$value));
|
return ($value === null || ! preg_match('/\s\t\r\n/', $value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,17 +30,17 @@
|
||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
||||||
*/
|
*/
|
||||||
class Doctrine_Validator_Notblank
|
class Doctrine_Validator_Notblank extends Doctrine_Validator_Driver
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks that value isn't blank
|
||||||
* @param string $key
|
* a value is blank when its either null or contains only space characters
|
||||||
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
return (trim($value) != '');
|
return (trim($value) !== '' && $value !== null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,16 +30,16 @@
|
||||||
* @version $Revision$
|
* @version $Revision$
|
||||||
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
||||||
*/
|
*/
|
||||||
class Doctrine_Validator_Notnull
|
class Doctrine_Validator_Notnull extends Doctrine_Validator_Driver
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks that given value isn't null
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
return !is_null($value);
|
return ($value !== null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,18 +33,17 @@
|
||||||
class Doctrine_Validator_Range
|
class Doctrine_Validator_Range
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if value is within given range
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
if (isset($args[0]) && $value < $args[0]) {
|
if (isset($this->args[0]) && $value < $this->args[0]) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (isset($args[1]) && $value > $args[1]) {
|
if (isset($this->args[1]) && $value > $this->args[1]) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -33,23 +33,26 @@
|
||||||
class Doctrine_Validator_Regexp
|
class Doctrine_Validator_Regexp
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value satisfies a regular expression
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
* @param mixed $args
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
if (is_array($args)) {
|
if ( ! isset($this->args)) {
|
||||||
foreach ($args as $regexp) {
|
return true;
|
||||||
if ( ! preg_match($args, $value)) {
|
}
|
||||||
|
if (is_array($this->args)) {
|
||||||
|
foreach ($this->args as $regexp) {
|
||||||
|
if ( ! preg_match($regexp, $value)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
if (preg_match($args, $value)) {
|
if (preg_match($this->args, $value)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,21 +33,21 @@
|
||||||
class Doctrine_Validator_Unique
|
class Doctrine_Validator_Unique
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value is unique
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
$table = $record->getTable();
|
$table = $this->invoker->getTable();
|
||||||
$pks = $table->getIdentifier();
|
$pks = $table->getIdentifier();
|
||||||
|
|
||||||
if ( is_array($pks) ) {
|
if ( is_array($pks) ) {
|
||||||
$pks = join(',',$pks);
|
$pks = join(',', $pks);
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = 'SELECT ' . $pks . ' FROM ' . $table->getTableName() . ' WHERE ' . $key . ' = ?';
|
$sql = 'SELECT ' . $pks . ' FROM ' . $table->getTableName() . ' WHERE ' . $this->field . ' = ?';
|
||||||
|
|
||||||
$values = array();
|
$values = array();
|
||||||
$values[] = $value;
|
$values[] = $value;
|
||||||
|
@ -55,11 +55,11 @@ class Doctrine_Validator_Unique
|
||||||
// If the record is not new we need to add primary key checks because its ok if the
|
// If the record is not new we need to add primary key checks because its ok if the
|
||||||
// unique value already exists in the database IF the record in the database is the same
|
// unique value already exists in the database IF the record in the database is the same
|
||||||
// as the one that is validated here.
|
// as the one that is validated here.
|
||||||
$state = $record->state();
|
$state = $this->invoker->state();
|
||||||
if (! ($state == Doctrine_Record::STATE_TDIRTY || $state == Doctrine_Record::STATE_TCLEAN)) {
|
if (! ($state == Doctrine_Record::STATE_TDIRTY || $state == Doctrine_Record::STATE_TCLEAN)) {
|
||||||
foreach ($table->getPrimaryKeys() as $pk) {
|
foreach ($table->getPrimaryKeys() as $pk) {
|
||||||
$sql .= " AND {$pk} != ?";
|
$sql .= " AND {$pk} != ?";
|
||||||
$values[] = $record->$pk;
|
$values[] = $this->invoker->$pk;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Doctrine_Validator_Enum
|
* Doctrine_Validator_Unsigned
|
||||||
*
|
*
|
||||||
* @package Doctrine
|
* @package Doctrine
|
||||||
* @category Object Relational Mapping
|
* @category Object Relational Mapping
|
||||||
|
@ -33,22 +33,18 @@
|
||||||
class Doctrine_Validator_Unsigned
|
class Doctrine_Validator_Unsigned
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value is a valid unsigned integer
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string $args
|
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
$int = (int) $value;
|
$int = (int) $value;
|
||||||
|
|
||||||
if ($int != $value || $int < 0) {
|
if ($int != $value || $int < 0) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if ($int < 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,72 +33,71 @@
|
||||||
class Doctrine_Validator_Usstate
|
class Doctrine_Validator_Usstate
|
||||||
{
|
{
|
||||||
private static $states = array (
|
private static $states = array (
|
||||||
"AK" => true,
|
'AK' => true,
|
||||||
"AL" => true,
|
'AL' => true,
|
||||||
"AR" => true,
|
'AR' => true,
|
||||||
"AZ" => true,
|
'AZ' => true,
|
||||||
"CA" => true,
|
'CA' => true,
|
||||||
"CO" => true,
|
'CO' => true,
|
||||||
"CT" => true,
|
'CT' => true,
|
||||||
"DC" => true,
|
'DC' => true,
|
||||||
"DE" => true,
|
'DE' => true,
|
||||||
"FL" => true,
|
'FL' => true,
|
||||||
"GA" => true,
|
'GA' => true,
|
||||||
"HI" => true,
|
'HI' => true,
|
||||||
"IA" => true,
|
'IA' => true,
|
||||||
"ID" => true,
|
'ID' => true,
|
||||||
"IL" => true,
|
'IL' => true,
|
||||||
"IN" => true,
|
'IN' => true,
|
||||||
"KS" => true,
|
'KS' => true,
|
||||||
"KY" => true,
|
'KY' => true,
|
||||||
"LA" => true,
|
'LA' => true,
|
||||||
"MA" => true,
|
'MA' => true,
|
||||||
"MD" => true,
|
'MD' => true,
|
||||||
"ME" => true,
|
'ME' => true,
|
||||||
"MI" => true,
|
'MI' => true,
|
||||||
"MN" => true,
|
'MN' => true,
|
||||||
"MO" => true,
|
'MO' => true,
|
||||||
"MS" => true,
|
'MS' => true,
|
||||||
"MT" => true,
|
'MT' => true,
|
||||||
"NC" => true,
|
'NC' => true,
|
||||||
"ND" => true,
|
'ND' => true,
|
||||||
"NE" => true,
|
'NE' => true,
|
||||||
"NH" => true,
|
'NH' => true,
|
||||||
"NJ" => true,
|
'NJ' => true,
|
||||||
"NM" => true,
|
'NM' => true,
|
||||||
"NV" => true,
|
'NV' => true,
|
||||||
"NY" => true,
|
'NY' => true,
|
||||||
"OH" => true,
|
'OH' => true,
|
||||||
"OK" => true,
|
'OK' => true,
|
||||||
"OR" => true,
|
'OR' => true,
|
||||||
"PA" => true,
|
'PA' => true,
|
||||||
"PR" => true,
|
'PR' => true,
|
||||||
"RI" => true,
|
'RI' => true,
|
||||||
"SC" => true,
|
'SC' => true,
|
||||||
"SD" => true,
|
'SD' => true,
|
||||||
"TN" => true,
|
'TN' => true,
|
||||||
"TX" => true,
|
'TX' => true,
|
||||||
"UT" => true,
|
'UT' => true,
|
||||||
"VA" => true,
|
'VA' => true,
|
||||||
"VI" => true,
|
'VI' => true,
|
||||||
"VT" => true,
|
'VT' => true,
|
||||||
"WA" => true,
|
'WA' => true,
|
||||||
"WI" => true,
|
'WI' => true,
|
||||||
"WV" => true,
|
'WV' => true,
|
||||||
"WY" => true
|
'WY' => true
|
||||||
);
|
);
|
||||||
public function getStates()
|
public function getStates()
|
||||||
{
|
{
|
||||||
return self::$states;
|
return self::$states;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @param Doctrine_Record $record
|
* checks if given value is a valid US state code
|
||||||
* @param string $key
|
*
|
||||||
* @param mixed $value
|
|
||||||
* @param string $args
|
* @param string $args
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value, $args)
|
public function validate($value)
|
||||||
{
|
{
|
||||||
return isset(self::$states[$value]);
|
return isset(self::$states[$value]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue