RequiredValidator.php 3.2 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 9
namespace yii\validators;

Qiang Xue committed
10
use Yii;
Qiang Xue committed
11
use yii\helpers\Html;
Qiang Xue committed
12

w  
Qiang Xue committed
13
/**
w  
Qiang Xue committed
14
 * RequiredValidator validates that the specified attribute does not have null or empty value.
w  
Qiang Xue committed
15 16
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
w  
Qiang Xue committed
17
 * @since 2.0
w  
Qiang Xue committed
18
 */
w  
Qiang Xue committed
19
class RequiredValidator extends Validator
w  
Qiang Xue committed
20
{
Qiang Xue committed
21 22 23 24
	/**
	 * @var boolean whether to skip this validator if the value being validated is empty.
	 */
	public $skipOnEmpty = false;
w  
Qiang Xue committed
25 26
	/**
	 * @var mixed the desired value that the attribute must have.
w  
Qiang Xue committed
27
	 * If this is null, the validator will validate that the specified attribute is not empty.
w  
Qiang Xue committed
28 29 30
	 * If this is set as a value that is not null, the validator will validate that
	 * the attribute has a value that is the same as this property value.
	 * Defaults to null.
w  
Qiang Xue committed
31
	 * @see strict
w  
Qiang Xue committed
32 33 34
	 */
	public $requiredValue;
	/**
w  
Qiang Xue committed
35 36 37 38 39 40
	 * @var boolean whether the comparison between the attribute value and [[requiredValue]] is strict.
	 * When this is true, both the values and types must match.
	 * Defaults to false, meaning only the values need to match.
	 * Note that when [[requiredValue]] is null, if this property is true, the validator will check
	 * if the attribute value is null; If this property is false, the validator will call [[isEmpty]]
	 * to check if the attribute value is empty.
w  
Qiang Xue committed
41 42
	 */
	public $strict = false;
43 44 45 46 47 48 49 50 51
	/**
	 * @var string the user-defined error message. It may contain the following placeholders which
	 * will be replaced accordingly by the validator:
	 *
	 * - `{attribute}`: the label of the attribute being validated
	 * - `{value}`: the value of the attribute being validated
	 * - `{requiredValue}`: the value of [[requiredValue]]
	 */
	public $message;
w  
Qiang Xue committed
52

Qiang Xue committed
53
	/**
Qiang Xue committed
54
	 * @inheritdoc
Qiang Xue committed
55 56 57 58 59
	 */
	public function init()
	{
		parent::init();
		if ($this->message === null) {
60 61
			$this->message = $this->requiredValue === null ? Yii::t('yii', '{attribute} cannot be blank.')
				: Yii::t('yii', '{attribute} must be "{requiredValue}".');
Qiang Xue committed
62 63 64
		}
	}

w  
Qiang Xue committed
65
	/**
Qiang Xue committed
66
	 * @inheritdoc
w  
Qiang Xue committed
67
	 */
Qiang Xue committed
68
	protected function validateValue($value)
Qiang Xue committed
69 70 71
	{
		if ($this->requiredValue === null) {
			if ($this->strict && $value !== null || !$this->strict && !$this->isEmpty($value, true)) {
Qiang Xue committed
72
				return null;
Qiang Xue committed
73 74
			}
		} elseif (!$this->strict && $value == $this->requiredValue || $this->strict && $value === $this->requiredValue) {
Qiang Xue committed
75 76 77 78 79 80 81 82
			return null;
		}
		if ($this->requiredValue === null) {
			return [$this->message, []];
		} else {
			return [$this->message, [
				'requiredValue' => $this->requiredValue,
			]];
Qiang Xue committed
83 84 85
		}
	}

w  
Qiang Xue committed
86
	/**
Qiang Xue committed
87
	 * @inheritdoc
w  
Qiang Xue committed
88
	 */
89
	public function clientValidateAttribute($object, $attribute, $view)
w  
Qiang Xue committed
90
	{
Alexander Makarov committed
91
		$options = [];
w  
Qiang Xue committed
92
		if ($this->requiredValue !== null) {
Alexander Makarov committed
93
			$options['message'] = strtr($this->message, [
w  
Qiang Xue committed
94
				'{requiredValue}' => $this->requiredValue,
Alexander Makarov committed
95
			]);
Qiang Xue committed
96
			$options['requiredValue'] = $this->requiredValue;
Qiang Xue committed
97
		} else {
Qiang Xue committed
98 99 100 101
			$options['message'] = $this->message;
		}
		if ($this->strict) {
			$options['strict'] = 1;
w  
Qiang Xue committed
102
		}
Qiang Xue committed
103

Alexander Makarov committed
104
		$options['message'] = Html::encode(strtr($options['message'], [
Qiang Xue committed
105
			'{attribute}' => $object->getAttributeLabel($attribute),
Alexander Makarov committed
106
		]));
Qiang Xue committed
107

108
		ValidationAsset::register($view);
Qiang Xue committed
109
		return 'yii.validation.required(value, messages, ' . json_encode($options) . ');';
w  
Qiang Xue committed
110 111
	}
}