1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import Axios from "axios";
7 export const CONFIG_URL = process.env.REACT_APP_ARVADOS_CONFIG_URL || "/config.json";
9 export interface Config {
14 blobSignatureTtl: number;
15 crunchLimitLogBytesPerJob: number;
16 crunchLogBytesPerEvent: number;
17 crunchLogPartialLineThrottlePeriod: number;
18 crunchLogSecondsBetweenEvents: number;
19 crunchLogThrottleBytes: number;
20 crunchLogThrottleLines: number;
21 crunchLogThrottlePeriod: number;
22 defaultCollectionReplication: number;
23 defaultTrashLifetime: number;
25 discoveryVersion: string;
26 dockerImageFormats: string[];
27 documentationLink: string;
31 keepWebServiceUrl: string;
33 maxRequestSize: number;
35 packageVersion: string;
39 remoteHostsViaDNS: boolean;
45 sourceVersion: string;
46 source_version: string;
52 vocabularyUrl: string;
53 fileViewersConfigUrl: string;
56 export const fetchConfig = () => {
58 .get<ConfigJSON>(CONFIG_URL + "?nocache=" + (new Date()).getTime())
59 .then(response => response.data)
60 .catch(() => Promise.resolve(getDefaultConfig()))
62 .get<Config>(getDiscoveryURL(config.API_HOST))
64 // TODO: After tests delete `|| '/vocabulary-example.json'`
65 // TODO: After tests delete `|| '/file-viewers-example.json'`
68 vocabularyUrl: config.VOCABULARY_URL || '/vocabulary-example.json',
69 fileViewersConfigUrl: config.FILE_VIEWERS_CONFIG_URL || '/file-viewers-example.json'
71 apiHost: config.API_HOST,
76 export const mockConfig = (config: Partial<Config>): Config => ({
82 crunchLimitLogBytesPerJob: 0,
83 crunchLogBytesPerEvent: 0,
84 crunchLogPartialLineThrottlePeriod: 0,
85 crunchLogSecondsBetweenEvents: 0,
86 crunchLogThrottleBytes: 0,
87 crunchLogThrottleLines: 0,
88 crunchLogThrottlePeriod: 0,
89 defaultCollectionReplication: 0,
90 defaultTrashLifetime: 0,
93 dockerImageFormats: [],
94 documentationLink: '',
98 keepWebServiceUrl: '',
106 remoteHostsViaDNS: false,
120 fileViewersConfigUrl: '',
124 interface ConfigJSON {
126 VOCABULARY_URL: string;
127 FILE_VIEWERS_CONFIG_URL: string;
130 const getDefaultConfig = (): ConfigJSON => ({
131 API_HOST: process.env.REACT_APP_ARVADOS_API_HOST || "",
133 FILE_VIEWERS_CONFIG_URL: "",
136 const getDiscoveryURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/discovery/v1/apis/arvados/v1/rest`;