misskey/src/web/server.ts

72 lines
1.3 KiB
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Web Server
*/
2017-05-17 20:06:55 +00:00
import * as path from 'path';
2017-01-02 21:03:19 +00:00
import ms = require('ms');
2016-12-28 22:49:51 +00: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';
2017-01-17 00:13:32 +00:00
import config from '../conf';
2016-12-28 22:49:51 +00: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-28 22:49:51 +00:00
app.use(compression());
/**
* Initialize requests
*/
app.use((req, res, next) => {
res.header('X-Frame-Options', 'DENY');
next();
});
/**
2017-03-22 07:19:32 +00:00
* Static assets
2016-12-28 22:49:51 +00:00
*/
2017-03-22 07:19:32 +00:00
app.use(favicon(`${__dirname}/assets/favicon.ico`));
2017-04-14 11:45:37 +00: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 07:19:32 +00:00
app.use('/assets', express.static(`${__dirname}/assets`, {
2016-12-28 22:49:51 +00:00
maxAge: ms('7 days')
}));
/**
* Common API
*/
2017-04-14 11:45:37 +00:00
app.get(/\/api:url/, require('./service/url-preview'));
2016-12-28 22:49:51 +00:00
2017-02-21 19:19:53 +00:00
/**
* Serve config
*/
app.get('/config.json', (req, res) => {
res.send({
recaptcha: {
siteKey: config.recaptcha.siteKey
}
});
});
2016-12-28 22:49:51 +00:00
/**
* Routing
*/
2017-05-17 20:06:55 +00:00
app.get('*', (req, res) => {
res.sendFile(path.resolve(`${__dirname}/app/base.html`), {
maxAge: ms('7 days')
});
});
2016-12-28 22:49:51 +00:00
module.exports = app;