Skip to content

Commit

Permalink
OpenIdConnect: use Julius Cordes's customized class
Browse files Browse the repository at this point in the history
  • Loading branch information
mbunkus committed Jan 22, 2024
1 parent 8f5dfce commit d220cef
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */

use Jumbojett\OpenIDConnectClient;
use JuliusPC\OpenIDConnectClient;

/**
* Class ilAuthProviderOpenIdConnect
Expand Down Expand Up @@ -97,7 +97,7 @@ public function doAuthentication(\ilAuthStatus $status)
// user is authenticated, otherwise redirected to authorization endpoint or exception
$this->getLogger()->dump($_REQUEST, \ilLogLevel::DEBUG);

$claims = $oidc->getVerifiedClaims(null);
$claims = $oidc->requestUserInfo();
$this->getLogger()->dump($claims, \ilLogLevel::DEBUG);
$status = $this->handleUpdate($status, $claims);

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"league/flysystem": "1.1.4",
"james-heinrich/getid3": "^1.9",
"phpoffice/phpspreadsheet": "^1.18.0",
"jumbojett/openid-connect-php": "^0.9.2",
"juliuspc/openid-connect-php": "^1.1",
"sabre/dav": "^4.1",
"symfony/console" : "^4.2",
"slim/slim": "^3.11",
Expand Down Expand Up @@ -214,7 +214,7 @@
"last_update_by": "Michael Jansen <[email protected]>",
"approved-by": "Jour Fixe",
"approved-date": "YYYY-MM-DD"
},
},
"imsglobal/lti" : {
"source": "https://github.com/ILIAS-eLearning/LTI-Tool-Provider-Library-PHP",
"used_version": "v3.0.2",
Expand Down
29 changes: 20 additions & 9 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d220cef

Please sign in to comment.