- Add CoinMarketCap widget

This commit is contained in:
Chris McGravey 2022-09-12 01:30:42 -05:00
parent ffbb1f5f0b
commit 1c158f743c
8 changed files with 216 additions and 108 deletions

View file

@ -13,6 +13,7 @@ const formats = {
overseerr: `{url}/api/v1/{endpoint}`,
ombi: `{url}/api/v1/{endpoint}`,
npm: `{url}/api/{endpoint}`,
coinmarketcap: `{url}/{endpoint}`,
};
export function formatApiCall(api, args) {

View file

@ -0,0 +1,33 @@
import getServiceWidget from "utils/service-helpers";
import { formatApiCall } from "utils/api-helpers";
import { httpProxy } from "utils/http";
export default async function coinMarketCapProxyHandler(req, res) {
const { group, service, endpoint } = req.query;
if (group && service) {
const widget = await getServiceWidget(group, service);
if (widget) {
const url = new URL(formatApiCall(widget.type, { endpoint, ...widget }));
const [status, contentType, data] = await httpProxy(url, {
method: req.method,
withCredentials: true,
credentials: "include",
headers: {
"X-CMC_PRO_API_KEY": `${widget.key}`,
"Content-Type": "application/json",
},
});
if (status === 204 || status === 304) {
return res.status(status).end();
}
if (contentType) res.setHeader("Content-Type", contentType);
return res.status(status).send(data);
}
}
return res.status(400).json({ error: "Invalid proxy service type" });
}