mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
d133f904d3
Negates the need for a public confirmation resend form since we can instead just send direct to the last session login attempter.
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Access;
|
|
|
|
use BookStack\Access\Notifications\ConfirmEmailNotification;
|
|
use BookStack\Exceptions\ConfirmationEmailException;
|
|
use BookStack\Users\Models\User;
|
|
|
|
class EmailConfirmationService extends UserTokenService
|
|
{
|
|
protected string $tokenTable = 'email_confirmations';
|
|
protected int $expiryTime = 24;
|
|
|
|
/**
|
|
* Create new confirmation for a user,
|
|
* Also removes any existing old ones.
|
|
*
|
|
* @throws ConfirmationEmailException
|
|
*/
|
|
public function sendConfirmation(User $user): void
|
|
{
|
|
if ($user->email_confirmed) {
|
|
throw new ConfirmationEmailException(trans('errors.email_already_confirmed'), '/login');
|
|
}
|
|
|
|
$this->deleteByUser($user);
|
|
$token = $this->createTokenForUser($user);
|
|
|
|
$user->notify(new ConfirmEmailNotification($token));
|
|
}
|
|
|
|
/**
|
|
* Check if confirmation is required in this instance.
|
|
*/
|
|
public function confirmationRequired(): bool
|
|
{
|
|
return setting('registration-confirmation')
|
|
|| setting('registration-restrict');
|
|
}
|
|
}
|