Enhancement: more reliable wg-easy widget by custom proxy, use password header (#3966)

pull/3967/head
shamoon 2 months ago committed by GitHub
parent 133d2d6e02
commit 2d0beabe9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -88,6 +88,8 @@ export default async function credentialedProxyHandler(req, res, map) {
if (widget.key) { if (widget.key) {
headers.Cookie = `authenticated=${widget.key}`; headers.Cookie = `authenticated=${widget.key}`;
} }
} else if (widget.type === "wgeasy") {
headers.Authorization = widget.password;
} else { } else {
headers["X-API-Key"] = `${widget.key}`; headers["X-API-Key"] = `${widget.key}`;
} }

@ -5,14 +5,14 @@ import useWidgetAPI from "utils/proxy/use-widget-api";
export default function Component({ service }) { export default function Component({ service }) {
const { widget } = service; const { widget } = service;
const { data: infoData, error: infoError } = useWidgetAPI(widget); const { data: infoData, error: infoError } = useWidgetAPI(widget, "client");
if (!widget.fields) { if (!widget.fields) {
widget.fields = ["connected", "enabled", "total"]; widget.fields = ["connected", "enabled", "total"];
} }
if (infoError) { if (infoError || infoData?.statusCode > 400) {
return <Container service={service} error={infoError} />; return <Container service={service} error={infoError ?? { message: infoData.statusMessage, data: infoData }} />;
} }
if (!infoData) { if (!infoData) {

@ -1,85 +0,0 @@
import cache from "memory-cache";
import getServiceWidget from "utils/config/service-helpers";
import { formatApiCall } from "utils/proxy/api-helpers";
import { httpProxy } from "utils/proxy/http";
import widgets from "widgets/widgets";
import createLogger from "utils/logger";
const proxyName = "wgeasyProxyHandler";
const logger = createLogger(proxyName);
const sessionSIDCacheKey = `${proxyName}__sessionSID`;
async function login(widget, service) {
const url = formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "session" });
const [, , , responseHeaders] = await httpProxy(url, {
method: "POST",
body: JSON.stringify({ password: widget.password }),
headers: {
"Content-Type": "application/json",
},
});
try {
let connectSidCookie = responseHeaders["set-cookie"];
if (!connectSidCookie) {
const sid = cache.get(`${sessionSIDCacheKey}.${service}`);
if (sid) {
return sid;
}
}
connectSidCookie = connectSidCookie
.find((cookie) => cookie.startsWith("connect.sid="))
.split(";")[0]
.replace("connect.sid=", "");
cache.put(`${sessionSIDCacheKey}.${service}`, connectSidCookie);
return connectSidCookie;
} catch (e) {
logger.error(`Error logging into wg-easy, error: ${e}`);
cache.del(`${sessionSIDCacheKey}.${service}`);
return null;
}
}
export default async function wgeasyProxyHandler(req, res) {
const { group, service } = req.query;
if (group && service) {
const widget = await getServiceWidget(group, service);
if (!widgets?.[widget.type]?.api) {
return res.status(403).json({ error: "Service does not support API calls" });
}
if (widget) {
let sid = cache.get(`${sessionSIDCacheKey}.${service}`);
if (!sid) {
sid = await login(widget, service);
if (!sid) {
return res.status(500).json({ error: "Failed to authenticate with Wg-Easy" });
}
}
const [, , data] = await httpProxy(
formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "wireguard/client" }),
{
headers: {
"Content-Type": "application/json",
Cookie: `connect.sid=${sid}`,
},
},
);
const parsedData = JSON.parse(data);
if (parsedData.statusCode > 400) {
return res
.status(parsedData.statusCode)
.json({ error: { message: "Error communicating with Wg-Easy", data: parsedData } });
}
return res.json(parsedData);
}
}
return res.status(400).json({ error: "Invalid proxy service type" });
}

@ -1,8 +1,14 @@
import wgeasyProxyHandler from "./proxy"; import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
const widget = { const widget = {
api: "{url}/api/{endpoint}", api: "{url}/api/{endpoint}",
proxyHandler: wgeasyProxyHandler, proxyHandler: credentialedProxyHandler,
mappings: {
client: {
endpoint: "wireguard/client",
},
},
}; };
export default widget; export default widget;

Loading…
Cancel
Save