refs #14161 Merge branch 'origin/14161-inputs-focus-enter-action'
[arvados-workbench2.git] / src / common / config.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import Axios from "axios";
6
7 export const CONFIG_URL = process.env.REACT_APP_ARVADOS_CONFIG_URL || "/config.json";
8
9 export interface Config {
10     auth: {};
11     basePath: string;
12     baseUrl: string;
13     batchPath: string;
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;
24     description: string;
25     discoveryVersion: string;
26     dockerImageFormats: string[];
27     documentationLink: string;
28     generatedAt: string;
29     gitUrl: string;
30     id: string;
31     keepWebServiceUrl: string;
32     kind: string;
33     maxRequestSize: number;
34     name: string;
35     packageVersion: string;
36     parameters: {};
37     protocol: string;
38     remoteHosts: string;
39     remoteHostsViaDNS: boolean;
40     resources: {};
41     revision: string;
42     rootUrl: string;
43     schemas: {};
44     servicePath: string;
45     sourceVersion: string;
46     source_version: string;
47     title: string;
48     uuidPrefix: string;
49     version: string;
50     websocketUrl: string;
51     workbenchUrl: string;
52 }
53
54 export const fetchConfig = () => {
55     return Axios
56         .get<ConfigJSON>(CONFIG_URL + "?nocache=" + (new Date()).getTime())
57         .then(response => response.data)
58         .catch(() => Promise.resolve(getDefaultConfig()))
59         .then(config => Axios
60             .get<Config>(getDiscoveryURL(config.API_HOST))
61             .then(response => ({ config: response.data, apiHost: config.API_HOST })));
62
63 };
64
65 export const mockConfig = (config: Partial<Config>): Config => ({
66     auth: {},
67     basePath: '',
68     baseUrl: '',
69     batchPath: '',
70     blobSignatureTtl: 0,
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,
80     description: '',
81     discoveryVersion: '',
82     dockerImageFormats: [],
83     documentationLink: '',
84     generatedAt: '',
85     gitUrl: '',
86     id: '',
87     keepWebServiceUrl: '',
88     kind: '',
89     maxRequestSize: 0,
90     name: '',
91     packageVersion: '',
92     parameters: {},
93     protocol: '',
94     remoteHosts: '',
95     remoteHostsViaDNS: false,
96     resources: {},
97     revision: '',
98     rootUrl: '',
99     schemas: {},
100     servicePath: '',
101     sourceVersion: '',
102     source_version: '',
103     title: '',
104     uuidPrefix: '',
105     version: '',
106     websocketUrl: '',
107     workbenchUrl: '',
108     ...config
109 });
110
111 interface ConfigJSON {
112     API_HOST: string;
113 }
114
115 const getDefaultConfig = (): ConfigJSON => ({
116     API_HOST: process.env.REACT_APP_ARVADOS_API_HOST || "",
117 });
118
119 const getDiscoveryURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/discovery/v1/apis/arvados/v1/rest`;