| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2017-03-15 21:16
- */
- namespace backend\models\form;
- use yii;
- use yii\base\Model;
- use common\models\AdminUser;
- /**
- * Login form
- */
- class LoginForm extends Model
- {
- public $username;
- public $password;
- public $rememberMe = false;
- public $captcha;
- private $_user;
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- // username and password are both required
- [['username', 'password'], 'required'],
- // rememberMe must be a boolean value
- ['rememberMe', 'boolean'],
- // password is validated by validatePassword()
- ['password', 'validatePassword'],
- /* [
- 'captcha',
- 'captcha',
- 'captchaAction' => 'site/captcha',
- 'message' => yii::t('app', 'Verification code error.')
- ],*/
- ];
- }
- /**
- * Validates the password.
- * This method serves as the inline validation for password.
- *
- * @param string $attribute the attribute currently being validated
- * @param array $params the additional name-value pairs given in the rule
- */
- public function validatePassword($attribute, $params)
- {
- if (! $this->hasErrors()) {
- $user = $this->getUser();
- if (! $user || ! $user->validatePassword($this->password)) {
- $this->addError($attribute, yii::t('app', 'Incorrect username or password.'));
- }
- }
- }
- /**
- * Logs in a user using the provided username and password.
- *
- * @return boolean whether the user is logged in successfully
- */
- public function login()
- {
- if ($this->validate()) {
- return Yii::$app->user->login($this->getUser(), $this->rememberMe ? 3600 * 24 * 30 : 0);
- } else {
- return false;
- }
- }
- /**
- * Finds user by [[username]]
- *
- * @return AdminUser|null
- */
- protected function getUser()
- {
- if ($this->_user === null) {
- $this->_user = AdminUser::findByUsername($this->username);
- }
- return $this->_user;
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'username' => yii::t('app', 'Username'),
- 'password' => yii::t('app', 'Password'),
- ];
- }
- }
|