2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Core Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as http from 'http';
|
|
|
|
import * as https from 'https';
|
2017-01-17 09:33:38 +09:00
|
|
|
import * as cluster from 'cluster';
|
2016-12-29 07:49:51 +09:00
|
|
|
import * as express from 'express';
|
2017-01-19 16:00:14 +09:00
|
|
|
import * as morgan from 'morgan';
|
2017-01-03 06:03:19 +09:00
|
|
|
import vhost = require('vhost');
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-01-17 08:19:34 +09:00
|
|
|
import config from './conf';
|
2017-01-17 08:06:39 +09:00
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
|
|
|
const app = express();
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
|
2017-01-19 16:00:14 +09:00
|
|
|
// Log
|
2017-01-20 10:19:09 +09: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 16:00:14 +09:00
|
|
|
|
2017-01-14 10:56:24 +09:00
|
|
|
// Drop request that without 'Host' header
|
2017-01-07 23:57:45 +09:00
|
|
|
app.use((req, res, next) => {
|
2017-01-18 16:31:43 +09:00
|
|
|
if (!req.headers['host']) {
|
2017-01-07 23:57:45 +09:00
|
|
|
res.sendStatus(400);
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Register modules
|
|
|
|
*/
|
|
|
|
app.use(vhost(`api.${config.host}`, require('./api/server')));
|
|
|
|
app.use(vhost(config.secondary_host, require('./himasaku/server')));
|
|
|
|
app.use(vhost(`file.${config.secondary_host}`, require('./file/server')));
|
|
|
|
app.use(require('./web/server'));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create server
|
|
|
|
*/
|
|
|
|
const server = config.https.enable ?
|
|
|
|
https.createServer({
|
|
|
|
key: fs.readFileSync(config.https.key),
|
|
|
|
cert: fs.readFileSync(config.https.cert),
|
|
|
|
ca: fs.readFileSync(config.https.ca)
|
|
|
|
}, app) :
|
|
|
|
http.createServer(app);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Steaming
|
|
|
|
*/
|
|
|
|
require('./api/streaming')(server);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Server listen
|
|
|
|
*/
|
|
|
|
server.listen(config.port, () => {
|
2017-01-17 09:33:38 +09:00
|
|
|
if (cluster.isWorker) {
|
|
|
|
// Send a 'ready' message to parent process
|
|
|
|
process.send('ready');
|
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|
2017-01-17 07:51:27 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export app for testing
|
|
|
|
*/
|
|
|
|
module.exports = app;
|