-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.js
337 lines (332 loc) · 11.7 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#!/usr/bin/env node
// lib dependencies
var argv = require('minimist')(process.argv.slice(2));
const express = require('express');
// load config from dot files
require('dotenv').config()
const cookieParser = require('cookie-parser');
const helmet = require('helmet');
const app = express();
const mime = require('mime');
const path = require('path');
const fs = require("fs-extra");
const server = require('http').Server(app);
let liveReloadServer;
// HAXcms core settings
process.env.haxcms_middleware = "node-express";
const { HAXCMS, systemStructureContext } = require('./lib/HAXCMS.js');
// flag in local development that disables security
// this way you launch from local and don't need a U/P relationship
if (process.env.HAXCMS_DISABLE_JWT_CHECKS || argv._.includes('HAXCMS_DISABLE_JWT_CHECKS')) {
HAXCMS.HAXCMS_DISABLE_JWT_CHECKS = true;
}
// routes with all requires
const { RoutesMap, OpenRoutes } = require('./lib/RoutesMap.js');
// app settings
const multer = require('multer');
const { crossOriginOpenerPolicy } = require('helmet');
const upload = multer({ dest: path.join(HAXCMS.configDirectory, 'tmp/') })
let publicDir = path.join(__dirname, '/public');
// if in development, live reload
if (process.env.NODE_ENV === "development") {
const livereload = require("livereload");
liveReloadServer = livereload.createServer({
delay: 100
});
const connectLiveReload = require("connect-livereload");
liveReloadServer.watch(__dirname);
liveReloadServer.server.once("connection", () => {
setTimeout(() => {
liveReloadServer.refresh("/");
}, 100);
});
app.use(connectLiveReload());
}
app.use(express.urlencoded({limit: '50mb', extended: false, parameterLimit: 50000 }));
app.use(helmet({
contentSecurityPolicy: false,
crossOriginResourcePolicy: false,
crossOriginEmbedderPolicy: 'require-corp',
crossOriginOpenerPolicy: 'same-origin',
referrerPolicy: {
policy: ["origin", "unsafe-url"],
},
}));
app.use(cookieParser());
//pre-flight requests
app.options('*', function(req, res, next) {
res.send(200);
});
// attempt to establish context of site vs multi-site environment
const port = process.env.PORT || 3000;
systemStructureContext().then((site) => {
// see if we have a single site context or if we need routes for multisite
if (site) {
// we have a site context, need paths to resolve to cwd instead of subsite path
// in this configuration there is no overworld / 8-bit game to make new sites
// this assumes a site has already been made or is being navigated to to work on
// works great w/ CLI in stand alone mode for local developer
publicDir = site.siteDirectory;
app.use(express.static(publicDir));
app.use('/', (req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', `http://localhost:${port}`);
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With, Content-Type, Accept');
res.setHeader('Content-Type', 'application/json');
if (req.url.includes('/system/api/')) {
next()
}
// previous will catch as json, undo that
else if (
!req.url.includes('/custom/build/') &&
(
req.url.includes('/build/') ||
req.url.includes('wc-registry.json') ||
req.url.includes('build.js') ||
req.url.includes('build-haxcms.js') ||
req.url.includes('VERSION.txt')
)
) {
if (mime.getType(req.url.split('?')[0])) {
res.setHeader('Content-Type', mime.getType(req.url));
}
let cleanFilePath = req.url
.replace(/\/(.*?)\/build\//g, "build/")
.replace(/\/(.*?)\/wc-registry.json/g, "wc-registry.json")
.replace(/\/(.*?)\/build.js/g, "build.js")
.replace(/\/(.*?)\/build-haxcms.js/g, "build-haxcms.js")
.replace(/\/(.*?)\/VERSION.txt/g, "VERSION.txt");
res.sendFile(cleanFilePath,
{
root: path.join(__dirname, '/public')
});
}
else if (
req.url.includes('custom/build') ||
req.url.includes('/theme/') ||
req.url.includes('/assets/') ||
req.url.includes('/manifest.json') ||
req.url.includes('/files/') ||
req.url.includes('/pages/') ||
req.url.includes('/site.json')
) {
if (mime.getType(req.url.split('?')[0])) {
res.setHeader('Content-Type', mime.getType(req.url));
}
else {
res.setHeader('Content-Type', 'text/html');
}
res.sendFile(req.url.split('?')[0],
{
root: publicDir
});
}
else {
// all page calls just go to the index and the front end will render them
if (mime.getType(req.url.split('?')[0])) {
res.setHeader('Content-Type', mime.getType(req.url));
}
else {
res.setHeader('Content-Type', 'text/html');
}
// send file for the index even tho route says it's a path not on our file system
// this way internal routing picks up and loads the correct content while
// at the same time express has delivered us SOMETHING as the path in the request
// url doesn't actually exist
res.sendFile(`index.html`,
{
root: publicDir
});
}
});
}
else {
app.use(express.static(publicDir));
app.use('/', (req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', `http://localhost:${port}`);
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With, Content-Type, Accept');
res.setHeader('Content-Type', 'application/json');
// dynamic step routes in HAXcms site list UI
if (!req.url.startsWith('/createSite-step-') && req.url !== "/home") {
next();
}
else {
if (mime.getType(req.url)) {
res.setHeader('Content-Type', mime.getType(req.url));
}
else {
res.setHeader('Content-Type', 'text/html');
}
res.sendFile(req.url.replace(/\/createSite-step-(.*)/, "/").replace(/\/home/, "/"),
{
root: publicDir
});
}
});
// sites need rewriting to work with PWA routes without failing file location
// similar to htaccess
app.use(`/${HAXCMS.sitesDirectory}/`,(req, res, next) => {
if (req.url.includes('/system/api/')) {
next()
}
// previous will catch as json, undo that
else if (
!req.url.includes('/custom/build/') &&
(
req.url.includes('/build/') ||
req.url.includes('wc-registry.json') ||
req.url.includes('build.js') ||
req.url.includes('build-haxcms.js') ||
req.url.includes('VERSION.txt')
)
) {
if (mime.getType(req.url.split('?')[0])) {
res.setHeader('Content-Type', mime.getType(req.url));
}
let cleanFilePath = req.url
.replace(/\/(.*?)\/build\//g, "build/")
.replace(/\/(.*?)\/wc-registry.json/g, "wc-registry.json")
.replace(/\/(.*?)\/build.js/g, "build.js")
.replace(/\/(.*?)\/build-haxcms.js/g, "build-haxcms.js")
.replace(/\/(.*?)\/VERSION.txt/g, "VERSION.txt");
res.sendFile(cleanFilePath,
{
root: publicDir
});
}
else if (
req.url.includes('custom/build') ||
req.url.includes('/theme/') ||
req.url.includes('/assets/') ||
req.url.includes('/manifest.json') ||
req.url.includes('/files/') ||
req.url.includes('/pages/') ||
req.url.includes('/site.json')
) {
if (mime.getType(req.url.split('?')[0])) {
res.setHeader('Content-Type', mime.getType(req.url));
}
else {
res.setHeader('Content-Type', 'text/html');
}
res.sendFile(req.url.split('?')[0],
{
root: process.cwd() + `/${HAXCMS.sitesDirectory}`
});
}
else {
if (mime.getType(req.url.split('?')[0])) {
res.setHeader('Content-Type', mime.getType(req.url));
}
else {
res.setHeader('Content-Type', 'text/html');
}
// send file for the index even tho route says it's a path not on our file system
// this way internal routing picks up and loads the correct content while
// at the same time express has delivered us SOMETHING as the path in the request
// url doesn't actually exist
res.sendFile(req.url.replace(/\/(.*?)\/(.*)/, `/${HAXCMS.sitesDirectory}/$1/index.html`),
{
root: process.cwd()
});
}
});
// published directory route if it exists
app.use(`/${HAXCMS.publishedDirectory}/`,(req, res, next) => {
if (mime.getType(req.url)) {
res.setHeader('Content-Type', mime.getType(req.url));
}
else {
res.setHeader('Content-Type', 'text/html');
}
res.sendFile(req.url,
{
root: process.cwd() + `/${HAXCMS.publishedDirectory}`
});
});
}
// loop through methods and apply the route to the file to deliver it
for (var method in RoutesMap) {
for (var route in RoutesMap[method]) {
let extra = express.json({
type: "*/*",
limit: '50mb'
});
if (route === "saveFile") {
extra = upload.single('file-upload');
}
app[method](`${HAXCMS.basePath}${HAXCMS.systemRequestBase}${route}`, extra ,(req, res, next) => {
const op = req.route.path.replace(`${HAXCMS.basePath}${HAXCMS.systemRequestBase}`, '');
const rMethod = req.method.toLowerCase();
if (OpenRoutes.includes(op) || HAXCMS.validateJWT(req, res)) {
// call the method
RoutesMap[rMethod][op](req, res, next);
}
else {
res.sendStatus(403);
}
});
app[method](`/${HAXCMS.sitesDirectory}/*${HAXCMS.basePath}${HAXCMS.systemRequestBase}${route}`, extra ,(req, res, next) => {
const op = req.route.path.replace(`/${HAXCMS.sitesDirectory}/*${HAXCMS.basePath}${HAXCMS.systemRequestBase}`, '');
const rMethod = req.method.toLowerCase();
if (OpenRoutes.includes(op) || HAXCMS.validateJWT(req, res)) {
// call the method
RoutesMap[rMethod][op](req, res, next);
}
else {
res.sendStatus(403);
}
});
}
}
// can't do this for a site context
if (!site) {
// catch anything called on homepage that doens't match and ensure it still goes through so that it 404s correctly
app.get('*', function(req, res, next) {
if (
req.url !== '/' &&
!req.url.startsWith('/build') &&
!req.url.startsWith('/site.json') &&
!req.url.startsWith('/system') &&
!req.url.startsWith('/_sites') &&
!req.url.startsWith('/assets') &&
!req.url.startsWith('/wc-registry.json') &&
!req.url.startsWith('/favicon.ico') &&
!req.url.startsWith('/manifest.json') &&
!req.url.startsWith('/VERSION.txt')
) {
res.sendFile('/',
{
root: `${__dirname}/public/`
});
}
else {
next();
}
});
}
});
server.listen(port, async (err) => {
if (err) {
throw err;
}
/* eslint-disable no-console */
console.log(`open: http://localhost:${port}`);
});
function handleServerError(e) {
if (e.syscall !== "listen") throw e;
switch (e.code) {
case "EACCES":
console.error(`${port} requires elevated privileges`);
process.exit(1);
break;
case "EADDRINUSE":
console.error(`${port} is already in use`);
process.exit(1);
break;
default:
throw error;
}
}
server.on("error", handleServerError);