2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Core Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
2018-04-13 07:07:42 +02:00
|
|
|
import * as http from 'http';
|
2018-05-24 15:21:10 +02:00
|
|
|
import * as http2 from 'http2';
|
2018-04-13 07:28:09 +02:00
|
|
|
import * as zlib from 'zlib';
|
2018-04-12 17:51:55 +02:00
|
|
|
import * as Koa from 'koa';
|
|
|
|
import * as Router from 'koa-router';
|
2018-04-12 23:17:14 +02:00
|
|
|
import * as mount from 'koa-mount';
|
2018-04-13 07:28:09 +02:00
|
|
|
import * as compress from 'koa-compress';
|
2018-04-19 11:03:46 +02:00
|
|
|
import * as logger from 'koa-logger';
|
2018-09-14 22:40:58 +02:00
|
|
|
const requestStats = require('request-stats');
|
2018-04-29 14:21:32 +02:00
|
|
|
//const slow = require('koa-slow');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-01 05:24:29 +02:00
|
|
|
import activityPub from './activitypub';
|
2018-04-01 07:12:07 +02:00
|
|
|
import webFinger from './webfinger';
|
2018-04-02 06:15:53 +02:00
|
|
|
import config from '../config';
|
2018-09-14 22:40:58 +02:00
|
|
|
import { updateNetworkStats } from '../services/update-chart';
|
2018-10-15 23:37:21 +02:00
|
|
|
import apiServer from './api';
|
2017-01-17 00:06:39 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Init app
|
2018-04-12 17:51:55 +02:00
|
|
|
const app = new Koa();
|
|
|
|
app.proxy = true;
|
2017-11-13 11:58:29 +01:00
|
|
|
|
2018-04-19 11:03:46 +02:00
|
|
|
if (process.env.NODE_ENV != 'production') {
|
|
|
|
// Logger
|
|
|
|
app.use(logger());
|
2018-04-26 04:46:42 +02:00
|
|
|
|
|
|
|
// Delay
|
2018-04-29 10:17:15 +02:00
|
|
|
//app.use(slow({
|
|
|
|
// delay: 1000
|
|
|
|
//}));
|
2018-04-19 11:03:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compress response
|
2018-04-13 07:28:09 +02:00
|
|
|
app.use(compress({
|
|
|
|
flush: zlib.constants.Z_SYNC_FLUSH
|
|
|
|
}));
|
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
// HSTS
|
|
|
|
// 6months (15552000sec)
|
2018-04-11 22:54:54 +02:00
|
|
|
if (config.url.startsWith('https')) {
|
2018-04-13 00:34:27 +02:00
|
|
|
app.use(async (ctx, next) => {
|
2018-04-12 17:51:55 +02:00
|
|
|
ctx.set('strict-transport-security', 'max-age=15552000; preload');
|
2018-04-13 00:34:27 +02:00
|
|
|
await next();
|
2018-04-11 22:54:54 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-10-15 23:37:21 +02:00
|
|
|
app.use(mount('/api', apiServer));
|
2018-04-12 23:17:14 +02:00
|
|
|
app.use(mount('/files', require('./file')));
|
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
2017-01-07 15:57:45 +01:00
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
// Routing
|
|
|
|
router.use(activityPub.routes());
|
|
|
|
router.use(webFinger.routes());
|
2018-04-12 23:17:14 +02:00
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
// Register router
|
|
|
|
app.use(router.routes());
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-13 00:34:27 +02:00
|
|
|
app.use(mount(require('./web')));
|
|
|
|
|
2018-03-28 18:20:40 +02:00
|
|
|
function createServer() {
|
2017-11-25 00:11:58 +01:00
|
|
|
if (config.https) {
|
2018-06-18 02:54:53 +02:00
|
|
|
const certs: any = {};
|
2017-11-25 00:11:58 +01:00
|
|
|
Object.keys(config.https).forEach(k => {
|
|
|
|
certs[k] = fs.readFileSync(config.https[k]);
|
|
|
|
});
|
2018-04-13 18:50:43 +02:00
|
|
|
certs['allowHTTP1'] = true;
|
2018-05-24 15:21:10 +02:00
|
|
|
return http2.createSecureServer(certs, app.callback());
|
2017-11-25 00:11:58 +01:00
|
|
|
} else {
|
2018-04-13 07:07:42 +02:00
|
|
|
return http.createServer(app.callback());
|
2017-11-25 00:11:58 +01:00
|
|
|
}
|
2018-03-28 18:20:40 +02:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-03-28 18:20:40 +02:00
|
|
|
export default () => new Promise(resolve => {
|
|
|
|
const server = createServer();
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-13 18:54:54 +02:00
|
|
|
// Init stream server
|
2018-03-28 18:20:40 +02:00
|
|
|
require('./api/streaming')(server);
|
2017-01-16 23:51:27 +01:00
|
|
|
|
2018-04-13 18:54:54 +02:00
|
|
|
// Listen
|
2018-03-28 18:20:40 +02:00
|
|
|
server.listen(config.port, resolve);
|
2018-09-14 22:40:58 +02:00
|
|
|
|
|
|
|
//#region Network stats
|
|
|
|
let queue: any[] = [];
|
|
|
|
|
|
|
|
requestStats(server, (stats: any) => {
|
|
|
|
if (stats.ok) {
|
|
|
|
queue.push(stats);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Bulk write
|
|
|
|
setInterval(() => {
|
|
|
|
if (queue.length == 0) return;
|
|
|
|
|
|
|
|
const requests = queue.length;
|
|
|
|
const time = queue.reduce((a, b) => a + b.time, 0);
|
|
|
|
const incomingBytes = queue.reduce((a, b) => a + b.req.bytes, 0);
|
|
|
|
const outgoingBytes = queue.reduce((a, b) => a + b.res.bytes, 0);
|
|
|
|
queue = [];
|
|
|
|
|
|
|
|
updateNetworkStats(requests, time, incomingBytes, outgoingBytes);
|
|
|
|
}, 5000);
|
|
|
|
//#endregion
|
2018-03-28 18:20:40 +02:00
|
|
|
});
|