2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Core Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as http from 'http';
|
|
|
|
import * as https from 'https';
|
|
|
|
import * as express from 'express';
|
2017-01-19 01:00:14 -06:00
|
|
|
import * as morgan from 'morgan';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-03-31 22:24:29 -05:00
|
|
|
import activityPub from './activitypub';
|
2018-04-01 00:12:07 -05:00
|
|
|
import webFinger from './webfinger';
|
2017-11-13 04:58:29 -06:00
|
|
|
import log from './log-request';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from '../config';
|
2017-01-16 17:06:39 -06:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
|
|
|
const app = express();
|
|
|
|
app.disable('x-powered-by');
|
2017-02-13 18:01:25 -06:00
|
|
|
app.set('trust proxy', 'loopback');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-01-19 19:19:09 -06:00
|
|
|
app.use(morgan(process.env.NODE_ENV == 'production' ? 'combined' : 'dev', {
|
|
|
|
// create a write stream (in append mode)
|
|
|
|
stream: config.accesslog ? fs.createWriteStream(config.accesslog) : null
|
|
|
|
}));
|
2017-01-19 01:00:14 -06:00
|
|
|
|
2017-11-13 04:58:29 -06:00
|
|
|
app.use((req, res, next) => {
|
|
|
|
log(req);
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
|
2018-04-11 15:54:54 -05:00
|
|
|
/**
|
|
|
|
* HSTS
|
|
|
|
* 6month(15552000sec)
|
|
|
|
*/
|
|
|
|
if (config.url.startsWith('https')) {
|
|
|
|
app.use((req, res, next) => {
|
|
|
|
res.header('strict-transport-security', 'max-age=15552000; preload');
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-11-13 00:04:20 -06:00
|
|
|
// Drop request when without 'Host' header
|
2017-01-07 08:57:45 -06:00
|
|
|
app.use((req, res, next) => {
|
2017-01-18 01:31:43 -06:00
|
|
|
if (!req.headers['host']) {
|
2017-01-07 08:57:45 -06:00
|
|
|
res.sendStatus(400);
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-04-08 03:23:06 -05:00
|
|
|
// 互換性のため
|
|
|
|
app.post('/meta', (req, res) => {
|
|
|
|
res.header('Access-Control-Allow-Origin', '*');
|
|
|
|
res.json({
|
|
|
|
version: 'nighthike'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Register modules
|
|
|
|
*/
|
2018-03-29 06:34:39 -05:00
|
|
|
app.use('/api', require('./api'));
|
|
|
|
app.use('/files', require('./file'));
|
2018-03-31 22:24:29 -05:00
|
|
|
app.use(activityPub);
|
2018-04-01 00:12:07 -05:00
|
|
|
app.use(webFinger);
|
2018-03-29 06:34:39 -05:00
|
|
|
app.use(require('./web'));
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-03-28 11:20:40 -05:00
|
|
|
function createServer() {
|
2017-11-24 17:11:58 -06:00
|
|
|
if (config.https) {
|
|
|
|
const certs = {};
|
|
|
|
Object.keys(config.https).forEach(k => {
|
|
|
|
certs[k] = fs.readFileSync(config.https[k]);
|
|
|
|
});
|
|
|
|
return https.createServer(certs, app);
|
|
|
|
} else {
|
|
|
|
return http.createServer(app);
|
|
|
|
}
|
2018-03-28 11:20:40 -05:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-03-28 11:20:40 -05:00
|
|
|
export default () => new Promise(resolve => {
|
|
|
|
const server = createServer();
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-03-28 11:20:40 -05:00
|
|
|
/**
|
|
|
|
* Steaming
|
|
|
|
*/
|
|
|
|
require('./api/streaming')(server);
|
2017-01-16 16:51:27 -06:00
|
|
|
|
2018-03-28 11:20:40 -05:00
|
|
|
/**
|
|
|
|
* Server listen
|
|
|
|
*/
|
|
|
|
server.listen(config.port, resolve);
|
|
|
|
});
|