Sharkey/src/web/server.ts

81 lines
1.6 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Web Server
*/
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';
const subdomain = require('subdomain');
import serveApp from './serve-app';
2017-01-17 02:13:32 +02:00
import config from '../conf';
2016-12-29 00:49:51 +02:00
/**
* 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('/manifest.json', (req, res) => res.sendFile(`${__dirname}/assets/manifest.json`));
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')
}));
/**
* Common API
*/
2017-04-14 14:45:37 +03:00
app.get(/\/api:url/, require('./service/url-preview'));
2016-12-29 00:49:51 +02:00
app.post(/\/api:rss/, require('./service/rss-proxy'));
2017-02-21 21:19:53 +02:00
/**
* Serve config
*/
app.get('/config.json', (req, res) => {
res.send({
recaptcha: {
siteKey: config.recaptcha.siteKey
}
});
});
2016-12-29 00:49:51 +02:00
/**
* Subdomain
*/
app.use(subdomain({
base: config.host,
prefix: '@'
}));
/**
* Routing
*/
2017-02-13 05:59:36 +02:00
app.use(require('./about')); // about docs
2016-12-29 00:49:51 +02:00
app.get('/@/auth/*', serveApp('auth')); // authorize form
2017-04-14 14:45:37 +03:00
app.get('/@/dev/*', serveApp('dev')); // developer center
app.get('*', serveApp('client')); // client
2016-12-29 00:49:51 +02:00
module.exports = app;