2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Auth\Access;
|
2015-09-05 15:25:57 -04:00
|
|
|
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Auth\User;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Exceptions\ConfirmationEmailException;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Notifications\ConfirmEmail;
|
2015-09-05 15:25:57 -04:00
|
|
|
|
2019-08-17 10:52:33 -04:00
|
|
|
class EmailConfirmationService extends UserTokenService
|
2015-09-05 15:25:57 -04:00
|
|
|
{
|
2019-08-17 10:52:33 -04:00
|
|
|
protected $tokenTable = 'email_confirmations';
|
|
|
|
protected $expiryTime = 24;
|
2015-09-05 15:25:57 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create new confirmation for a user,
|
|
|
|
* Also removes any existing old ones.
|
|
|
|
* @throws ConfirmationEmailException
|
|
|
|
*/
|
|
|
|
public function sendConfirmation(User $user)
|
|
|
|
{
|
2015-09-06 07:14:32 -04:00
|
|
|
if ($user->email_confirmed) {
|
2016-12-04 11:51:39 -05:00
|
|
|
throw new ConfirmationEmailException(trans('errors.email_already_confirmed'), '/login');
|
2015-09-05 15:25:57 -04:00
|
|
|
}
|
2016-09-17 13:22:04 -04:00
|
|
|
|
2019-08-17 10:52:33 -04:00
|
|
|
$this->deleteByUser($user);
|
|
|
|
$token = $this->createTokenForUser($user);
|
2016-09-17 13:22:04 -04:00
|
|
|
|
|
|
|
$user->notify(new ConfirmEmail($token));
|
|
|
|
}
|
|
|
|
|
2019-08-18 05:47:59 -04:00
|
|
|
/**
|
|
|
|
* Check if confirmation is required in this instance.
|
|
|
|
*/
|
2021-06-26 11:23:15 -04:00
|
|
|
public function confirmationRequired(): bool
|
2019-08-18 05:47:59 -04:00
|
|
|
{
|
|
|
|
return setting('registration-confirmation')
|
|
|
|
|| setting('registration-restrict');
|
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|