2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
namespace BookStack\Access;
|
2015-09-04 12:50:52 -04:00
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Exceptions\SocialDriverNotConfigured;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Exceptions\SocialSignInAccountNotUsed;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Exceptions\UserRegistrationException;
|
2023-05-17 12:56:55 -04:00
|
|
|
use BookStack\Users\Models\User;
|
2019-09-13 18:58:40 -04:00
|
|
|
use Illuminate\Support\Str;
|
2018-09-25 11:58:03 -04:00
|
|
|
use Laravel\Socialite\Contracts\Factory as Socialite;
|
2020-01-26 09:42:50 -05:00
|
|
|
use Laravel\Socialite\Contracts\Provider;
|
2018-09-21 13:05:06 -04:00
|
|
|
use Laravel\Socialite\Contracts\User as SocialUser;
|
2021-11-22 18:33:55 -05:00
|
|
|
use Laravel\Socialite\Two\GoogleProvider;
|
2020-01-26 09:42:50 -05:00
|
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
2015-09-04 12:50:52 -04:00
|
|
|
|
|
|
|
class SocialAuthService
|
|
|
|
{
|
2023-12-06 08:49:53 -05:00
|
|
|
public function __construct(
|
|
|
|
protected Socialite $socialite,
|
|
|
|
protected LoginService $loginService,
|
|
|
|
protected SocialDriverManager $driverManager,
|
|
|
|
) {
|
2015-09-04 12:50:52 -04:00
|
|
|
}
|
|
|
|
|
2015-09-04 15:40:36 -04:00
|
|
|
/**
|
|
|
|
* Start the social login path.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2015-09-04 15:40:36 -04:00
|
|
|
* @throws SocialDriverNotConfigured
|
|
|
|
*/
|
2020-01-26 09:42:50 -05:00
|
|
|
public function startLogIn(string $socialDriver): RedirectResponse
|
2015-09-04 12:50:52 -04:00
|
|
|
{
|
2023-12-06 08:49:53 -05:00
|
|
|
$socialDriver = trim(strtolower($socialDriver));
|
|
|
|
$this->driverManager->ensureDriverActive($socialDriver);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2023-12-06 08:49:53 -05:00
|
|
|
return $this->getDriverForRedirect($socialDriver)->redirect();
|
2015-09-04 12:50:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Start the social registration process.
|
|
|
|
*
|
2015-09-06 07:14:32 -04:00
|
|
|
* @throws SocialDriverNotConfigured
|
|
|
|
*/
|
2020-01-26 09:42:50 -05:00
|
|
|
public function startRegister(string $socialDriver): RedirectResponse
|
2015-09-06 07:14:32 -04:00
|
|
|
{
|
2023-12-06 08:49:53 -05:00
|
|
|
$socialDriver = trim(strtolower($socialDriver));
|
|
|
|
$this->driverManager->ensureDriverActive($socialDriver);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2023-12-06 08:49:53 -05:00
|
|
|
return $this->getDriverForRedirect($socialDriver)->redirect();
|
2015-09-06 07:14:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the social registration process on callback.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2015-09-06 07:14:32 -04:00
|
|
|
* @throws UserRegistrationException
|
|
|
|
*/
|
2020-01-26 09:42:50 -05:00
|
|
|
public function handleRegistrationCallback(string $socialDriver, SocialUser $socialUser): SocialUser
|
2015-09-06 07:14:32 -04:00
|
|
|
{
|
|
|
|
// Check social account has not already been used
|
2021-03-19 12:16:26 -04:00
|
|
|
if (SocialAccount::query()->where('driver_id', '=', $socialUser->getId())->exists()) {
|
2021-03-19 17:54:50 -04:00
|
|
|
throw new UserRegistrationException(trans('errors.social_account_in_use', ['socialAccount' => $socialDriver]), '/login');
|
2015-09-06 07:14:32 -04:00
|
|
|
}
|
|
|
|
|
2021-03-19 12:16:26 -04:00
|
|
|
if (User::query()->where('email', '=', $socialUser->getEmail())->exists()) {
|
2015-09-06 07:14:32 -04:00
|
|
|
$email = $socialUser->getEmail();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-02-02 12:31:00 -05:00
|
|
|
throw new UserRegistrationException(trans('errors.error_user_exists_different_creds', ['email' => $email]), '/login');
|
2015-09-06 07:14:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $socialUser;
|
|
|
|
}
|
|
|
|
|
2018-09-21 13:05:06 -04:00
|
|
|
/**
|
|
|
|
* Get the social user details via the social driver.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2018-09-21 13:05:06 -04:00
|
|
|
* @throws SocialDriverNotConfigured
|
|
|
|
*/
|
2020-01-26 09:42:50 -05:00
|
|
|
public function getSocialUser(string $socialDriver): SocialUser
|
2018-09-21 13:05:06 -04:00
|
|
|
{
|
2023-12-06 08:49:53 -05:00
|
|
|
$socialDriver = trim(strtolower($socialDriver));
|
|
|
|
$this->driverManager->ensureDriverActive($socialDriver);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2023-12-06 08:49:53 -05:00
|
|
|
return $this->socialite->driver($socialDriver)->user();
|
2018-09-21 13:05:06 -04:00
|
|
|
}
|
|
|
|
|
2015-09-06 07:14:32 -04:00
|
|
|
/**
|
|
|
|
* Handle the login process on a oAuth callback.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2018-09-21 13:05:06 -04:00
|
|
|
* @throws SocialSignInAccountNotUsed
|
2015-09-04 12:50:52 -04:00
|
|
|
*/
|
2020-01-26 09:42:50 -05:00
|
|
|
public function handleLoginCallback(string $socialDriver, SocialUser $socialUser)
|
2015-09-04 12:50:52 -04:00
|
|
|
{
|
2023-12-06 08:49:53 -05:00
|
|
|
$socialDriver = trim(strtolower($socialDriver));
|
2015-09-04 15:40:36 -04:00
|
|
|
$socialId = $socialUser->getId();
|
|
|
|
|
|
|
|
// Get any attached social accounts or users
|
2021-03-19 12:16:26 -04:00
|
|
|
$socialAccount = SocialAccount::query()->where('driver_id', '=', $socialId)->first();
|
2015-09-05 07:29:47 -04:00
|
|
|
$isLoggedIn = auth()->check();
|
2016-09-29 07:43:46 -04:00
|
|
|
$currentUser = user();
|
2019-09-13 18:58:40 -04:00
|
|
|
$titleCaseDriver = Str::title($socialDriver);
|
2015-09-04 15:40:36 -04:00
|
|
|
|
2015-09-05 12:42:05 -04:00
|
|
|
// When a user is not logged in and a matching SocialAccount exists,
|
|
|
|
// Simply log the user into the application.
|
2015-09-04 15:40:36 -04:00
|
|
|
if (!$isLoggedIn && $socialAccount !== null) {
|
2021-09-15 15:55:10 -04:00
|
|
|
$this->loginService->login($socialAccount->user, $socialDriver);
|
2021-08-21 10:49:40 -04:00
|
|
|
|
2017-09-14 15:20:47 -04:00
|
|
|
return redirect()->intended('/');
|
2015-09-04 15:40:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// When a user is logged in but the social account does not exist,
|
|
|
|
// Create the social account and attach it to the user & redirect to the profile page.
|
|
|
|
if ($isLoggedIn && $socialAccount === null) {
|
2021-03-19 12:16:26 -04:00
|
|
|
$account = $this->newSocialAccount($socialDriver, $socialUser);
|
|
|
|
$currentUser->socialAccounts()->save($account);
|
2019-09-13 18:58:40 -04:00
|
|
|
session()->flash('success', trans('settings.users_social_connected', ['socialAccount' => $titleCaseDriver]));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2023-10-19 09:18:42 -04:00
|
|
|
return redirect('/my-account/auth#social_accounts');
|
2015-09-04 15:40:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// When a user is logged in and the social account exists and is already linked to the current user.
|
|
|
|
if ($isLoggedIn && $socialAccount !== null && $socialAccount->user->id === $currentUser->id) {
|
2019-09-13 18:58:40 -04:00
|
|
|
session()->flash('error', trans('errors.social_account_existing', ['socialAccount' => $titleCaseDriver]));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2023-10-19 09:18:42 -04:00
|
|
|
return redirect('/my-account/auth#social_accounts');
|
2015-09-04 15:40:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// When a user is logged in, A social account exists but the users do not match.
|
|
|
|
if ($isLoggedIn && $socialAccount !== null && $socialAccount->user->id != $currentUser->id) {
|
2019-09-13 18:58:40 -04:00
|
|
|
session()->flash('error', trans('errors.social_account_already_used_existing', ['socialAccount' => $titleCaseDriver]));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2023-10-19 09:18:42 -04:00
|
|
|
return redirect('/my-account/auth#social_accounts');
|
2015-09-04 15:40:36 -04:00
|
|
|
}
|
2015-09-04 12:50:52 -04:00
|
|
|
|
2015-09-05 12:42:05 -04:00
|
|
|
// Otherwise let the user know this social account is not used by anyone.
|
2019-09-13 18:58:40 -04:00
|
|
|
$message = trans('errors.social_account_not_used', ['socialAccount' => $titleCaseDriver]);
|
2020-02-02 12:31:00 -05:00
|
|
|
if (setting('registration-enabled') && config('auth.method') !== 'ldap' && config('auth.method') !== 'saml2') {
|
2019-09-13 18:58:40 -04:00
|
|
|
$message .= trans('errors.social_account_register_instructions', ['socialAccount' => $titleCaseDriver]);
|
2015-09-04 12:50:52 -04:00
|
|
|
}
|
2021-03-19 17:54:50 -04:00
|
|
|
|
2018-09-21 13:05:06 -04:00
|
|
|
throw new SocialSignInAccountNotUsed($message, '/login');
|
2015-09-04 15:40:36 -04:00
|
|
|
}
|
2015-09-04 12:50:52 -04:00
|
|
|
|
|
|
|
/**
|
2023-12-06 08:49:53 -05:00
|
|
|
* Get the social driver manager used by this service.
|
2015-09-04 12:50:52 -04:00
|
|
|
*/
|
2023-12-06 08:49:53 -05:00
|
|
|
public function drivers(): SocialDriverManager
|
2015-09-04 12:50:52 -04:00
|
|
|
{
|
2023-12-06 08:49:53 -05:00
|
|
|
return $this->driverManager;
|
2018-09-21 13:05:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-26 09:42:50 -05:00
|
|
|
* Fill and return a SocialAccount from the given driver name and SocialUser.
|
2015-09-04 15:40:36 -04:00
|
|
|
*/
|
2021-03-19 12:16:26 -04:00
|
|
|
public function newSocialAccount(string $socialDriver, SocialUser $socialUser): SocialAccount
|
2015-09-04 15:40:36 -04:00
|
|
|
{
|
2021-03-19 12:16:26 -04:00
|
|
|
return new SocialAccount([
|
2021-06-26 11:23:15 -04:00
|
|
|
'driver' => $socialDriver,
|
2015-09-04 15:40:36 -04:00
|
|
|
'driver_id' => $socialUser->getId(),
|
2021-06-26 11:23:15 -04:00
|
|
|
'avatar' => $socialUser->getAvatar(),
|
2015-09-04 15:40:36 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Detach a social account from a user.
|
|
|
|
*/
|
2021-03-10 17:37:53 -05:00
|
|
|
public function detachSocialAccount(string $socialDriver): void
|
2015-09-04 15:40:36 -04:00
|
|
|
{
|
2016-09-29 07:43:46 -04:00
|
|
|
user()->socialAccounts()->where('driver', '=', $socialDriver)->delete();
|
2015-09-04 15:40:36 -04:00
|
|
|
}
|
2018-11-04 13:40:06 -05:00
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Provide redirect options per service for the Laravel Socialite driver.
|
2018-11-04 13:40:06 -05:00
|
|
|
*/
|
2021-05-24 07:55:45 -04:00
|
|
|
protected function getDriverForRedirect(string $driverName): Provider
|
2018-11-04 13:40:06 -05:00
|
|
|
{
|
2018-11-10 09:52:43 -05:00
|
|
|
$driver = $this->socialite->driver($driverName);
|
|
|
|
|
2021-11-22 18:33:55 -05:00
|
|
|
if ($driver instanceof GoogleProvider && config('services.google.select_account')) {
|
2018-11-10 09:52:43 -05:00
|
|
|
$driver->with(['prompt' => 'select_account']);
|
2018-11-04 13:40:06 -05:00
|
|
|
}
|
|
|
|
|
2023-12-06 08:49:53 -05:00
|
|
|
$this->driverManager->getConfigureForRedirectCallback($driverName)($driver);
|
2021-05-24 07:55:45 -04:00
|
|
|
|
2018-11-10 09:52:43 -05:00
|
|
|
return $driver;
|
2018-11-04 13:40:06 -05:00
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|