Add Tdarr Auth option
This commit is contained in:
parent
5de0019b3d
commit
e556c90639
@ -21,9 +21,12 @@ export default async function tdarrProxyHandler(req, res) {
|
|||||||
logger.debug("Invalid or missing widget for service '%s' in group '%s'", service, group);
|
logger.debug("Invalid or missing widget for service '%s' in group '%s'", service, group);
|
||||||
return res.status(400).json({ error: "Invalid proxy service type" });
|
return res.status(400).json({ error: "Invalid proxy service type" });
|
||||||
}
|
}
|
||||||
|
const headers = {}
|
||||||
|
headers["content-type"] = "application/json"
|
||||||
|
if (widget.key) {
|
||||||
|
headers["x-api-key"] = `${widget.key}`;
|
||||||
|
}
|
||||||
const url = new URL(formatApiCall(widgets[widget.type].api, { endpoint: undefined, ...widget }));
|
const url = new URL(formatApiCall(widgets[widget.type].api, { endpoint: undefined, ...widget }));
|
||||||
|
|
||||||
const [status, contentType, data] = await httpProxy(url, {
|
const [status, contentType, data] = await httpProxy(url, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
@ -33,9 +36,7 @@ export default async function tdarrProxyHandler(req, res) {
|
|||||||
docID: "statistics",
|
docID: "statistics",
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
headers: {
|
headers: headers
|
||||||
"content-type": "application/json",
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
if (status !== 200) {
|
if (status !== 200) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user