BookStack/app/Access/UserInviteService.php

30 lines
817 B
PHP
Raw Normal View History

2021-06-26 23:23:15 +08:00
<?php
2023-05-18 00:56:55 +08:00
namespace BookStack\Access;
2019-08-17 22:52:33 +08:00
use BookStack\Access\Notifications\UserInviteNotification;
2023-05-18 00:56:55 +08:00
use BookStack\Users\Models\User;
2019-08-17 22:52:33 +08:00
class UserInviteService extends UserTokenService
{
2023-04-04 17:44:38 +08:00
protected string $tokenTable = 'user_invites';
protected int $expiryTime = 336; // Two weeks
2019-08-17 22:52:33 +08:00
/**
* Send an invitation to a user to sign into BookStack
* Removes existing invitation tokens.
* @throws UserInviteException
2019-08-17 22:52:33 +08:00
*/
public function sendInvitation(User $user)
{
$this->deleteByUser($user);
$token = $this->createTokenForUser($user);
try {
$user->notify(new UserInviteNotification($token));
} catch (\Exception $exception) {
throw new UserInviteException($exception->getMessage(), $exception->getCode(), $exception);
}
2019-08-17 22:52:33 +08:00
}
}