X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c331c8cdce120fc46e412deea700141267c832e6..fd24fbe43ef6f898f31804aff16ea6911a014ff8:/src/store/auth/auth-action.ts diff --git a/src/store/auth/auth-action.ts b/src/store/auth/auth-action.ts index c7074704..6eb8356f 100644 --- a/src/store/auth/auth-action.ts +++ b/src/store/auth/auth-action.ts @@ -80,15 +80,28 @@ export const getConfig = (dispatch: Dispatch, getState: () => RootState, service return state.remoteHostsConfig[state.localCluster]; }; +export const getLocalCluster = (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): string => { + return getState().auth.localCluster; +}; + export const saveApiToken = (token: string) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): Promise => { let config: any; const tokenParts = token.split('/'); const auth = getState().auth; config = dispatch(getConfig); - // If federated token, get user & token data from the token issuing cluster - if (tokenParts.length === 3 && tokenParts[1].substring(0, 5) !== auth.localCluster) { - config = await getRemoteHostConfig(auth.remoteHosts[tokenParts[1].substring(0, 5)]); + // 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) + : undefined; + if (tokenCluster && tokenCluster !== auth.localCluster && + lc && lc === tokenCluster) { + config = await getRemoteHostConfig(auth.remoteHosts[tokenCluster]); } const svc = createServices(config, { progressFn: () => { }, errorFn: () => { } }); @@ -117,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) { @@ -135,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 {