Feliday-UI/src/server/index.tsx

182 lines
5.4 KiB
TypeScript
Raw Normal View History

2021-02-22 02:39:04 +00:00
import express from "express";
import { IncomingHttpHeaders } from "http";
import { Helmet } from "inferno-helmet";
import { matchPath, StaticRouter } from "inferno-router";
2021-02-22 02:39:04 +00:00
import { renderToString } from "inferno-server";
import IsomorphicCookie from "isomorphic-cookie";
import { GetSite, GetSiteResponse, LemmyHttp } from "lemmy-js-client";
2021-02-22 02:39:04 +00:00
import path from "path";
import process from "process";
import serialize from "serialize-javascript";
import { App } from "../shared/components/app/app";
import { SYMBOLS } from "../shared/components/common/symbols";
import { httpBaseInternal } from "../shared/env";
import {
ILemmyConfig,
InitialFetchRequest,
IsoData,
2021-02-22 02:39:04 +00:00
} from "../shared/interfaces";
import { routes } from "../shared/routes";
import { initializeSite, setOptionalAuth } from "../shared/utils";
2020-08-23 04:04:58 +00:00
const server = express();
2021-03-30 01:46:42 +00:00
const [hostname, port] = process.env["LEMMY_UI_HOST"]
? process.env["LEMMY_UI_HOST"].split(":")
2021-03-30 01:17:19 +00:00
: ["0.0.0.0", "1234"];
2020-08-23 04:04:58 +00:00
server.use(express.json());
server.use(express.urlencoded({ extended: false }));
2021-02-22 02:39:04 +00:00
server.use("/static", express.static(path.resolve("./dist")));
2020-08-23 04:04:58 +00:00
// server.use(cookieParser());
2020-08-23 04:04:58 +00:00
2021-02-22 02:39:04 +00:00
server.get("/*", async (req, res) => {
const activeRoute = routes.find(route => matchPath(req.path, route)) || {};
2020-08-23 04:04:58 +00:00
const context = {} as any;
2021-02-22 02:39:04 +00:00
let auth: string = IsomorphicCookie.load("jwt", req);
2020-08-23 04:04:58 +00:00
let getSiteForm: GetSite = {};
setOptionalAuth(getSiteForm, auth);
let promises: Promise<any>[] = [];
let headers = setForwardedHeaders(req.headers);
let initialFetchReq: InitialFetchRequest = {
2021-04-26 19:32:59 +00:00
client: new LemmyHttp(httpBaseInternal, headers),
auth,
path: req.path,
};
// Get site data first
2021-03-15 20:54:17 +00:00
// This bypasses errors, so that the client can hit the error on its own,
// in order to remove the jwt on the browser. Necessary for wrong jwts
let try_site: any = await initialFetchReq.client.getSite(getSiteForm);
if (try_site.error == "not_logged_in") {
console.error(
"Incorrect JWT token, skipping auth so frontend can remove jwt cookie"
);
delete getSiteForm.auth;
delete initialFetchReq.auth;
try_site = await initialFetchReq.client.getSite(getSiteForm);
}
let site: GetSiteResponse = try_site;
initializeSite(site);
if (activeRoute.fetchInitialData) {
promises.push(...activeRoute.fetchInitialData(initialFetchReq));
}
let routeData = await Promise.all(promises);
2020-11-10 18:24:47 +00:00
// Redirect to the 404 if there's an API error
if (routeData[0] && routeData[0].error) {
2020-11-10 22:45:59 +00:00
let errCode = routeData[0].error;
return res.redirect(`/404?err=${errCode}`);
2020-11-10 18:24:47 +00:00
}
let isoData: IsoData = {
path: req.path,
2020-12-24 01:58:27 +00:00
site_res: site,
routeData,
};
2020-08-23 04:04:58 +00:00
const wrapper = (
<StaticRouter location={req.url} context={isoData}>
2020-12-24 01:58:27 +00:00
<App siteRes={isoData.site_res} />
2020-08-23 04:04:58 +00:00
</StaticRouter>
);
if (context.url) {
return res.redirect(context.url);
}
2020-11-25 20:06:38 +00:00
const cspHtml = (
<meta
http-equiv="Content-Security-Policy"
2021-01-24 18:52:52 +00:00
content="default-src data: 'self'; connect-src * ws: wss:; frame-src *; img-src * data:; script-src 'self'; style-src 'self' 'unsafe-inline'; manifest-src 'self'"
2020-11-25 20:06:38 +00:00
/>
);
2020-09-11 04:03:01 +00:00
const root = renderToString(wrapper);
2021-07-16 16:51:54 +00:00
const symbols = renderToString(SYMBOLS);
2021-02-22 02:39:04 +00:00
const cspStr = process.env.LEMMY_EXTERNAL_HOST ? renderToString(cspHtml) : "";
2020-09-11 04:03:01 +00:00
const helmet = Helmet.renderStatic();
const config: ILemmyConfig = { wsHost: process.env.LEMMY_WS_HOST };
2020-08-23 04:04:58 +00:00
res.send(`
<!DOCTYPE html>
2020-09-11 04:03:01 +00:00
<html ${helmet.htmlAttributes.toString()} lang="en">
<head>
2020-10-26 14:22:14 +00:00
<script>window.isoData = ${serialize(isoData)}</script>
<script>window.lemmyConfig = ${serialize(config)}</script>
2021-07-18 15:08:24 +00:00
<!-- A remote debugging utility for mobile
<script src="//cdn.jsdelivr.net/npm/eruda"></script>
<script>eruda.init();</script>
-->
2020-09-11 04:03:01 +00:00
${helmet.title.toString()}
${helmet.meta.toString()}
<!-- Required meta tags -->
<meta name="Description" content="Lemmy">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Content Security Policy -->
2020-11-25 20:06:38 +00:00
${cspStr}
<!-- Web app manifest -->
<link rel="manifest" href="/static/assets/manifest.webmanifest">
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="/static/styles/styles.css" />
2020-10-26 14:28:17 +00:00
<!-- Current theme and more -->
${helmet.link.toString()}
2021-07-16 16:51:54 +00:00
<!-- Icons -->
${symbols}
</head>
2020-09-11 04:03:01 +00:00
<body ${helmet.bodyAttributes.toString()}>
2020-09-09 20:33:40 +00:00
<noscript>
<div class="alert alert-danger rounded-0" role="alert">
<b>Javascript is disabled. Actions will not work.</b>
</div>
2020-09-09 20:33:40 +00:00
</noscript>
2020-10-26 07:09:44 +00:00
2020-09-11 04:03:01 +00:00
<div id='root'>${root}</div>
<script defer src='/static/js/client.js'></script>
</body>
</html>
2020-08-23 04:04:58 +00:00
`);
});
server.listen(Number(port), hostname, () => {
console.log(`http://${hostname}:${port}`);
2020-08-23 04:04:58 +00:00
});
function setForwardedHeaders(headers: IncomingHttpHeaders): {
[key: string]: string;
} {
let out = {
host: headers.host,
};
2021-02-22 02:39:04 +00:00
if (headers["x-real-ip"]) {
out["x-real-ip"] = headers["x-real-ip"];
}
2021-02-22 02:39:04 +00:00
if (headers["x-forwarded-for"]) {
out["x-forwarded-for"] = headers["x-forwarded-for"];
}
return out;
2020-08-23 04:04:58 +00:00
}
2021-02-22 02:39:04 +00:00
process.on("SIGINT", () => {
console.info("Interrupted");
process.exit(0);
});