mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 21:13:08 +02:00
68 lines
1.3 KiB
TypeScript
68 lines
1.3 KiB
TypeScript
/**
|
|
* Core Server
|
|
*/
|
|
|
|
import * as fs from 'fs';
|
|
import * as http from 'http';
|
|
import * as http2 from 'http2';
|
|
import * as Koa from 'koa';
|
|
import * as Router from 'koa-router';
|
|
import * as mount from 'koa-mount';
|
|
|
|
import activityPub from './activitypub';
|
|
import webFinger from './webfinger';
|
|
import config from '../config';
|
|
|
|
// Init app
|
|
const app = new Koa();
|
|
app.proxy = true;
|
|
|
|
// HSTS
|
|
// 6months (15552000sec)
|
|
if (config.url.startsWith('https')) {
|
|
app.use(async (ctx, next) => {
|
|
ctx.set('strict-transport-security', 'max-age=15552000; preload');
|
|
await next();
|
|
});
|
|
}
|
|
|
|
app.use(mount('/api', require('./api')));
|
|
app.use(mount('/files', require('./file')));
|
|
|
|
// Init router
|
|
const router = new Router();
|
|
|
|
// Routing
|
|
router.use(activityPub.routes());
|
|
router.use(webFinger.routes());
|
|
|
|
// Register router
|
|
app.use(router.routes());
|
|
|
|
app.use(mount(require('./web')));
|
|
|
|
function createServer() {
|
|
if (config.https) {
|
|
const certs = {};
|
|
Object.keys(config.https).forEach(k => {
|
|
certs[k] = fs.readFileSync(config.https[k]);
|
|
});
|
|
return http2.createSecureServer(certs, app.callback());
|
|
} else {
|
|
return http.createServer(app.callback());
|
|
}
|
|
}
|
|
|
|
export default () => new Promise(resolve => {
|
|
const server = createServer();
|
|
|
|
/**
|
|
* Steaming
|
|
*/
|
|
require('./api/streaming')(server);
|
|
|
|
/**
|
|
* Server listen
|
|
*/
|
|
server.listen(config.port, resolve);
|
|
});
|