2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Core Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as http from 'http';
|
|
|
|
import * as https from 'https';
|
2017-01-16 18:33:38 -06:00
|
|
|
import * as cluster from 'cluster';
|
2016-12-28 16:49:51 -06:00
|
|
|
import * as express from 'express';
|
2017-01-19 01:00:14 -06:00
|
|
|
import * as morgan from 'morgan';
|
2017-04-04 19:58:29 -05:00
|
|
|
import Accesses from 'accesses';
|
2017-01-02 15:03:19 -06:00
|
|
|
import vhost = require('vhost');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-11-13 04:58:29 -06:00
|
|
|
import log from './log-request';
|
2017-01-16 17:19:34 -06:00
|
|
|
import config from './conf';
|
2017-01-16 17:06:39 -06:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
|
|
|
const app = express();
|
|
|
|
app.disable('x-powered-by');
|
2017-02-13 18:01:25 -06:00
|
|
|
app.set('trust proxy', 'loopback');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-01-19 01:00:14 -06:00
|
|
|
// Log
|
2017-04-04 19:58:29 -05:00
|
|
|
if (config.accesses && config.accesses.enable) {
|
|
|
|
const accesses = new Accesses({
|
|
|
|
appName: 'Misskey',
|
2017-05-24 02:29:00 -05:00
|
|
|
port: config.accesses.port
|
2017-04-04 19:58:29 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
app.use(accesses.express);
|
|
|
|
}
|
|
|
|
|
2017-01-19 19:19:09 -06:00
|
|
|
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 01:00:14 -06:00
|
|
|
|
2017-11-13 04:58:29 -06:00
|
|
|
app.use((req, res, next) => {
|
|
|
|
log(req);
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
|
2017-11-13 00:04:20 -06:00
|
|
|
// Drop request when without 'Host' header
|
2017-01-07 08:57:45 -06:00
|
|
|
app.use((req, res, next) => {
|
2017-01-18 01:31:43 -06:00
|
|
|
if (!req.headers['host']) {
|
2017-01-07 08:57:45 -06:00
|
|
|
res.sendStatus(400);
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Register modules
|
|
|
|
*/
|
2018-03-26 00:11:16 -05:00
|
|
|
app.use(vhost(`api.${config.hostname}`, require('./api/server')));
|
|
|
|
app.use(vhost(config.secondary_hostname, require('./himasaku/server')));
|
|
|
|
app.use(vhost(`file.${config.secondary_hostname}`, require('./file/server')));
|
2016-12-28 16:49:51 -06:00
|
|
|
app.use(require('./web/server'));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create server
|
|
|
|
*/
|
2017-11-24 17:11:58 -06: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-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Steaming
|
|
|
|
*/
|
|
|
|
require('./api/streaming')(server);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Server listen
|
|
|
|
*/
|
|
|
|
server.listen(config.port, () => {
|
2017-01-16 18:33:38 -06:00
|
|
|
if (cluster.isWorker) {
|
|
|
|
// Send a 'ready' message to parent process
|
|
|
|
process.send('ready');
|
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
2017-01-16 16:51:27 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export app for testing
|
|
|
|
*/
|
|
|
|
module.exports = app;
|