Ghost/core/server/apps/loader.js

86 lines
2.6 KiB
JavaScript
Raw Normal View History

2014-01-21 12:45:27 +04:00
var path = require('path'),
2014-02-05 12:40:30 +04:00
_ = require('lodash'),
2014-01-21 12:45:27 +04:00
when = require('when'),
appProxy = require('./proxy'),
config = require('../config'),
AppSandbox = require('./sandbox'),
AppDependencies = require('./dependencies'),
2014-01-21 12:45:27 +04:00
loader;
// Get the full path to an app by name
function getAppAbsolutePath(name) {
return path.join(config().paths.appPath, name);
}
2014-01-21 12:45:27 +04:00
// Get a relative path to the given apps root, defaults
// to be relative to __dirname
function getAppRelativePath(name, relativeTo) {
relativeTo = relativeTo || __dirname;
return path.relative(relativeTo, getAppAbsolutePath(name));
2014-01-21 12:45:27 +04:00
}
// Load apps through a psuedo sandbox
function loadApp(appPath) {
var sandbox = new AppSandbox();
return sandbox.loadApp(appPath);
}
2014-01-21 12:45:27 +04:00
function getAppByName(name) {
// Grab the app class to instantiate
var AppClass = loadApp(getAppRelativePath(name)),
2014-01-21 12:45:27 +04:00
app;
// Check for an actual class, otherwise just use whatever was returned
if (_.isFunction(AppClass)) {
app = new AppClass(appProxy);
} else {
app = AppClass;
}
return app;
}
// The loader is responsible for loading apps
loader = {
// Load a app and return the instantiated app
installAppByName: function (name) {
// Install the apps dependendencies first
var deps = new AppDependencies(getAppAbsolutePath(name));
return deps.install().then(function () {
var app = getAppByName(name);
2014-01-21 12:45:27 +04:00
// Check for an install() method on the app.
if (!_.isFunction(app.install)) {
return when.reject(new Error("Error loading app named " + name + "; no install() method defined."));
}
2014-01-21 12:45:27 +04:00
// Run the app.install() method
// Wrapping the install() with a when because it's possible
// to not return a promise from it.
return when(app.install(appProxy)).then(function () {
return when.resolve(app);
});
2014-01-21 12:45:27 +04:00
});
},
// Activate a app and return it
activateAppByName: function (name) {
var app = getAppByName(name);
// Check for an activate() method on the app.
if (!_.isFunction(app.activate)) {
return when.reject(new Error("Error loading app named " + name + "; no activate() method defined."));
}
// Wrapping the activate() with a when because it's possible
// to not return a promise from it.
return when(app.activate(appProxy)).then(function () {
return when.resolve(app);
});
}
};
module.exports = loader;