mirror of
https://github.com/elyby/accounts.git
synced 2024-12-02 19:50:46 +05:30
dd2c4bc413
Все действия, связанные с аккаунтами, теперь вызываются через url `/api/v1/accounts/<id>/<action>`. Добавлена вменяемая система разграничения прав на основе RBAC. Теперь oAuth2 токены генерируются как случайная строка в 40 символов длинной, а не UUID. Исправлен баг с неправильным временем жизни токена в ответе успешного запроса аутентификации. Теперь все unit тесты можно успешно прогнать без наличия интернета.
67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
|
namespace api\models\authentication;
|
|
|
|
use api\models\base\ApiForm;
|
|
use api\validators\EmailActivationKeyValidator;
|
|
use common\helpers\Error as E;
|
|
use common\models\EmailActivation;
|
|
use common\validators\PasswordValidator;
|
|
use Yii;
|
|
use yii\base\ErrorException;
|
|
|
|
class RecoverPasswordForm extends ApiForm {
|
|
|
|
public $key;
|
|
|
|
public $newPassword;
|
|
|
|
public $newRePassword;
|
|
|
|
public function rules() {
|
|
return [
|
|
['key', EmailActivationKeyValidator::class, 'type' => EmailActivation::TYPE_FORGOT_PASSWORD_KEY],
|
|
['newPassword', 'required', 'message' => E::NEW_PASSWORD_REQUIRED],
|
|
['newRePassword', 'required', 'message' => E::NEW_RE_PASSWORD_REQUIRED],
|
|
['newPassword', PasswordValidator::class],
|
|
['newRePassword', 'validatePasswordAndRePasswordMatch'],
|
|
];
|
|
}
|
|
|
|
public function validatePasswordAndRePasswordMatch($attribute) {
|
|
if (!$this->hasErrors()) {
|
|
if ($this->newPassword !== $this->newRePassword) {
|
|
$this->addError($attribute, E::NEW_RE_PASSWORD_DOES_NOT_MATCH);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return \api\components\User\AuthenticationResult|bool
|
|
* @throws ErrorException
|
|
*/
|
|
public function recoverPassword() {
|
|
if (!$this->validate()) {
|
|
return false;
|
|
}
|
|
|
|
$transaction = Yii::$app->db->beginTransaction();
|
|
|
|
/** @var \common\models\confirmations\ForgotPassword $confirmModel */
|
|
$confirmModel = $this->key;
|
|
$account = $confirmModel->account;
|
|
$account->password = $this->newPassword;
|
|
if (!$confirmModel->delete()) {
|
|
throw new ErrorException('Unable remove activation key.');
|
|
}
|
|
|
|
if (!$account->save(false)) {
|
|
throw new ErrorException('Unable activate user account.');
|
|
}
|
|
|
|
$transaction->commit();
|
|
|
|
return Yii::$app->user->createJwtAuthenticationToken($account, false);
|
|
}
|
|
|
|
}
|