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.
homepage/src/widgets/pihole/proxy.js

96 lines
3.1 KiB

import cache from "memory-cache";
import { httpProxy } from "utils/proxy/http";
import { formatApiCall } from "utils/proxy/api-helpers";
import getServiceWidget from "utils/config/service-helpers";
import createLogger from "utils/logger";
import widgets from "widgets/widgets";
const proxyName = "piholeProxyHandler";
const logger = createLogger(proxyName);
const sessionSIDCacheKey = `${proxyName}__sessionSID`;
async function login(widget, service) {
const url = formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "auth" });
const [status, , data] = await httpProxy(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
password: widget.key,
}),
});
const dataParsed = JSON.parse(data);
if (status !== 200 || !dataParsed.session) {
logger.error("Failed to login to Pi-Hole API, status: %d", status);
cache.del(`${sessionSIDCacheKey}.${service}`);
} else {
cache.put(`${sessionSIDCacheKey}.${service}`, dataParsed.session.sid, dataParsed.session.validity);
}
}
export default async function piholeProxyHandler(req, res) {
const { group, service } = req.query;
let endpoint = "stats/summary";
if (!group || !service) {
logger.error("Invalid or missing service '%s' or group '%s'", service, group);
return res.status(400).json({ error: "Invalid proxy service type" });
}
const widget = await getServiceWidget(group, service);
if (!widget) {
logger.error("Invalid or missing widget for service '%s' in group '%s'", service, group);
return res.status(400).json({ error: "Invalid widget configuration" });
}
let status;
let data;
if (!widget.version || widget.version < 6) {
// pihole v5
endpoint = "summaryRaw";
[status, , data] = await httpProxy(formatApiCall(widgets[widget.type].apiv5, { ...widget, endpoint }));
return res.status(status).send(data);
}
// pihole v6
if (!cache.get(`${sessionSIDCacheKey}.${service}`)) {
await login(widget, service);
}
const sid = cache.get(`${sessionSIDCacheKey}.${service}`);
if (!sid) {
return res.status(500).json({ error: "Failed to authenticate with Pi-hole" });
}
try {
logger.debug("Calling Pi-hole API endpoint: %s", endpoint);
[status, , data] = await httpProxy(formatApiCall(widgets[widget.type].api, { ...widget, endpoint }), {
headers: {
"Content-Type": "application/json",
"X-FTL-SID": sid,
},
});
if (status !== 200) {
logger.error("Error calling Pi-Hole API: %d. Data: %s", status, data);
return res.status(status).json({ error: "Pi-Hole API Error", data });
}
const dataParsed = JSON.parse(data);
return res.status(status).json({
domains_being_blocked: dataParsed.gravity.domains_being_blocked,
ads_blocked_today: dataParsed.queries.blocked,
ads_percentage_today: dataParsed.queries.percent_blocked,
dns_queries_today: dataParsed.queries.total,
});
} catch (error) {
logger.error("Exception calling Pi-Hole API: %s", error.message);
return res.status(500).json({ error: "Pi-Hole API Error", message: error.message });
}
}