2019-08-18 05:47:59 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use BookStack\Auth\Access\EmailConfirmationService;
|
2021-07-17 12:45:00 -04:00
|
|
|
use BookStack\Auth\Access\LoginService;
|
2019-08-18 05:47:59 -04:00
|
|
|
use BookStack\Auth\UserRepo;
|
|
|
|
use BookStack\Exceptions\ConfirmationEmailException;
|
|
|
|
use BookStack\Exceptions\UserTokenExpiredException;
|
|
|
|
use BookStack\Exceptions\UserTokenNotFoundException;
|
|
|
|
use BookStack\Http\Controllers\Controller;
|
|
|
|
use Exception;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class ConfirmEmailController extends Controller
|
|
|
|
{
|
2022-09-22 10:12:05 -04:00
|
|
|
protected EmailConfirmationService $emailConfirmationService;
|
|
|
|
protected LoginService $loginService;
|
|
|
|
protected UserRepo $userRepo;
|
2019-08-18 05:47:59 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*/
|
2021-07-17 12:45:00 -04:00
|
|
|
public function __construct(
|
|
|
|
EmailConfirmationService $emailConfirmationService,
|
|
|
|
LoginService $loginService,
|
|
|
|
UserRepo $userRepo
|
2021-08-21 10:49:40 -04:00
|
|
|
) {
|
2019-08-18 05:47:59 -04:00
|
|
|
$this->emailConfirmationService = $emailConfirmationService;
|
2021-07-17 12:45:00 -04:00
|
|
|
$this->loginService = $loginService;
|
2019-08-18 05:47:59 -04:00
|
|
|
$this->userRepo = $userRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the page to tell the user to check their email
|
|
|
|
* and confirm their address.
|
|
|
|
*/
|
|
|
|
public function show()
|
|
|
|
{
|
|
|
|
return view('auth.register-confirm');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows a notice that a user's email address has not been confirmed,
|
|
|
|
* Also has the option to re-send the confirmation email.
|
|
|
|
*/
|
|
|
|
public function showAwaiting()
|
|
|
|
{
|
2021-07-18 11:52:31 -04:00
|
|
|
$user = $this->loginService->getLastLoginAttemptUser();
|
2021-08-21 10:49:40 -04:00
|
|
|
|
2021-07-18 11:52:31 -04:00
|
|
|
return view('auth.user-unconfirmed', ['user' => $user]);
|
2019-08-18 05:47:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirms an email via a token and logs the user into the system.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2019-08-18 05:47:59 -04:00
|
|
|
* @throws ConfirmationEmailException
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2021-11-05 20:32:01 -04:00
|
|
|
public function confirm(string $token)
|
2019-08-18 05:47:59 -04:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
$userId = $this->emailConfirmationService->checkTokenAndGetUserId($token);
|
2021-11-05 20:32:01 -04:00
|
|
|
} catch (UserTokenNotFoundException $exception) {
|
|
|
|
$this->showErrorNotification(trans('errors.email_confirmation_invalid'));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-11-05 20:32:01 -04:00
|
|
|
return redirect('/register');
|
|
|
|
} catch (UserTokenExpiredException $exception) {
|
|
|
|
$user = $this->userRepo->getById($exception->userId);
|
|
|
|
$this->emailConfirmationService->sendConfirmation($user);
|
|
|
|
$this->showErrorNotification(trans('errors.email_confirmation_expired'));
|
2019-08-18 05:47:59 -04:00
|
|
|
|
2021-11-05 20:32:01 -04:00
|
|
|
return redirect('/register/confirm');
|
2019-08-18 05:47:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$user = $this->userRepo->getById($userId);
|
|
|
|
$user->email_confirmed = true;
|
|
|
|
$user->save();
|
|
|
|
|
|
|
|
$this->emailConfirmationService->deleteByUser($user);
|
2021-07-17 13:24:50 -04:00
|
|
|
$this->showSuccessNotification(trans('auth.email_confirm_success'));
|
2019-08-18 05:47:59 -04:00
|
|
|
|
2021-11-15 05:50:28 -05:00
|
|
|
return redirect('/login');
|
2019-08-18 05:47:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Resend the confirmation email.
|
2019-08-18 05:47:59 -04:00
|
|
|
*/
|
|
|
|
public function resend(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
2021-11-04 20:26:55 -04:00
|
|
|
'email' => ['required', 'email', 'exists:users,email'],
|
2019-08-18 05:47:59 -04:00
|
|
|
]);
|
|
|
|
$user = $this->userRepo->getByEmail($request->get('email'));
|
|
|
|
|
|
|
|
try {
|
|
|
|
$this->emailConfirmationService->sendConfirmation($user);
|
|
|
|
} catch (Exception $e) {
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->showErrorNotification(trans('auth.email_confirm_send_error'));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-08-18 05:47:59 -04:00
|
|
|
return redirect('/register/confirm');
|
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->showSuccessNotification(trans('auth.email_confirm_resent'));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-08-18 05:47:59 -04:00
|
|
|
return redirect('/register/confirm');
|
|
|
|
}
|
|
|
|
}
|