embark/packages/embark-deploy-tracker/src/index.js

134 lines
3.7 KiB
JavaScript
Raw Normal View History

import { __ } from 'embark-i18n';
import { dappPath, sha3 } from 'embark-utils';
import * as fs from 'fs-extra';
2016-09-25 01:10:47 +00:00
2017-03-30 11:12:39 +00:00
class DeployTracker {
2018-05-19 02:40:47 +00:00
constructor(embark, options) {
this.logger = embark.logger;
this.events = embark.events;
this.embark = embark;
2018-08-24 13:25:47 +00:00
this.trackContracts = (options.trackContracts !== false);
2018-05-19 02:40:47 +00:00
// TODO: unclear where it comes from
2017-03-30 11:12:39 +00:00
this.env = options.env;
this.chainConfig = {};
this.chainFile = embark.config.contractsConfig.tracking;
this.loadChainTrackerFile();
2018-05-19 02:40:47 +00:00
this.registerEvents();
}
loadChainTrackerFile() {
if (this.chainFile === false) return;
if (this.chainFile === undefined) this.chainFile = ".embark/chains.json";
this.chainFile = dappPath(this.chainFile);
if (!fs.existsSync(this.chainFile)) {
this.logger.info(this.chainFile + ' ' + __('file not found, creating it...'));
fs.outputJSONSync(this.chainFile, {});
}
this.chainConfig = fs.readJSONSync(this.chainFile);
}
2018-05-19 02:40:47 +00:00
registerEvents() {
if (this.chainFile === false) return;
2018-05-19 02:40:47 +00:00
const self = this;
this.embark.registerActionForEvent("deploy:beforeAll", this.setCurrentChain.bind(this));
2017-03-30 11:12:39 +00:00
2018-05-19 02:40:47 +00:00
this.events.on("deploy:contract:deployed", (contract) => {
2018-06-18 14:22:04 +00:00
self.trackContract(contract.className, contract.realRuntimeBytecode, contract.realArgs, contract.deployedAddress);
2018-05-19 02:40:47 +00:00
self.save();
});
self.embark.registerActionForEvent("deploy:contract:shouldDeploy", (params, cb) => {
2018-08-24 13:25:47 +00:00
if (!self.trackContracts) {
return cb(null, params);
}
let contract = params.contract;
2018-05-19 02:40:47 +00:00
let trackedContract = self.getContract(contract.className, contract.realRuntimeBytecode, contract.realArgs);
if (trackedContract) {
params.contract.address = trackedContract.address;
}
if (params.shouldDeploy && trackedContract) {
params.shouldDeploy = true;
}
cb(null, params);
2018-05-19 02:40:47 +00:00
});
}
setCurrentChain(callback) {
2018-05-19 02:40:47 +00:00
const self = this;
2017-03-30 11:12:39 +00:00
if (this.chainConfig === false) {
this.currentChain = {contracts: []};
return callback();
2017-03-30 11:12:39 +00:00
}
function getBlock(blockNum, cb) {
self.events.request("blockchain:block:byNumber", blockNum, (err, block) => {
if (err) {
return cb(err);
}
let chainId = block.hash;
if (self.chainConfig[chainId] === undefined) {
self.chainConfig[chainId] = {contracts: {}};
}
2018-01-05 20:10:47 +00:00
self.currentChain = self.chainConfig[chainId];
2017-03-30 11:12:39 +00:00
self.currentChain.name = self.env;
cb();
});
}
getBlock(0, (err) => {
if (err) {
// Retry with block 1 (Block 0 fails with Ganache-cli using the --fork option)
return getBlock(1, (err) => {
if (err) {
self.logger.error(__('Error getting block data. The deploy-tracker will not work'), err);
}
callback();
});
}
callback();
2018-01-05 20:10:47 +00:00
});
2016-10-02 22:47:26 +00:00
}
2016-10-02 20:57:13 +00:00
2017-03-30 11:12:39 +00:00
loadConfig(config) {
this.chainConfig = config;
return this;
}
trackContract(contractName, code, args, address) {
2018-05-19 02:52:14 +00:00
if (!this.currentChain) return false;
this.currentChain.contracts[sha3(code + contractName + args.join(','))] = {
2017-03-30 11:12:39 +00:00
name: contractName,
address: address
};
}
2016-09-25 01:10:47 +00:00
2017-03-30 11:12:39 +00:00
getContract(contractName, code, args) {
if (!this.currentChain) return false;
let contract = this.currentChain.contracts[sha3(code + contractName + args.join(','))];
2017-03-30 11:12:39 +00:00
if (contract && contract.address === undefined) {
return false;
}
return contract;
2016-09-25 01:10:47 +00:00
}
2017-03-30 11:12:39 +00:00
// TODO: abstract this
// chainConfig can be an abstract PersistentObject
save() {
if (this.chainConfig === false) {
return;
}
fs.writeJSONSync(this.chainFile, this.chainConfig, {spaces: 2});
2017-03-30 11:12:39 +00:00
}
2018-05-19 02:40:47 +00:00
2017-03-30 11:12:39 +00:00
}
2016-09-25 01:10:47 +00:00
module.exports = DeployTracker;