Send new user data to server
[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     vocabularyUrl: string;
53 }
54
55 export const fetchConfig = () => {
56     return Axios
57         .get<ConfigJSON>(CONFIG_URL + "?nocache=" + (new Date()).getTime())
58         .then(response => response.data)
59         .catch(() => Promise.resolve(getDefaultConfig()))
60         .then(config => Axios
61             .get<Config>(getDiscoveryURL(config.API_HOST))
62             .then(response => ({ 
63                 config: {...response.data, vocabularyUrl: config.VOCABULARY_URL }, 
64                 apiHost: config.API_HOST, 
65             })));
66
67 };
68
69 export const mockConfig = (config: Partial<Config>): Config => ({
70     auth: {},
71     basePath: '',
72     baseUrl: '',
73     batchPath: '',
74     blobSignatureTtl: 0,
75     crunchLimitLogBytesPerJob: 0,
76     crunchLogBytesPerEvent: 0,
77     crunchLogPartialLineThrottlePeriod: 0,
78     crunchLogSecondsBetweenEvents: 0,
79     crunchLogThrottleBytes: 0,
80     crunchLogThrottleLines: 0,
81     crunchLogThrottlePeriod: 0,
82     defaultCollectionReplication: 0,
83     defaultTrashLifetime: 0,
84     description: '',
85     discoveryVersion: '',
86     dockerImageFormats: [],
87     documentationLink: '',
88     generatedAt: '',
89     gitUrl: '',
90     id: '',
91     keepWebServiceUrl: '',
92     kind: '',
93     maxRequestSize: 0,
94     name: '',
95     packageVersion: '',
96     parameters: {},
97     protocol: '',
98     remoteHosts: '',
99     remoteHostsViaDNS: false,
100     resources: {},
101     revision: '',
102     rootUrl: '',
103     schemas: {},
104     servicePath: '',
105     sourceVersion: '',
106     source_version: '',
107     title: '',
108     uuidPrefix: '',
109     version: '',
110     websocketUrl: '',
111     workbenchUrl: '',
112     vocabularyUrl: '',
113     ...config
114 });
115
116 interface ConfigJSON {
117     API_HOST: string;
118     VOCABULARY_URL: string;
119 }
120
121 const getDefaultConfig = (): ConfigJSON => ({
122     API_HOST: process.env.REACT_APP_ARVADOS_API_HOST || "",
123     VOCABULARY_URL: "",
124 });
125
126 const getDiscoveryURL = (apiHost: string) => `${window.location.protocol}//${apiHost}/discovery/v1/apis/arvados/v1/rest`;