Commit 7df4a9bd by Qiang Xue

finished validator cleanup.

parent 4f1efc74
<?php
/**
* IntegerValidator class file.
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\validators;
/**
* IntegerValidator validates that the attribute value is an integer.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class IntegerValidator extends NumberValidator
{
/**
* @var string the regular expression for matching integers.
*/
public $pattern = '/^\s*[+-]?\d+\s*$/';
/**
* Validates the attribute of the object.
* If there is any error, the error message is added to the object.
* @param \yii\base\Model $object the object being validated
* @param string $attribute the attribute being validated
*/
public function validateAttribute($object, $attribute)
{
if ($this->message === null) {
$this->message = \Yii::t('yii', '{attribute} must be an integer.');
}
parent::validateAttribute($object, $attribute);
}
/**
* Returns the JavaScript needed for performing client-side validation.
* @param \yii\base\Model $object the data object being validated
* @param string $attribute the name of the attribute to be validated.
* @return string the client-side validation script.
*/
public function clientValidateAttribute($object, $attribute)
{
if ($this->message === null) {
$this->message = \Yii::t('yii', '{attribute} must be an integer.');
}
return parent::clientValidateAttribute($object, $attribute);
}
}
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
namespace yii\validators; namespace yii\validators;
use Yii;
/** /**
* NumberValidator validates that the attribute value is a number. * NumberValidator validates that the attribute value is a number.
* *
...@@ -22,6 +24,10 @@ namespace yii\validators; ...@@ -22,6 +24,10 @@ namespace yii\validators;
class NumberValidator extends Validator class NumberValidator extends Validator
{ {
/** /**
* @var boolean whether the attribute value can only be an integer. Defaults to false.
*/
public $integerOnly = false;
/**
* @var boolean whether the attribute value can be null or empty. Defaults to true, * @var boolean whether the attribute value can be null or empty. Defaults to true,
* meaning that if the attribute is empty, it is considered valid. * meaning that if the attribute is empty, it is considered valid.
*/ */
...@@ -43,10 +49,14 @@ class NumberValidator extends Validator ...@@ -43,10 +49,14 @@ class NumberValidator extends Validator
*/ */
public $tooSmall; public $tooSmall;
/** /**
* @var string the regular expression for matching integers.
*/
public $integerPattern = '/^\s*[+-]?\d+\s*$/';
/**
* @var string the regular expression for matching numbers. It defaults to a pattern * @var string the regular expression for matching numbers. It defaults to a pattern
* that matches floating numbers with optional exponential part (e.g. -1.23e-10). * that matches floating numbers with optional exponential part (e.g. -1.23e-10).
*/ */
public $pattern = '/^\s*[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?\s*$/'; public $numberPattern = '/^\s*[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?\s*$/';
/** /**
...@@ -61,16 +71,23 @@ class NumberValidator extends Validator ...@@ -61,16 +71,23 @@ class NumberValidator extends Validator
if ($this->allowEmpty && $this->isEmpty($value)) { if ($this->allowEmpty && $this->isEmpty($value)) {
return; return;
} }
if (!preg_match($this->pattern, "$value")) { if ($this->integerOnly) {
$message = ($this->message !== null) ? $this->message : \Yii::t('yii', '{attribute} must be a number.'); if (!preg_match($this->integerPattern, "$value")) {
$this->addError($object, $attribute, $message); $message = $this->message !== null ? $this->message : Yii::t('yii', '{attribute} must be an integer.');
$this->addError($object, $attribute, $message);
}
} else {
if (!preg_match($this->numberPattern, "$value")) {
$message = $this->message !== null ? $this->message : Yii::t('yii', '{attribute} must be a number.');
$this->addError($object, $attribute, $message);
}
} }
if ($this->min !== null && $value < $this->min) { if ($this->min !== null && $value < $this->min) {
$message = ($this->tooSmall !== null) ? $this->tooSmall : \Yii::t('yii', '{attribute} is too small (minimum is {min}).'); $message = $this->tooSmall !== null ? $this->tooSmall : Yii::t('yii', '{attribute} is too small (minimum is {min}).');
$this->addError($object, $attribute, $message, array('{min}' => $this->min)); $this->addError($object, $attribute, $message, array('{min}' => $this->min));
} }
if ($this->max !== null && $value > $this->max) { if ($this->max !== null && $value > $this->max) {
$message = ($this->tooBig !== null) ? $this->tooBig : \Yii::t('yii', '{attribute} is too big (maximum is {max}).'); $message = $this->tooBig !== null ? $this->tooBig : Yii::t('yii', '{attribute} is too big (maximum is {max}).');
$this->addError($object, $attribute, $message, array('{max}' => $this->max)); $this->addError($object, $attribute, $message, array('{max}' => $this->max));
} }
} }
...@@ -84,49 +101,46 @@ class NumberValidator extends Validator ...@@ -84,49 +101,46 @@ class NumberValidator extends Validator
public function clientValidateAttribute($object, $attribute) public function clientValidateAttribute($object, $attribute)
{ {
$label = $object->getAttributeLabel($attribute); $label = $object->getAttributeLabel($attribute);
$value = $object->$attribute;
if (($message = $this->message) === null) { if (($message = $this->message) === null) {
$message = \Yii::t('yii', '{attribute} must be a number.'); $message = $this->integerOnly ? Yii::t('yii', '{attribute} must be an integer.')
: Yii::t('yii', '{attribute} must be a number.');
} }
$message = strtr($message, array( $message = strtr($message, array(
'{attribute}' => $label, '{attribute}' => $label,
'{value}' => $value,
));
if (($tooBig = $this->tooBig) === null) {
$tooBig = \Yii::t('yii', '{attribute} is too big (maximum is {max}).');
}
$tooBig = strtr($tooBig, array(
'{attribute}' => $label,
'{value}' => $value,
'{max}' => $this->max,
));
if (($tooSmall = $this->tooSmall) === null) {
$tooSmall = \Yii::t('yii', '{attribute} is too small (minimum is {min}).');
}
$tooSmall = strtr($tooSmall, array(
'{attribute}' => $label,
'{value}' => $value,
'{min}' => $this->min,
)); ));
$pattern = $this->integerOnly ? $this->integerPattern : $this->numberPattern;
$js = " $js = "
if(!value.match({$this->pattern})) { if(!value.match($pattern)) {
messages.push(" . json_encode($message) . "); messages.push(" . json_encode($message) . ");
} }
"; ";
if ($this->min !== null) { if ($this->min !== null) {
if (($tooSmall = $this->tooSmall) === null) {
$tooSmall = Yii::t('yii', '{attribute} is too small (minimum is {min}).');
}
$tooSmall = strtr($tooSmall, array(
'{attribute}' => $label,
'{min}' => $this->min,
));
$js .= " $js .= "
if(value< {$this->min}) { if(value<{$this->min}) {
messages.push(" . json_encode($tooSmall) . "); messages.push(" . json_encode($tooSmall) . ");
} }
"; ";
} }
if ($this->max !== null) { if ($this->max !== null) {
if (($tooBig = $this->tooBig) === null) {
$tooBig = Yii::t('yii', '{attribute} is too big (maximum is {max}).');
}
$tooBig = strtr($tooBig, array(
'{attribute}' => $label,
'{max}' => $this->max,
));
$js .= " $js .= "
if(value> {$this->max}) { if(value>{$this->max}) {
messages.push(" . json_encode($tooBig) . "); messages.push(" . json_encode($tooBig) . ");
} }
"; ";
...@@ -134,7 +148,7 @@ if(value> {$this->max}) { ...@@ -134,7 +148,7 @@ if(value> {$this->max}) {
if ($this->allowEmpty) { if ($this->allowEmpty) {
$js = " $js = "
if($.trim(value)!='') { if(jQuery.trim(value)!='') {
$js $js
} }
"; ";
...@@ -142,4 +156,4 @@ if($.trim(value)!='') { ...@@ -142,4 +156,4 @@ if($.trim(value)!='') {
return $js; return $js;
} }
} }
\ No newline at end of file
...@@ -59,8 +59,12 @@ abstract class Validator extends Component ...@@ -59,8 +59,12 @@ abstract class Validator extends Component
'file' => 'yii\validators\FileValidator', 'file' => 'yii\validators\FileValidator',
'filter' => 'yii\validators\FilterValidator', 'filter' => 'yii\validators\FilterValidator',
'in' => 'yii\validators\RangeValidator', 'in' => 'yii\validators\RangeValidator',
'integer' => 'yii\validators\IntegerValidator', 'integer' => array(
'class' => 'yii\validators\NumberValidator',
'integerOnly' => true,
),
'match' => 'yii\validators\RegularExpressionValidator', 'match' => 'yii\validators\RegularExpressionValidator',
'number' => 'yii\validators\NumberValidator',
'required' => 'yii\validators\RequiredValidator', 'required' => 'yii\validators\RequiredValidator',
'string' => 'yii\validators\StringValidator', 'string' => 'yii\validators\StringValidator',
'unique' => 'yii\validators\UniqueValidator', 'unique' => 'yii\validators\UniqueValidator',
...@@ -120,6 +124,7 @@ abstract class Validator extends Component ...@@ -120,6 +124,7 @@ abstract class Validator extends Component
if (!is_array($attributes)) { if (!is_array($attributes)) {
$attributes = preg_split('/[\s,]+/', $attributes, -1, PREG_SPLIT_NO_EMPTY); $attributes = preg_split('/[\s,]+/', $attributes, -1, PREG_SPLIT_NO_EMPTY);
} }
$params['attributes'] = $attributes;
if (isset($params['on']) && !is_array($params['on'])) { if (isset($params['on']) && !is_array($params['on'])) {
$params['on'] = preg_split('/[\s,]+/', $params['on'], -1, PREG_SPLIT_NO_EMPTY); $params['on'] = preg_split('/[\s,]+/', $params['on'], -1, PREG_SPLIT_NO_EMPTY);
...@@ -131,25 +136,22 @@ abstract class Validator extends Component ...@@ -131,25 +136,22 @@ abstract class Validator extends Component
if (method_exists($object, $type)) { if (method_exists($object, $type)) {
// method-based validator // method-based validator
$config = array( $params['class'] = __NAMESPACE__ . '\InlineValidator';
'class' => __NAMESPACE__ . '\InlineValidator', $params['method'] = $type;
'method' => $type,
'attributes' => $attributes,
);
} else { } else {
if (is_string($type) && isset(self::$builtInValidators[$type])) { if (isset(self::$builtInValidators[$type])) {
$type = self::$builtInValidators[$type]; $type = self::$builtInValidators[$type];
} }
$config = array( if (is_array($type)) {
'class' => $type, foreach ($type as $name => $value) {
'attributes' => $attributes, $params[$name] = $value;
); }
} } else {
foreach ($params as $name => $value) { $params['class'] = $type;
$config[$name] = $value; }
} }
return \Yii::createObject($config); return \Yii::createObject($params);
} }
/** /**
...@@ -240,6 +242,6 @@ abstract class Validator extends Component ...@@ -240,6 +242,6 @@ abstract class Validator extends Component
public function isEmpty($value, $trim = false) public function isEmpty($value, $trim = false)
{ {
return $value === null || $value === array() || $value === '' return $value === null || $value === array() || $value === ''
|| $trim && is_scalar($value) && trim($value) === ''; || $trim && is_scalar($value) && trim($value) === '';
} }
} }
...@@ -13,9 +13,8 @@ ...@@ -13,9 +13,8 @@
- validators - validators
* FileValidator: depends on CUploadedFile * FileValidator: depends on CUploadedFile
* CaptchaValidator: depends on CaptchaAction * CaptchaValidator: depends on CaptchaAction
* type conversion rules * DateValidator: should we use CDateTimeParser, or simply use strtotime()?
* CompareValidator::clientValidateAttribute(): search for "CHtml::activeId" * CompareValidator::clientValidateAttribute(): depends on CHtml::activeId()
* DateValidator: TBD
--- ---
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment