2016-06-18 21:53:18 +02:00
|
|
|
'use strict';
|
2016-10-26 10:43:11 +02:00
|
|
|
|
2016-11-30 23:41:57 +01:00
|
|
|
const { EventEmitter } = require('events');
|
|
|
|
|
2016-11-13 21:07:14 +01:00
|
|
|
const logger = require('./logger');
|
|
|
|
const migrator = require('../migrator');
|
2016-11-13 21:09:00 +01:00
|
|
|
const getApp = require('./app');
|
2016-06-16 17:27:13 +02:00
|
|
|
|
2016-11-30 23:41:57 +01:00
|
|
|
const { startMonitoring } = require('./metrics');
|
|
|
|
const { createStores } = require('./db');
|
|
|
|
const { createOptions } = require('./options');
|
2016-09-29 18:10:23 +02:00
|
|
|
|
2017-06-28 10:17:14 +02:00
|
|
|
function createApp(options) {
|
2016-06-16 17:27:13 +02:00
|
|
|
// Database dependecies (statefull)
|
2016-11-05 14:08:47 +01:00
|
|
|
const stores = createStores(options);
|
2016-11-30 23:41:57 +01:00
|
|
|
const eventBus = new EventEmitter();
|
2016-06-16 17:27:13 +02:00
|
|
|
|
2017-06-28 10:17:14 +02:00
|
|
|
const config = Object.assign(
|
|
|
|
{
|
|
|
|
stores,
|
|
|
|
eventBus,
|
|
|
|
},
|
|
|
|
options
|
|
|
|
);
|
2016-06-16 17:27:13 +02:00
|
|
|
|
2016-11-13 15:15:52 +01:00
|
|
|
const app = getApp(config);
|
2016-06-18 21:53:18 +02:00
|
|
|
const server = app.listen(app.get('port'), () => {
|
2016-09-29 18:10:23 +02:00
|
|
|
logger.info(`Unleash started on ${app.get('port')}`);
|
2016-06-16 17:27:13 +02:00
|
|
|
});
|
2016-11-30 23:41:57 +01:00
|
|
|
|
|
|
|
startMonitoring(options.serverMetrics, eventBus);
|
|
|
|
|
|
|
|
return { app, server, eventBus };
|
2016-09-29 18:10:23 +02:00
|
|
|
}
|
2016-06-16 17:27:13 +02:00
|
|
|
|
2017-06-28 10:17:14 +02:00
|
|
|
function start(opts) {
|
2016-11-30 23:41:57 +01:00
|
|
|
const options = createOptions(opts);
|
2016-09-29 18:10:23 +02:00
|
|
|
|
2016-12-03 13:45:22 +01:00
|
|
|
return migrator({ databaseUrl: options.databaseUrl })
|
2016-11-13 20:43:29 +01:00
|
|
|
.catch(err => logger.error('failed to migrate db', err))
|
2016-09-29 18:10:23 +02:00
|
|
|
.then(() => createApp(options))
|
2016-11-13 20:43:29 +01:00
|
|
|
.catch(err => logger.error('failed creating app', err));
|
2016-06-16 17:27:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2016-06-18 21:55:46 +02:00
|
|
|
start,
|
2016-06-16 17:27:13 +02:00
|
|
|
};
|