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;
55 export const fetchConfig = () => {
57 .get<ConfigJSON>(CONFIG_URL + "?nocache=" + (new Date()).getTime())
58 .then(response => response.data)
59 .catch(() => Promise.resolve(getDefaultConfig()))
61 .get<Config>(getDiscoveryURL(config.API_HOST))
63 // TODO: After tests delete `|| '/vocabulary-example.json'`
64 config: {...response.data, vocabularyUrl: config.VOCABULARY_URL || '/vocabulary-example.json' },
65 apiHost: config.API_HOST,
70 export const mockConfig = (config: Partial<Config>): Config => ({
76 crunchLimitLogBytesPerJob: 0,
77 crunchLogBytesPerEvent: 0,
78 crunchLogPartialLineThrottlePeriod: 0,
79 crunchLogSecondsBetweenEvents: 0,
80 crunchLogThrottleBytes: 0,
81 crunchLogThrottleLines: 0,
82 crunchLogThrottlePeriod: 0,
83 defaultCollectionReplication: 0,
84 defaultTrashLifetime: 0,
87 dockerImageFormats: [],
88 documentationLink: '',
92 keepWebServiceUrl: '',
100 remoteHostsViaDNS: false,
117 interface ConfigJSON {
119 VOCABULARY_URL: string;
122 const getDefaultConfig = (): ConfigJSON => ({
123 API_HOST: process.env.REACT_APP_ARVADOS_API_HOST || "",
127 const getDiscoveryURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/discovery/v1/apis/arvados/v1/rest`;