iceshrimp-legacy/src/server/index.ts

68 lines
1.3 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Core Server
*/
import * as fs from 'fs';
import * as http from 'http';
import * as https from 'https';
2018-04-12 17:51:55 +02:00
import * as Koa from 'koa';
import * as Router from 'koa-router';
import * as bodyParser from 'koa-bodyparser';
2016-12-28 23:49:51 +01: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';
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;
app.use(bodyParser);
2017-11-13 11:58:29 +01:00
2018-04-12 17:51:55 +02:00
// HSTS
// 6months (15552000sec)
if (config.url.startsWith('https')) {
2018-04-12 17:51:55 +02:00
app.use((ctx, next) => {
ctx.set('strict-transport-security', 'max-age=15552000; preload');
next();
});
}
2018-04-12 17:51:55 +02:00
// Init router
const router = new Router();
2018-04-12 17:51:55 +02: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 10:23:06 +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-03-28 18:20:40 +02:00
function createServer() {
2017-11-25 00:11:58 +01:00
if (config.https) {
const certs = {};
Object.keys(config.https).forEach(k => {
certs[k] = fs.readFileSync(config.https[k]);
});
2018-04-12 23:06:18 +02:00
return https.createServer(certs, app.callback);
2017-11-25 00:11:58 +01:00
} else {
2018-04-12 23:06:18 +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-03-28 18:20:40 +02:00
/**
* Steaming
*/
require('./api/streaming')(server);
2017-01-16 23:51:27 +01:00
2018-03-28 18:20:40 +02:00
/**
* Server listen
*/
server.listen(config.port, resolve);
});