Exemplo n.º 1
0
 /** @inheritdoc */
 public function rules()
 {
     return [[['login', 'password'], 'required'], ['login', 'trim'], ['password', function ($attribute) {
         if ($this->user === null || !Password::validate($this->password, $this->user->password_hash)) {
             $this->addError($attribute, \Yii::t('user', 'Invalid login or password'));
         }
     }], ['login', function ($attribute) {
         if ($this->user !== null) {
             $confirmationRequired = $this->module->enableConfirmation && !$this->module->enableUnconfirmedLogin;
             if ($confirmationRequired && !$this->user->getIsConfirmed()) {
                 $this->addError($attribute, \Yii::t('user', 'You need to confirm your email address'));
             }
             if ($this->user->getIsBlocked()) {
                 $this->addError($attribute, \Yii::t('user', 'Your account has been blocked'));
             }
             // softal
             //                    if ($this->user->getIsLocked()) {
             //                        $this->addError($attribute, \Yii::t('user', 'Your account has been locked due to too many failed login attempts'));
             //                    }
         }
     }], ['rememberMe', 'boolean'], ['captcha', 'captcha', 'on' => 'captcha']];
 }