2019-12-30 10:46:12 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Middleware;
|
|
|
|
|
2020-01-01 11:33:47 -05:00
|
|
|
use BookStack\Exceptions\UnauthorizedException;
|
2019-12-30 10:46:12 -05:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
trait ChecksForEmailConfirmation
|
|
|
|
{
|
2020-01-01 11:33:47 -05:00
|
|
|
/**
|
|
|
|
* Check if the current user has a confirmed email if the instance deems it as required.
|
|
|
|
* Throws if confirmation is required by the user.
|
|
|
|
* @throws UnauthorizedException
|
|
|
|
*/
|
|
|
|
protected function ensureEmailConfirmedIfRequested()
|
|
|
|
{
|
|
|
|
if ($this->awaitingEmailConfirmation()) {
|
|
|
|
throw new UnauthorizedException(trans('errors.email_confirmation_awaiting'));
|
|
|
|
}
|
|
|
|
}
|
2019-12-30 10:46:12 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if email confirmation is required and the current user is awaiting confirmation.
|
|
|
|
*/
|
|
|
|
protected function awaitingEmailConfirmation(): bool
|
|
|
|
{
|
|
|
|
if (auth()->check()) {
|
|
|
|
$requireConfirmation = (setting('registration-confirmation') || setting('registration-restrict'));
|
|
|
|
if ($requireConfirmation && !auth()->user()->email_confirmed) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-07 17:24:05 -05:00
|
|
|
}
|