You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
79 lines
2.2 KiB
7 years ago
|
<?php
|
||
|
namespace frontend\controllers\auth;
|
||
|
|
||
|
use core\services\auth\SignupService;
|
||
|
use Yii;
|
||
|
use yii\web\Controller;
|
||
|
use yii\filters\AccessControl;
|
||
|
use core\forms\auth\SignupForm;
|
||
|
|
||
|
class SignupController extends Controller
|
||
|
{
|
||
|
public $layout = 'auth';
|
||
|
|
||
|
private $service;
|
||
|
|
||
|
public function __construct($id, $module, SignupService $service, $config = [])
|
||
|
{
|
||
|
parent::__construct($id, $module, $config);
|
||
|
$this->service = $service;
|
||
|
}
|
||
|
|
||
|
public function behaviors(): array
|
||
|
{
|
||
|
return [
|
||
|
'access' => [
|
||
|
'class' => AccessControl::className(),
|
||
|
//'only' => ['index'],
|
||
|
'rules' => [
|
||
|
[
|
||
|
'actions' => ['request', 'confirm'],
|
||
|
'allow' => true,
|
||
|
'roles' => ['?'],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function actionRequest()
|
||
|
{
|
||
|
$form = new SignupForm();
|
||
|
if ($form->load(Yii::$app->request->post()) && $form->validate()) {
|
||
|
try {
|
||
|
$this->service->signup($form);
|
||
|
Yii::$app->session->setFlash('success', Yii::t('auth', 'Check your email for further instructions.'));
|
||
|
//return $this->goHome();
|
||
|
return $this->redirect(['auth/auth/login']);
|
||
|
} catch (\DomainException $e) {
|
||
|
Yii::$app->errorHandler->logException($e);
|
||
|
Yii::$app->session->setFlash('error', $e->getMessage());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $this->render('request', [
|
||
|
'model' => $form,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $token
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function actionConfirm($token)
|
||
|
{
|
||
|
try {
|
||
|
$this->service->confirm($token);
|
||
|
Yii::$app->session->setFlash('success', Yii::t('auth', 'Your email is confirmed.'));
|
||
|
return $this->redirect(['auth/auth/login']);
|
||
|
} catch (\DomainException $e) {
|
||
|
Yii::$app->errorHandler->logException($e);
|
||
|
Yii::$app->session->setFlash('error', $e->getMessage());
|
||
|
}
|
||
|
return $this->goHome();
|
||
|
}
|
||
|
}
|