-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfContext.js
42 lines (41 loc) · 1.59 KB
/
confContext.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
import { readFile } from 'fs/promises';
import { STATUS_CODES } from 'http';
import { join } from 'path';
export default async (page, { req, res, next }, config) => {
const runtimeConfig = JSON.parse(await readFile(join(".", 'config.json'), 'utf-8'));
return {
proxies: runtimeConfig.proxy.map((values, index) => {
return {
...values,
id: index, // assign the index as an ID
enabled: values.enabled ?? true,
special: values.special ?? false,
timeout: values.timeout ?? runtimeConfig.timeout,
redirect: values.redirect ?? false,
redirectTemp: values.redirectTemp ?? false,
description: values.description ?? "No description available",
maintenance: values.maintenance ?? false
};
}),
stubs: runtimeConfig.stub.map((values, index) => {
return {
...values,
id: index, // assign the index as an ID
enabled: values.enabled ?? true,
status: values.status ?? 200,
status_message: STATUS_CODES[values.status] ?? "UNKNOWN",
message: values.message ?? "OK",
description: values.description ?? "No description available"
}
}),
acme: {
...runtimeConfig.acme,
domains: runtimeConfig.acme.domains.map((value, index) => (
{
certificate: value[0],
entries: value,
}
))
},
}
}