2016-01-02 19:13:18 +05:30
|
|
|
<?php
|
2016-01-03 05:48:37 +05:30
|
|
|
namespace api\models;
|
2016-01-02 19:13:18 +05:30
|
|
|
|
2016-01-03 05:48:37 +05:30
|
|
|
use common\models\Account;
|
2016-01-02 19:13:18 +05:30
|
|
|
use Yii;
|
|
|
|
use yii\base\Model;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Login form
|
|
|
|
*/
|
|
|
|
class LoginForm extends Model
|
|
|
|
{
|
|
|
|
public $username;
|
|
|
|
public $password;
|
|
|
|
public $rememberMe = true;
|
|
|
|
|
|
|
|
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'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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, '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]]
|
|
|
|
*
|
2016-01-03 05:48:37 +05:30
|
|
|
* @return Account|null
|
2016-01-02 19:13:18 +05:30
|
|
|
*/
|
|
|
|
protected function getUser()
|
|
|
|
{
|
|
|
|
if ($this->_user === null) {
|
2016-01-03 05:48:37 +05:30
|
|
|
$this->_user = Account::findByEmail($this->username);
|
2016-01-02 19:13:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return $this->_user;
|
|
|
|
}
|
|
|
|
}
|