X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8d374520f28b507e8934d57be46374044fb93e2f..ca3155fabcfe6dd61b2151c52861b2786e9bec40:/src/store/auth/auth-action.ts diff --git a/src/store/auth/auth-action.ts b/src/store/auth/auth-action.ts index 7fc9df7743..145a461c8f 100644 --- a/src/store/auth/auth-action.ts +++ b/src/store/auth/auth-action.ts @@ -20,7 +20,7 @@ import { getTokenV2 } from 'models/api-client-authorization'; export const authActions = unionize({ LOGIN: {}, - LOGOUT: ofType<{ deleteLinkData: boolean }>(), + LOGOUT: ofType<{ deleteLinkData: boolean, preservePath: boolean }>(), SET_CONFIG: ofType<{ config: Config }>(), SET_EXTRA_TOKEN: ofType<{ extraApiToken: string, extraApiTokenExpiration?: Date }>(), RESET_EXTRA_TOKEN: {}, @@ -92,6 +92,9 @@ export const saveApiToken = (token: string) => async (dispatch: Dispatch, getSta // If the token is from a LoginCluster federation, get user & token data // from the token issuing cluster. + if (!config) { + return; + } const lc = (config as Config).loginCluster const tokenCluster = tokenParts.length === 3 ? tokenParts[1].substring(0, 5) @@ -110,7 +113,7 @@ export const saveApiToken = (token: string) => async (dispatch: Dispatch, getSta const tokenLocation = await svc.authService.getStorageType(); dispatch(authActions.INIT_USER({ user, token, tokenExpiration, tokenLocation })); } catch (e) { - dispatch(authActions.LOGOUT({ deleteLinkData: false })); + dispatch(authActions.LOGOUT({ deleteLinkData: false, preservePath: false })); } }; @@ -127,7 +130,7 @@ export const getNewExtraToken = (reuseStored: boolean = false) => const client = await svc.apiClientAuthorizationService.get('current'); dispatch(authActions.SET_EXTRA_TOKEN({ extraApiToken: extraToken, - extraApiTokenExpiration: client.expiresAt ? new Date(client.expiresAt): undefined, + extraApiTokenExpiration: client.expiresAt ? new Date(client.expiresAt) : undefined, })); return extraToken; } catch (e) { @@ -145,7 +148,7 @@ export const getNewExtraToken = (reuseStored: boolean = false) => const newExtraToken = getTokenV2(client); dispatch(authActions.SET_EXTRA_TOKEN({ extraApiToken: newExtraToken, - extraApiTokenExpiration: client.expiresAt ? new Date(client.expiresAt): undefined, + extraApiTokenExpiration: client.expiresAt ? new Date(client.expiresAt) : undefined, })); return newExtraToken; } catch { @@ -160,8 +163,8 @@ export const login = (uuidPrefix: string, homeCluster: string, loginCluster: str dispatch(authActions.LOGIN()); }; -export const logout = (deleteLinkData: boolean = false) => +export const logout = (deleteLinkData: boolean = false, preservePath: boolean = false) => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => - dispatch(authActions.LOGOUT({ deleteLinkData })); + dispatch(authActions.LOGOUT({ deleteLinkData, preservePath })) export type AuthAction = UnionOf;