mirror of
https://github.com/elyby/accounts.git
synced 2024-10-30 15:33:21 +05:30
a29cb76cbf
Модель EmailActivation теперь умеет автоматически создавать своих правильных потомков по соответствующему типу Добавлена форма восстановления пароля и её обработчик (без контроллера)
74 lines
1.9 KiB
PHP
74 lines
1.9 KiB
PHP
<?php
|
||
namespace api\models;
|
||
|
||
use api\models\base\ApiForm;
|
||
use api\traits\AccountFinder;
|
||
use common\models\Account;
|
||
use Yii;
|
||
|
||
class LoginForm extends ApiForm {
|
||
use AccountFinder;
|
||
|
||
public $login;
|
||
public $password;
|
||
public $rememberMe = true;
|
||
|
||
public function rules() {
|
||
return [
|
||
['login', 'required', 'message' => 'error.login_required'],
|
||
['login', 'validateLogin'],
|
||
|
||
['password', 'required', 'when' => function(self $model) {
|
||
return !$model->hasErrors();
|
||
}, 'message' => 'error.password_required'],
|
||
['password', 'validatePassword'],
|
||
|
||
['login', 'validateActivity'],
|
||
|
||
['rememberMe', 'boolean'],
|
||
];
|
||
}
|
||
|
||
public function validateLogin($attribute) {
|
||
if (!$this->hasErrors()) {
|
||
if (!$this->getAccount()) {
|
||
$this->addError($attribute, 'error.' . $attribute . '_not_exist');
|
||
}
|
||
}
|
||
}
|
||
|
||
public function validatePassword($attribute) {
|
||
if (!$this->hasErrors()) {
|
||
$account = $this->getAccount();
|
||
if (!$account || !$account->validatePassword($this->password)) {
|
||
$this->addError($attribute, 'error.' . $attribute . '_incorrect');
|
||
}
|
||
}
|
||
}
|
||
|
||
public function validateActivity($attribute) {
|
||
if (!$this->hasErrors()) {
|
||
$account = $this->getAccount();
|
||
if ($account->status !== Account::STATUS_ACTIVE) {
|
||
$this->addError($attribute, 'error.account_not_activated');
|
||
}
|
||
}
|
||
}
|
||
|
||
public function getLogin() {
|
||
return $this->login;
|
||
}
|
||
|
||
/**
|
||
* @return bool|string JWT с информацией об аккаунте
|
||
*/
|
||
public function login() {
|
||
if (!$this->validate()) {
|
||
return false;
|
||
}
|
||
|
||
return $this->getAccount()->getJWT();
|
||
}
|
||
|
||
}
|