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