2014-06-02 16:47:46 +00:00
|
|
|
var assert = require('assert');
|
|
|
|
var _ = require('underscore');
|
2014-06-16 13:23:32 +00:00
|
|
|
var semver = require('semver');
|
2014-06-02 16:47:46 +00:00
|
|
|
var debug = require('debug')('loopback:boot:executor');
|
2014-10-09 19:18:36 +00:00
|
|
|
var async = require('async');
|
2014-06-02 16:47:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute bootstrap instructions gathered by `boot.compile`.
|
|
|
|
*
|
2014-10-30 20:34:59 +00:00
|
|
|
* @param {Object} app The loopback app to boot.
|
2014-06-02 16:47:46 +00:00
|
|
|
* @options {Object} instructions Boot instructions.
|
2014-10-30 20:34:59 +00:00
|
|
|
* @param {Function} [callback] Callback function.
|
2014-06-02 16:47:46 +00:00
|
|
|
*
|
|
|
|
* @header boot.execute(instructions)
|
|
|
|
*/
|
|
|
|
|
2014-10-09 19:18:36 +00:00
|
|
|
module.exports = function execute(app, instructions, callback) {
|
2014-06-25 12:10:16 +00:00
|
|
|
patchAppLoopback(app);
|
2014-06-16 13:23:32 +00:00
|
|
|
assertLoopBackVersion(app);
|
|
|
|
|
2014-06-02 16:47:46 +00:00
|
|
|
setHost(app, instructions);
|
|
|
|
setPort(app, instructions);
|
|
|
|
setApiRoot(app, instructions);
|
|
|
|
applyAppConfig(app, instructions);
|
|
|
|
|
|
|
|
setupDataSources(app, instructions);
|
|
|
|
setupModels(app, instructions);
|
|
|
|
|
2014-10-09 19:18:36 +00:00
|
|
|
// Run the boot scripts in series synchronously or asynchronously
|
|
|
|
// Please note async supports both styles
|
|
|
|
async.series([
|
|
|
|
function(done) {
|
|
|
|
runBootScripts(app, instructions, done);
|
|
|
|
},
|
|
|
|
function(done) {
|
|
|
|
enableAnonymousSwagger(app, instructions);
|
|
|
|
done();
|
|
|
|
}], callback);
|
2014-06-02 16:47:46 +00:00
|
|
|
};
|
|
|
|
|
2014-06-25 12:10:16 +00:00
|
|
|
function patchAppLoopback(app) {
|
|
|
|
if (app.loopback) return;
|
|
|
|
// app.loopback was introduced in 1.9.0
|
|
|
|
// patch the app object to make loopback-boot work with older versions too
|
|
|
|
try {
|
|
|
|
app.loopback = require('loopback');
|
|
|
|
} catch(err) {
|
|
|
|
if (err.code === 'MODULE_NOT_FOUND') {
|
|
|
|
console.error(
|
|
|
|
'When using loopback-boot with loopback <1.9, '+
|
|
|
|
'the loopback module must be available for `require(\'loopback\')`.');
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-16 13:23:32 +00:00
|
|
|
function assertLoopBackVersion(app) {
|
|
|
|
var RANGE = '1.x || 2.x';
|
|
|
|
|
2014-06-25 12:10:16 +00:00
|
|
|
var loopback = app.loopback;
|
|
|
|
if (!semver.satisfies(loopback.version || '1.0.0', RANGE)) {
|
2014-06-16 13:23:32 +00:00
|
|
|
throw new Error(
|
|
|
|
'The `app` is powered by an incompatible loopback version %s. ' +
|
|
|
|
'Supported versions: %s',
|
2014-06-25 12:10:16 +00:00
|
|
|
loopback.version || '(unknown)',
|
2014-06-16 13:23:32 +00:00
|
|
|
RANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:47:46 +00:00
|
|
|
function setHost(app, instructions) {
|
|
|
|
//jshint camelcase:false
|
|
|
|
var host =
|
|
|
|
process.env.npm_config_host ||
|
|
|
|
process.env.OPENSHIFT_SLS_IP ||
|
|
|
|
process.env.OPENSHIFT_NODEJS_IP ||
|
|
|
|
process.env.HOST ||
|
2014-06-25 06:09:24 +00:00
|
|
|
instructions.config.host ||
|
2014-06-02 16:47:46 +00:00
|
|
|
process.env.npm_package_config_host ||
|
|
|
|
app.get('host');
|
|
|
|
|
|
|
|
if(host !== undefined) {
|
|
|
|
assert(typeof host === 'string', 'app.host must be a string');
|
|
|
|
app.set('host', host);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setPort(app, instructions) {
|
|
|
|
//jshint camelcase:false
|
|
|
|
var port = _.find([
|
|
|
|
process.env.npm_config_port,
|
|
|
|
process.env.OPENSHIFT_SLS_PORT,
|
|
|
|
process.env.OPENSHIFT_NODEJS_PORT,
|
|
|
|
process.env.PORT,
|
2014-06-25 06:09:24 +00:00
|
|
|
instructions.config.port,
|
2014-06-02 16:47:46 +00:00
|
|
|
process.env.npm_package_config_port,
|
|
|
|
app.get('port'),
|
|
|
|
3000
|
|
|
|
], _.isFinite);
|
|
|
|
|
|
|
|
if(port !== undefined) {
|
|
|
|
var portType = typeof port;
|
|
|
|
assert(portType === 'string' || portType === 'number',
|
|
|
|
'app.port must be a string or number');
|
|
|
|
app.set('port', port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setApiRoot(app, instructions) {
|
|
|
|
var restApiRoot =
|
2014-06-25 06:09:24 +00:00
|
|
|
instructions.config.restApiRoot ||
|
2014-06-02 16:47:46 +00:00
|
|
|
app.get('restApiRoot') ||
|
|
|
|
'/api';
|
|
|
|
|
|
|
|
assert(restApiRoot !== undefined, 'app.restBasePath is required');
|
|
|
|
assert(typeof restApiRoot === 'string',
|
|
|
|
'app.restApiRoot must be a string');
|
|
|
|
assert(/^\//.test(restApiRoot),
|
|
|
|
'app.restApiRoot must start with "/"');
|
|
|
|
app.set('restApiRoot', restApiRoot);
|
|
|
|
}
|
|
|
|
|
|
|
|
function applyAppConfig(app, instructions) {
|
2014-06-25 06:09:24 +00:00
|
|
|
var appConfig = instructions.config;
|
2014-06-02 16:47:46 +00:00
|
|
|
for(var configKey in appConfig) {
|
|
|
|
var cur = app.get(configKey);
|
|
|
|
if(cur === undefined || cur === null) {
|
|
|
|
app.set(configKey, appConfig[configKey]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupDataSources(app, instructions) {
|
|
|
|
forEachKeyedObject(instructions.dataSources, function(key, obj) {
|
|
|
|
app.dataSource(key, obj);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupModels(app, instructions) {
|
2014-06-26 12:53:47 +00:00
|
|
|
defineModels(app, instructions);
|
2014-06-16 08:56:55 +00:00
|
|
|
|
|
|
|
instructions.models.forEach(function(data) {
|
|
|
|
// Skip base models that are not exported to the app
|
|
|
|
if (!data.config) return;
|
|
|
|
|
|
|
|
app.model(data._model, data.config);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-06-26 12:53:47 +00:00
|
|
|
function defineModels(app, instructions) {
|
2014-06-13 11:14:43 +00:00
|
|
|
instructions.models.forEach(function(data) {
|
|
|
|
var name = data.name;
|
|
|
|
var model;
|
|
|
|
|
|
|
|
if (!data.definition) {
|
2014-06-26 12:53:47 +00:00
|
|
|
model = app.loopback.getModel(name);
|
2014-06-13 11:14:43 +00:00
|
|
|
if (!model) {
|
|
|
|
throw new Error('Cannot configure unknown model ' + name);
|
|
|
|
}
|
|
|
|
debug('Configuring existing model %s', name);
|
2014-10-21 08:06:28 +00:00
|
|
|
} else if (isBuiltinLoopBackModel(app, data)) {
|
|
|
|
model = app.loopback[name];
|
|
|
|
assert(model, 'app.loopback[model] should have been defined');
|
|
|
|
debug('Configuring built-in LoopBack model %s', name);
|
2014-06-13 11:14:43 +00:00
|
|
|
} else {
|
|
|
|
debug('Creating new model %s %j', name, data.definition);
|
2014-06-26 12:53:47 +00:00
|
|
|
model = app.loopback.createModel(data.definition);
|
2014-06-13 11:14:43 +00:00
|
|
|
if (data.sourceFile) {
|
|
|
|
debug('Loading customization script %s', data.sourceFile);
|
|
|
|
var code = require(data.sourceFile);
|
|
|
|
if (typeof code === 'function') {
|
|
|
|
debug('Customizing model %s', name);
|
2014-07-22 08:58:18 +00:00
|
|
|
code(model);
|
2014-06-13 11:14:43 +00:00
|
|
|
} else {
|
|
|
|
debug('Skipping model file %s - `module.exports` is not a function',
|
|
|
|
data.sourceFile);
|
|
|
|
}
|
|
|
|
}
|
2014-06-09 12:43:44 +00:00
|
|
|
}
|
2014-06-13 11:14:43 +00:00
|
|
|
|
2014-06-16 08:56:55 +00:00
|
|
|
data._model = model;
|
2014-06-02 16:47:46 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-10-21 08:06:28 +00:00
|
|
|
function isBuiltinLoopBackModel(app, data) {
|
|
|
|
// 1. Built-in models are exposed on the loopback object
|
|
|
|
if (!app.loopback[data.name]) return false;
|
|
|
|
|
|
|
|
// 2. Built-in models have a script file `loopback/{facet}/models/{name}.js`
|
|
|
|
return data.sourceFile &&
|
|
|
|
/node_modules\/loopback\/[^\/]+\/models\/[^\/]+\.js$/.test(data.sourceFile);
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:47:46 +00:00
|
|
|
function forEachKeyedObject(obj, fn) {
|
|
|
|
if(typeof obj !== 'object') return;
|
|
|
|
|
|
|
|
Object.keys(obj).forEach(function(key) {
|
|
|
|
fn(key, obj[key]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-10-09 19:18:36 +00:00
|
|
|
function runScripts(app, list, callback) {
|
|
|
|
list = list || [];
|
|
|
|
var functions = [];
|
2014-06-02 16:47:46 +00:00
|
|
|
list.forEach(function(filepath) {
|
2014-10-09 19:18:36 +00:00
|
|
|
debug('Requiring script %s', filepath);
|
2014-06-02 16:47:46 +00:00
|
|
|
var exports = tryRequire(filepath);
|
2014-10-09 19:18:36 +00:00
|
|
|
if (typeof exports === 'function') {
|
|
|
|
debug('Exported function detected %s', filepath);
|
|
|
|
functions.push({
|
|
|
|
path: filepath,
|
|
|
|
func: exports
|
|
|
|
});
|
|
|
|
}
|
2014-06-02 16:47:46 +00:00
|
|
|
});
|
2014-10-09 19:18:36 +00:00
|
|
|
|
|
|
|
async.eachSeries(functions, function(f, done) {
|
|
|
|
debug('Running script %s', f.path);
|
|
|
|
if (f.func.length >= 2) {
|
|
|
|
debug('Starting async function %s', f.path);
|
|
|
|
f.func(app, function(err) {
|
|
|
|
debug('Async function finished %s', f.path);
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
debug('Starting sync function %s', f.path);
|
|
|
|
f.func(app);
|
|
|
|
debug('Sync function finished %s', f.path);
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
}, callback);
|
2014-06-02 16:47:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function tryRequire(modulePath) {
|
|
|
|
try {
|
|
|
|
return require.apply(this, arguments);
|
|
|
|
} catch(e) {
|
|
|
|
if(e.code === 'MODULE_NOT_FOUND') {
|
|
|
|
debug('Warning: cannot require %s - module not found.', modulePath);
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
console.error('failed to require "%s"', modulePath);
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 19:18:36 +00:00
|
|
|
function runBootScripts(app, instructions, callback) {
|
|
|
|
runScripts(app, instructions.files.boot, callback);
|
2014-06-02 16:47:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function enableAnonymousSwagger(app, instructions) {
|
|
|
|
// disable token requirement for swagger, if available
|
|
|
|
var swagger = app.remotes().exports.swagger;
|
|
|
|
if (!swagger) return;
|
|
|
|
|
2014-06-25 06:09:24 +00:00
|
|
|
var appConfig = instructions.config;
|
2014-06-02 16:47:46 +00:00
|
|
|
var requireTokenForSwagger = appConfig.swagger &&
|
|
|
|
appConfig.swagger.requireToken;
|
|
|
|
swagger.requireToken = requireTokenForSwagger || false;
|
|
|
|
}
|