mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
45c2ed601d
Refactor all JWT-related components Replace RS256 with ES256 as a preferred JWT algorithm
96 lines
2.6 KiB
PHP
96 lines
2.6 KiB
PHP
<?php
|
|
namespace api\controllers;
|
|
|
|
use api\models\authentication\ConfirmEmailForm;
|
|
use api\models\authentication\RegistrationForm;
|
|
use api\models\authentication\RepeatAccountActivationForm;
|
|
use common\helpers\Error as E;
|
|
use Yii;
|
|
use yii\filters\AccessControl;
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
class SignupController extends Controller {
|
|
|
|
public function behaviors(): array {
|
|
return ArrayHelper::merge(parent::behaviors(), [
|
|
'authenticator' => [
|
|
'except' => ['index', 'repeat-message', 'confirm'],
|
|
],
|
|
'access' => [
|
|
'class' => AccessControl::class,
|
|
'rules' => [
|
|
[
|
|
'actions' => ['index', 'repeat-message', 'confirm'],
|
|
'allow' => true,
|
|
'roles' => ['?'],
|
|
],
|
|
],
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function verbs() {
|
|
return [
|
|
'register' => ['POST'],
|
|
'confirm' => ['POST'],
|
|
'new-message' => ['POST'],
|
|
];
|
|
}
|
|
|
|
public function actionIndex() {
|
|
$model = new RegistrationForm();
|
|
$model->load(Yii::$app->request->post());
|
|
if (!$model->signup()) {
|
|
return [
|
|
'success' => false,
|
|
'errors' => $model->getFirstErrors(),
|
|
];
|
|
}
|
|
|
|
return [
|
|
'success' => true,
|
|
];
|
|
}
|
|
|
|
public function actionRepeatMessage() {
|
|
$model = new RepeatAccountActivationForm();
|
|
$model->load(Yii::$app->request->post());
|
|
if (!$model->sendRepeatMessage()) {
|
|
$response = [
|
|
'success' => false,
|
|
'errors' => $model->getFirstErrors(),
|
|
];
|
|
|
|
if (ArrayHelper::getValue($response['errors'], 'email') === E::RECENTLY_SENT_MESSAGE) {
|
|
$activation = $model->getActivation();
|
|
$response['data'] = [
|
|
'canRepeatIn' => $activation->canRepeatIn(),
|
|
'repeatFrequency' => $activation->repeatTimeout,
|
|
];
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
|
|
return [
|
|
'success' => true,
|
|
];
|
|
}
|
|
|
|
public function actionConfirm() {
|
|
$model = new ConfirmEmailForm();
|
|
$model->load(Yii::$app->request->post());
|
|
if (!($result = $model->confirm())) {
|
|
return [
|
|
'success' => false,
|
|
'errors' => $model->getFirstErrors(),
|
|
];
|
|
}
|
|
|
|
return array_merge([
|
|
'success' => true,
|
|
], $result->formatAsOAuth2Response());
|
|
}
|
|
|
|
}
|