56 lines
1.7 KiB
JavaScript
Raw Normal View History

2022-09-07 16:53:24 +03:00
import getServiceWidget from "utils/service-helpers";
import { formatApiCall } from "utils/proxy/api-helpers";
import { httpProxy } from "utils/proxy/http";
import createLogger from "utils/logger";
2022-09-25 19:43:47 +03:00
import widgets from "widgets/widgets";
2022-09-25 19:43:47 +03:00
const logger = createLogger("genericProxyHandler");
2022-09-25 19:43:47 +03:00
export default async function genericProxyHandler(req, res, map) {
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" });
}
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
});
let resultData = data;
2022-09-25 19:43:47 +03:00
if (status === 200 && map) {
resultData = map(data);
}
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();
}
if (status >= 400) {
logger.debug("HTTP Error %d calling %s//%s%s...", status, url.protocol, url.hostname, url.pathname);
}
return res.status(status).send(resultData);
}
}
logger.debug("Invalid or missing proxy service type '%s' in group '%s'", service, group);
return res.status(400).json({ error: "Invalid proxy service type" });
}