forked from mdn/mdn-http-observatory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
124 lines (121 loc) · 2.96 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import convict from "convict";
const SCHEMA = {
retriever: {
retrieverUserAgent: {
doc: "The user agent to use for retriever requests.",
format: "String",
default:
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:129.0) Gecko/20100101 Firefox/129.0 Observatory/129.0",
env: "RETRIEVER_USER_AGENT",
},
corsOrigin: {
doc: "The CORS origin to use for CORS origin retriever requests.",
format: "String",
default: "https://http-observatory.security.mozilla.org",
env: "CORS_ORIGIN",
},
abortTimeout: {
doc: "The overall timeout for a request, in ms",
format: "Number",
default: 10000,
env: "ABORT_TIMEOUT",
},
clientTimeout: {
doc: "The timeout once the request has been sent, in ms",
format: "Number",
default: 9000,
env: "CLIENT_TIMEOUT",
},
},
database: {
database: {
doc: "The name of the database to use",
format: "String",
default: "httpobservatory",
env: "PGDATABASE",
},
host: {
doc: "The database server hostname",
format: "String",
default: "localhost",
env: "PGHOST",
},
user: {
doc: "Database username",
format: "String",
default: "postgres",
env: "PGUSER",
},
pass: {
doc: "Database password",
format: "String",
default: "",
sensitive: true,
env: "PGPASSWORD",
},
port: {
doc: "The port of the database service",
format: "port",
default: 5432,
env: "PGPORT",
},
sslmode: {
doc: "Database SSL mode",
format: "Boolean",
default: false,
env: "PGSSLMODE",
},
},
api: {
cooldown: {
doc: "Cached result time for API V2, in Seconds. Defaults to 1 minute",
format: "nat",
default: 60,
env: "HTTPOBS_API_COOLDOWN",
},
cacheTimeForGet: {
doc: "Maximum scan age a GET request returns before initiating a new scan, in seconds. Defaults to 24 hours.",
format: "nat",
default: 86400,
env: "HTTPOBS_API_GET_CACHE",
},
port: {
doc: "The port to bind to",
format: "Number",
default: 8080,
env: "HTTPOBS_API_PORT",
},
enableLogging: {
doc: "Enable server logging",
format: "Boolean",
default: true,
env: "HTTPOBS_ENABLE_LOGGING",
},
},
sentry: {
dsn: {
doc: "The Sentry data source name (DSN) to use for error reporting.",
format: "String",
default: "",
env: "SENTRY_DSN",
},
},
};
/**
*
* @param {string | undefined} configFile
* @returns
*/
export function load(configFile) {
const configuration = convict(SCHEMA);
try {
if (configFile) {
configuration.loadFile(configFile);
}
configuration.validate({ allowed: "strict" });
return configuration.getProperties();
} catch (e) {
throw new Error(`error reading config: ${e}`);
}
}
export const CONFIG = load(process.env["CONFIG_FILE"]);