2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Core Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
2018-04-13 00:07:42 -05:00
|
|
|
import * as http from 'http';
|
2018-04-12 17:34:27 -05:00
|
|
|
import * as http2 from 'http2';
|
2018-04-13 00:28:09 -05:00
|
|
|
import * as zlib from 'zlib';
|
2018-04-12 10:51:55 -05:00
|
|
|
import * as Koa from 'koa';
|
|
|
|
import * as Router from 'koa-router';
|
2018-04-12 16:17:14 -05:00
|
|
|
import * as mount from 'koa-mount';
|
2018-04-13 00:28:09 -05:00
|
|
|
import * as compress from 'koa-compress';
|
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';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from '../config';
|
2017-01-16 17:06:39 -06:00
|
|
|
|
2018-04-12 16:06:18 -05:00
|
|
|
// Init app
|
2018-04-12 10:51:55 -05:00
|
|
|
const app = new Koa();
|
|
|
|
app.proxy = true;
|
2017-11-13 04:58:29 -06:00
|
|
|
|
2018-04-13 00:28:09 -05:00
|
|
|
app.use(compress({
|
|
|
|
flush: zlib.constants.Z_SYNC_FLUSH
|
|
|
|
}));
|
|
|
|
|
2018-04-12 10:51:55 -05:00
|
|
|
// HSTS
|
|
|
|
// 6months (15552000sec)
|
2018-04-11 15:54:54 -05:00
|
|
|
if (config.url.startsWith('https')) {
|
2018-04-12 17:34:27 -05:00
|
|
|
app.use(async (ctx, next) => {
|
2018-04-12 10:51:55 -05:00
|
|
|
ctx.set('strict-transport-security', 'max-age=15552000; preload');
|
2018-04-12 17:34:27 -05:00
|
|
|
await next();
|
2018-04-11 15:54:54 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-12 16:17:14 -05:00
|
|
|
app.use(mount('/api', require('./api')));
|
|
|
|
app.use(mount('/files', require('./file')));
|
|
|
|
|
2018-04-12 10:51:55 -05:00
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
2017-01-07 08:57:45 -06:00
|
|
|
|
2018-04-12 10:51:55 -05:00
|
|
|
// Routing
|
|
|
|
router.use(activityPub.routes());
|
|
|
|
router.use(webFinger.routes());
|
2018-04-12 16:17:14 -05:00
|
|
|
|
2018-04-12 10:51:55 -05:00
|
|
|
// Register router
|
|
|
|
app.use(router.routes());
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-12 17:34:27 -05:00
|
|
|
app.use(mount(require('./web')));
|
|
|
|
|
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]);
|
|
|
|
});
|
2018-04-13 09:04:22 -05:00
|
|
|
certs['allowHTTP1'] = true
|
2018-04-12 17:34:27 -05:00
|
|
|
return http2.createSecureServer(certs, app.callback());
|
2017-11-24 17:11:58 -06:00
|
|
|
} else {
|
2018-04-13 00:07:42 -05:00
|
|
|
return http.createServer(app.callback());
|
2017-11-24 17:11:58 -06:00
|
|
|
}
|
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);
|
|
|
|
});
|