'a2'] * // a1 and a2 need to exist together, and they both will receive error message * [['a1', 'a2'], 'exist', 'targetAttribute' => ['a1', 'a2']] * // a1 and a2 need to exist together, only a1 will receive error message * ['a1', 'exist', 'targetAttribute' => ['a1', 'a2']] * // a1 needs to exist by checking the existence of both a2 and a3 (using a1 value) * ['a1', 'exist', 'targetAttribute' => ['a2', 'a1' => 'a3']] * ``` * * @author Qiang Xue * @since 2.0 */ class ExistValidator extends Validator { /** * @var string the name of the ActiveRecord class that should be used to validate the existence * of the current attribute value. If not set, it will use the ActiveRecord class of the attribute being validated. * @see targetAttribute */ public $targetClass; /** * @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 key is the name of the attribute with the value to validate, * the array value is the name of the database field to search. */ public $targetAttribute; /** * @var string|array|\Closure additional filter to be applied to the DB query used to check the existence of the attribute value. * This can be a string or an array representing the additional query condition (refer to [[\yii\db\Query::where()]] * on the format of query condition), or an anonymous function with the signature `function ($query)`, where `$query` * is the [[\yii\db\Query|Query]] object that you can modify in the function. */ public $filter; /** * @var bool whether to allow array type attribute. */ public $allowArray = false; /** * @var string and|or define how target attributes are related * @since 2.0.11 */ public $targetAttributeJunction = 'and'; /** * {@inheritdoc} */ public function init() { parent::init(); if ($this->message === null) { $this->message = Yii::t('yii', '{attribute} is invalid.'); } } /** * {@inheritdoc} */ public function validateAttribute($model, $attribute) { $targetAttribute = $this->targetAttribute === null ? $attribute : $this->targetAttribute; $params = $this->prepareConditions($targetAttribute, $model, $attribute); $conditions = [$this->targetAttributeJunction == 'or' ? 'or' : 'and']; if (!$this->allowArray) { foreach ($params as $key => $value) { if (is_array($value)) { $this->addError($model, $attribute, Yii::t('yii', '{attribute} is invalid.')); return; } $conditions[] = [$key => $value]; } } else { $conditions[] = $params; } $targetClass = $this->targetClass === null ? get_class($model) : $this->targetClass; $query = $this->createQuery($targetClass, $conditions); if (is_array($model->$attribute)) { if ($query->count("DISTINCT [[$targetAttribute]]") != count($model->$attribute)) { $this->addError($model, $attribute, $this->message); } } elseif (!$query->exists()) { $this->addError($model, $attribute, $this->message); } } /** * Processes attributes' relations described in $targetAttribute parameter into conditions, compatible with * [[\yii\db\Query::where()|Query::where()]] key-value format. * * @param $targetAttribute array|string $attribute 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 key is the name of the attribute with the value to validate, * the array value is the name of the database field to search. * If the key and the value are the same, you can just specify the value. * @param \yii\base\Model $model the data model to be validated * @param string $attribute the name of the attribute to be validated in the $model * @return array conditions, compatible with [[\yii\db\Query::where()|Query::where()]] key-value format. * @throws InvalidConfigException */ private function prepareConditions($targetAttribute, $model, $attribute) { if (is_array($targetAttribute)) { if ($this->allowArray) { throw new InvalidConfigException('The "targetAttribute" property must be configured as a string.'); } $conditions = []; foreach ($targetAttribute as $k => $v) { $conditions[$v] = is_int($k) ? $model->$v : $model->$k; } } else { $conditions = [$targetAttribute => $model->$attribute]; } $targetModelClass = $this->getTargetClass($model); if (!is_subclass_of($targetModelClass, 'yii\db\ActiveRecord')) { return $conditions; } /** @var ActiveRecord $targetModelClass */ return $this->applyTableAlias($targetModelClass::find(), $conditions); } /** * @param Model $model the data model to be validated * @return string Target class name */ private function getTargetClass($model) { return $this->targetClass === null ? get_class($model) : $this->targetClass; } /** * {@inheritdoc} */ protected function validateValue($value) { if ($this->targetClass === null) { throw new InvalidConfigException('The "targetClass" property must be set.'); } if (!is_string($this->targetAttribute)) { throw new InvalidConfigException('The "targetAttribute" property must be configured as a string.'); } $query = $this->createQuery($this->targetClass, [$this->targetAttribute => $value]); if (is_array($value)) { if (!$this->allowArray) { return [$this->message, []]; } return $query->count("DISTINCT [[$this->targetAttribute]]") == count($value) ? null : [$this->message, []]; } return $query->exists() ? null : [$this->message, []]; } /** * Creates a query instance with the given condition. * @param string $targetClass the target AR class * @param mixed $condition query condition * @return \yii\db\ActiveQueryInterface the query instance */ protected function createQuery($targetClass, $condition) { /* @var $targetClass \yii\db\ActiveRecordInterface */ $query = $targetClass::find()->andWhere($condition); if ($this->filter instanceof \Closure) { call_user_func($this->filter, $query); } elseif ($this->filter !== null) { $query->andWhere($this->filter); } return $query; } /** * Returns conditions with alias. * @param ActiveQuery $query * @param array $conditions array of condition, keys to be modified * @param null|string $alias set empty string for no apply alias. Set null for apply primary table alias * @return array */ private function applyTableAlias($query, $conditions, $alias = null) { if ($alias === null) { $alias = array_keys($query->getTablesUsedInFrom())[0]; } $prefixedConditions = []; foreach ($conditions as $columnName => $columnValue) { if (strpos($columnName, '(') === false) { $prefixedColumn = "{$alias}.[[" . preg_replace( '/^' . preg_quote($alias) . '\.(.*)$/', '$1', $columnName) . ']]'; } else { // there is an expression, can't prefix it reliably $prefixedColumn = $columnName; } $prefixedConditions[$prefixedColumn] = $columnValue; } return $prefixedConditions; } }