2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Web Server
|
|
|
|
*/
|
|
|
|
|
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';
|
|
|
|
const subdomain = require('subdomain');
|
|
|
|
import serveApp from './serve-app';
|
|
|
|
|
2017-01-17 01:13:32 +01:00
|
|
|
import config from '../conf';
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Static resources
|
|
|
|
*/
|
|
|
|
app.use(favicon(`${__dirname}/resources/favicon.ico`));
|
2017-02-08 21:23:01 +01:00
|
|
|
app.get('/manifest.json', (req, res) => res.sendFile(__dirname + '/resources/manifest.json'));
|
|
|
|
app.get('/apple-touch-icon.png', (req, res) => res.sendFile(__dirname + '/resources/apple-touch-icon.png'));
|
2017-02-21 19:27:38 +01:00
|
|
|
app.use('/resources', express.static(`${__dirname}/resources`, {
|
2016-12-28 23:49:51 +01:00
|
|
|
maxAge: ms('7 days')
|
|
|
|
}));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Common API
|
|
|
|
*/
|
|
|
|
app.get(/\/api:url/, require('./service/url-preview'));
|
|
|
|
app.post(/\/api:rss/, require('./service/rss-proxy'));
|
|
|
|
|
2017-02-21 20:19:53 +01:00
|
|
|
/**
|
|
|
|
* Serve config
|
|
|
|
*/
|
|
|
|
app.get('/config.json', (req, res) => {
|
|
|
|
res.send({
|
|
|
|
recaptcha: {
|
|
|
|
siteKey: config.recaptcha.siteKey
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Subdomain
|
|
|
|
*/
|
|
|
|
app.use(subdomain({
|
|
|
|
base: config.host,
|
|
|
|
prefix: '@'
|
|
|
|
}));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Routing
|
|
|
|
*/
|
2017-02-13 04:59:36 +01:00
|
|
|
app.use(require('./about')); // about docs
|
2016-12-28 23:49:51 +01:00
|
|
|
app.get('/@/auth/*', serveApp('auth')); // authorize form
|
|
|
|
app.get('/@/dev/*', serveApp('dev')); // developer center
|
|
|
|
app.get('*', serveApp('client')); // client
|
|
|
|
|
|
|
|
module.exports = app;
|