ExistValidator.php 3.88 KB
Newer Older
w  
Qiang Xue committed
1 2 3
<?php
/**
 * @link http://www.yiiframework.com/
Qiang Xue committed
4
 * @copyright Copyright (c) 2008 Yii Software LLC
w  
Qiang Xue committed
5 6 7
 * @license http://www.yiiframework.com/license/
 */

w  
Qiang Xue committed
8
namespace yii\validators;
Qiang Xue committed
9 10

use Yii;
Qiang Xue committed
11
use yii\base\InvalidConfigException;
w  
Qiang Xue committed
12

w  
Qiang Xue committed
13
/**
Alexander Makarov committed
14
 * ExistValidator validates that the attribute value exists in a table.
w  
Qiang Xue committed
15
 *
16 17 18
 * ExistValidator checks if the value being validated can be found in the table column specified by
 * the ActiveRecord class [[targetClass]] and the attribute [[targetAttribute]].
 *
w  
Qiang Xue committed
19 20 21
 * This validator is often used to verify that a foreign key contains a value
 * that can be found in the foreign table.
 *
22 23 24 25 26 27 28 29
 * The followings are examples of validation rules using this validator:
 *
 * ```php
 * // a1 needs to exist
 * ['a1', 'exist']
 * // a1 needs to exist, but its value will use a2 to check for the existence
 * ['a1', 'exist', 'targetAttribute' => 'a2']
 * // a1 and a2 need to exist together, and they both will receive error message
Qiang Xue committed
30
 * [['a1', 'a2'], 'exist', 'targetAttribute' => ['a1', 'a2']]
31 32
 * // a1 and a2 need to exist together, only a1 will receive error message
 * ['a1', 'exist', 'targetAttribute' => ['a1', 'a2']]
Qiang Xue committed
33 34
 * // a1 needs to exist by checking the existence of both a2 and a3 (using a1 value)
 * ['a1', 'exist', 'targetAttribute' => ['a2', 'a1' => 'a3']]
35 36
 * ```
 *
w  
Qiang Xue committed
37
 * @author Qiang Xue <qiang.xue@gmail.com>
Alexander Makarov committed
38
 * @since 2.0
w  
Qiang Xue committed
39
 */
Alexander Makarov committed
40
class ExistValidator extends Validator
w  
Qiang Xue committed
41 42
{
	/**
43 44 45
	 * @var string the name of the ActiveRecord class that should be used to validate the existence
	 * of the current attribute value. It not set, it will use the ActiveRecord class of the attribute being validated.
	 * @see targetAttribute
w  
Qiang Xue committed
46
	 */
47
	public $targetClass;
w  
Qiang Xue committed
48
	/**
49 50 51 52 53 54
	 * @var string|array the name of the ActiveRecord attribute that should be used to
	 * validate the existence of the current attribute value. If not set, it will use the name
	 * of the attribute currently being validated. You may use an array to validate the existence
	 * of multiple columns at the same time. The array values are the attributes that will be
	 * used to validate the existence, while the array keys are the attributes whose values are to be validated.
	 * If the key and the value are the same, you can just specify the value.
w  
Qiang Xue committed
55
	 */
56
	public $targetAttribute;
w  
Qiang Xue committed
57

Qiang Xue committed
58 59

	/**
Qiang Xue committed
60
	 * @inheritdoc
Qiang Xue committed
61 62 63 64 65
	 */
	public function init()
	{
		parent::init();
		if ($this->message === null) {
66
			$this->message = Yii::t('yii', '{attribute} is invalid.');
Qiang Xue committed
67 68 69
		}
	}

w  
Qiang Xue committed
70
	/**
Qiang Xue committed
71
	 * @inheritdoc
w  
Qiang Xue committed
72
	 */
w  
Qiang Xue committed
73
	public function validateAttribute($object, $attribute)
w  
Qiang Xue committed
74
	{
75 76 77
		/** @var \yii\db\ActiveRecordInterface $targetClass */
		$targetClass = $this->targetClass === null ? get_class($object) : $this->targetClass;
		$targetAttribute = $this->targetAttribute === null ? $attribute : $this->targetAttribute;
Alexander Makarov committed
78

79 80 81 82 83 84 85 86 87 88 89 90 91 92
		if (is_array($targetAttribute)) {
			$params = [];
			foreach ($targetAttribute as $k => $v) {
				$params[$v] = is_integer($k) ? $object->$v : $object->$k;
			}
		} else {
			$params = [$targetAttribute => $object->$attribute];
		}

		foreach ($params as $value) {
			if (is_array($value)) {
				$this->addError($object, $attribute, Yii::t('yii', '{attribute} is invalid.'));
				return;
			}
93 94
		}

95
		/** @var \yii\db\ActiveRecordInterface $className */
96
		if (!$targetClass::find()->where($params)->exists()) {
Qiang Xue committed
97
			$this->addError($object, $attribute, $this->message);
w  
Qiang Xue committed
98 99
		}
	}
Qiang Xue committed
100 101

	/**
Qiang Xue committed
102
	 * @inheritdoc
Qiang Xue committed
103
	 */
Qiang Xue committed
104
	protected function validateValue($value)
Qiang Xue committed
105
	{
106
		if (is_array($value)) {
Qiang Xue committed
107
			return [$this->message, []];
108
		}
109
		if ($this->targetClass === null) {
Qiang Xue committed
110 111
			throw new InvalidConfigException('The "className" property must be set.');
		}
112 113
		if (!is_string($this->targetAttribute)) {
			throw new InvalidConfigException('The "attributeName" property must be configured as a string.');
Qiang Xue committed
114
		}
115

116 117 118 119 120
		/** @var \yii\db\ActiveRecordInterface $targetClass */
		$targetClass = $this->targetClass;
		$query = $targetClass::find();
		$query->where([$this->targetAttribute => $value]);
		return $query->exists() ? null : [$this->message, []];
Qiang Xue committed
121
	}
w  
Qiang Xue committed
122
}