2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Web Server
|
|
|
|
*/
|
|
|
|
|
2017-05-17 22:06:55 +02:00
|
|
|
import * as path from 'path';
|
2017-01-02 22:03:19 +01:00
|
|
|
import ms = require('ms');
|
2016-12-28 23:49:51 +01: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';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
|
|
|
const app = express();
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
|
|
|
|
app.use(bodyParser.urlencoded({ extended: true }));
|
2017-02-11 18:18:58 +01:00
|
|
|
app.use(bodyParser.json({
|
|
|
|
type: ['application/json', 'text/plain']
|
|
|
|
}));
|
2016-12-28 23:49:51 +01:00
|
|
|
app.use(compression());
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize requests
|
|
|
|
*/
|
|
|
|
app.use((req, res, next) => {
|
|
|
|
res.header('X-Frame-Options', 'DENY');
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2017-03-22 08:19:32 +01:00
|
|
|
* Static assets
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-03-22 08:19:32 +01:00
|
|
|
app.use(favicon(`${__dirname}/assets/favicon.ico`));
|
2017-04-14 13:45:37 +02:00
|
|
|
app.get('/apple-touch-icon.png', (req, res) => res.sendFile(`${__dirname}/assets/apple-touch-icon.png`));
|
2017-03-22 08:19:32 +01:00
|
|
|
app.use('/assets', express.static(`${__dirname}/assets`, {
|
2016-12-28 23:49:51 +01:00
|
|
|
maxAge: ms('7 days')
|
|
|
|
}));
|
|
|
|
|
2017-11-22 19:37:13 +01:00
|
|
|
/**
|
|
|
|
* ServiceWroker
|
|
|
|
*/
|
2017-11-23 04:15:04 +01:00
|
|
|
app.get(/^\/sw\.(.+?)\.js$/, (req, res) =>
|
|
|
|
res.sendFile(`${__dirname}/assets/sw.${req.params[0]}.js`));
|
2017-11-20 19:40:09 +01:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
2017-11-20 19:40:09 +01:00
|
|
|
* Manifest
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-11-23 04:15:04 +01:00
|
|
|
app.get('/manifest.json', (req, res) =>
|
|
|
|
res.sendFile(`${__dirname}/assets/manifest.json`));
|
2017-02-21 20:19:53 +01:00
|
|
|
|
2017-11-20 19:40:09 +01:00
|
|
|
/**
|
|
|
|
* Common API
|
|
|
|
*/
|
|
|
|
app.get(/\/api:url/, require('./service/url-preview'));
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Routing
|
|
|
|
*/
|
2017-05-17 22:06:55 +02:00
|
|
|
app.get('*', (req, res) => {
|
|
|
|
res.sendFile(path.resolve(`${__dirname}/app/base.html`), {
|
|
|
|
maxAge: ms('7 days')
|
|
|
|
});
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
module.exports = app;
|