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.
		
		
		
		
			
				
					110 lines
				
				3.1 KiB
			
		
		
			
		
	
	
					110 lines
				
				3.1 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\base\InvalidConfigException;
 | ||
| 
											13 years ago
										 | use yii\helpers\Html;
 | ||
| 
											14 years ago
										 | 
 | ||
| 
											14 years ago
										 | /**
 | ||
| 
											14 years ago
										 |  * RangeValidator validates that the attribute value is among a list of values.
 | ||
|  |  *
 | ||
|  |  * The range can be specified via the [[range]] property.
 | ||
|  |  * If the [[not]] property is set true, the validator will ensure the attribute value
 | ||
|  |  * is NOT among the specified range.
 | ||
| 
											14 years ago
										 |  *
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
| 
											14 years ago
										 |  * @since 2.0
 | ||
| 
											14 years ago
										 |  */
 | ||
| 
											14 years ago
										 | class RangeValidator extends Validator
 | ||
| 
											14 years ago
										 | {
 | ||
|  | 	/**
 | ||
|  | 	 * @var array list of valid values that the attribute value should be among
 | ||
|  | 	 */
 | ||
|  | 	public $range;
 | ||
|  | 	/**
 | ||
|  | 	 * @var boolean whether the comparison is strict (both type and value must be the same)
 | ||
|  | 	 */
 | ||
|  | 	public $strict = false;
 | ||
|  | 	/**
 | ||
|  | 	 * @var boolean whether to invert the validation logic. Defaults to false. If set to true,
 | ||
| 
											14 years ago
										 | 	 * the attribute value should NOT be among the list of values defined via [[range]].
 | ||
| 
											14 years ago
										 | 	 **/
 | ||
|  |  	public $not = false;
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * Initializes the validator.
 | ||
|  | 	 * @throws InvalidConfigException if [[range]] is not set.
 | ||
|  | 	 */
 | ||
|  | 	public function init()
 | ||
|  | 	{
 | ||
|  | 		parent::init();
 | ||
|  | 		if (!is_array($this->range)) {
 | ||
|  | 			throw new InvalidConfigException('The "range" property must be set.');
 | ||
|  | 		}
 | ||
| 
											13 years ago
										 | 		if ($this->message === null) {
 | ||
| 
											13 years ago
										 | 			$this->message = Yii::t('yii', '{attribute} is invalid.');
 | ||
| 
											13 years ago
										 | 		}
 | ||
| 
											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 (!$this->validateValue($value)) {
 | ||
| 
											13 years ago
										 | 			$this->addError($object, $attribute, $this->message);
 | ||
| 
											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 !$this->not && in_array($value, $this->range, $this->strict)
 | ||
|  | 			|| $this->not && !in_array($value, $this->range, $this->strict);
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											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
										 | 	{
 | ||
|  | 		$range = array();
 | ||
| 
											14 years ago
										 | 		foreach ($this->range as $value) {
 | ||
| 
											14 years ago
										 | 			$range[] = (string)$value;
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											13 years ago
										 | 		$options = array(
 | ||
|  | 			'range' => $range,
 | ||
|  | 			'not' => $this->not,
 | ||
|  | 			'message' => Html::encode(strtr($this->message, array(
 | ||
|  | 				'{attribute}' => $object->getAttributeLabel($attribute),
 | ||
|  | 				'{value}' => $object->$attribute,
 | ||
|  | 			))),
 | ||
|  | 		);
 | ||
|  | 		if ($this->skipOnEmpty) {
 | ||
|  | 			$options['skipOnEmpty'] = 1;
 | ||
|  | 		}
 | ||
| 
											14 years ago
										 | 
 | ||
| 
											13 years ago
										 | 		$view->registerAssetBundle('yii/validation');
 | ||
| 
											13 years ago
										 | 		return 'yii.validation.range(value, messages, ' . json_encode($options) . ');';
 | ||
| 
											14 years ago
										 | 	}
 | ||
|  | }
 |