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.
71 lines
1.4 KiB
71 lines
1.4 KiB
<?php |
|
|
|
namespace common\models; |
|
|
|
use Yii; |
|
use yii\base\Model; |
|
|
|
/** |
|
* LoginForm is the model behind the login form. |
|
*/ |
|
class LoginForm extends Model |
|
{ |
|
public $username; |
|
public $password; |
|
public $rememberMe = true; |
|
|
|
private $_user = false; |
|
|
|
/** |
|
* @return array the validation rules. |
|
*/ |
|
public function rules() |
|
{ |
|
return [ |
|
// username and password are both required |
|
[['username', 'password'], 'required'], |
|
// password is validated by validatePassword() |
|
['password', 'validatePassword'], |
|
// rememberMe must be a boolean value |
|
['rememberMe', 'boolean'], |
|
]; |
|
} |
|
|
|
/** |
|
* Validates the password. |
|
* This method serves as the inline validation for password. |
|
*/ |
|
public function validatePassword() |
|
{ |
|
$user = $this->getUser(); |
|
if (!$user || !$user->validatePassword($this->password)) { |
|
$this->addError('password', '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 User|null |
|
*/ |
|
private function getUser() |
|
{ |
|
if ($this->_user === false) { |
|
$this->_user = User::findByUsername($this->username); |
|
} |
|
return $this->_user; |
|
} |
|
}
|
|
|