Main Merge into bug/78 (#80)

* 🔒 Force Single Logout (#77)

Signed-off-by: Luke Tainton <luke@tainton.uk>

* Update assigned-issues-inprogress.yml

Co-authored-by: Luke Tainton <luke@tainton.uk>
This commit was merged in pull request #80.
This commit is contained in:
Alexander Davis
2020-08-13 20:17:51 +01:00
committed by GitHub
parent dcc82eb424
commit cd706f86ce
3 changed files with 6 additions and 5 deletions

View File

@@ -5,6 +5,7 @@
// Perform the OIDC authentication
try {
$oidc->authenticate();
$_SESSION['access_token'] = $oidc->requestClientCredentialsToken()->access_token;
$oidc_user = array(
'sub' => $oidc->requestUserInfo('sub'),
'username' => $oidc->requestUserInfo('preferred_username'),

View File

@@ -2,7 +2,7 @@
$PAGE_NAME = "Logging out...";
require_once __DIR__ . "/../../includes/prereqs.php";
$access_token = $_SESSION['access_token'];
session_destroy();
header('Location: /');
$oidc->signOut($access_token, $_ENV['APP_URL']);
?>