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()))
60 .get<Config>(getDiscoveryURL(config.API_HOST))
61 .then(response => ({ config: response.data, apiHost: config.API_HOST })));
65 export const mockConfig = (config: Partial<Config>): Config => ({
71 crunchLimitLogBytesPerJob: 0,
72 crunchLogBytesPerEvent: 0,
73 crunchLogPartialLineThrottlePeriod: 0,
74 crunchLogSecondsBetweenEvents: 0,
75 crunchLogThrottleBytes: 0,
76 crunchLogThrottleLines: 0,
77 crunchLogThrottlePeriod: 0,
78 defaultCollectionReplication: 0,
79 defaultTrashLifetime: 0,
82 dockerImageFormats: [],
83 documentationLink: '',
87 keepWebServiceUrl: '',
95 remoteHostsViaDNS: false,
111 interface ConfigJSON {
115 const getDefaultConfig = (): ConfigJSON => ({
116 API_HOST: process.env.REACT_APP_ARVADOS_API_HOST || "",
119 const getDiscoveryURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/discovery/v1/apis/arvados/v1/rest`;