Yii2 Bootstrap 3
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.

177 lines
5.2 KiB

13 years ago
<?php
/**
13 years ago
* StringValidator class file.
13 years ago
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 2008 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
13 years ago
namespace yii\validators;
13 years ago
/**
13 years ago
* StringValidator validates that the attribute value is of certain length.
13 years ago
*
* Note, this validator should only be used with string-typed attributes.
*
* @author Qiang Xue <qiang.xue@gmail.com>
13 years ago
* @since 2.0
13 years ago
*/
13 years ago
class StringValidator extends Validator
13 years ago
{
/**
* @var integer maximum length. Defaults to null, meaning no maximum limit.
*/
public $max;
/**
* @var integer minimum length. Defaults to null, meaning no minimum limit.
*/
public $min;
/**
* @var integer exact length. Defaults to null, meaning no exact length limit.
*/
public $is;
/**
13 years ago
* @var string user-defined error message used when the value is not a string
*/
public $message;
/**
* @var string user-defined error message used when the length of the value is smaller than [[min]].
13 years ago
*/
public $tooShort;
/**
13 years ago
* @var string user-defined error message used when the length of the value is greater than [[max]].
13 years ago
*/
public $tooLong;
/**
13 years ago
* @var string user-defined error message used when the length of the value is not equal to [[is]].
*/
public $notEqual;
/**
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;
/**
13 years ago
* @var mixed the encoding of the string value to be validated (e.g. 'UTF-8').
13 years ago
* This property is used only when mbstring PHP extension is enabled.
* The value of this property will be used as the 2nd parameter of the
* mb_strlen() function. If this property is not set, the application charset
13 years ago
* will be used. If this property is set false, then strlen() will be used even
* if mbstring is enabled.
13 years ago
*/
public $encoding;
/**
* Validates the attribute of the object.
* If there is any error, the error message is added to the object.
13 years ago
* @param \yii\base\Model $object the object being validated
13 years ago
* @param string $attribute the attribute being validated
*/
13 years ago
public function validateAttribute($object, $attribute)
13 years ago
{
$value = $object->$attribute;
13 years ago
if ($this->allowEmpty && $this->isEmpty($value)) {
return;
}
if (!is_string($value)) {
13 years ago
$message = ($this->message !== null) ? $this->message : \Yii::t('yii', '{attribute} must be a string.');
13 years ago
$this->addError($object, $attribute, $message);
13 years ago
return;
13 years ago
}
13 years ago
13 years ago
if (function_exists('mb_strlen') && $this->encoding !== false) {
13 years ago
$length = mb_strlen($value, $this->encoding ? $this->encoding : \Yii::$application->charset);
13 years ago
} else {
13 years ago
$length = strlen($value);
13 years ago
}
13 years ago
13 years ago
if ($this->min !== null && $length < $this->min) {
13 years ago
$message = ($this->tooShort !== null) ? $this->tooShort : \Yii::t('yii', '{attribute} is too short (minimum is {min} characters).');
13 years ago
$this->addError($object, $attribute, $message, array('{min}' => $this->min));
}
13 years ago
if ($this->max !== null && $length > $this->max) {
13 years ago
$message = ($this->tooLong !== null) ? $this->tooLong : \Yii::t('yii', '{attribute} is too long (maximum is {max} characters).');
13 years ago
$this->addError($object, $attribute, $message, array('{max}' => $this->max));
}
13 years ago
if ($this->is !== null && $length !== $this->is) {
13 years ago
$message = ($this->notEqual !== null) ? $this->notEqual : \Yii::t('yii', '{attribute} is of the wrong length (should be {length} characters).');
13 years ago
$this->addError($object, $attribute, $message, array('{length}' => $this->is));
}
}
/**
* Returns the JavaScript needed for performing client-side validation.
13 years ago
* @param \yii\base\Model $object the data object being validated
13 years ago
* @param string $attribute the name of the attribute to be validated.
* @return string the client-side validation script.
*/
public function clientValidateAttribute($object, $attribute)
{
$label = $object->getAttributeLabel($attribute);
13 years ago
$value = $object->$attribute;
13 years ago
13 years ago
if (($notEqual = $this->notEqual) === null) {
13 years ago
$notEqual = \Yii::t('yii', '{attribute} is of the wrong length (should be {length} characters).');
13 years ago
}
$notEqual = strtr($notEqual, array(
13 years ago
'{attribute}' => $label,
13 years ago
'{value}' => $value,
13 years ago
'{length}' => $this->is,
));
13 years ago
if (($tooShort = $this->tooShort) === null) {
13 years ago
$tooShort = \Yii::t('yii', '{attribute} is too short (minimum is {min} characters).');
13 years ago
}
13 years ago
$tooShort = strtr($tooShort, array(
'{attribute}' => $label,
13 years ago
'{value}' => $value,
13 years ago
'{min}' => $this->min,
));
13 years ago
if (($tooLong = $this->tooLong) === null) {
13 years ago
$tooLong = \Yii::t('yii', '{attribute} is too long (maximum is {max} characters).');
13 years ago
}
13 years ago
$tooLong = strtr($tooLong, array(
'{attribute}' => $label,
13 years ago
'{value}' => $value,
13 years ago
'{max}' => $this->max,
));
$js = '';
13 years ago
if ($this->min !== null) {
13 years ago
$js .= "
if(value.length< {$this->min}) {
13 years ago
messages.push(" . json_encode($tooShort) . ");
13 years ago
}
";
}
13 years ago
if ($this->max !== null) {
13 years ago
$js .= "
if(value.length> {$this->max}) {
13 years ago
messages.push(" . json_encode($tooLong) . ");
13 years ago
}
";
}
13 years ago
if ($this->is !== null) {
13 years ago
$js .= "
if(value.length!= {$this->is}) {
13 years ago
messages.push(" . json_encode($notEqual) . ");
13 years ago
}
";
}
13 years ago
if ($this->allowEmpty) {
13 years ago
$js = "
if($.trim(value)!='') {
$js
}
";
}
return $js;
}
}