2017-03-29 17:50:05 +00:00
|
|
|
let fs = require('../core/fs.js');
|
2017-07-05 12:35:51 +00:00
|
|
|
let async = require('async');
|
2017-12-14 00:49:05 +00:00
|
|
|
//var Plugins = require('../core/plugins.js');
|
2017-12-12 17:20:57 +00:00
|
|
|
var utils = require('../utils/utils.js');
|
2017-12-14 00:49:05 +00:00
|
|
|
//var Npm = require('../pipeline/npm.js');
|
|
|
|
//let currentWeb3Version = require('../../package.json').dependencies.web3.replace("^","");
|
2017-12-12 17:20:57 +00:00
|
|
|
const webpack = require("webpack");
|
2016-08-21 16:02:02 +00:00
|
|
|
|
2018-01-17 00:17:52 +00:00
|
|
|
require("babel-preset-react");
|
|
|
|
require("babel-preset-es2015");
|
|
|
|
require("babel-preset-es2016");
|
|
|
|
require("babel-preset-es2017");
|
|
|
|
|
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) {
|
|
|
|
this.buildDir = options.buildDir;
|
|
|
|
this.contractsFiles = options.contractsFiles;
|
|
|
|
this.assetFiles = options.assetFiles;
|
2017-12-12 17:20:57 +00:00
|
|
|
this.events = options.events;
|
2017-03-30 11:12:39 +00:00
|
|
|
this.logger = options.logger;
|
|
|
|
this.plugins = options.plugins;
|
|
|
|
}
|
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;
|
2017-06-27 22:18:29 +00:00
|
|
|
|
|
|
|
this.buildContracts(contractsJSON);
|
|
|
|
|
2017-12-12 21:10:12 +00:00
|
|
|
self.buildWeb3JS(function() {
|
|
|
|
|
2017-07-05 12:35:51 +00:00
|
|
|
// limit:1 due to issues when downloading required files such as web3.js
|
2017-12-12 21:10:12 +00:00
|
|
|
async.eachOfLimit(self.assetFiles, 1, function (files, targetFile, cb) {
|
2017-12-12 17:20:57 +00:00
|
|
|
// limit:1 due to issues when downloading required files such as web3.js
|
|
|
|
async.mapLimit(files, 1,
|
|
|
|
function(file, fileCb) {
|
|
|
|
self.logger.trace("reading " + file.filename);
|
|
|
|
|
|
|
|
if (file.filename.indexOf('.js') >= 0) {
|
2017-12-12 19:37:47 +00:00
|
|
|
let importsList = {};
|
2017-12-12 17:20:57 +00:00
|
|
|
|
2017-12-13 14:01:53 +00:00
|
|
|
//importsList["Embark/EmbarkJS"] = fs.embarkPath("js/embark.js");
|
2018-01-12 19:21:36 +00:00
|
|
|
|
2017-12-13 14:01:53 +00:00
|
|
|
importsList["Embark/EmbarkJS"] = utils.joinPath(fs.dappPath(), ".embark", 'embark.js');
|
2017-12-12 21:10:12 +00:00
|
|
|
importsList["Embark/web3"] = utils.joinPath(fs.dappPath(), ".embark", 'web3_instance.js');
|
2018-02-22 19:56:55 +00:00
|
|
|
importsList["Embark/contracts/SimpleStorage"] = utils.joinPath(fs.dappPath(), ".embark", 'SimpleStorage.js');
|
2018-01-10 15:43:25 +00:00
|
|
|
|
2018-01-10 16:15:32 +00:00
|
|
|
self.plugins.getPluginsProperty('imports', 'imports').forEach(function (importObject) {
|
|
|
|
let [importName, importLocation] = importObject;
|
|
|
|
importsList[importName] = importLocation;
|
|
|
|
});
|
2017-12-12 17:20:57 +00:00
|
|
|
|
2018-02-22 19:56:55 +00:00
|
|
|
for (let contractName in contractsJSON) {
|
|
|
|
let contractCode = self.buildContractJS(contractName);
|
|
|
|
let filePath = utils.joinPath(fs.dappPath(), ".embark", contractName + '.js');
|
|
|
|
fs.writeFileSync(filePath, contractCode);
|
|
|
|
importsList["Embark/contracts/" + contractName] = filePath;
|
|
|
|
}
|
|
|
|
|
2018-01-12 19:21:36 +00:00
|
|
|
let realCwd;
|
|
|
|
|
2017-12-12 17:20:57 +00:00
|
|
|
async.waterfall([
|
2018-01-12 19:21:36 +00:00
|
|
|
|
2017-12-12 17:20:57 +00:00
|
|
|
function findImports(next) {
|
2018-02-23 19:04:08 +00:00
|
|
|
self.webpackRun(file.filename, {}, false, importsList, false, next);
|
2018-01-17 00:17:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
function changeCwd(next) {
|
|
|
|
realCwd = process.env.PWD;
|
|
|
|
process.chdir(fs.embarkPath(''));
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
|
2018-02-23 19:04:08 +00:00
|
|
|
//function findImportsPhase2(next) {
|
|
|
|
// console.log("====> findImports_2");
|
|
|
|
// self.webpackRun(file.filename, {
|
|
|
|
// externals: function(context, request, callback) {
|
|
|
|
// if (request === utils.joinPath(fs.dappPath(), file.filename)) {
|
|
|
|
// callback();
|
|
|
|
// } else {
|
|
|
|
// //if (request.indexOf('Embark/contracts/') === 0) {
|
|
|
|
// // let contractName = request.split('/')[2];
|
|
|
|
// // let contractCode = self.buildContractJS(contractName);
|
|
|
|
// // let filePath = utils.joinPath(fs.dappPath(), ".embark", contractName + '.js');
|
|
|
|
// // fs.writeFileSync(filePath, contractCode);
|
|
|
|
// // importsList[request] = filePath;
|
|
|
|
// //}
|
|
|
|
// callback(null, "amd " + Math.random());
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }, true, importsList, next);
|
|
|
|
//},
|
2018-01-12 19:21:36 +00:00
|
|
|
|
2017-12-12 17:20:57 +00:00
|
|
|
function runWebpack(next) {
|
2018-02-23 19:04:08 +00:00
|
|
|
self.webpackRun(file.filename, {}, true, importsList, true, next);
|
2018-01-12 19:21:36 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
function changeCwdBack(next) {
|
|
|
|
process.chdir(realCwd);
|
|
|
|
next();
|
2017-12-12 17:20:57 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 19:04:08 +00:00
|
|
|
], function(err, _result) {
|
|
|
|
if (err) {
|
|
|
|
process.chdir(realCwd);
|
|
|
|
self.logger.error(err);
|
|
|
|
return fileCb(err);
|
|
|
|
}
|
2018-01-03 18:44:35 +00:00
|
|
|
if (!fs.existsSync('./.embark/' + file.filename)) {
|
2018-02-23 19:04:08 +00:00
|
|
|
self.logger.error("couldn't find file: " + file.filename);
|
2018-01-03 18:44:35 +00:00
|
|
|
return fileCb("couldn't find file: " + file.filename);
|
|
|
|
}
|
2017-12-12 17:20:57 +00:00
|
|
|
let fileContent = fs.readFileSync('./.embark/' + file.filename).toString();
|
|
|
|
fileCb(null, {content: fileContent, filename: file.filename, path: file.path, modified: true});
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
file.content(function(fileContent) {
|
|
|
|
return fileCb(null, {content: fileContent, filename: file.filename, path: file.path, modified: true});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
function (err, contentFiles) {
|
2018-01-03 18:44:35 +00:00
|
|
|
if (err) {
|
|
|
|
self.logger.warn('errors found while generating ' + targetFile);
|
|
|
|
}
|
2017-12-12 17:20:57 +00:00
|
|
|
let dir = targetFile.split('/').slice(0, -1).join('/');
|
|
|
|
self.logger.trace("creating dir " + self.buildDir + dir);
|
|
|
|
fs.mkdirpSync(self.buildDir + dir);
|
|
|
|
|
|
|
|
// if it's a directory
|
|
|
|
if (targetFile.slice(-1) === '/' || targetFile.indexOf('.') === -1) {
|
|
|
|
let targetDir = targetFile;
|
|
|
|
|
|
|
|
if (targetDir.slice(-1) !== '/') {
|
|
|
|
targetDir = targetDir + '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
contentFiles.map(function (file) {
|
|
|
|
let 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
|
|
|
|
2018-02-22 16:45:22 +00:00
|
|
|
fs.copySync(file.path, self.buildDir + targetDir + filename, {overwrite: true});
|
2017-12-12 17:20:57 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
let content = contentFiles.map(function (file) {
|
|
|
|
if (file === undefined) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return file.content;
|
|
|
|
}).join("\n");
|
|
|
|
|
|
|
|
self.logger.info("writing file " + (self.buildDir + targetFile).bold.dim);
|
|
|
|
fs.writeFileSync(self.buildDir + targetFile, content);
|
|
|
|
}
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
function (_err, _results) {
|
|
|
|
callback();
|
|
|
|
});
|
2017-12-12 21:10:12 +00:00
|
|
|
});
|
2017-12-12 17:20:57 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 19:04:08 +00:00
|
|
|
webpackRun(filename, options, includeModules, importsList, detectErrors, callback) {
|
2018-01-17 20:29:34 +00:00
|
|
|
let defaultOptions = {
|
|
|
|
entry: utils.joinPath(fs.dappPath(), filename),
|
|
|
|
output: {
|
|
|
|
libraryTarget: 'umd',
|
|
|
|
path: utils.joinPath(fs.dappPath(), '.embark'),
|
|
|
|
filename: filename
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: importsList,
|
|
|
|
modules: [
|
|
|
|
fs.embarkPath('node_modules'),
|
|
|
|
utils.joinPath(fs.dappPath(), 'node_modules')
|
|
|
|
]
|
|
|
|
},
|
|
|
|
externals: function(context, request, callback) {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let webpackOptions = utils.recursiveMerge(defaultOptions, options);
|
|
|
|
|
|
|
|
if (includeModules) {
|
|
|
|
webpackOptions.module = {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [{loader: "style-loader"}, {loader: "css-loader"}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
use: [{loader: "style-loader"}, {loader: "css-loader"}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
|
|
|
|
loader: 'url-loader?limit=100000'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
loader: "babel-loader",
|
|
|
|
exclude: /(node_modules|bower_components)/,
|
|
|
|
options: {
|
2018-02-23 23:24:46 +00:00
|
|
|
presets: ['babel-preset-es2016', 'babel-preset-es2017', 'babel-preset-react'].map(require.resolve),
|
|
|
|
plugins: ["babel-plugin-webpack-aliases"].map(require.resolve)
|
2018-01-17 20:29:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
webpack(webpackOptions).run((_err, _stats) => {
|
2018-02-23 19:04:08 +00:00
|
|
|
if (!detectErrors) {
|
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_stats.hasErrors()) {
|
|
|
|
return callback(_stats.toJson().errors.join("\n"));
|
|
|
|
}
|
2018-01-17 20:29:34 +00:00
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-04 10:37:50 +00:00
|
|
|
buildContracts(contractsJSON) {
|
2018-01-17 00:17:52 +00:00
|
|
|
fs.mkdirpSync(utils.joinPath(fs.dappPath(), this.buildDir, 'contracts'));
|
2017-04-04 10:37:50 +00:00
|
|
|
|
|
|
|
for (let className in contractsJSON) {
|
|
|
|
let contract = contractsJSON[className];
|
2018-01-17 00:17:52 +00:00
|
|
|
fs.writeJSONSync(utils.joinPath(fs.dappPath(), this.buildDir, 'contracts', className + ".json"), contract, {spaces: 2});
|
2017-04-04 10:37:50 +00:00
|
|
|
}
|
2016-08-21 16:02:02 +00:00
|
|
|
}
|
2017-06-28 00:27:24 +00:00
|
|
|
|
|
|
|
buildContractJS(contractName) {
|
2018-01-17 00:17:52 +00:00
|
|
|
let contractJSON = fs.readFileSync(utils.joinPath(fs.dappPath(), this.buildDir, 'contracts', contractName + '.json')).toString();
|
2017-06-28 00:27:24 +00:00
|
|
|
|
|
|
|
let contractCode = "";
|
2017-12-12 18:51:14 +00:00
|
|
|
contractCode += "import web3 from 'Embark/web3';\n";
|
2017-12-12 17:20:57 +00:00
|
|
|
contractCode += "import EmbarkJS from 'Embark/EmbarkJS';\n";
|
2017-07-02 02:04:29 +00:00
|
|
|
contractCode += "let " + contractName + "JSONConfig = " + contractJSON + ";\n";
|
|
|
|
contractCode += "let " + contractName + " = new EmbarkJS.Contract(" + contractName + "JSONConfig);\n";
|
2017-12-12 17:20:57 +00:00
|
|
|
|
|
|
|
contractCode += "\n__embarkContext.execWhenReady(function() {\n";
|
|
|
|
contractCode += "\n" + contractName + ".setProvider(web3.currentProvider);\n";
|
|
|
|
contractCode += "\n});\n";
|
|
|
|
|
|
|
|
contractCode += "export default " + contractName + ";\n";
|
2017-06-28 00:27:24 +00:00
|
|
|
|
|
|
|
return contractCode;
|
|
|
|
}
|
2017-12-12 19:45:20 +00:00
|
|
|
|
|
|
|
buildWeb3JS(cb) {
|
2018-01-10 15:43:25 +00:00
|
|
|
const self = this;
|
|
|
|
let code = "";
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
function getWeb3Location(next) {
|
|
|
|
self.events.request("version:get:web3", function(web3Version) {
|
|
|
|
if (web3Version === "1.0.0-beta") {
|
|
|
|
return next(null, utils.joinPath(fs.embarkPath("js/web3-1.0.min.js")));
|
|
|
|
} else {
|
|
|
|
self.events.request("version:getPackageLocation", "web3", web3Version, function(err, location) {
|
|
|
|
return next(null, utils.joinPath(process.env.PWD, location));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function getImports(web3Location, next) {
|
|
|
|
code += "\nimport Web3 from '" + web3Location + "';\n";
|
|
|
|
|
|
|
|
code += "\n if (typeof web3 !== 'undefined') {";
|
|
|
|
code += "\n } else {";
|
|
|
|
code += "\n var web3 = new Web3();\n";
|
|
|
|
code += "\n }";
|
|
|
|
|
|
|
|
self.events.request('provider-code', function(providerCode) {
|
|
|
|
code += providerCode;
|
|
|
|
code += "\nglobal.__embarkContext = __mainContext.__loadManagerInstance;\n";
|
|
|
|
code += "\nwindow.web3 = web3;\n";
|
|
|
|
code += "\nexport default web3;\n";
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function writeFile(next) {
|
|
|
|
let filePath = utils.joinPath(fs.dappPath(), ".embark", 'web3_instance.js');
|
|
|
|
fs.mkdirpSync(utils.joinPath(fs.dappPath(), ".embark"));
|
|
|
|
fs.writeFileSync(filePath, code);
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
], function(_err, _result) {
|
2017-12-12 19:45:20 +00:00
|
|
|
cb();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
}
|
2016-08-21 16:02:02 +00:00
|
|
|
|
|
|
|
module.exports = Pipeline;
|