2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Core Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as http from 'http';
|
|
|
|
import * as https from 'https';
|
2018-04-13 00:51:55 +09:00
|
|
|
import * as Koa from 'koa';
|
|
|
|
import * as Router from 'koa-router';
|
|
|
|
import * as bodyParser from 'koa-bodyparser';
|
2018-04-13 06:17:14 +09:00
|
|
|
import * as mount from 'koa-mount';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-04-01 12:24:29 +09:00
|
|
|
import activityPub from './activitypub';
|
2018-04-01 14:12:07 +09:00
|
|
|
import webFinger from './webfinger';
|
2018-04-02 13:15:53 +09:00
|
|
|
import config from '../config';
|
2017-01-17 08:06:39 +09:00
|
|
|
|
2018-04-13 06:06:18 +09:00
|
|
|
// Init app
|
2018-04-13 00:51:55 +09:00
|
|
|
const app = new Koa();
|
|
|
|
app.proxy = true;
|
|
|
|
app.use(bodyParser);
|
2017-11-13 19:58:29 +09:00
|
|
|
|
2018-04-13 00:51:55 +09:00
|
|
|
// HSTS
|
|
|
|
// 6months (15552000sec)
|
2018-04-12 05:54:54 +09:00
|
|
|
if (config.url.startsWith('https')) {
|
2018-04-13 00:51:55 +09:00
|
|
|
app.use((ctx, next) => {
|
|
|
|
ctx.set('strict-transport-security', 'max-age=15552000; preload');
|
2018-04-12 05:54:54 +09:00
|
|
|
next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-13 06:17:14 +09:00
|
|
|
app.use(mount('/api', require('./api')));
|
|
|
|
app.use(mount('/files', require('./file')));
|
|
|
|
|
2018-04-13 00:51:55 +09:00
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
2017-01-07 23:57:45 +09:00
|
|
|
|
2018-04-13 00:51:55 +09:00
|
|
|
// Routing
|
|
|
|
router.use(activityPub.routes());
|
|
|
|
router.use(webFinger.routes());
|
2018-04-13 06:17:14 +09:00
|
|
|
|
|
|
|
app.use(mount(require('./web')));
|
2018-04-08 17:23:06 +09:00
|
|
|
|
2018-04-13 00:51:55 +09:00
|
|
|
// Register router
|
|
|
|
app.use(router.routes());
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-03-29 01:20:40 +09:00
|
|
|
function createServer() {
|
2017-11-25 08:11:58 +09:00
|
|
|
if (config.https) {
|
|
|
|
const certs = {};
|
|
|
|
Object.keys(config.https).forEach(k => {
|
|
|
|
certs[k] = fs.readFileSync(config.https[k]);
|
|
|
|
});
|
2018-04-13 06:06:18 +09:00
|
|
|
return https.createServer(certs, app.callback);
|
2017-11-25 08:11:58 +09:00
|
|
|
} else {
|
2018-04-13 06:06:18 +09:00
|
|
|
return http.createServer(app.callback);
|
2017-11-25 08:11:58 +09:00
|
|
|
}
|
2018-03-29 01:20:40 +09:00
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-03-29 01:20:40 +09:00
|
|
|
export default () => new Promise(resolve => {
|
|
|
|
const server = createServer();
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-03-29 01:20:40 +09:00
|
|
|
/**
|
|
|
|
* Steaming
|
|
|
|
*/
|
|
|
|
require('./api/streaming')(server);
|
2017-01-17 07:51:27 +09:00
|
|
|
|
2018-03-29 01:20:40 +09:00
|
|
|
/**
|
|
|
|
* Server listen
|
|
|
|
*/
|
|
|
|
server.listen(config.port, resolve);
|
|
|
|
});
|