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.
120 lines
3.4 KiB
120 lines
3.4 KiB
14 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
12 years ago
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
14 years ago
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
14 years ago
|
namespace yii\validators;
|
||
|
|
||
12 years ago
|
use Yii;
|
||
|
use yii\base\InvalidConfigException;
|
||
12 years ago
|
use yii\helpers\Html;
|
||
12 years ago
|
|
||
14 years ago
|
/**
|
||
14 years ago
|
* CaptchaValidator validates that the attribute value is the same as the verification code displayed in the CAPTCHA.
|
||
14 years ago
|
*
|
||
14 years ago
|
* CaptchaValidator should be used together with [[CaptchaAction]].
|
||
14 years ago
|
*
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
14 years ago
|
* @since 2.0
|
||
14 years ago
|
*/
|
||
14 years ago
|
class CaptchaValidator extends Validator
|
||
14 years ago
|
{
|
||
12 years ago
|
public $skipOnEmpty = false;
|
||
14 years ago
|
/**
|
||
|
* @var boolean whether the comparison is case sensitive. Defaults to false.
|
||
|
*/
|
||
|
public $caseSensitive = false;
|
||
|
/**
|
||
12 years ago
|
* @var string the route of the controller action that renders the CAPTCHA image.
|
||
14 years ago
|
*/
|
||
12 years ago
|
public $captchaAction = 'site/captcha';
|
||
|
|
||
14 years ago
|
|
||
|
/**
|
||
12 years ago
|
* Initializes the validator.
|
||
|
*/
|
||
|
public function init()
|
||
|
{
|
||
|
parent::init();
|
||
|
if ($this->message === null) {
|
||
12 years ago
|
$this->message = Yii::t('yii', 'The verification code is incorrect.');
|
||
12 years ago
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
14 years ago
|
* Validates the attribute of the object.
|
||
|
* If there is any error, the error message is added to the object.
|
||
14 years ago
|
* @param \yii\base\Model $object the object being validated
|
||
14 years ago
|
* @param string $attribute the attribute being validated
|
||
|
*/
|
||
14 years ago
|
public function validateAttribute($object, $attribute)
|
||
14 years ago
|
{
|
||
|
$value = $object->$attribute;
|
||
12 years ago
|
if (!$this->validateValue($value)) {
|
||
12 years ago
|
$this->addError($object, $attribute, $this->message);
|
||
14 years ago
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
12 years ago
|
* Validates the given value.
|
||
|
* @param mixed $value the value to be validated.
|
||
|
* @return boolean whether the value is valid.
|
||
|
*/
|
||
|
public function validateValue($value)
|
||
|
{
|
||
|
$captcha = $this->getCaptchaAction();
|
||
12 years ago
|
return !is_array($value) && $captcha->validate($value, $this->caseSensitive);
|
||
12 years ago
|
}
|
||
|
|
||
|
/**
|
||
14 years ago
|
* Returns the CAPTCHA action object.
|
||
12 years ago
|
* @throws InvalidConfigException
|
||
12 years ago
|
* @return \yii\web\CaptchaAction the action object
|
||
14 years ago
|
*/
|
||
14 years ago
|
public function getCaptchaAction()
|
||
14 years ago
|
{
|
||
12 years ago
|
$ca = Yii::$app->createController($this->captchaAction);
|
||
|
if ($ca !== false) {
|
||
|
/** @var \yii\base\Controller $controller */
|
||
|
list($controller, $actionID) = $ca;
|
||
|
$action = $controller->createAction($actionID);
|
||
|
if ($action !== null) {
|
||
|
return $action;
|
||
14 years ago
|
}
|
||
14 years ago
|
}
|
||
12 years ago
|
throw new InvalidConfigException('Invalid CAPTCHA action ID: ' . $this->captchaAction);
|
||
14 years ago
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the JavaScript needed for performing client-side validation.
|
||
14 years ago
|
* @param \yii\base\Model $object the data object being validated
|
||
14 years ago
|
* @param string $attribute the name of the attribute to be validated.
|
||
12 years ago
|
* @param \yii\base\View $view the view object that is going to be used to render views or view files
|
||
|
* containing a model form with this validator applied.
|
||
14 years ago
|
* @return string the client-side validation script.
|
||
|
*/
|
||
12 years ago
|
public function clientValidateAttribute($object, $attribute, $view)
|
||
14 years ago
|
{
|
||
|
$captcha = $this->getCaptchaAction();
|
||
|
$code = $captcha->getVerifyCode(false);
|
||
|
$hash = $captcha->generateValidationHash($this->caseSensitive ? $code : strtolower($code));
|
||
12 years ago
|
$options = array(
|
||
|
'hash' => $hash,
|
||
|
'hashKey' => 'yiiCaptcha/' . $this->captchaAction,
|
||
|
'caseSensitive' => $this->caseSensitive,
|
||
|
'message' => Html::encode(strtr($this->message, array(
|
||
|
'{attribute}' => $object->getAttributeLabel($attribute),
|
||
|
'{value}' => $object->$attribute,
|
||
|
))),
|
||
|
);
|
||
12 years ago
|
if ($this->skipOnEmpty) {
|
||
12 years ago
|
$options['skipOnEmpty'] = 1;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
$view->registerAssetBundle('yii/validation');
|
||
12 years ago
|
return 'yii.validation.captcha(value, messages, ' . json_encode($options) . ');';
|
||
14 years ago
|
}
|
||
|
}
|