embark-area-51/lib/pipeline/pipeline.js

81 lines
2.5 KiB
JavaScript
Raw Normal View History

2016-09-25 01:23:57 +00:00
/*jshint esversion: 6, loopfunc: true */
2017-02-19 17:51:32 +00:00
var fs = require('../core/fs.js');
2016-08-21 16:02:02 +00:00
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, path) {
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
2017-01-29 05:58:06 +00:00
var contentFiles = this.assetFiles[targetFile].map(file => {
self.logger.trace("reading " + file.filename);
var pipelinePlugins = this.plugins.getPluginsFor('pipeline');
2016-08-22 03:40:05 +00:00
if (file.filename === 'embark.js') {
2017-01-29 05:58:06 +00:00
return {content: file.content + "\n" + abi, filename: file.filename, path: file.path, modified: true};
2017-02-16 00:27:23 +00:00
} else if (file.filename === 'abi.js') {
return {content: abi, filename: file.filename, path: file.path, modified: true};
} else if (['web3.js', 'ipfs.js', 'ipfs-api.js', 'orbit.js'].indexOf(file.filename) >= 0) {
2017-01-29 05:58:06 +00:00
file.modified = true;
return file;
2016-08-21 16:02:02 +00:00
} else {
if (pipelinePlugins.length > 0) {
pipelinePlugins.forEach(function(plugin) {
2017-01-26 11:34:00 +00:00
try {
2017-02-03 11:30:08 +00:00
if (file.options && file.options.skipPipeline) {
return;
}
2017-01-26 11:34:00 +00:00
file.content = plugin.runPipeline({targetFile: file.filename, source: file.content});
2017-01-29 05:58:06 +00:00
file.modified = true;
2017-01-26 11:34:00 +00:00
}
catch(err) {
self.logger.error(err.message);
}
});
}
2017-01-29 05:58:06 +00:00
return file;
2016-08-21 16:02:02 +00:00
}
2017-01-29 05:58:06 +00:00
});
2016-08-21 16:02:02 +00:00
var dir = targetFile.split('/').slice(0, -1).join('/');
self.logger.trace("creating dir " + this.buildDir + dir);
2017-02-19 03:40:42 +00:00
fs.mkdirpSync(this.buildDir + dir);
2016-08-21 16:02:02 +00:00
2017-01-29 05:58:06 +00:00
// if it's a directory
if (targetFile.slice(-1) === '/' || targetFile.indexOf('.') === -1) {
var targetDir = targetFile;
if (targetDir.slice(-1) !== '/') {
targetDir = targetDir + '/';
}
contentFiles.map(function(file) {
var filename = file.filename.replace('app/', '');
filename = filename.replace(targetDir, '');
self.logger.info("writing file " + (self.buildDir + targetDir + filename).bold.dim);
2017-01-29 05:58:06 +00:00
2017-02-19 03:40:42 +00:00
fs.copySync(self.buildDir + targetDir + filename, file.path, {overwrite: true});
2017-01-29 05:58:06 +00:00
});
} else {
var content = contentFiles.map(function(file) {
return file.content;
}).join("\n");
self.logger.info("writing file " + (this.buildDir + targetFile).bold.dim);
2017-01-29 05:58:06 +00:00
fs.writeFileSync(this.buildDir + targetFile, content);
}
2016-08-21 16:02:02 +00:00
}
};
module.exports = Pipeline;