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.
		
		
		
		
			
				
					102 lines
				
				2.8 KiB
			
		
		
			
		
	
	
					102 lines
				
				2.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\base\InvalidConfigException;
 | ||
| 
											14 years ago
										 | 
 | ||
| 
											14 years ago
										 | /**
 | ||
| 
											14 years ago
										 |  * ExistValidator validates that the attribute value exists in a table.
 | ||
| 
											14 years ago
										 |  *
 | ||
|  |  * This validator is often used to verify that a foreign key contains a value
 | ||
|  |  * that can be found in the foreign table.
 | ||
|  |  *
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
| 
											14 years ago
										 |  * @since 2.0
 | ||
| 
											14 years ago
										 |  */
 | ||
| 
											14 years ago
										 | class ExistValidator extends Validator
 | ||
| 
											14 years ago
										 | {
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var string the ActiveRecord class name or alias of the class
 | ||
| 
											14 years ago
										 | 	 * that should be used to look for the attribute value being validated.
 | ||
| 
											13 years ago
										 | 	 * Defaults to null, meaning using the ActiveRecord class of
 | ||
| 
											14 years ago
										 | 	 * the attribute being validated.
 | ||
| 
											14 years ago
										 | 	 * @see attributeName
 | ||
|  | 	 */
 | ||
|  | 	public $className;
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var string the yii\db\ActiveRecord class attribute name that should be
 | ||
| 
											14 years ago
										 | 	 * used to look for the attribute value being validated. Defaults to null,
 | ||
|  | 	 * meaning using the name of the attribute being validated.
 | ||
|  | 	 * @see className
 | ||
|  | 	 */
 | ||
|  | 	public $attributeName;
 | ||
|  | 
 | ||
| 
											13 years ago
										 | 
 | ||
|  | 	/**
 | ||
|  | 	 * Initializes the validator.
 | ||
|  | 	 */
 | ||
|  | 	public function init()
 | ||
|  | 	{
 | ||
|  | 		parent::init();
 | ||
|  | 		if ($this->message === null) {
 | ||
| 
											13 years ago
										 | 			$this->message = Yii::t('yii', '{attribute} is invalid.');
 | ||
| 
											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
										 | 	 *
 | ||
| 
											13 years ago
										 | 	 * @param \yii\db\ActiveRecord $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;
 | ||
| 
											14 years ago
										 | 
 | ||
| 
											13 years ago
										 | 		if (is_array($value)) {
 | ||
| 
											13 years ago
										 | 			$this->addError($object, $attribute, $this->message);
 | ||
| 
											13 years ago
										 | 			return;
 | ||
|  | 		}
 | ||
|  | 
 | ||
| 
											13 years ago
										 | 		/** @var $className \yii\db\ActiveRecord */
 | ||
| 
											13 years ago
										 | 		$className = $this->className === null ? get_class($object) : Yii::import($this->className);
 | ||
|  | 		$attributeName = $this->attributeName === null ? $attribute : $this->attributeName;
 | ||
| 
											13 years ago
										 | 		$query = $className::find();
 | ||
| 
											13 years ago
										 | 		$query->where(array($attributeName => $value));
 | ||
| 
											13 years ago
										 | 		if (!$query->exists()) {
 | ||
| 
											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.
 | ||
|  | 	 * @throws InvalidConfigException if either [[className]] or [[attributeName]] is not set.
 | ||
|  | 	 */
 | ||
|  | 	public function validateValue($value)
 | ||
|  | 	{
 | ||
| 
											13 years ago
										 | 		if (is_array($value)) {
 | ||
|  | 			return false;
 | ||
|  | 		}
 | ||
| 
											13 years ago
										 | 		if ($this->className === null) {
 | ||
|  | 			throw new InvalidConfigException('The "className" property must be set.');
 | ||
|  | 		}
 | ||
|  | 		if ($this->attributeName === null) {
 | ||
|  | 			throw new InvalidConfigException('The "attributeName" property must be set.');
 | ||
|  | 		}
 | ||
|  | 		/** @var $className \yii\db\ActiveRecord */
 | ||
|  | 		$className = $this->className;
 | ||
|  | 		$query = $className::find();
 | ||
|  | 		$query->where(array($this->attributeName => $value));
 | ||
|  | 		return $query->exists();
 | ||
|  | 	}
 | ||
| 
											14 years ago
										 | }
 |