2016-12-07 02:33:31 +00:00
|
|
|
var Plugin = require('./plugin.js');
|
2017-03-11 16:03:20 +00:00
|
|
|
var utils = require('../utils/utils.js');
|
2016-12-07 02:33:31 +00:00
|
|
|
|
|
|
|
var Plugins = function(options) {
|
|
|
|
this.pluginList = options.plugins || [];
|
2017-02-06 11:42:58 +00:00
|
|
|
this.interceptLogs = options.interceptLogs;
|
2016-12-07 02:33:31 +00:00
|
|
|
this.plugins = [];
|
2017-01-15 19:30:41 +00:00
|
|
|
// TODO: need backup 'NullLogger'
|
|
|
|
this.logger = options.logger;
|
2017-03-04 17:42:24 +00:00
|
|
|
this.events = options.events;
|
2017-03-06 01:25:09 +00:00
|
|
|
this.config = options.config;
|
2016-12-07 02:33:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Plugins.prototype.loadPlugins = function() {
|
2017-01-15 19:30:41 +00:00
|
|
|
var pluginConfig;
|
|
|
|
for (var pluginName in this.pluginList) {
|
|
|
|
pluginConfig = this.pluginList[pluginName];
|
|
|
|
this.loadPlugin(pluginName, pluginConfig);
|
2016-12-07 02:33:31 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-15 19:30:41 +00:00
|
|
|
Plugins.prototype.listPlugins = function() {
|
|
|
|
var list = [];
|
|
|
|
for (var className in this.pluginList) {
|
|
|
|
list.push(className);
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
};
|
|
|
|
|
|
|
|
Plugins.prototype.loadPlugin = function(pluginName, pluginConfig) {
|
2017-02-18 19:10:01 +00:00
|
|
|
var pluginPath = utils.joinPath(process.env.PWD, 'node_modules', pluginName);
|
2017-01-26 11:34:00 +00:00
|
|
|
var plugin = require(pluginPath);
|
2016-12-07 02:33:31 +00:00
|
|
|
|
2017-03-06 01:25:09 +00:00
|
|
|
var pluginWrapper = new Plugin({name: pluginName, pluginModule: plugin, pluginConfig: pluginConfig, logger: this.logger, pluginPath: pluginPath, interceptLogs: this.interceptLogs, events: this.events, config: this.config});
|
2016-12-07 02:33:31 +00:00
|
|
|
pluginWrapper.loadPlugin();
|
|
|
|
this.plugins.push(pluginWrapper);
|
|
|
|
};
|
|
|
|
|
|
|
|
Plugins.prototype.getPluginsFor = function(pluginType) {
|
|
|
|
return this.plugins.filter(function(plugin) {
|
|
|
|
return plugin.has(pluginType);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Plugins;
|