X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ba71587fc2058276b9b70c342b990aa6508690a9..796a3ce005800d37ef5711b367c926ac720577d5:/src/common/config.ts?ds=sidebyside diff --git a/src/common/config.ts b/src/common/config.ts index 758a77ba91..cbac7b1984 100644 --- a/src/common/config.ts +++ b/src/common/config.ts @@ -45,6 +45,8 @@ export interface ClusterConfigJSON { VocabularyURL: string; FileViewersConfigURL: string; WelcomePageHTML: string; + InactivePageHTML: string; + SiteName: string; }; Login: { LoginCluster: string; @@ -68,6 +70,21 @@ export class Config { clusterConfig: ClusterConfigJSON; } +export const buildConfig = (clusterConfigJSON: ClusterConfigJSON): Config => { + const config = new Config(); + config.rootUrl = clusterConfigJSON.Services.Controller.ExternalURL; + config.baseUrl = `${config.rootUrl}/${ARVADOS_API_PATH}`; + config.uuidPrefix = clusterConfigJSON.ClusterID; + config.websocketUrl = clusterConfigJSON.Services.Websocket.ExternalURL; + config.workbench2Url = clusterConfigJSON.Services.Workbench2.ExternalURL; + config.workbenchUrl = clusterConfigJSON.Services.Workbench1.ExternalURL; + config.keepWebServiceUrl = clusterConfigJSON.Services.WebDAV.ExternalURL; + config.loginCluster = clusterConfigJSON.Login.LoginCluster; + config.clusterConfig = clusterConfigJSON; + mapRemoteHosts(clusterConfigJSON, config); + return config; +}; + export const fetchConfig = () => { return Axios .get(WORKBENCH_CONFIG_URL + "?nocache=" + (new Date()).getTime()) @@ -81,8 +98,8 @@ export const fetchConfig = () => { throw new Error(`Unable to start Workbench. API_HOST is undefined in ${WORKBENCH_CONFIG_URL} or the environment.`); } return Axios.get(getClusterConfigURL(workbenchConfig.API_HOST)).then(response => { - const config = new Config(); const clusterConfigJSON = response.data; + const config = buildConfig(clusterConfigJSON); const warnLocalConfig = (varName: string) => console.warn( `A value for ${varName} was found in ${WORKBENCH_CONFIG_URL}. To use the Arvados centralized configuration instead, \ remove the entire ${varName} entry from ${WORKBENCH_CONFIG_URL}`); @@ -108,18 +125,10 @@ remove the entire ${varName} entry from ${WORKBENCH_CONFIG_URL}`); else { vocabularyUrl = clusterConfigJSON.Workbench.VocabularyURL || "/vocabulary-example.json"; } - config.vocabularyUrl = vocabularyUrl; + // FIXME: The following line is for dev testing purposes + vocabularyUrl = "/vocabulary-example.json"; - config.rootUrl = clusterConfigJSON.Services.Controller.ExternalURL; - config.baseUrl = `${config.rootUrl}/${ARVADOS_API_PATH}`; - config.uuidPrefix = clusterConfigJSON.ClusterID; - config.websocketUrl = clusterConfigJSON.Services.Websocket.ExternalURL; - config.workbench2Url = clusterConfigJSON.Services.Workbench2.ExternalURL; - config.workbenchUrl = clusterConfigJSON.Services.Workbench1.ExternalURL; - config.keepWebServiceUrl = clusterConfigJSON.Services.WebDAV.ExternalURL; - config.loginCluster = clusterConfigJSON.Login.LoginCluster; - config.clusterConfig = clusterConfigJSON; - mapRemoteHosts(clusterConfigJSON, config); + config.vocabularyUrl = vocabularyUrl; return { config, apiHost: workbenchConfig.API_HOST }; }); @@ -148,6 +157,8 @@ export const mockClusterConfigJSON = (config: Partial): Clust VocabularyURL: "", FileViewersConfigURL: "", WelcomePageHTML: "", + InactivePageHTML: "", + SiteName: "", }, Login: { LoginCluster: "", @@ -189,5 +200,6 @@ const getDefaultConfig = (): WorkbenchConfig => { }; export const ARVADOS_API_PATH = "arvados/v1"; -export const CLUSTER_CONFIG_URL = "arvados/v1/config"; -export const getClusterConfigURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/${CLUSTER_CONFIG_URL}?nocache=${(new Date()).getTime()}`; +export const CLUSTER_CONFIG_PATH = "arvados/v1/config"; +export const DISCOVERY_DOC_PATH = "discovery/v1/apis/arvados/v1/rest"; +export const getClusterConfigURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/${CLUSTER_CONFIG_PATH}?nocache=${(new Date()).getTime()}`;