mirror of
https://github.com/gethomepage/homepage.git
synced 2026-01-07 07:52:08 +08:00
160 lines
5.7 KiB
JavaScript
160 lines
5.7 KiB
JavaScript
import cache from "memory-cache";
|
|
|
|
import getServiceWidget from "utils/config/service-helpers";
|
|
import createLogger from "utils/logger";
|
|
import { formatApiCall } from "utils/proxy/api-helpers";
|
|
import { httpProxy } from "utils/proxy/http";
|
|
import widgets from "widgets/widgets";
|
|
|
|
const proxyName = "pyloadProxyHandler";
|
|
const logger = createLogger(proxyName);
|
|
const sessionCacheKey = `${proxyName}__sessionId`;
|
|
const isNgCacheKey = `${proxyName}__isNg`;
|
|
|
|
function parsePyloadResponse(url, data) {
|
|
try {
|
|
return JSON.parse(Buffer.from(data).toString());
|
|
} catch (e) {
|
|
logger.error(`Error communicating with pyload API at ${url}, returned: ${JSON.stringify(data)}`);
|
|
return data;
|
|
}
|
|
}
|
|
|
|
async function fetchFromPyloadAPI(url, sessionId, params, service) {
|
|
const options = {
|
|
body: params
|
|
? Object.keys(params)
|
|
.map((prop) => `${prop}=${encodeURIComponent(params[prop])}`)
|
|
.join("&")
|
|
: `session=${sessionId}`,
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
},
|
|
};
|
|
|
|
// see https://github.com/gethomepage/homepage/issues/517
|
|
const isNg = cache.get(`${isNgCacheKey}.${service}`);
|
|
if (isNg && !params) {
|
|
delete options.body;
|
|
options.headers.Cookie = cache.get(`${sessionCacheKey}.${service}`);
|
|
}
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
const [status, contentType, data, responseHeaders] = await httpProxy(url, options);
|
|
const returnData = parsePyloadResponse(url, data);
|
|
return [status, returnData, responseHeaders];
|
|
}
|
|
|
|
async function fetchFromPyloadAPIBasic(url, params, username, password) {
|
|
const parsedUrl = new URL(url);
|
|
const isGetRequest = !params || Object.keys(params).length === 0;
|
|
|
|
const options = {
|
|
method: isGetRequest ? "GET" : "POST",
|
|
headers: {
|
|
Authorization: `Basic ${Buffer.from(`${username}:${password}`).toString("base64")}`,
|
|
},
|
|
};
|
|
|
|
if (isGetRequest) {
|
|
if (params) {
|
|
Object.keys(params).forEach((key) => parsedUrl.searchParams.append(key, params[key]));
|
|
}
|
|
} else {
|
|
options.headers["Content-Type"] = "application/json";
|
|
options.body = JSON.stringify(params);
|
|
}
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
const [status, contentType, data, responseHeaders] = await httpProxy(parsedUrl, options);
|
|
const returnData = parsePyloadResponse(parsedUrl, data);
|
|
return [status, returnData, responseHeaders];
|
|
}
|
|
|
|
async function login(loginUrl, service, username, password = "") {
|
|
const [status, sessionId, responseHeaders] = await fetchFromPyloadAPI(
|
|
loginUrl,
|
|
null,
|
|
{ username, password },
|
|
service,
|
|
);
|
|
|
|
// this API actually returns status 200 even on login failure
|
|
if (status !== 200 || sessionId === false) {
|
|
logger.error(`HTTP ${status} logging into Pyload API, returned: ${JSON.stringify(sessionId)}`);
|
|
} else if (responseHeaders["set-cookie"]?.join().includes("pyload_session")) {
|
|
// Support pyload-ng, see https://github.com/gethomepage/homepage/issues/517
|
|
cache.put(`${isNgCacheKey}.${service}`, true);
|
|
const sessionCookie = responseHeaders["set-cookie"][0];
|
|
cache.put(`${sessionCacheKey}.${service}`, sessionCookie, 60 * 60 * 23 * 1000); // cache for 23h
|
|
} else {
|
|
cache.put(`${sessionCacheKey}.${service}`, sessionId);
|
|
}
|
|
|
|
return sessionId;
|
|
}
|
|
|
|
export default async function pyloadProxyHandler(req, res, map = {}) {
|
|
const { group, service, endpoint, index } = req.query;
|
|
const { ngEndpoint } = map;
|
|
|
|
try {
|
|
if (group && service) {
|
|
const widget = await getServiceWidget(group, service, index);
|
|
|
|
if (widget) {
|
|
const apiTemplate = widgets[widget.type].api;
|
|
const url = new URL(formatApiCall(apiTemplate, { endpoint, ...widget }));
|
|
const ngUrl = ngEndpoint ? new URL(formatApiCall(apiTemplate, { endpoint: ngEndpoint, ...widget })) : url;
|
|
const loginUrl = `${widget.url}/api/login`;
|
|
const hasCredentials = widget.username && widget.password;
|
|
|
|
if (hasCredentials) {
|
|
const [status, data] = await fetchFromPyloadAPIBasic(ngUrl, null, widget.username, widget.password);
|
|
|
|
if (status === 200 && !data?.error) {
|
|
cache.put(`${isNgCacheKey}.${service}`, true);
|
|
return res.json(data);
|
|
}
|
|
|
|
if (status === 401) {
|
|
return res
|
|
.status(status)
|
|
.send({ error: { message: "Invalid credentials communicating with Pyload API", data } });
|
|
}
|
|
}
|
|
|
|
let sessionId =
|
|
cache.get(`${sessionCacheKey}.${service}`) ??
|
|
(await login(loginUrl, service, widget.username, widget.password));
|
|
let [status, data] = await fetchFromPyloadAPI(url, sessionId, null, service);
|
|
|
|
if (status === 403 || status === 401 || (status === 400 && data?.error?.includes("CSRF token"))) {
|
|
logger.info("Failed to retrieve data from Pyload API with session auth, trying to login again...");
|
|
cache.del(`${sessionCacheKey}.${service}`);
|
|
sessionId = await login(loginUrl, service, widget.username, widget.password);
|
|
[status, data] = await fetchFromPyloadAPI(url, sessionId, null, service);
|
|
}
|
|
|
|
if (data?.error || status !== 200) {
|
|
try {
|
|
return res.status(status).send({
|
|
error: { message: "HTTP error communicating with Pyload API", data: Buffer.from(data).toString() },
|
|
});
|
|
} catch (e) {
|
|
return res.status(status).send({ error: { message: "HTTP error communicating with Pyload API", data } });
|
|
}
|
|
}
|
|
|
|
return res.json(data);
|
|
}
|
|
}
|
|
} catch (e) {
|
|
if (e) logger.error(e);
|
|
return res.status(500).send({ error: { message: `Error communicating with Pyload API: ${e.toString()}` } });
|
|
}
|
|
|
|
return res.status(400).json({ error: "Invalid proxy service type" });
|
|
}
|