2016-09-25 01:23:57 +00:00
|
|
|
/*jshint esversion: 6, loopfunc: true */
|
2016-08-21 16:02:02 +00:00
|
|
|
var fs = require('fs');
|
|
|
|
var mkdirp = require('mkdirp');
|
|
|
|
|
|
|
|
var Pipeline = function(options) {
|
2016-08-22 03:40:05 +00:00
|
|
|
this.buildDir = options.buildDir;
|
|
|
|
this.contractsFiles = options.contractsFiles;
|
|
|
|
this.assetFiles = options.assetFiles;
|
2016-09-17 03:56:25 +00:00
|
|
|
this.logger = options.logger;
|
2016-12-10 15:20:04 +00:00
|
|
|
this.plugins = options.plugins;
|
2016-08-21 16:02:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Pipeline.prototype.build = function(abi) {
|
2016-09-17 03:56:25 +00:00
|
|
|
var self = this;
|
2016-08-22 03:40:05 +00:00
|
|
|
for(var targetFile in this.assetFiles) {
|
2016-08-21 16:02:02 +00:00
|
|
|
|
2016-12-10 15:20:04 +00:00
|
|
|
// TODO: run the plugin here instead, for each file
|
|
|
|
|
2016-09-25 01:23:57 +00:00
|
|
|
var content = this.assetFiles[targetFile].map(file => {
|
2016-09-17 03:56:25 +00:00
|
|
|
self.logger.info("reading " + file.filename);
|
2017-01-15 19:30:41 +00:00
|
|
|
|
|
|
|
var pipelinePlugins = this.plugins.getPluginsFor('pipeline');
|
|
|
|
|
2016-08-22 03:40:05 +00:00
|
|
|
if (file.filename === 'embark.js') {
|
|
|
|
return file.content + "\n" + abi;
|
2017-01-15 19:30:41 +00:00
|
|
|
} else if (['web3.js', 'ipfs.js', 'ipfs-api.js', 'orbit.js'].indexOf(file.filename) >= 0) {
|
|
|
|
return file.content;
|
2016-08-21 16:02:02 +00:00
|
|
|
} else {
|
2017-01-15 19:30:41 +00:00
|
|
|
|
|
|
|
if (pipelinePlugins.length > 0) {
|
|
|
|
pipelinePlugins.forEach(function(plugin) {
|
|
|
|
file.content = plugin.runPipeline({targetFile: file.filename, source: file.content});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-22 03:40:05 +00:00
|
|
|
return file.content;
|
2016-08-21 16:02:02 +00:00
|
|
|
}
|
|
|
|
}).join("\n");
|
|
|
|
|
|
|
|
var dir = targetFile.split('/').slice(0, -1).join('/');
|
2016-09-17 03:56:25 +00:00
|
|
|
self.logger.info("creating dir " + this.buildDir + dir);
|
2016-08-22 03:40:05 +00:00
|
|
|
mkdirp.sync(this.buildDir + dir);
|
2016-08-21 16:02:02 +00:00
|
|
|
|
2016-09-23 08:37:15 +00:00
|
|
|
self.logger.info("writing file " + this.buildDir + targetFile);
|
2016-08-22 03:40:05 +00:00
|
|
|
fs.writeFileSync(this.buildDir + targetFile, content);
|
2016-08-21 16:02:02 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Pipeline;
|
|
|
|
|