misskey/src/server/index.ts

156 lines
3.3 KiB
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Core Server
*/
import * as fs from 'fs';
import * as http from 'http';
2018-05-24 13:21:10 +00:00
import * as http2 from 'http2';
import * as https from 'https';
2018-04-13 05:28:09 +00:00
import * as zlib from 'zlib';
2018-04-12 15:51:55 +00:00
import * as Koa from 'koa';
import * as Router from 'koa-router';
2018-04-12 21:17:14 +00:00
import * as mount from 'koa-mount';
2018-04-13 05:28:09 +00:00
import * as compress from 'koa-compress';
2019-02-02 17:01:06 +00:00
import * as koaLogger from 'koa-logger';
import * as requestStats from 'request-stats';
2019-02-04 01:03:49 +00:00
import * as slow from 'koa-slow';
2016-12-28 22:49:51 +00:00
import activityPub from './activitypub';
import nodeinfo from './nodeinfo';
import wellKnown from './well-known';
2018-04-02 04:15:53 +00:00
import config from '../config';
import networkChart from '../services/chart/network';
2018-10-15 21:37:21 +00:00
import apiServer from './api';
2018-11-09 02:02:23 +00:00
import { sum } from '../prelude/array';
2018-11-29 07:23:45 +00:00
import User from '../models/user';
2019-02-02 17:01:06 +00:00
import Logger from '../misc/logger';
2019-02-04 01:03:49 +00:00
import { program } from '../argv';
2019-02-02 17:01:06 +00:00
export const serverLogger = new Logger('server', 'gray');
2017-01-16 23:06:39 +00:00
2018-04-12 21:06:18 +00:00
// Init app
2018-04-12 15:51:55 +00:00
const app = new Koa();
app.proxy = true;
2017-11-13 10:58:29 +00:00
if (!['production', 'test'].includes(process.env.NODE_ENV)) {
2018-04-19 09:03:46 +00:00
// Logger
2019-02-02 17:01:06 +00:00
app.use(koaLogger(str => {
serverLogger.info(str);
2019-02-02 17:01:06 +00:00
}));
2018-04-26 02:46:42 +00:00
// Delay
2019-02-04 01:03:49 +00:00
if (program.slow) {
app.use(slow({
delay: 3000
}));
}
2018-04-19 09:03:46 +00:00
}
// Compress response
2018-04-13 05:28:09 +00:00
app.use(compress({
flush: zlib.constants.Z_SYNC_FLUSH
}));
2018-04-12 15:51:55 +00:00
// HSTS
// 6months (15552000sec)
if (config.url.startsWith('https') && !config.disableHsts) {
2018-04-12 22:34:27 +00:00
app.use(async (ctx, next) => {
2018-04-12 15:51:55 +00:00
ctx.set('strict-transport-security', 'max-age=15552000; preload');
2018-04-12 22:34:27 +00:00
await next();
});
}
2018-10-15 21:37:21 +00:00
app.use(mount('/api', apiServer));
2018-04-12 21:17:14 +00:00
app.use(mount('/files', require('./file')));
app.use(mount('/proxy', require('./proxy')));
2018-04-12 21:17:14 +00:00
2018-04-12 15:51:55 +00:00
// Init router
const router = new Router();
2018-04-12 15:51:55 +00:00
// Routing
router.use(activityPub.routes());
router.use(nodeinfo.routes());
router.use(wellKnown.routes());
2018-04-12 21:17:14 +00:00
2018-11-29 07:23:45 +00:00
router.get('/verify-email/:code', async ctx => {
const user = await User.findOne({ emailVerifyCode: ctx.params.code });
if (user != null) {
ctx.body = 'Verify succeeded!';
ctx.status = 200;
User.update({ _id: user._id }, {
$set: {
emailVerified: true,
emailVerifyCode: null
}
});
} else {
ctx.status = 404;
}
});
2018-04-12 15:51:55 +00:00
// Register router
app.use(router.routes());
2016-12-28 22:49:51 +00:00
2018-04-12 22:34:27 +00:00
app.use(mount(require('./web')));
2018-03-28 16:20:40 +00:00
function createServer() {
if (config.https) {
const certs: any = {};
for (const k of Object.keys(config.https)) {
certs[k] = fs.readFileSync(config.https[k]);
}
certs['allowHTTP1'] = true;
return http2.createSecureServer(certs, app.callback()) as https.Server;
2017-11-24 23:11:58 +00:00
} else {
return http.createServer(app.callback());
2017-11-24 23:11:58 +00:00
}
2018-03-28 16:20:40 +00:00
}
2016-12-28 22:49:51 +00:00
2019-01-23 04:35:22 +00:00
// For testing
export const startServer = () => {
const server = createServer();
// Init stream server
require('./api/streaming')(server);
// Listen
server.listen(config.port);
return server;
};
2018-03-28 16:20:40 +00:00
export default () => new Promise(resolve => {
const server = createServer();
2016-12-28 22:49:51 +00:00
2018-04-13 16:54:54 +00:00
// Init stream server
2018-03-28 16:20:40 +00:00
require('./api/streaming')(server);
2017-01-16 22:51:27 +00:00
2018-04-13 16:54:54 +00:00
// Listen
2018-03-28 16:20:40 +00:00
server.listen(config.port, resolve);
2018-09-14 20:40:58 +00:00
//#region Network stats
let queue: any[] = [];
requestStats(server, (stats: any) => {
if (stats.ok) {
queue.push(stats);
}
});
// Bulk write
setInterval(() => {
if (queue.length == 0) return;
const requests = queue.length;
2018-11-09 02:02:23 +00:00
const time = sum(queue.map(x => x.time));
const incomingBytes = sum(queue.map(x => x.req.byets));
const outgoingBytes = sum(queue.map(x => x.res.byets));
2018-09-14 20:40:58 +00:00
queue = [];
2018-10-22 20:36:35 +00:00
networkChart.update(requests, time, incomingBytes, outgoingBytes);
2018-09-14 20:40:58 +00:00
}, 5000);
//#endregion
2018-03-28 16:20:40 +00:00
});