embark-area-51/lib/plugin.js

160 lines
4.7 KiB
JavaScript
Raw Normal View History

/*jshint esversion: 6, loopfunc: true */
var grunt = require('grunt');
2017-01-26 11:34:00 +00:00
var fs = require('fs');
var path = require('path');
// TODO: pass other params like blockchainConfig, contract files, etc..
var Plugin = function(options) {
this.name = options.name;
this.pluginModule = options.pluginModule;
2017-01-26 11:34:00 +00:00
this.pluginPath = options.pluginPath;
this.pluginConfig = options.pluginConfig;
2017-02-06 11:42:58 +00:00
this.shouldInterceptLogs = options.interceptLogs;
this.clientWeb3Providers = [];
this.contractsGenerators = [];
2016-12-10 15:20:04 +00:00
this.pipeline = [];
2017-01-26 11:34:00 +00:00
this.pipelineFiles = [];
2017-01-16 12:00:41 +00:00
this.console = [];
2017-01-26 11:34:00 +00:00
this.contractsConfigs = [];
this.contractsFiles = [];
2017-01-29 02:31:09 +00:00
this.compilers = [];
this.pluginTypes = [];
this.logger = options.logger;
};
Plugin.prototype.loadPlugin = function() {
2017-02-06 11:42:58 +00:00
if (this.shouldInterceptLogs) {
this.interceptLogs(this.pluginModule);
}
(this.pluginModule.call(this, this));
};
2017-01-26 11:34:00 +00:00
Plugin.prototype.loadPluginFile = function(filename) {
return fs.readFileSync(this.pathToFile(filename)).toString();
};
Plugin.prototype.pathToFile = function(filename) {
return path.join(this.pluginPath, filename);
};
Plugin.prototype.interceptLogs = function(context) {
var self = this;
2017-02-06 11:42:58 +00:00
// TODO: this is a bit nasty, figure out a better way
context.console = context.console || console;
context.console.error = function(txt) {
// TODO: logger should support an array instead of a single argument
//self.logger.error.apply(self.logger, arguments);
self.logger.error(self.name + " > " + txt);
};
2017-01-16 12:00:41 +00:00
context.console.log = function(txt) {
self.logger.info(self.name + " > " + txt);
};
context.console.warn = function(txt) {
self.logger.warn(self.name + " > " + txt);
};
context.console.info = function(txt) {
self.logger.info(self.name + " > " + txt);
};
context.console.debug = function(txt) {
2017-01-26 11:34:00 +00:00
// TODO: ue JSON.stringify
2017-01-16 12:00:41 +00:00
self.logger.debug(self.name + " > " + txt);
};
context.console.trace = function(txt) {
self.logger.trace(self.name + " > " + txt);
};
};
// TODO: add deploy provider
Plugin.prototype.registerClientWeb3Provider = function(cb) {
this.clientWeb3Providers.push(cb);
this.pluginTypes.push('clientWeb3Provider');
};
Plugin.prototype.registerContractsGeneration = function(cb) {
this.contractsGenerators.push(cb);
this.pluginTypes.push('contractGeneration');
};
Plugin.prototype.registerPipeline = function(matcthingFiles, cb) {
2016-12-10 15:20:04 +00:00
// TODO: generate error for more than one pipeline per plugin
this.pipeline.push({matcthingFiles: matcthingFiles, cb: cb});
2016-12-10 15:20:04 +00:00
this.pluginTypes.push('pipeline');
};
2017-02-03 11:30:08 +00:00
Plugin.prototype.addFileToPipeline = function(file, intendedPath, options) {
this.pipelineFiles.push({file: file, intendedPath: intendedPath, options: options});
2017-01-26 11:34:00 +00:00
this.pluginTypes.push('pipelineFiles');
};
Plugin.prototype.addContractFile = function(file) {
this.contractsFiles.push(file);
this.pluginTypes.push('contractFiles');
};
2017-01-16 12:00:41 +00:00
Plugin.prototype.registerConsoleCommand = function(cb) {
this.console.push(cb);
this.pluginTypes.push('console');
};
Plugin.prototype.has = function(pluginType) {
return this.pluginTypes.indexOf(pluginType) >= 0;
};
Plugin.prototype.generateProvider = function(args) {
return this.clientWeb3Providers.map(function(cb) {
return cb.call(this, args);
}).join("\n");
};
Plugin.prototype.generateContracts = function(args) {
return this.contractsGenerators.map(function(cb) {
return cb.call(this, args);
}).join("\n");
};
2017-01-26 11:34:00 +00:00
Plugin.prototype.registerContractConfiguration = function(config) {
this.contractsConfigs.push(config);
this.pluginTypes.push('contractsConfig');
};
2017-01-29 02:31:09 +00:00
Plugin.prototype.registerCompiler = function(extension, cb) {
this.compilers.push({extension: extension, cb: cb});
this.pluginTypes.push('compilers');
};
2017-01-16 12:00:41 +00:00
Plugin.prototype.runCommands = function(cmd, options) {
return this.console.map(function(cb) {
return cb.call(this, cmd, options);
}).join("\n");
};
2017-01-26 11:34:00 +00:00
Plugin.prototype.runFilePipeline = function() {
var self = this;
return this.pipelineFiles.map(function(file) {
var obj = {};
obj.filename = file.file.replace('./','');
obj.content = self.loadPluginFile(file.file).toString();
2017-02-03 11:30:08 +00:00
obj.intendedPath = file.intendedPath;
2017-01-26 11:34:00 +00:00
obj.options = file.options;
2017-02-03 11:30:08 +00:00
obj.path = self.pathToFile(obj.filename);
2017-01-26 11:34:00 +00:00
return obj;
});
};
2016-12-10 15:20:04 +00:00
Plugin.prototype.runPipeline = function(args) {
// TODO: should iterate the pipeliens
var pipeline = this.pipeline[0];
//var shouldRunPipeline = pipeline.matcthingFiles.some(match => {
//});
var shouldRunPipeline = grunt.file.isMatch(pipeline.matcthingFiles, args.targetFile);
if (shouldRunPipeline) {
return pipeline.cb.call(this, args);
} else {
return args.source;
}
2016-12-10 15:20:04 +00:00
};
module.exports = Plugin;