You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					158 lines
				
				4.8 KiB
			
		
		
			
		
	
	
					158 lines
				
				4.8 KiB
			| 
											14 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
| 
											13 years ago
										 |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
| 
											14 years ago
										 |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
| 
											14 years ago
										 | namespace yii\validators;
 | ||
|  | 
 | ||
| 
											13 years ago
										 | use Yii;
 | ||
| 
											13 years ago
										 | use yii\helpers\Html;
 | ||
| 
											13 years ago
										 | use yii\web\JsExpression;
 | ||
| 
											13 years ago
										 | use yii\helpers\Json;
 | ||
| 
											13 years ago
										 | 
 | ||
| 
											14 years ago
										 | /**
 | ||
| 
											14 years ago
										 |  * NumberValidator validates that the attribute value is a number.
 | ||
| 
											14 years ago
										 |  *
 | ||
| 
											14 years ago
										 |  * The format of the number must match the regular expression specified in [[pattern]].
 | ||
|  |  * Optionally, you may configure the [[max]] and [[min]] properties to ensure the number
 | ||
|  |  * is within certain range.
 | ||
|  |  *
 | ||
| 
											14 years ago
										 |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
| 
											14 years ago
										 |  * @since 2.0
 | ||
| 
											14 years ago
										 |  */
 | ||
| 
											14 years ago
										 | class NumberValidator extends Validator
 | ||
| 
											14 years ago
										 | {
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var boolean whether the attribute value can only be an integer. Defaults to false.
 | ||
|  | 	 */
 | ||
|  | 	public $integerOnly = false;
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * @var integer|float upper limit of the number. Defaults to null, meaning no upper limit.
 | ||
|  | 	 */
 | ||
|  | 	public $max;
 | ||
|  | 	/**
 | ||
|  | 	 * @var integer|float lower limit of the number. Defaults to null, meaning no lower limit.
 | ||
|  | 	 */
 | ||
|  | 	public $min;
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * @var string user-defined error message used when the value is bigger than [[max]].
 | ||
| 
											14 years ago
										 | 	 */
 | ||
|  | 	public $tooBig;
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * @var string user-defined error message used when the value is smaller than [[min]].
 | ||
| 
											14 years ago
										 | 	 */
 | ||
|  | 	public $tooSmall;
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var string the regular expression for matching integers.
 | ||
|  | 	 */
 | ||
|  | 	public $integerPattern = '/^\s*[+-]?\d+\s*$/';
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * @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).
 | ||
| 
											14 years ago
										 | 	 */
 | ||
| 
											13 years ago
										 | 	public $numberPattern = '/^\s*[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?\s*$/';
 | ||
| 
											14 years ago
										 | 
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * Initializes the validator.
 | ||
|  | 	 */
 | ||
|  | 	public function init()
 | ||
|  | 	{
 | ||
|  | 		parent::init();
 | ||
|  | 		if ($this->message === null) {
 | ||
| 
											13 years ago
										 | 			$this->message = $this->integerOnly ? Yii::t('yii', '{attribute} must be an integer.')
 | ||
|  | 				: Yii::t('yii', '{attribute} must be a number.');
 | ||
| 
											13 years ago
										 | 		}
 | ||
|  | 		if ($this->min !== null && $this->tooSmall === null) {
 | ||
| 
											13 years ago
										 | 			$this->tooSmall = Yii::t('yii', '{attribute} must be no less than {min}.');
 | ||
| 
											13 years ago
										 | 		}
 | ||
|  | 		if ($this->max !== null && $this->tooBig === null) {
 | ||
| 
											13 years ago
										 | 			$this->tooBig = Yii::t('yii', '{attribute} must be no greater than {max}.');
 | ||
| 
											13 years ago
										 | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Validates the attribute of the object.
 | ||
|  | 	 * If there is any error, the error message is added to the object.
 | ||
| 
											14 years ago
										 | 	 * @param \yii\base\Model $object the object being validated
 | ||
| 
											14 years ago
										 | 	 * @param string $attribute the attribute being validated
 | ||
|  | 	 */
 | ||
| 
											14 years ago
										 | 	public function validateAttribute($object, $attribute)
 | ||
| 
											14 years ago
										 | 	{
 | ||
|  | 		$value = $object->$attribute;
 | ||
| 
											13 years ago
										 | 		if (is_array($value)) {
 | ||
| 
											13 years ago
										 | 			$this->addError($object, $attribute, Yii::t('yii', '{attribute} is invalid.'));
 | ||
| 
											13 years ago
										 | 			return;
 | ||
|  | 		}
 | ||
| 
											13 years ago
										 | 		$pattern = $this->integerOnly ? $this->integerPattern : $this->numberPattern;
 | ||
|  | 		if (!preg_match($pattern, "$value")) {
 | ||
|  | 			$this->addError($object, $attribute, $this->message);
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											14 years ago
										 | 		if ($this->min !== null && $value < $this->min) {
 | ||
| 
											13 years ago
										 | 			$this->addError($object, $attribute, $this->tooSmall, array('{min}' => $this->min));
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											14 years ago
										 | 		if ($this->max !== null && $value > $this->max) {
 | ||
| 
											13 years ago
										 | 			$this->addError($object, $attribute, $this->tooBig, array('{max}' => $this->max));
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * Validates the given value.
 | ||
|  | 	 * @param mixed $value the value to be validated.
 | ||
|  | 	 * @return boolean whether the value is valid.
 | ||
|  | 	 */
 | ||
|  | 	public function validateValue($value)
 | ||
|  | 	{
 | ||
|  | 		return preg_match($this->integerOnly ? $this->integerPattern : $this->numberPattern, "$value")
 | ||
|  | 			&& ($this->min === null || $value >= $this->min)
 | ||
|  | 			&& ($this->max === null || $value <= $this->max);
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Returns the JavaScript needed for performing client-side validation.
 | ||
| 
											14 years ago
										 | 	 * @param \yii\base\Model $object the data object being validated
 | ||
| 
											14 years ago
										 | 	 * @param string $attribute the name of the attribute to be validated.
 | ||
| 
											13 years ago
										 | 	 * @param \yii\base\View $view the view object that is going to be used to render views or view files
 | ||
|  | 	 * containing a model form with this validator applied.
 | ||
| 
											14 years ago
										 | 	 * @return string the client-side validation script.
 | ||
|  | 	 */
 | ||
| 
											13 years ago
										 | 	public function clientValidateAttribute($object, $attribute, $view)
 | ||
| 
											14 years ago
										 | 	{
 | ||
|  | 		$label = $object->getAttributeLabel($attribute);
 | ||
| 
											13 years ago
										 | 		$value = $object->$attribute;
 | ||
|  | 
 | ||
|  | 		$options = array(
 | ||
|  | 			'pattern' => new JsExpression($this->integerOnly ? $this->integerPattern : $this->numberPattern),
 | ||
|  | 			'message' => Html::encode(strtr($this->message, array(
 | ||
|  | 				'{attribute}' => $label,
 | ||
|  | 				'{value}' => $value,
 | ||
|  | 			))),
 | ||
|  | 		);
 | ||
| 
											14 years ago
										 | 
 | ||
| 
											14 years ago
										 | 		if ($this->min !== null) {
 | ||
| 
											13 years ago
										 | 			$options['min'] = $this->min;
 | ||
|  | 			$options['tooSmall'] = Html::encode(strtr($this->tooSmall, array(
 | ||
| 
											13 years ago
										 | 				'{attribute}' => $label,
 | ||
| 
											13 years ago
										 | 				'{value}' => $value,
 | ||
| 
											13 years ago
										 | 				'{min}' => $this->min,
 | ||
| 
											13 years ago
										 | 			)));
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											14 years ago
										 | 		if ($this->max !== null) {
 | ||
| 
											13 years ago
										 | 			$options['max'] = $this->max;
 | ||
|  | 			$options['tooBig'] = Html::encode(strtr($this->tooBig, array(
 | ||
| 
											13 years ago
										 | 				'{attribute}' => $label,
 | ||
| 
											13 years ago
										 | 				'{value}' => $value,
 | ||
| 
											13 years ago
										 | 				'{max}' => $this->max,
 | ||
| 
											13 years ago
										 | 			)));
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											13 years ago
										 | 		if ($this->skipOnEmpty) {
 | ||
| 
											13 years ago
										 | 			$options['skipOnEmpty'] = 1;
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 
 | ||
| 
											13 years ago
										 | 		$view->registerAssetBundle('yii/validation');
 | ||
| 
											13 years ago
										 | 		return 'yii.validation.number(value, messages, ' . Json::encode($options) . ');';
 | ||
| 
											14 years ago
										 | 	}
 | ||
| 
											13 years ago
										 | }
 |