This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OIDC: Redirect to delegated auth provider when signing out (#11432)
* util for account url * test cases * disable multi session selection on device list * remove sign out all from context menus when oidc-aware * comment * remove unused param * redirect to auth provider when signing out * open auth provider in new tab, refresh sessions on return * correct comment * fix bad copy paste * try to make sonar happy * Update for latest revision of MSCs * Update SessionManagerTab-test.tsx * Make InteractiveAuthCallback async and await it --------- Co-authored-by: Hugh Nimmo-Smith <[email protected]> Co-authored-by: Hugh Nimmo-Smith <[email protected]> Co-authored-by: Andy Balaam <[email protected]>
- Loading branch information
1 parent
5c1b62c
commit 23196d4
Showing
9 changed files
with
199 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
Copyright 2023 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import React, { useState } from "react"; | ||
|
||
import { _t } from "../../../../languageHandler"; | ||
import BaseDialog from "../BaseDialog"; | ||
import { getOidcLogoutUrl } from "../../../../utils/oidc/getOidcLogoutUrl"; | ||
import AccessibleButton from "../../elements/AccessibleButton"; | ||
|
||
export interface OidcLogoutDialogProps { | ||
delegatedAuthAccountUrl: string; | ||
deviceId: string; | ||
onFinished(ok?: boolean): void; | ||
} | ||
|
||
/** | ||
* Handle logout of OIDC sessions other than the current session | ||
* - ask for user confirmation to open the delegated auth provider | ||
* - open the auth provider in a new tab | ||
* - wait for the user to return and close the modal, we assume the user has completed sign out of the session in auth provider UI | ||
* and trigger a refresh of the session list | ||
*/ | ||
export const OidcLogoutDialog: React.FC<OidcLogoutDialogProps> = ({ | ||
delegatedAuthAccountUrl, | ||
deviceId, | ||
onFinished, | ||
}) => { | ||
const [hasOpenedLogoutLink, setHasOpenedLogoutLink] = useState(false); | ||
const logoutUrl = getOidcLogoutUrl(delegatedAuthAccountUrl, deviceId); | ||
|
||
return ( | ||
<BaseDialog onFinished={onFinished} title={_t("Sign out")} contentId="mx_Dialog_content"> | ||
<div className="mx_Dialog_content" id="mx_Dialog_content"> | ||
{_t("You will be redirected to your server's authentication provider to complete sign out.")} | ||
</div> | ||
<div className="mx_Dialog_buttons"> | ||
{hasOpenedLogoutLink ? ( | ||
<AccessibleButton kind="primary" onClick={() => onFinished(true)}> | ||
{_t("Close")} | ||
</AccessibleButton> | ||
) : ( | ||
<> | ||
<AccessibleButton kind="secondary" onClick={() => onFinished(false)}> | ||
{_t("Cancel")} | ||
</AccessibleButton> | ||
<AccessibleButton | ||
element="a" | ||
onClick={() => setHasOpenedLogoutLink(true)} | ||
kind="primary" | ||
href={logoutUrl} | ||
target="_blank" | ||
> | ||
{_t("Continue")} | ||
</AccessibleButton> | ||
</> | ||
)} | ||
</div> | ||
</BaseDialog> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
Copyright 2023 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
/** | ||
* Create a delegated auth account management URL with logout params as per MSC3824 and MSC2965 | ||
* https://github.com/matrix-org/matrix-spec-proposals/blob/hughns/sso-redirect-action/proposals/3824-oidc-aware-clients.md#definition-of-oidc-aware | ||
* https://github.com/sandhose/matrix-doc/blob/msc/sandhose/oidc-discovery/proposals/2965-oidc-discovery.md#account-management-url-parameters | ||
*/ | ||
export const getOidcLogoutUrl = (delegatedAuthAccountUrl: string, deviceId: string): string => { | ||
const logoutUrl = new URL(delegatedAuthAccountUrl); | ||
logoutUrl.searchParams.set("action", "session_end"); | ||
logoutUrl.searchParams.set("device_id", deviceId); | ||
|
||
return logoutUrl.toString(); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters