2022-09-07 16:53:24 +03:00
|
|
|
import getServiceWidget from "utils/service-helpers";
|
2022-09-04 21:58:42 +03:00
|
|
|
import { formatApiCall } from "utils/api-helpers";
|
|
|
|
import { httpProxy } from "utils/http";
|
2022-09-21 23:37:17 -07:00
|
|
|
import createLogger from "utils/logger";
|
2022-09-25 19:43:47 +03:00
|
|
|
import widgets from "widgets/widgets";
|
2022-09-21 23:37:17 -07:00
|
|
|
|
2022-09-25 19:43:47 +03:00
|
|
|
const logger = createLogger("genericProxyHandler");
|
2022-09-04 21:58:42 +03:00
|
|
|
|
2022-09-25 19:43:47 +03:00
|
|
|
export default async function genericProxyHandler(req, res, map) {
|
2022-09-04 21:58:42 +03:00
|
|
|
const { group, service, endpoint } = req.query;
|
|
|
|
|
|
|
|
if (group && service) {
|
|
|
|
const widget = await getServiceWidget(group, service);
|
|
|
|
|
2022-09-25 19:43:47 +03:00
|
|
|
if (!widgets?.[widget.type]?.api) {
|
|
|
|
return res.status(403).json({ error: "Service does not support API calls" });
|
|
|
|
}
|
|
|
|
|
2022-09-04 21:58:42 +03:00
|
|
|
if (widget) {
|
2022-09-25 19:43:47 +03:00
|
|
|
const url = new URL(formatApiCall(widgets[widget.type].api, { endpoint, ...widget }));
|
2022-09-16 14:05:27 +03:00
|
|
|
|
|
|
|
let headers;
|
|
|
|
if (widget.username && widget.password) {
|
|
|
|
headers = {
|
|
|
|
Authorization: `Basic ${Buffer.from(`${widget.username}:${widget.password}`).toString("base64")}`,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-09-11 14:30:28 +03:00
|
|
|
const [status, contentType, data] = await httpProxy(url, {
|
|
|
|
method: req.method,
|
2022-09-16 14:05:27 +03:00
|
|
|
headers,
|
2022-09-11 14:30:28 +03:00
|
|
|
});
|
2022-09-04 21:58:42 +03:00
|
|
|
|
2022-09-16 11:33:11 -07:00
|
|
|
let resultData = data;
|
2022-09-25 19:43:47 +03:00
|
|
|
if (status === 200 && map) {
|
|
|
|
resultData = map(data);
|
2022-09-16 11:33:11 -07:00
|
|
|
}
|
|
|
|
|
2022-09-05 10:08:02 +03:00
|
|
|
if (contentType) res.setHeader("Content-Type", contentType);
|
2022-09-11 14:30:14 +03:00
|
|
|
|
|
|
|
if (status === 204 || status === 304) {
|
|
|
|
return res.status(status).end();
|
|
|
|
}
|
|
|
|
|
2022-09-20 20:16:04 -07:00
|
|
|
if (status >= 400) {
|
|
|
|
logger.debug("HTTP Error %d calling %s//%s%s...", status, url.protocol, url.hostname, url.pathname);
|
|
|
|
}
|
|
|
|
|
2022-09-16 11:33:11 -07:00
|
|
|
return res.status(status).send(resultData);
|
2022-09-04 21:58:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 20:16:04 -07:00
|
|
|
logger.debug("Invalid or missing proxy service type '%s' in group '%s'", service, group);
|
2022-09-04 21:58:42 +03:00
|
|
|
return res.status(400).json({ error: "Invalid proxy service type" });
|
|
|
|
}
|