-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.js
120 lines (119 loc) · 5.61 KB
/
update.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
import { readFile, writeFile } from "fs/promises";
import { join } from "path";
/**
* HT Framework middleware
* @since V2
* @param {Object} page page settings
* @param {{req: import("express").Request, res: import("express").Response, next: import("express").NextFunction}} middleware request, response and next function
* @param {Object} config global configuration
* @returns {Promise<{done: boolean, any}>} whether the request was handled, otherwise return the request context addition of this module
*/
export default async (page, { req, res, next }, config) => {
const urlParts = req.url.split('/');
// const itemId = urlParts[urlParts.length - 1];
// const type = urlParts[urlParts.length - 2];
const itemId = req.params.id;
const type = req.params.type;
console.debug("Updating", type, itemId);
if (itemId != "new") {
const runtimeConfig = JSON.parse(await readFile(join(".", 'config.json'), 'utf-8'));
const id = parseInt(itemId);
if (isNaN(id)) {
res.sendStatus(400);
res.end();
return { done: true };
}
const item = runtimeConfig[type][id];
if (!item) {
res.sendStatus(404);
res.end();
return { done: true };
}
for (const param in req.body) {
if (Object.prototype.hasOwnProperty.call(req.body, param)) {
let element = req.body[param];
console.debug(`Processing ${param}:`, element);
if (typeof item[param] === "number") {
if (isNaN(parseInt(element))) {
res.sendStatus(400);
res.end();
return { done: true };
}
item[param] = parseInt(element);
} else if (typeof item[param] === "string") {
item[param] = element;
} else if (typeof item[param] === "boolean") {
if (typeof element == "object") {
element = element[element.length - 1];
}
item[param] = element === "true" || element == "on";
} else if (Array.isArray(item[param])) { // handle case for arrays
item[param] = Array.isArray(element) ? element : element.split(',');
} else if (typeof item[param] === "object") {
if (param == "ssl") {
const {key, cert, ca: caRaw} = element;
const ca = caRaw.split(',');
item[param] = { key, cert, ca };
continue;
} else if (element.split(',')[0] === '') {
item[param] = [];
continue;
}
item[param] = element.split(',');
} else { // assume string
console.warn(`Unknown type for "${param}": ${typeof item[param]}`);
if (item[param]) {
item[param] = element;
}
}
}
}
await writeFile(join(".", 'config.json'), JSON.stringify(runtimeConfig, null, 4), 'utf-8');
} else {
if (type == "proxy") {
const runtimeConfig = JSON.parse(await readFile(join(".", 'config.json'), 'utf-8'));
const item = req.body;
runtimeConfig[type].push({
"description": item.description,
"host": item.host.split(','),
"enabled": item.enabled[item.enabled.length - 1] === "true" || item.enabled[item.enabled.length - 1] == "on",
"maintenance": item.maintenance[item.maintenance.length - 1] === "true" || item.maintenance[item.maintenance.length - 1] == "on",
"target": item.target,
"timeout": parseInt(item.timeout),
"secure": item.secure[item.secure.length - 1] === "true" || item.secure[item.secure.length - 1] == "on",
"ssl": {
"key": item.ssl.key || "",
"cert": item.ssl.cert || "",
"ca": item.ssl.ca ? item.ssl.ca.split(',') : []
}
});
await writeFile(join(".", 'config.json'), JSON.stringify(runtimeConfig, null, 4), 'utf-8');
} else if (type == "stub") {
const runtimeConfig = JSON.parse(await readFile(join(".", 'config.json'), 'utf-8'));
const item = req.body;
runtimeConfig[type].push({
"description": item.description,
"host": item.host.split(','),
"enabled": item.enabled[item.enabled.length - 1] === "true" || item.enabled[item.enabled.length - 1] == "on",
"status": parseInt(item.status),
"message": item.message,
"secure": item.secure[item.secure.length - 1] === "true" || item.secure[item.secure.length - 1] == "on",
"ssl": {
"key": item.ssl.key || "",
"cert": item.ssl.cert || "",
"ca": item.ssl.ca ? item.ssl.ca.split(',') : []
},
});
await writeFile(join(".", 'config.json'), JSON.stringify(runtimeConfig, null, 4), 'utf-8');
} else {
console.error(`Type "${type}" not implemented`);
res.writeHead(503, { 'Content-Type': 'text/plain' });
res.end('Not implemented yet');
return { done: true };
}
res.redirect(`/${type}`);
return { done: true };
}
res.status(200).redirect(`/${type}`);
return { done: true };
}