Yii2 framework backup
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.

86 lines
2.7 KiB

13 years ago
<?php
/**
13 years ago
* ExistValidator class file.
13 years ago
*
* @link http://www.yiiframework.com/
13 years ago
* @copyright Copyright &copy; 2008-2012 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
13 years ago
namespace yii\validators;
13 years ago
/**
13 years ago
* ExistValidator validates that the attribute value exists in a table.
13 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>
13 years ago
* @since 2.0
13 years ago
*/
13 years ago
class ExistValidator extends Validator
13 years ago
{
/**
13 years ago
* @var string the yii\db\ar\ActiveRecord class name or alias of the class
* that should be used to look for the attribute value being validated.
* Defaults to null, meaning using the yii\db\ar\ActiveRecord class of
* the attribute being validated.
13 years ago
* @see attributeName
*/
public $className;
/**
13 years ago
* @var string the yii\db\ar\ActiveRecord class attribute name that should be
13 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
* @var \yii\db\dao\BaseQuery additional query criteria. This will be combined
* with the condition that checks if the attribute value exists in the
* corresponding table column.
13 years ago
*/
13 years ago
public $query = null;
13 years ago
/**
* @var boolean whether the attribute value can be null or empty. Defaults to true,
* meaning that if the attribute is empty, it is considered valid.
*/
public $allowEmpty = true;
/**
* Validates the attribute of the object.
* If there is any error, the error message is added to the object.
13 years ago
*
* @param \yii\db\ar\ActiveRecord $object the object being validated
13 years ago
* @param string $attribute the attribute being validated
13 years ago
*
* @throws \yii\base\Exception if table doesn't have column specified
13 years ago
*/
13 years ago
public function validateAttribute($object, $attribute)
13 years ago
{
$value = $object->$attribute;
13 years ago
if ($this->allowEmpty && $this->isEmpty($value)) {
13 years ago
return;
13 years ago
}
$className = ($this->className === null) ? get_class($object) : \Yii::import($this->className);
$attributeName = ($this->attributeName === null) ? $attribute : $this->attributeName;
$table = $object::getMetaData()->table;
if (($column = $table->getColumn($attributeName)) === null) {
throw new \yii\base\Exception('Table "' . $table->name . '" does not have a column named "' . $attributeName . '"');
}
13 years ago
13 years ago
$finder = $object->find()->where(array($column->name => $value));
13 years ago
13 years ago
if ($this->query instanceof \yii\db\dao\BaseQuery) {
$finder->mergeWith($this->query);
13 years ago
}
13 years ago
if (!$finder->exists()) {
$message = ($this->message !== null) ? $this->message : \Yii::t('yii', '{attribute} "{value}" is invalid.');
13 years ago
$this->addError($object, $attribute, $message, array('{value}' => $value));
}
}
}