Sharkey/src/web/server.ts

74 lines
1.5 KiB
TypeScript
Raw Normal View History

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