mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php
|
|
namespace api\models;
|
|
|
|
use common\models\Account;
|
|
use common\models\EmailActivation;
|
|
use Yii;
|
|
use yii\base\ErrorException;
|
|
|
|
class ConfirmEmailForm extends BaseKeyConfirmationForm {
|
|
|
|
public function confirm() {
|
|
if (!$this->validate()) {
|
|
return false;
|
|
}
|
|
|
|
$confirmModel = $this->getActivationCodeModel();
|
|
if ($confirmModel->type != EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION) {
|
|
$confirmModel->delete();
|
|
// TODO: вот где-то здесь нужно ещё попутно сгенерировать соответствующую ошибку
|
|
return false;
|
|
}
|
|
|
|
$transaction = Yii::$app->db->beginTransaction();
|
|
try {
|
|
$account = $confirmModel->account;
|
|
$account->status = Account::STATUS_ACTIVE;
|
|
if (!$confirmModel->delete()) {
|
|
throw new ErrorException('Unable remove activation key.');
|
|
}
|
|
|
|
if (!$account->save()) {
|
|
throw new ErrorException('Unable activate user account.');
|
|
}
|
|
|
|
$transaction->commit();
|
|
} catch (ErrorException $e) {
|
|
$transaction->rollBack();
|
|
if (YII_DEBUG) {
|
|
throw $e;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return $account->getJWT();
|
|
}
|
|
|
|
}
|