2021-10-11 14:05:16 -04:00
|
|
|
<?php namespace BookStack\Auth\Access\OpenIdConnect;
|
2021-10-06 18:05:26 -04:00
|
|
|
|
2021-10-11 14:05:16 -04:00
|
|
|
use BookStack\Auth\Access\LoginService;
|
|
|
|
use BookStack\Auth\Access\OpenIdConnect\OpenIdConnectOAuthProvider;
|
|
|
|
use BookStack\Auth\Access\RegistrationService;
|
2021-10-06 18:05:26 -04:00
|
|
|
use BookStack\Auth\User;
|
|
|
|
use BookStack\Exceptions\JsonDebugException;
|
|
|
|
use BookStack\Exceptions\OpenIdConnectException;
|
|
|
|
use BookStack\Exceptions\StoppedAuthenticationException;
|
|
|
|
use BookStack\Exceptions\UserRegistrationException;
|
|
|
|
use Exception;
|
|
|
|
use Lcobucci\JWT\Token;
|
2021-10-10 14:14:08 -04:00
|
|
|
use League\OAuth2\Client\Token\AccessToken;
|
2021-10-11 14:05:16 -04:00
|
|
|
use function auth;
|
|
|
|
use function config;
|
|
|
|
use function dd;
|
|
|
|
use function trans;
|
|
|
|
use function url;
|
2021-10-06 18:05:26 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class OpenIdConnectService
|
|
|
|
* Handles any app-specific OIDC tasks.
|
|
|
|
*/
|
|
|
|
class OpenIdConnectService
|
|
|
|
{
|
|
|
|
protected $registrationService;
|
|
|
|
protected $loginService;
|
|
|
|
protected $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OpenIdService constructor.
|
|
|
|
*/
|
|
|
|
public function __construct(RegistrationService $registrationService, LoginService $loginService)
|
|
|
|
{
|
|
|
|
$this->config = config('oidc');
|
|
|
|
$this->registrationService = $registrationService;
|
|
|
|
$this->loginService = $loginService;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initiate an authorization flow.
|
|
|
|
* @return array{url: string, state: string}
|
|
|
|
*/
|
|
|
|
public function login(): array
|
|
|
|
{
|
|
|
|
$provider = $this->getProvider();
|
|
|
|
return [
|
|
|
|
'url' => $provider->getAuthorizationUrl(),
|
|
|
|
'state' => $provider->getState(),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the Authorization response from the authorization server and
|
|
|
|
* return the matching, or new if registration active, user matched to
|
|
|
|
* the authorization server.
|
|
|
|
* Returns null if not authenticated.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public function processAuthorizeResponse(?string $authorizationCode): ?User
|
|
|
|
{
|
|
|
|
$provider = $this->getProvider();
|
|
|
|
|
|
|
|
// Try to exchange authorization code for access token
|
|
|
|
$accessToken = $provider->getAccessToken('authorization_code', [
|
|
|
|
'code' => $authorizationCode,
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $this->processAccessTokenCallback($accessToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the underlying OpenID Connect Provider.
|
|
|
|
*/
|
2021-10-10 14:14:08 -04:00
|
|
|
protected function getProvider(): OpenIdConnectOAuthProvider
|
2021-10-06 18:05:26 -04:00
|
|
|
{
|
|
|
|
// Setup settings
|
|
|
|
$settings = [
|
|
|
|
'clientId' => $this->config['client_id'],
|
|
|
|
'clientSecret' => $this->config['client_secret'],
|
|
|
|
'redirectUri' => url('/oidc/redirect'),
|
2021-10-10 14:14:08 -04:00
|
|
|
'authorizationEndpoint' => $this->config['authorization_endpoint'],
|
|
|
|
'tokenEndpoint' => $this->config['token_endpoint'],
|
2021-10-06 18:05:26 -04:00
|
|
|
];
|
|
|
|
|
2021-10-10 14:14:08 -04:00
|
|
|
return new OpenIdConnectOAuthProvider($settings);
|
2021-10-06 18:05:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculate the display name
|
|
|
|
*/
|
|
|
|
protected function getUserDisplayName(Token $token, string $defaultValue): string
|
|
|
|
{
|
|
|
|
$displayNameAttr = $this->config['display_name_claims'];
|
|
|
|
|
|
|
|
$displayName = [];
|
|
|
|
foreach ($displayNameAttr as $dnAttr) {
|
|
|
|
$dnComponent = $token->claims()->get($dnAttr, '');
|
|
|
|
if ($dnComponent !== '') {
|
|
|
|
$displayName[] = $dnComponent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($displayName) == 0) {
|
|
|
|
$displayName[] = $defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode(' ', $displayName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract the details of a user from an ID token.
|
|
|
|
* @return array{name: string, email: string, external_id: string}
|
|
|
|
*/
|
|
|
|
protected function getUserDetails(Token $token): array
|
|
|
|
{
|
|
|
|
$id = $token->claims()->get('sub');
|
|
|
|
return [
|
|
|
|
'external_id' => $id,
|
|
|
|
'email' => $token->claims()->get('email'),
|
|
|
|
'name' => $this->getUserDisplayName($token, $id),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a received access token for a user. Login the user when
|
|
|
|
* they exist, optionally registering them automatically.
|
|
|
|
* @throws OpenIdConnectException
|
|
|
|
* @throws JsonDebugException
|
|
|
|
* @throws UserRegistrationException
|
|
|
|
* @throws StoppedAuthenticationException
|
|
|
|
*/
|
2021-10-11 14:05:16 -04:00
|
|
|
protected function processAccessTokenCallback(OpenIdConnectAccessToken $accessToken): User
|
2021-10-06 18:05:26 -04:00
|
|
|
{
|
2021-10-11 14:05:16 -04:00
|
|
|
$idTokenText = $accessToken->getIdToken();
|
|
|
|
$idToken = new OpenIdConnectIdToken(
|
|
|
|
$idTokenText,
|
|
|
|
$this->config['issuer'],
|
|
|
|
[$this->config['jwt_public_key']]
|
|
|
|
);
|
|
|
|
|
2021-10-10 14:14:08 -04:00
|
|
|
// TODO - Create a class to manage token parsing and validation on this
|
|
|
|
// Ensure ID token validation is done:
|
|
|
|
// https://openid.net/specs/openid-connect-basic-1_0.html#IDTokenValidation
|
|
|
|
// To full affect and tested
|
2021-10-11 14:05:16 -04:00
|
|
|
// JWT signature algorthims:
|
|
|
|
// https://datatracker.ietf.org/doc/html/rfc7518#section-3
|
2021-10-10 14:14:08 -04:00
|
|
|
|
2021-10-06 18:05:26 -04:00
|
|
|
$userDetails = $this->getUserDetails($accessToken->getIdToken());
|
|
|
|
$isLoggedIn = auth()->check();
|
|
|
|
|
|
|
|
if ($this->config['dump_user_details']) {
|
|
|
|
throw new JsonDebugException($accessToken->jsonSerialize());
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($userDetails['email'] === null) {
|
|
|
|
throw new OpenIdConnectException(trans('errors.oidc_no_email_address'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($isLoggedIn) {
|
|
|
|
throw new OpenIdConnectException(trans('errors.oidc_already_logged_in'), '/login');
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = $this->registrationService->findOrRegister(
|
|
|
|
$userDetails['name'], $userDetails['email'], $userDetails['external_id']
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($user === null) {
|
|
|
|
throw new OpenIdConnectException(trans('errors.oidc_user_not_registered', ['name' => $userDetails['external_id']]), '/login');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->loginService->login($user, 'oidc');
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
}
|