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;
54 export const fetchConfig = () => {
56 .get<ConfigJSON>(CONFIG_URL + "?nocache=" + (new Date()).getTime())
57 .then(response => response.data)
58 .catch(() => Promise.resolve(getDefaultConfig()))
59 .then(config => Axios.get<Config>(getDiscoveryURL(config.API_HOST)))
60 .then(response => response.data);
63 export const mockConfig = (config: Partial<Config>): Config => ({
69 crunchLimitLogBytesPerJob: 0,
70 crunchLogBytesPerEvent: 0,
71 crunchLogPartialLineThrottlePeriod: 0,
72 crunchLogSecondsBetweenEvents: 0,
73 crunchLogThrottleBytes: 0,
74 crunchLogThrottleLines: 0,
75 crunchLogThrottlePeriod: 0,
76 defaultCollectionReplication: 0,
77 defaultTrashLifetime: 0,
80 dockerImageFormats: [],
81 documentationLink: '',
85 keepWebServiceUrl: '',
93 remoteHostsViaDNS: false,
109 interface ConfigJSON {
113 const getDefaultConfig = (): ConfigJSON => ({
114 API_HOST: process.env.REACT_APP_ARVADOS_API_HOST || "",
117 const getDiscoveryURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/discovery/v1/apis/arvados/v1/rest`;