X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c133ed0f3634fe29b082a4501abd04f05f6221d5..2f9cad5098e4261d61e5a72e24232f3a637b0d73:/src/store/auth/auth-action-session.ts diff --git a/src/store/auth/auth-action-session.ts b/src/store/auth/auth-action-session.ts index c1b97adc3e..fc35ff8805 100644 --- a/src/store/auth/auth-action-session.ts +++ b/src/store/auth/auth-action-session.ts @@ -7,7 +7,7 @@ import { setBreadcrumbs } from "~/store/breadcrumbs/breadcrumbs-actions"; import { RootState } from "~/store/store"; import { ServiceRepository, createServices, setAuthorizationHeader } from "~/services/services"; import Axios from "axios"; -import { getUserFullname, User } from "~/models/user"; +import { User, getUserDisplayName } from "~/models/user"; import { authActions } from "~/store/auth/auth-action"; import { Config, ClusterConfigJSON, CLUSTER_CONFIG_PATH, DISCOVERY_DOC_PATH, @@ -21,31 +21,37 @@ import { snackbarActions, SnackbarKind } from "~/store/snackbar/snackbar-actions import * as jsSHA from "jssha"; const getClusterConfig = async (origin: string): Promise => { - // Try the new public config endpoint - try { - const config = (await Axios.get(`${origin}/${CLUSTER_CONFIG_PATH}`)).data; - return buildConfig(config); - } catch { } - - // Fall back to discovery document + let configFromDD: Config | undefined; try { - const config = (await Axios.get(`${origin}/${DISCOVERY_DOC_PATH}`)).data; - return { - baseUrl: normalizeURLPath(config.baseUrl), - keepWebServiceUrl: config.keepWebServiceUrl, - remoteHosts: config.remoteHosts, - rootUrl: config.rootUrl, - uuidPrefix: config.uuidPrefix, - websocketUrl: config.websocketUrl, - workbenchUrl: config.workbenchUrl, - workbench2Url: config.workbench2Url, + const dd = (await Axios.get(`${origin}/${DISCOVERY_DOC_PATH}`)).data; + configFromDD = { + baseUrl: normalizeURLPath(dd.baseUrl), + keepWebServiceUrl: dd.keepWebServiceUrl, + remoteHosts: dd.remoteHosts, + rootUrl: dd.rootUrl, + uuidPrefix: dd.uuidPrefix, + websocketUrl: dd.websocketUrl, + workbenchUrl: dd.workbenchUrl, + workbench2Url: dd.workbench2Url, loginCluster: "", vocabularyUrl: "", fileViewersConfigUrl: "", - clusterConfig: mockClusterConfigJSON({}) + clusterConfig: mockClusterConfigJSON({}), + apiRevision: parseInt(dd.revision, 10), }; } catch { } + // Try the new public config endpoint + try { + const config = (await Axios.get(`${origin}/${CLUSTER_CONFIG_PATH}`)).data; + return {...buildConfig(config), apiRevision: configFromDD ? configFromDD.apiRevision : 0}; + } catch { } + + // Fall back to discovery document + if (configFromDD !== undefined) { + return configFromDD; + } + return null; }; @@ -120,13 +126,14 @@ export const validateSession = (session: Session, activeSession: Session) => dispatch(authActions.UPDATE_SESSION({ ...session, status: SessionStatus.BEING_VALIDATED })); session.loggedIn = false; - const setupSession = (baseUrl: string, user: User, token: string) => { + const setupSession = (baseUrl: string, user: User, token: string, apiRevision: number) => { session.baseUrl = baseUrl; session.token = token; session.email = user.email; session.uuid = user.uuid; - session.name = getUserFullname(user); + session.name = getUserDisplayName(user); session.loggedIn = true; + session.apiRevision = apiRevision; }; let fail: Error | null = null; @@ -135,12 +142,12 @@ export const validateSession = (session: Session, activeSession: Session) => dispatch(authActions.REMOTE_CLUSTER_CONFIG({ config })); try { const { user, token } = await validateCluster(config, session.token); - setupSession(config.baseUrl, user, token); + setupSession(config.baseUrl, user, token, config.apiRevision); } catch (e) { fail = new Error(`Getting current user for ${session.remoteHost}: ${e.message}`); try { const { user, token } = await validateCluster(config, activeSession.token); - setupSession(config.baseUrl, user, token); + setupSession(config.baseUrl, user, token, config.apiRevision); fail = null; } catch (e2) { if (e.message === invalidV2Token) { @@ -193,6 +200,19 @@ export const validateSessions = () => } }; +export const addRemoteConfig = (remoteHost: string) => + async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { + const config = await getRemoteHostConfig(remoteHost); + if (!config) { + dispatch(snackbarActions.OPEN_SNACKBAR({ + message: `Could not get config for ${remoteHost}`, + kind: SnackbarKind.ERROR + })); + return; + } + dispatch(authActions.REMOTE_CLUSTER_CONFIG({ config })); + }; + export const addSession = (remoteHost: string, token?: string, sendToLogin?: boolean) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { const sessions = getState().auth.sessions; @@ -222,12 +242,13 @@ export const addSession = (remoteHost: string, token?: string, sendToLogin?: boo status: SessionStatus.VALIDATED, active: false, email: user.email, - name: getUserFullname(user), + name: getUserDisplayName(user), uuid: user.uuid, baseUrl: config.baseUrl, clusterId: config.uuidPrefix, remoteHost, - token + token, + apiRevision: config.apiRevision, }; if (sessions.find(s => s.clusterId === config.uuidPrefix)) {