19 declare(strict_types=1);
41 $this->
logger = $DIC->logger()->auth();
43 $this->body = $DIC->http()->request()->getParsedBody();
44 $this->
lng = $DIC->language();
45 $this->
lng->loadLanguageModule(
'auth');
55 $this->
logger->debug(
'Logging out with token: ' . $id_token);
57 if (isset($id_token) && $id_token !==
'') {
65 }
catch (\Jumbojett\OpenIDConnectClientException
$e) {
66 $this->
logger->warning(
"Logging out of OIDC provider failed with: " . $e->getMessage());
76 $oidc->setRedirectURL(ILIAS_HTTP_PATH .
'/openidconnect.php');
79 if ($proxy->isActive()) {
80 $host = $proxy->getHost();
81 $port = $proxy->getPort();
85 $oidc->setHttpProxy($host);
90 $oidc->getRedirectURL()
93 $oidc->addScope($this->
settings->getAllScopes());
95 $oidc->addAuthParam([
'prompt' =>
'login']);
98 $oidc->authenticate();
102 $claims = $oidc->getVerifiedClaims();
114 $this->
logger->warning($e->getMessage());
115 $this->
logger->warning((
string) $e->getCode());
130 if (!is_object($user_info)) {
131 $this->
logger->error(
'Received invalid user credentials: ');
138 $uid_field = $this->
settings->getUidField();
139 $ext_account = $user_info->{$uid_field};
141 $this->
logger->debug(
'Authenticated external account: ' . $ext_account);
151 if (!is_string($ext_account)) {
153 $status->setReason(
'err_wrong_login');
156 $sync->setExternalAccount($ext_account);
157 $sync->setInternalAccount((
string) $int_account);
168 $status->setReason(
'err_wrong_login');
176 $oidc =
new OpenIDConnectClient(
static get(string $a_var)
doAuthentication(ilAuthStatus $status)
const LOGOUT_SCOPE_GLOBAL
Interface of auth credentials.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const STATUS_AUTHENTICATION_FAILED
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
Base class for authentication providers (ldap, apache, ...)
ilOpenIdConnectSettings $settings
static logoutUrl(array $parameters=[])
Return the logout URL with a valid CSRF token.
Class ilAuthProviderOpenIdConnect.
setStatus(int $a_status)
Set auth status.
ilAuthCredentials $credentials
const STATUS_AUTHENTICATED
__construct(Container $dic, ilPlugin $plugin)
handleUpdate(ilAuthStatus $status, $user_info)
setTranslatedReason(string $a_reason)
Set translated reason.
setReason(string $a_reason)
Set reason.
Auth status implementation.
__construct(ilAuthCredentials $credentials)
static set(string $a_var, $a_val)
Set a value.