2020-09-07 03:41:46 +00:00
|
|
|
// import cookieParser = require('cookie-parser');
|
2020-09-06 16:15:25 +00:00
|
|
|
import serialize from 'serialize-javascript';
|
|
|
|
import express from 'express';
|
2020-08-23 04:04:58 +00:00
|
|
|
import { StaticRouter } from 'inferno-router';
|
|
|
|
import { renderToString } from 'inferno-server';
|
2020-09-06 16:15:25 +00:00
|
|
|
import { matchPath } from 'inferno-router';
|
2020-09-07 03:41:46 +00:00
|
|
|
import path from 'path';
|
2020-09-06 16:15:25 +00:00
|
|
|
import { App } from '../shared/components/app';
|
2020-09-07 03:41:46 +00:00
|
|
|
import { IsoData } from '../shared/interfaces';
|
2020-09-06 16:15:25 +00:00
|
|
|
import { routes } from '../shared/routes';
|
|
|
|
import IsomorphicCookie from 'isomorphic-cookie';
|
2020-09-07 03:41:46 +00:00
|
|
|
import { lemmyHttp, setAuth } from '../shared/utils';
|
2020-09-07 15:32:07 +00:00
|
|
|
import { GetSiteForm, GetSiteResponse } from 'lemmy-js-client';
|
2020-08-23 04:04:58 +00:00
|
|
|
const server = express();
|
|
|
|
const port = 1234;
|
|
|
|
|
|
|
|
server.use(express.json());
|
|
|
|
server.use(express.urlencoded({ extended: false }));
|
2020-09-07 03:41:46 +00:00
|
|
|
server.use('/assets', express.static(path.resolve('./src/assets')));
|
|
|
|
server.use('/static', express.static(path.resolve('./dist')));
|
2020-08-23 04:04:58 +00:00
|
|
|
|
2020-09-07 03:41:46 +00:00
|
|
|
// server.use(cookieParser());
|
2020-08-23 04:04:58 +00:00
|
|
|
|
2020-09-07 03:41:46 +00:00
|
|
|
server.get('/*', async (req, res) => {
|
2020-09-06 16:15:25 +00:00
|
|
|
const activeRoute = routes.find(route => matchPath(req.url, route)) || {};
|
2020-08-23 04:04:58 +00:00
|
|
|
const context = {} as any;
|
2020-09-06 16:15:25 +00:00
|
|
|
let auth: string = IsomorphicCookie.load('jwt', req);
|
2020-08-23 04:04:58 +00:00
|
|
|
|
2020-09-07 03:41:46 +00:00
|
|
|
let getSiteForm: GetSiteForm = {};
|
|
|
|
setAuth(getSiteForm, auth);
|
|
|
|
|
|
|
|
let promises: Promise<any>[] = [];
|
|
|
|
|
|
|
|
let siteData = lemmyHttp.getSite(getSiteForm);
|
|
|
|
promises.push(siteData);
|
|
|
|
if (activeRoute.fetchInitialData) {
|
|
|
|
promises.push(...activeRoute.fetchInitialData(auth, req.path));
|
|
|
|
}
|
|
|
|
|
|
|
|
let resolver = await Promise.all(promises);
|
2020-09-07 15:32:07 +00:00
|
|
|
let site: GetSiteResponse = resolver[0];
|
|
|
|
let routeData = resolver.slice(1, resolver.length);
|
|
|
|
|
|
|
|
let acceptLang = req.headers['accept-language'].split(',')[0];
|
|
|
|
let lang = !!site.my_user
|
|
|
|
? site.my_user.lang == 'browser'
|
|
|
|
? acceptLang
|
|
|
|
: 'en'
|
|
|
|
: acceptLang;
|
2020-09-07 03:41:46 +00:00
|
|
|
|
|
|
|
let isoData: IsoData = {
|
|
|
|
path: req.path,
|
2020-09-07 15:32:07 +00:00
|
|
|
site,
|
|
|
|
routeData,
|
|
|
|
lang,
|
2020-09-07 03:41:46 +00:00
|
|
|
};
|
|
|
|
|
2020-08-23 04:04:58 +00:00
|
|
|
const wrapper = (
|
2020-09-07 03:41:46 +00:00
|
|
|
<StaticRouter location={req.url} context={isoData}>
|
|
|
|
<App site={isoData.site} />
|
2020-08-23 04:04:58 +00:00
|
|
|
</StaticRouter>
|
|
|
|
);
|
|
|
|
if (context.url) {
|
|
|
|
return res.redirect(context.url);
|
|
|
|
}
|
|
|
|
|
|
|
|
res.send(`
|
2020-09-06 16:15:25 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<script>window.isoData = ${serialize(isoData)}</script>
|
|
|
|
|
|
|
|
<!-- 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">
|
|
|
|
|
2020-09-10 02:38:57 +00:00
|
|
|
<!-- Web app manifest -->
|
|
|
|
<link rel="manifest" href="/assets/manifest.webmanifest">
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
<!-- Icons -->
|
|
|
|
<link rel="shortcut icon" type="image/svg+xml" href="/assets/favicon.svg" />
|
2020-09-10 02:38:57 +00:00
|
|
|
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png" />
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
<!-- Styles -->
|
2020-09-07 03:41:46 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/styles/styles.css" />
|
2020-09-06 16:15:25 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-09-09 20:33:40 +00:00
|
|
|
<noscript>
|
|
|
|
<nav class="navbar fixed-bottom navbar-light bg-light">
|
|
|
|
Javascript is disabled. Actions will not work.
|
|
|
|
</nav>
|
|
|
|
</noscript>
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
<div id='root'>${renderToString(wrapper)}</div>
|
2020-09-07 03:41:46 +00:00
|
|
|
<script src='/static/js/client.js'></script>
|
2020-09-06 16:15:25 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
2020-08-23 04:04:58 +00:00
|
|
|
`);
|
|
|
|
});
|
|
|
|
let Server = server.listen(port, () => {
|
|
|
|
console.log(`http://localhost:${port}`);
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to restart server by fuseBox
|
|
|
|
*/
|
|
|
|
export async function shutdown() {
|
|
|
|
Server.close();
|
|
|
|
Server = undefined;
|
|
|
|
}
|