2016-12-28 15:49:51 -07:00
|
|
|
/**
|
2018-03-29 05:32:18 -06:00
|
|
|
* Web Client Server
|
2016-12-28 15:49:51 -07:00
|
|
|
*/
|
|
|
|
|
2017-05-17 14:06:55 -06:00
|
|
|
import * as path from 'path';
|
2017-01-02 14:03:19 -07:00
|
|
|
import ms = require('ms');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// express modules
|
|
|
|
import * as express from 'express';
|
|
|
|
import * as bodyParser from 'body-parser';
|
|
|
|
import * as favicon from 'serve-favicon';
|
|
|
|
import * as compression from 'compression';
|
|
|
|
|
2018-03-29 05:32:18 -06:00
|
|
|
const client = `${__dirname}/../../client/`;
|
|
|
|
|
|
|
|
// Create server
|
2016-12-28 15:49:51 -07:00
|
|
|
const app = express();
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
|
2018-03-29 05:50:45 -06:00
|
|
|
app.use('/docs', require('./docs'));
|
2017-12-16 09:41:22 -07:00
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
app.use(bodyParser.urlencoded({ extended: true }));
|
2017-02-11 10:18:58 -07:00
|
|
|
app.use(bodyParser.json({
|
|
|
|
type: ['application/json', 'text/plain']
|
|
|
|
}));
|
2016-12-28 15:49:51 -07:00
|
|
|
app.use(compression());
|
|
|
|
|
|
|
|
app.use((req, res, next) => {
|
|
|
|
res.header('X-Frame-Options', 'DENY');
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
|
2018-03-29 05:32:18 -06:00
|
|
|
//#region static assets
|
|
|
|
|
|
|
|
app.use(favicon(`${client}/assets/favicon.ico`));
|
|
|
|
app.get('/apple-touch-icon.png', (req, res) => res.sendFile(`${client}/assets/apple-touch-icon.png`));
|
|
|
|
app.use('/assets', express.static(`${client}/assets`, {
|
2016-12-28 15:49:51 -07:00
|
|
|
maxAge: ms('7 days')
|
|
|
|
}));
|
2018-03-29 05:32:18 -06:00
|
|
|
app.use('/assets/*.js', (req, res) => res.sendFile(`${client}/assets/404.js`));
|
2017-11-27 22:07:00 -07:00
|
|
|
app.use('/assets', (req, res) => {
|
|
|
|
res.sendStatus(404);
|
|
|
|
});
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-03-29 05:32:18 -06:00
|
|
|
// ServiceWroker
|
2017-11-22 20:15:04 -07:00
|
|
|
app.get(/^\/sw\.(.+?)\.js$/, (req, res) =>
|
2018-03-29 05:32:18 -06:00
|
|
|
res.sendFile(`${client}/assets/sw.${req.params[0]}.js`));
|
2017-11-20 11:40:09 -07:00
|
|
|
|
2018-03-29 05:32:18 -06:00
|
|
|
// Manifest
|
2017-11-22 20:15:04 -07:00
|
|
|
app.get('/manifest.json', (req, res) =>
|
2018-03-29 05:32:18 -06:00
|
|
|
res.sendFile(`${client}/assets/manifest.json`));
|
2017-02-21 12:19:53 -07:00
|
|
|
|
2018-03-29 05:32:18 -06:00
|
|
|
//#endregion
|
2017-11-20 11:40:09 -07:00
|
|
|
|
2018-03-29 05:32:18 -06:00
|
|
|
app.get(/\/api:url/, require('./url-preview'));
|
|
|
|
|
|
|
|
// Render base html for all requests
|
2017-05-17 14:06:55 -06:00
|
|
|
app.get('*', (req, res) => {
|
2018-03-29 05:32:18 -06:00
|
|
|
res.sendFile(path.resolve(`${client}/app/base.html`), {
|
2017-05-17 14:06:55 -06:00
|
|
|
maxAge: ms('7 days')
|
|
|
|
});
|
|
|
|
});
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
module.exports = app;
|