You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
2 years ago
|
import getServiceWidget from "utils/service-helpers";
|
||
2 years ago
|
import { formatApiCall } from "utils/proxy/api-helpers";
|
||
|
import { httpProxy } from "utils/proxy/http";
|
||
2 years ago
|
import createLogger from "utils/logger";
|
||
2 years ago
|
import widgets from "widgets/widgets";
|
||
2 years ago
|
|
||
2 years ago
|
const logger = createLogger("credentialedProxyHandler");
|
||
|
|
||
2 years ago
|
export default async function credentialedProxyHandler(req, res) {
|
||
|
const { group, service, endpoint } = req.query;
|
||
|
|
||
|
if (group && service) {
|
||
|
const widget = await getServiceWidget(group, service);
|
||
|
|
||
2 years ago
|
if (!widgets?.[widget.type]?.api) {
|
||
|
return res.status(403).json({ error: "Service does not support API calls" });
|
||
|
}
|
||
|
|
||
2 years ago
|
if (widget) {
|
||
2 years ago
|
const url = new URL(formatApiCall(widgets[widget.type].api, { endpoint, ...widget }));
|
||
2 years ago
|
|
||
|
const headers = {
|
||
|
"Content-Type": "application/json",
|
||
|
};
|
||
|
|
||
|
if (widget.type === "coinmarketcap") {
|
||
|
headers["X-CMC_PRO_API_KEY"] = `${widget.key}`;
|
||
2 years ago
|
} else if (widget.type === "gotify") {
|
||
2 years ago
|
headers["X-gotify-Key"] = `${widget.key}`;
|
||
2 years ago
|
} else if (widget.type === "authentik") {
|
||
|
headers.Authorization = `Bearer ${widget.key}`;
|
||
2 years ago
|
} else {
|
||
|
headers["X-API-Key"] = `${widget.key}`;
|
||
|
}
|
||
|
|
||
2 years ago
|
const [status, contentType, data] = await httpProxy(url, {
|
||
2 years ago
|
method: req.method,
|
||
2 years ago
|
withCredentials: true,
|
||
|
credentials: "include",
|
||
2 years ago
|
headers,
|
||
2 years ago
|
});
|
||
|
|
||
2 years ago
|
if (status === 204 || status === 304) {
|
||
|
return res.status(status).end();
|
||
|
}
|
||
|
|
||
2 years ago
|
if (status >= 400) {
|
||
|
logger.debug("HTTP Error %d calling %s//%s%s...", status, url.protocol, url.hostname, url.pathname);
|
||
|
}
|
||
|
|
||
2 years ago
|
if (contentType) res.setHeader("Content-Type", contentType);
|
||
2 years ago
|
return res.status(status).send(data);
|
||
|
}
|
||
|
}
|
||
|
|
||
2 years ago
|
logger.debug("Invalid or missing proxy service type '%s' in group '%s'", service, group);
|
||
2 years ago
|
return res.status(400).json({ error: "Invalid proxy service type" });
|
||
|
}
|