1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import Axios from "axios";
7 export const WORKBENCH_CONFIG_URL = process.env.REACT_APP_ARVADOS_CONFIG_URL || "/config.json";
9 interface WorkbenchConfig {
11 VOCABULARY_URL?: string;
12 FILE_VIEWERS_CONFIG_URL?: string;
15 export interface ClusterConfigJSON {
19 ActivateUsers: boolean
44 ArvadosDocsite: string;
45 VocabularyURL: string;
46 FileViewersConfigURL: string;
47 WelcomePageHTML: string;
48 InactivePageHTML: string;
58 keepWebServiceUrl: string;
66 workbench2Url: string;
67 vocabularyUrl: string;
68 fileViewersConfigUrl: string;
70 clusterConfig: ClusterConfigJSON;
73 export const fetchConfig = () => {
75 .get<WorkbenchConfig>(WORKBENCH_CONFIG_URL + "?nocache=" + (new Date()).getTime())
76 .then(response => response.data)
78 console.warn(`There was an exception getting the Workbench config file at ${WORKBENCH_CONFIG_URL}. Using defaults instead.`);
79 return Promise.resolve(getDefaultConfig());
81 .then(workbenchConfig => {
82 if (workbenchConfig.API_HOST === undefined) {
83 throw new Error(`Unable to start Workbench. API_HOST is undefined in ${WORKBENCH_CONFIG_URL} or the environment.`);
85 return Axios.get<ClusterConfigJSON>(getClusterConfigURL(workbenchConfig.API_HOST)).then(response => {
86 const config = new Config();
87 const clusterConfigJSON = response.data;
88 const warnLocalConfig = (varName: string) => console.warn(
89 `A value for ${varName} was found in ${WORKBENCH_CONFIG_URL}. To use the Arvados centralized configuration instead, \
90 remove the entire ${varName} entry from ${WORKBENCH_CONFIG_URL}`);
92 // Check if the workbench config has an entry for vocabulary and file viewer URLs
93 // If so, use these values (even if it is an empty string), but print a console warning.
94 // Otherwise, use the cluster config.
95 let fileViewerConfigUrl;
96 if (workbenchConfig.FILE_VIEWERS_CONFIG_URL !== undefined) {
97 warnLocalConfig("FILE_VIEWERS_CONFIG_URL");
98 fileViewerConfigUrl = workbenchConfig.FILE_VIEWERS_CONFIG_URL;
101 fileViewerConfigUrl = clusterConfigJSON.Workbench.FileViewersConfigURL || "/file-viewers-example.json";
103 config.fileViewersConfigUrl = fileViewerConfigUrl;
106 if (workbenchConfig.VOCABULARY_URL !== undefined) {
107 warnLocalConfig("VOCABULARY_URL");
108 vocabularyUrl = workbenchConfig.VOCABULARY_URL;
111 vocabularyUrl = clusterConfigJSON.Workbench.VocabularyURL || "/vocabulary-example.json";
113 config.vocabularyUrl = vocabularyUrl;
115 config.rootUrl = clusterConfigJSON.Services.Controller.ExternalURL;
116 config.baseUrl = `${config.rootUrl}/${ARVADOS_API_PATH}`;
117 config.uuidPrefix = clusterConfigJSON.ClusterID;
118 config.websocketUrl = clusterConfigJSON.Services.Websocket.ExternalURL;
119 config.workbench2Url = clusterConfigJSON.Services.Workbench2.ExternalURL;
120 config.workbenchUrl = clusterConfigJSON.Services.Workbench1.ExternalURL;
121 config.keepWebServiceUrl = clusterConfigJSON.Services.WebDAV.ExternalURL;
122 config.loginCluster = clusterConfigJSON.Login.LoginCluster;
123 config.clusterConfig = clusterConfigJSON;
124 mapRemoteHosts(clusterConfigJSON, config);
126 return { config, apiHost: workbenchConfig.API_HOST };
131 // Maps remote cluster hosts and removes the default RemoteCluster entry
132 export const mapRemoteHosts = (clusterConfigJSON: ClusterConfigJSON, config: Config) => {
133 config.remoteHosts = {};
134 Object.keys(clusterConfigJSON.RemoteClusters).forEach(k => { config.remoteHosts[k] = clusterConfigJSON.RemoteClusters[k].Host; });
135 delete config.remoteHosts["*"];
138 export const mockClusterConfigJSON = (config: Partial<ClusterConfigJSON>): ClusterConfigJSON => ({
142 Controller: { ExternalURL: "" },
143 Workbench1: { ExternalURL: "" },
144 Workbench2: { ExternalURL: "" },
145 Websocket: { ExternalURL: "" },
146 WebDAV: { ExternalURL: "" },
151 FileViewersConfigURL: "",
153 InactivePageHTML: "",
162 export const mockConfig = (config: Partial<Config>): Config => ({
164 keepWebServiceUrl: "",
172 fileViewersConfigUrl: "",
174 clusterConfig: mockClusterConfigJSON({}),
178 const getDefaultConfig = (): WorkbenchConfig => {
180 const envHost = process.env.REACT_APP_ARVADOS_API_HOST;
181 if (envHost !== undefined) {
182 console.warn(`Using default API host ${envHost}.`);
186 console.warn(`No API host was found in the environment. Workbench may not be able to communicate with Arvados components.`);
190 VOCABULARY_URL: undefined,
191 FILE_VIEWERS_CONFIG_URL: undefined,
195 export const ARVADOS_API_PATH = "arvados/v1";
196 export const CLUSTER_CONFIG_URL = "arvados/v1/config";
197 export const getClusterConfigURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/${CLUSTER_CONFIG_URL}?nocache=${(new Date()).getTime()}`;