Sharkey/src/server.ts

102 lines
2 KiB
TypeScript
Raw Normal View History

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';
2017-01-17 02:33:38 +02:00
import * as cluster from 'cluster';
2016-12-29 00:49:51 +02:00
import * as express from 'express';
2017-01-19 09:00:14 +02:00
import * as morgan from 'morgan';
2017-04-05 03:58:29 +03:00
import Accesses from 'accesses';
2017-01-02 23:03:19 +02:00
import vhost = require('vhost');
2016-12-29 00:49:51 +02:00
2017-11-13 12:58:29 +02:00
import log from './log-request';
2017-01-17 01:19:34 +02:00
import config from './conf';
2017-01-17 01:06:39 +02:00
function extractHostname(host) {
const index = host.indexOf(':');
return index < 0 ? host : host.substr(0, index);
}
2016-12-29 00:49:51 +02:00
/**
* Init app
*/
const app = express();
app.disable('x-powered-by');
2017-02-14 02:01:25 +02:00
app.set('trust proxy', 'loopback');
2016-12-29 00:49:51 +02:00
2017-01-19 09:00:14 +02:00
// Log
2017-04-05 03:58:29 +03:00
if (config.accesses && config.accesses.enable) {
const accesses = new Accesses({
appName: 'Misskey',
2017-05-24 10:29:00 +03:00
port: config.accesses.port
2017-04-05 03:58:29 +03:00
});
app.use(accesses.express);
}
app.use(morgan(process.env.NODE_ENV == 'production' ? 'combined' : 'dev', {
// create a write stream (in append mode)
stream: config.accesslog ? fs.createWriteStream(config.accesslog) : null
}));
2017-01-19 09:00:14 +02:00
2017-11-13 12:58:29 +02:00
app.use((req, res, next) => {
log(req);
next();
});
2017-11-13 08:04:20 +02:00
// Drop request when without 'Host' header
app.use((req, res, next) => {
2017-01-18 09:31:43 +02:00
if (!req.headers['host']) {
res.sendStatus(400);
} else {
next();
}
});
2016-12-29 00:49:51 +02:00
/**
* Register modules
*/
const hostname = extractHostname(config.host);
const secondaryHostname = extractHostname(config.secondary_host);
app.use(vhost(`api.${hostname}`, require('./api/server')));
app.use(vhost(secondaryHostname, require('./himasaku/server')));
app.use(vhost(`file.${secondaryHostname}`, require('./file/server')));
2016-12-29 00:49:51 +02:00
app.use(require('./web/server'));
/**
* Create server
*/
2017-11-25 01:11:58 +02:00
const server = (() => {
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);
}
})();
2016-12-29 00:49:51 +02:00
/**
* Steaming
*/
require('./api/streaming')(server);
/**
* Server listen
*/
server.listen(config.port, () => {
2017-01-17 02:33:38 +02:00
if (cluster.isWorker) {
// Send a 'ready' message to parent process
process.send('ready');
}
2016-12-29 00:49:51 +02:00
});
2017-01-17 00:51:27 +02:00
/**
* Export app for testing
*/
module.exports = app;