2018-05-07 18:30:30 +00:00
|
|
|
const fs = require('../core/fs.js');
|
|
|
|
const async = require('async');
|
2018-07-27 21:33:50 +00:00
|
|
|
const ProcessLauncher = require('../core/processes/processLauncher');
|
2018-05-07 18:30:30 +00:00
|
|
|
const utils = require('../utils/utils.js');
|
|
|
|
const constants = require('../constants');
|
2016-08-21 16:02:02 +00:00
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
class Pipeline {
|
2017-01-15 19:30:41 +00:00
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
constructor(options) {
|
2018-07-20 01:47:11 +00:00
|
|
|
this.env = options.env;
|
2017-03-30 11:12:39 +00:00
|
|
|
this.buildDir = options.buildDir;
|
|
|
|
this.contractsFiles = options.contractsFiles;
|
|
|
|
this.assetFiles = options.assetFiles;
|
2018-05-10 14:10:09 +00:00
|
|
|
this.events = options.events;
|
|
|
|
this.logger = options.logger;
|
|
|
|
this.plugins = options.plugins;
|
2018-08-16 20:51:34 +00:00
|
|
|
this.webpackConfigName = options.webpackConfigName;
|
2018-05-10 14:48:06 +00:00
|
|
|
this.pipelinePlugins = this.plugins.getPluginsFor('pipeline');
|
2017-03-30 11:12:39 +00:00
|
|
|
}
|
2017-01-15 19:30:41 +00:00
|
|
|
|
2017-07-05 12:35:51 +00:00
|
|
|
build(abi, contractsJSON, path, callback) {
|
2017-03-30 11:12:39 +00:00
|
|
|
let self = this;
|
2018-05-08 13:36:50 +00:00
|
|
|
const importsList = {};
|
2018-05-22 05:15:34 +00:00
|
|
|
let placeholderPage;
|
2017-06-27 22:18:29 +00:00
|
|
|
|
2018-07-07 13:51:24 +00:00
|
|
|
if (!this.assetFiles || !Object.keys(this.assetFiles).length) {
|
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
|
2018-05-08 13:36:50 +00:00
|
|
|
async.waterfall([
|
2018-05-22 05:15:34 +00:00
|
|
|
function createPlaceholderPage(next){
|
2018-05-22 23:33:05 +00:00
|
|
|
self.events.request('embark-building-placeholder', (html) => {
|
2018-05-23 03:35:18 +00:00
|
|
|
fs.mkdirpSync(self.buildDir); // create dist/ folder if not already exists
|
2018-08-17 17:41:07 +00:00
|
|
|
fs.writeFile(utils.joinPath(self.buildDir, 'index.html'), html, next);
|
2018-05-22 23:33:05 +00:00
|
|
|
});
|
2018-05-22 05:15:34 +00:00
|
|
|
},
|
2018-05-08 13:36:50 +00:00
|
|
|
function buildTheContracts(next) {
|
2018-05-16 16:48:17 +00:00
|
|
|
self.buildContracts(next);
|
2018-05-08 13:36:50 +00:00
|
|
|
},
|
|
|
|
function buildWeb3(next) {
|
|
|
|
self.buildWeb3JS(next);
|
|
|
|
},
|
|
|
|
function createImportList(next) {
|
|
|
|
importsList["Embark/EmbarkJS"] = fs.dappPath(".embark", 'embark.js');
|
|
|
|
importsList["Embark/web3"] = fs.dappPath(".embark", 'web3_instance.js');
|
2018-05-21 11:43:36 +00:00
|
|
|
importsList["Embark/contracts"] = fs.dappPath(".embark/contracts", '');
|
2017-06-27 22:18:29 +00:00
|
|
|
|
2018-05-10 14:10:09 +00:00
|
|
|
self.plugins.getPluginsProperty('imports', 'imports').forEach(function (importObject) {
|
2018-05-08 13:36:50 +00:00
|
|
|
let [importName, importLocation] = importObject;
|
|
|
|
importsList[importName] = importLocation;
|
|
|
|
});
|
2017-12-12 21:10:12 +00:00
|
|
|
|
2018-05-08 13:36:50 +00:00
|
|
|
next();
|
|
|
|
},
|
2018-08-16 20:57:38 +00:00
|
|
|
function writeContracts(next) {
|
2018-06-08 11:07:27 +00:00
|
|
|
self.events.request('contracts:list', (_err, contracts) => {
|
2018-05-21 11:43:36 +00:00
|
|
|
// ensure the .embark/contracts directory exists (create if not exists)
|
|
|
|
fs.mkdirp(fs.dappPath(".embark/contracts", ''), (err) => {
|
|
|
|
if(err) return next(err);
|
2018-05-22 02:11:45 +00:00
|
|
|
|
|
|
|
// Create a file .embark/contracts/index.js that requires all contract files
|
|
|
|
// Used to enable alternate import syntax:
|
|
|
|
// e.g. import {Token} from 'Embark/contracts'
|
|
|
|
// e.g. import * as Contracts from 'Embark/contracts'
|
|
|
|
let importsHelperFile = fs.createWriteStream(fs.dappPath(".embark/contracts", 'index.js'));
|
|
|
|
importsHelperFile.write('module.exports = {\n');
|
|
|
|
|
|
|
|
async.eachOf(contracts, (contract, idx, eachCb) => {
|
2018-05-21 11:43:36 +00:00
|
|
|
self.events.request('code-generator:contract', contract.className, (contractCode) => {
|
|
|
|
let filePath = fs.dappPath(".embark/contracts", contract.className + '.js');
|
|
|
|
importsList["Embark/contracts/" + contract.className] = filePath;
|
|
|
|
fs.writeFile(filePath, contractCode, eachCb);
|
2018-05-22 02:11:45 +00:00
|
|
|
|
|
|
|
// add the contract to the exports list to support alternate import syntax
|
|
|
|
importsHelperFile.write(`"${contract.className}": require('./${contract.className}').default`);
|
|
|
|
if(idx < contracts.length - 1) importsHelperFile.write(',\n'); // add a comma if we have more contracts to add
|
2018-05-21 11:43:36 +00:00
|
|
|
});
|
|
|
|
}, function(){
|
2018-08-16 20:57:38 +00:00
|
|
|
importsHelperFile.write('\n}'); // close the module.exports = {}
|
2018-05-22 02:11:45 +00:00
|
|
|
importsHelperFile.close(next); // close the write stream
|
2018-05-16 16:48:17 +00:00
|
|
|
});
|
2018-05-21 11:43:36 +00:00
|
|
|
});
|
2018-05-16 16:48:17 +00:00
|
|
|
});
|
2018-05-08 13:36:50 +00:00
|
|
|
},
|
2018-08-16 20:58:19 +00:00
|
|
|
function runWebpack(next) {
|
2018-08-16 22:01:21 +00:00
|
|
|
self.logger.info(__(`running webpack with '${self.webpackConfigName}' config...`));
|
2018-08-17 21:48:04 +00:00
|
|
|
Object.keys(self.assetFiles)
|
|
|
|
.filter(key => key.match(/\.js?$/))
|
|
|
|
.forEach(key => {
|
|
|
|
self.logger.info(__("writing file") + " " + (utils.joinPath(self.buildDir, key)).bold.dim);
|
|
|
|
});
|
2018-08-16 20:58:19 +00:00
|
|
|
let built = false;
|
|
|
|
const webpackProcess = new ProcessLauncher({
|
|
|
|
modulePath: utils.joinPath(__dirname, 'webpackProcess.js'),
|
|
|
|
logger: self.logger,
|
|
|
|
events: self.events,
|
|
|
|
exitCallback: function (code) {
|
|
|
|
if (!built) {
|
|
|
|
return next(`Webpack build exited with code ${code} before the process finished`);
|
|
|
|
}
|
|
|
|
if (code) {
|
2018-08-20 18:38:04 +00:00
|
|
|
self.logger.error(__('Webpack build process exited with code ', code));
|
2018-08-16 20:58:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2018-08-16 20:51:34 +00:00
|
|
|
webpackProcess.send({action: constants.pipeline.init, options: {webpackConfigName: self.webpackConfigName}});
|
2018-08-16 20:58:19 +00:00
|
|
|
webpackProcess.send({action: constants.pipeline.build, assets: self.assetFiles, importsList});
|
|
|
|
|
|
|
|
webpackProcess.once('result', constants.pipeline.built, (msg) => {
|
|
|
|
built = true;
|
|
|
|
webpackProcess.kill();
|
|
|
|
return next(msg.error);
|
|
|
|
});
|
|
|
|
},
|
2018-05-08 13:36:50 +00:00
|
|
|
function assetFileWrite(next) {
|
2018-08-16 21:00:06 +00:00
|
|
|
async.eachOf(
|
2018-08-17 21:48:43 +00:00
|
|
|
// assetFileWrite should not process .js files
|
|
|
|
Object.keys(self.assetFiles)
|
|
|
|
.filter(key => !key.match(/\.js?$/))
|
|
|
|
.reduce((obj, key) => {
|
|
|
|
obj[key] = self.assetFiles[key];
|
|
|
|
return obj;
|
|
|
|
}, {}),
|
2018-08-16 21:00:06 +00:00
|
|
|
function (files, targetFile, cb) {
|
2018-08-20 19:07:53 +00:00
|
|
|
const isDir = targetFile.slice(-1) === '/' || targetFile.slice(-1) === '\\' || targetFile.indexOf('.') === -1;
|
2018-08-16 20:59:41 +00:00
|
|
|
// if it's not a directory
|
|
|
|
if (!isDir) {
|
2018-08-17 17:41:07 +00:00
|
|
|
self.logger.info(__("writing file") + " " + (utils.joinPath(self.buildDir, targetFile)).bold.dim);
|
2018-08-16 20:59:41 +00:00
|
|
|
}
|
2018-08-16 21:00:06 +00:00
|
|
|
async.map(
|
|
|
|
files,
|
2018-05-08 13:36:50 +00:00
|
|
|
function (file, fileCb) {
|
2018-05-10 14:10:09 +00:00
|
|
|
self.logger.trace("reading " + file.filename);
|
2018-08-17 21:48:43 +00:00
|
|
|
return file.content(function (fileContent) {
|
|
|
|
self.runPlugins(file, fileContent, fileCb);
|
2018-05-08 13:36:50 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
function (err, contentFiles) {
|
|
|
|
if (err) {
|
2018-05-08 21:49:46 +00:00
|
|
|
self.logger.error(__('errors found while generating') + ' ' + targetFile);
|
2018-05-08 13:36:50 +00:00
|
|
|
}
|
|
|
|
let dir = targetFile.split('/').slice(0, -1).join('/');
|
2018-08-17 17:41:07 +00:00
|
|
|
self.logger.trace("creating dir " + utils.joinPath(self.buildDir, dir));
|
|
|
|
fs.mkdirpSync(utils.joinPath(self.buildDir, dir));
|
2018-05-08 13:02:46 +00:00
|
|
|
|
2018-05-08 13:36:50 +00:00
|
|
|
// if it's a directory
|
2018-08-16 20:59:41 +00:00
|
|
|
if (isDir) {
|
2018-05-08 13:36:50 +00:00
|
|
|
let targetDir = targetFile;
|
2018-05-08 13:02:46 +00:00
|
|
|
|
2018-05-08 13:36:50 +00:00
|
|
|
if (targetDir.slice(-1) !== '/') {
|
|
|
|
targetDir = targetDir + '/';
|
2018-05-08 13:25:37 +00:00
|
|
|
}
|
2018-05-08 13:04:53 +00:00
|
|
|
|
2018-08-20 18:39:45 +00:00
|
|
|
async.each(contentFiles, function (file, eachCb) {
|
2018-05-08 13:36:50 +00:00
|
|
|
let filename = file.filename.replace(file.basedir + '/', '');
|
2018-08-17 17:41:07 +00:00
|
|
|
self.logger.info("writing file " + (utils.joinPath(self.buildDir, targetDir, filename)).bold.dim);
|
2018-05-08 13:25:37 +00:00
|
|
|
|
2018-08-20 18:39:45 +00:00
|
|
|
fs.copy(file.path, utils.joinPath(self.buildDir, targetDir, filename), {overwrite: true}, eachCb);
|
2018-05-08 13:36:50 +00:00
|
|
|
}, cb);
|
|
|
|
return;
|
2018-05-08 13:25:37 +00:00
|
|
|
}
|
2018-05-08 13:36:50 +00:00
|
|
|
|
|
|
|
let content = contentFiles.map(function (file) {
|
|
|
|
if (file === undefined) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return file.content;
|
|
|
|
}).join("\n");
|
|
|
|
|
2018-05-22 05:15:34 +00:00
|
|
|
if(new RegExp(/^index.html?/i).test(targetFile)){
|
|
|
|
targetFile = targetFile.replace('index', 'index-temp');
|
|
|
|
placeholderPage = targetFile;
|
|
|
|
}
|
2018-08-17 17:41:07 +00:00
|
|
|
fs.writeFile(utils.joinPath(self.buildDir, targetFile), content, cb);
|
2018-05-08 13:36:50 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
2018-08-16 21:00:06 +00:00
|
|
|
next
|
|
|
|
);
|
2018-05-22 05:15:34 +00:00
|
|
|
},
|
|
|
|
function removePlaceholderPage(next){
|
2018-08-17 17:41:07 +00:00
|
|
|
let placeholderFile = utils.joinPath(self.buildDir, placeholderPage);
|
|
|
|
fs.access(utils.joinPath(self.buildDir, placeholderPage), (err) => {
|
2018-05-22 05:15:34 +00:00
|
|
|
if (err) return next(); // index-temp doesn't exist, do nothing
|
|
|
|
|
|
|
|
// rename index-temp.htm/l to index.htm/l, effectively replacing our placeholder page
|
|
|
|
// with the contents of the built index.html page
|
|
|
|
fs.move(placeholderFile, placeholderFile.replace('index-temp', 'index'), {overwrite: true}, next);
|
|
|
|
});
|
2018-05-08 13:36:50 +00:00
|
|
|
}
|
|
|
|
], callback);
|
2017-12-12 17:20:57 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 23:09:10 +00:00
|
|
|
runPlugins(file, fileContent, fileCb) {
|
|
|
|
const self = this;
|
2018-05-10 14:48:06 +00:00
|
|
|
if (self.pipelinePlugins.length <= 0) {
|
2018-05-10 14:10:09 +00:00
|
|
|
return fileCb(null, {content: fileContent, filename: file.filename, path: file.path, basedir: file.basedir, modified: true});
|
2018-02-28 23:09:10 +00:00
|
|
|
}
|
2018-08-16 21:00:06 +00:00
|
|
|
async.eachSeries(
|
|
|
|
self.pipelinePlugins,
|
2018-05-10 14:10:09 +00:00
|
|
|
function(plugin, pluginCB) {
|
2018-02-28 23:09:10 +00:00
|
|
|
if (file.options && file.options.skipPipeline) {
|
|
|
|
return pluginCB();
|
|
|
|
}
|
|
|
|
|
|
|
|
fileContent = plugin.runPipeline({targetFile: file.filename, source: fileContent});
|
|
|
|
file.modified = true;
|
|
|
|
pluginCB();
|
|
|
|
},
|
|
|
|
function (err) {
|
|
|
|
if (err) {
|
2018-05-10 14:10:09 +00:00
|
|
|
self.logger.error(err.message);
|
2018-02-28 23:09:10 +00:00
|
|
|
}
|
2018-05-10 14:10:09 +00:00
|
|
|
return fileCb(null, {content: fileContent, filename: file.filename, path: file.path, basedir: file.basedir, modified: true});
|
2018-02-28 23:09:10 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-05-16 19:07:47 +00:00
|
|
|
buildContracts(cb) {
|
2018-01-10 15:43:25 +00:00
|
|
|
const self = this;
|
|
|
|
|
|
|
|
async.waterfall([
|
2018-05-16 19:07:47 +00:00
|
|
|
function makeDirectory(next) {
|
|
|
|
fs.mkdirp(fs.dappPath(self.buildDir, 'contracts'), (err, _result) => {
|
2018-05-16 19:18:12 +00:00
|
|
|
next(err);
|
2018-05-10 14:10:09 +00:00
|
|
|
});
|
|
|
|
},
|
2018-05-16 19:07:47 +00:00
|
|
|
function getContracts(next) {
|
2018-06-08 11:07:27 +00:00
|
|
|
self.events.request('contracts:list', (err, contracts) => {
|
|
|
|
next(err, contracts);
|
2018-05-10 14:10:09 +00:00
|
|
|
});
|
2018-05-07 19:48:01 +00:00
|
|
|
},
|
2018-05-16 19:07:47 +00:00
|
|
|
function writeContractsJSON(contracts, next) {
|
2018-05-16 16:48:17 +00:00
|
|
|
async.each(contracts, (contract, eachCb) => {
|
2018-05-16 19:07:47 +00:00
|
|
|
fs.writeJson(fs.dappPath(self.buildDir, 'contracts', contract.className + ".json"), contract, {spaces: 2}, eachCb);
|
2018-05-16 19:18:12 +00:00
|
|
|
}, () => { next(); });
|
2018-05-16 19:07:47 +00:00
|
|
|
}
|
|
|
|
], cb);
|
2016-08-21 16:02:02 +00:00
|
|
|
}
|
2017-06-28 00:27:24 +00:00
|
|
|
|
2018-05-15 22:21:00 +00:00
|
|
|
buildWeb3JS(cb) {
|
|
|
|
const self = this;
|
|
|
|
async.waterfall([
|
2018-05-07 19:48:01 +00:00
|
|
|
function makeDirectory(next) {
|
|
|
|
fs.mkdirp(fs.dappPath(".embark"), (err, _result) => {
|
|
|
|
next(err);
|
2018-01-10 15:43:25 +00:00
|
|
|
});
|
|
|
|
},
|
2018-05-16 19:07:47 +00:00
|
|
|
function getWeb3Code(next) {
|
|
|
|
self.events.request('code-generator:web3js', next);
|
|
|
|
},
|
2018-05-15 22:21:00 +00:00
|
|
|
function writeFile(code, next) {
|
2018-05-07 19:48:01 +00:00
|
|
|
fs.writeFile(fs.dappPath(".embark", 'web3_instance.js'), code, next);
|
2018-01-10 15:43:25 +00:00
|
|
|
}
|
2018-05-07 19:48:01 +00:00
|
|
|
], cb);
|
2017-12-12 19:45:20 +00:00
|
|
|
}
|
2017-03-30 11:12:39 +00:00
|
|
|
}
|
2016-08-21 16:02:02 +00:00
|
|
|
|
2018-05-10 14:10:09 +00:00
|
|
|
module.exports = Pipeline;
|