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

@@ -10,6 +10,6 @@ jobs:
steps: steps:
- uses: alex-page/github-project-automation-plus@v0.2.4 - uses: alex-page/github-project-automation-plus@v0.2.4
with: with:
project: FHeD v1.0 project: v1.0
column: In Progress column: In progress
repo-token: ${{ secrets.AUTO_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}

View File

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

View File

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