* test persistCredentials without a pickle key * test setLoggedIn with pickle key * lint * type error * extract token persisting code into function, persist refresh token * store has_refresh_token too * pass refreshToken from oidcAuthGrant into credentials * rest restore session with pickle key * retreive stored refresh token and add to credentials * extract token decryption into function * remove TODO * very messy poc * comments * prettier * comment pedantry * working refresh without persistence * extract token persistence functions to utils * add sugar * implement TokenRefresher class with persistence * tidying * persist idTokenClaims * persist idTokenClaims * tests * remove unused cde * create token refresher during doSetLoggedIn * tidying * also tidying * update Lifecycle test replaceUsingCreds calls * tidy * test tokenrefresher creation in login flow * test token refresher * Update src/utils/oidc/TokenRefresher.ts Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> * use literal value for m.authentication Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> * improve comments --------- Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
/*
|
|
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 { IdTokenClaims } from "oidc-client-ts";
|
|
|
|
const clientIdStorageKey = "mx_oidc_client_id";
|
|
const tokenIssuerStorageKey = "mx_oidc_token_issuer";
|
|
const idTokenClaimsStorageKey = "mx_oidc_id_token_claims";
|
|
|
|
/**
|
|
* Persists oidc clientId and issuer in session storage
|
|
* Only set after successful authentication
|
|
* @param clientId
|
|
* @param issuer
|
|
*/
|
|
export const persistOidcAuthenticatedSettings = (
|
|
clientId: string,
|
|
issuer: string,
|
|
idTokenClaims: IdTokenClaims,
|
|
): void => {
|
|
sessionStorage.setItem(clientIdStorageKey, clientId);
|
|
sessionStorage.setItem(tokenIssuerStorageKey, issuer);
|
|
sessionStorage.setItem(idTokenClaimsStorageKey, JSON.stringify(idTokenClaims));
|
|
};
|
|
|
|
/**
|
|
* Retrieve stored oidc issuer from session storage
|
|
* When user has token from OIDC issuer, this will be set
|
|
* @returns issuer or undefined
|
|
*/
|
|
export const getStoredOidcTokenIssuer = (): string | undefined => {
|
|
return sessionStorage.getItem(tokenIssuerStorageKey) ?? undefined;
|
|
};
|
|
|
|
/**
|
|
* Retrieves stored oidc client id from session storage
|
|
* @returns clientId
|
|
* @throws when clientId is not found in session storage
|
|
*/
|
|
export const getStoredOidcClientId = (): string => {
|
|
const clientId = sessionStorage.getItem(clientIdStorageKey);
|
|
if (!clientId) {
|
|
throw new Error("Oidc client id not found in storage");
|
|
}
|
|
return clientId;
|
|
};
|
|
|
|
/**
|
|
* Retrieve stored id token claims from session storage
|
|
* @returns idtokenclaims or undefined
|
|
*/
|
|
export const getStoredOidcIdTokenClaims = (): IdTokenClaims | undefined => {
|
|
const idTokenClaims = sessionStorage.getItem(idTokenClaimsStorageKey);
|
|
if (!idTokenClaims) {
|
|
return;
|
|
}
|
|
return JSON.parse(idTokenClaims) as IdTokenClaims;
|
|
};
|