mirror of https://github.com/embarklabs/embark.git
feat(@embark/storage): Add command `service swarm on/off`
Add support for ability to start and stop Swarm via command `service swarm on/off`. Fix issue with swarm not starting due to missing web3 object. `service swarm on` - starts a swarm node if not already started. Shows an error if the node is already starting or started. `service swarm off` - kills the running swarm node as long as Embark has started the swarm process. If the swarm process was started externally, an error is shown.
This commit is contained in:
parent
b5db6857a8
commit
3dcc339e4d
|
@ -41,7 +41,7 @@ class Storage {
|
||||||
}
|
}
|
||||||
|
|
||||||
addSetProviders(cb) {
|
addSetProviders(cb) {
|
||||||
let code = `\nEmbarkJS.Storage.setProviders(${JSON.stringify(this.storageConfig.dappConnection || [])});`;
|
let code = `\nEmbarkJS.Storage.setProviders(${JSON.stringify(this.storageConfig.dappConnection || [])}, {web3});`;
|
||||||
|
|
||||||
let shouldInit = (storageConfig) => {
|
let shouldInit = (storageConfig) => {
|
||||||
return storageConfig.enabled;
|
return storageConfig.enabled;
|
||||||
|
|
|
@ -17,6 +17,11 @@ class Swarm {
|
||||||
this.port = this.storageConfig.port;
|
this.port = this.storageConfig.port;
|
||||||
this.embark = embark;
|
this.embark = embark;
|
||||||
this.fs = embark.fs;
|
this.fs = embark.fs;
|
||||||
|
this.isServiceRegistered = false;
|
||||||
|
this.addedToEmbarkJs = false;
|
||||||
|
this.addedToConsole = false;
|
||||||
|
this.storageProcessesLauncher = null;
|
||||||
|
this.usingRunningNode = false;
|
||||||
|
|
||||||
this.webServerConfig = embark.config.webServerConfig;
|
this.webServerConfig = embark.config.webServerConfig;
|
||||||
this.blockchainConfig = embark.config.blockchainConfig;
|
this.blockchainConfig = embark.config.blockchainConfig;
|
||||||
|
@ -49,18 +54,44 @@ class Swarm {
|
||||||
this.registerUploadCommand();
|
this.registerUploadCommand();
|
||||||
this.listenToCommands();
|
this.listenToCommands();
|
||||||
this.registerConsoleCommands();
|
this.registerConsoleCommands();
|
||||||
this.startProcess((err, newProcessStarted) => {
|
this.events.request("processes:register", "swarm", {
|
||||||
this.addProviderToEmbarkJS();
|
launchFn: (cb) => {
|
||||||
this.addObjectToConsole();
|
if(this.usingRunningNode) {
|
||||||
this.events.emit("swarm:process:started", err, newProcessStarted);
|
return cb(__("Swarm process is running in a separate process and cannot be started by Embark."));
|
||||||
|
}
|
||||||
|
this.startProcess((err, newProcessStarted) => {
|
||||||
|
this.addProviderToEmbarkJS();
|
||||||
|
this.addObjectToConsole();
|
||||||
|
this.events.emit("swarm:process:started", err, newProcessStarted);
|
||||||
|
cb();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
stopFn: (cb) => {
|
||||||
|
if(this.usingRunningNode) {
|
||||||
|
return cb(__("Swarm process is running in a separate process and cannot be stopped by Embark."));
|
||||||
|
}
|
||||||
|
this.stopProcess(cb);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.events.request("processes:launch", "swarm", (err, msg) => {
|
||||||
|
if (err) {
|
||||||
|
return this.logger.error(err);
|
||||||
|
}
|
||||||
|
if (msg) {
|
||||||
|
this.logger.info(msg);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
addObjectToConsole() {
|
addObjectToConsole() {
|
||||||
|
if (this.addedToConsole) return;
|
||||||
|
this.addedToConsole = true;
|
||||||
this.events.emit("runcode:register", "swarm", this.swarm);
|
this.events.emit("runcode:register", "swarm", this.swarm);
|
||||||
}
|
}
|
||||||
|
|
||||||
setServiceCheck() {
|
setServiceCheck() {
|
||||||
|
if (this.isServiceRegistered) return;
|
||||||
|
this.isServiceRegistered = true;
|
||||||
let self = this;
|
let self = this;
|
||||||
|
|
||||||
this.events.on('check:backOnline:Swarm', function () {
|
this.events.on('check:backOnline:Swarm', function () {
|
||||||
|
@ -89,6 +120,8 @@ class Swarm {
|
||||||
}
|
}
|
||||||
|
|
||||||
addProviderToEmbarkJS() {
|
addProviderToEmbarkJS() {
|
||||||
|
if(this.addedToEmbarkJs) return;
|
||||||
|
this.addedToEmbarkJs = true;
|
||||||
let code = "";
|
let code = "";
|
||||||
code += "\nconst __embarkSwarm = require('embarkjs-swarm')";
|
code += "\nconst __embarkSwarm = require('embarkjs-swarm')";
|
||||||
code += "\nEmbarkJS.Storage.registerProvider('swarm', __embarkSwarm.default || __embarkSwarm);";
|
code += "\nEmbarkJS.Storage.registerProvider('swarm', __embarkSwarm.default || __embarkSwarm);";
|
||||||
|
@ -99,27 +132,35 @@ class Swarm {
|
||||||
startProcess(callback) {
|
startProcess(callback) {
|
||||||
this.swarm.isAvailable((err, isAvailable) => {
|
this.swarm.isAvailable((err, isAvailable) => {
|
||||||
if (!err || isAvailable) {
|
if (!err || isAvailable) {
|
||||||
|
this.usingRunningNode = true;
|
||||||
this.logger.info("Swarm node found, using currently running node");
|
this.logger.info("Swarm node found, using currently running node");
|
||||||
return callback(null, false);
|
return callback(null, false);
|
||||||
}
|
}
|
||||||
this.logger.info("Swarm node not found, attempting to start own node");
|
this.logger.info("Swarm node not found, attempting to start own node");
|
||||||
let self = this;
|
let self = this;
|
||||||
const storageProcessesLauncher = new StorageProcessesLauncher({
|
if(this.storageProcessesLauncher === null) {
|
||||||
logger: self.logger,
|
this.storageProcessesLauncher = new StorageProcessesLauncher({
|
||||||
events: self.events,
|
logger: self.logger,
|
||||||
storageConfig: self.storageConfig,
|
events: self.events,
|
||||||
webServerConfig: self.webServerConfig,
|
storageConfig: self.storageConfig,
|
||||||
corsParts: self.embark.config.corsParts,
|
webServerConfig: self.webServerConfig,
|
||||||
blockchainConfig: self.blockchainConfig,
|
corsParts: self.embark.config.corsParts,
|
||||||
embark: self.embark
|
blockchainConfig: self.blockchainConfig,
|
||||||
});
|
embark: self.embark
|
||||||
|
});
|
||||||
|
}
|
||||||
self.logger.trace(`Storage module: Launching swarm process...`);
|
self.logger.trace(`Storage module: Launching swarm process...`);
|
||||||
return storageProcessesLauncher.launchProcess('swarm', (err) => {
|
return this.storageProcessesLauncher.launchProcess('swarm', (err) => {
|
||||||
callback(err, true);
|
callback(err, true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stopProcess(cb) {
|
||||||
|
if(!this.storageProcessesLauncher) return cb();
|
||||||
|
this.storageProcessesLauncher.stopProcess("swarm", cb);
|
||||||
|
}
|
||||||
|
|
||||||
registerUploadCommand() {
|
registerUploadCommand() {
|
||||||
const self = this;
|
const self = this;
|
||||||
this.embark.registerUploadCommand('swarm', (cb) => {
|
this.embark.registerUploadCommand('swarm', (cb) => {
|
||||||
|
|
|
@ -78,6 +78,7 @@ class SwarmProcess extends ProcessWrapper {
|
||||||
kill() {
|
kill() {
|
||||||
if (this.child) {
|
if (this.child) {
|
||||||
this.child.kill();
|
this.child.kill();
|
||||||
|
swarmProcess.send({result: constants.storage.exit});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
/*global web3 */
|
|
||||||
let __embarkSwarm = {_swarmConnection: undefined};
|
let __embarkSwarm = {_swarmConnection: undefined};
|
||||||
let SwarmAPI = require('swarm-api');
|
let SwarmAPI = require('swarm-api');
|
||||||
if (SwarmAPI.default) {
|
if (SwarmAPI.default) {
|
||||||
|
@ -14,11 +13,15 @@ __embarkSwarm.setProvider = function (options) {
|
||||||
this._connectError = new Error(`Cannot connect to Swarm node on ${this._connectUrl}`);
|
this._connectError = new Error(`Cannot connect to Swarm node on ${this._connectUrl}`);
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
if(!options.web3) {
|
||||||
|
reject(__("A web3 object must be passed in to __embarkSwarm.setProvider"));
|
||||||
|
}
|
||||||
|
const {web3, useOnlyGivenProvider} = options;
|
||||||
try {
|
try {
|
||||||
if (!web3.bzz.currentProvider && !options.useOnlyGivenProvider) {
|
if (!web3.bzz.currentProvider && !useOnlyGivenProvider) {
|
||||||
this._swarmConnection = new SwarmAPI({gateway: this._connectUrl});
|
this._swarmConnection = new SwarmAPI({gateway: this._connectUrl});
|
||||||
}
|
}
|
||||||
else if (options.useOnlyGivenProvider && web3.bzz.givenProvider !== null) {
|
else if (useOnlyGivenProvider && web3.bzz.givenProvider !== null) {
|
||||||
this._swarmConnection = new SwarmAPI({gateway: web3.bzz.givenProvider});
|
this._swarmConnection = new SwarmAPI({gateway: web3.bzz.givenProvider});
|
||||||
}
|
}
|
||||||
resolve(this);
|
resolve(this);
|
||||||
|
|
|
@ -72,11 +72,12 @@ Storage.isAvailable = function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: most of this logic should move to the provider implementations themselves
|
// TODO: most of this logic should move to the provider implementations themselves
|
||||||
Storage.setProviders = function (dappConnOptions) {
|
Storage.setProviders = function (dappConnOptions, addlOpts) {
|
||||||
const self = this;
|
const self = this;
|
||||||
detectSeries(dappConnOptions, (dappConn, callback) => {
|
detectSeries(dappConnOptions, (dappConn, callback) => {
|
||||||
let options = dappConn;
|
let options = dappConn;
|
||||||
if (dappConn === '$BZZ') options = {"useOnlyGivenProvider": true};
|
if (dappConn === '$BZZ') options = {"useOnlyGivenProvider": true};
|
||||||
|
options = {...options, ...addlOpts};
|
||||||
try {
|
try {
|
||||||
self.setProvider(dappConn === '$BZZ' ? dappConn : dappConn.provider, options).then(() => {
|
self.setProvider(dappConn === '$BZZ' ? dappConn : dappConn.provider, options).then(() => {
|
||||||
self.isAvailable().then((isAvailable) => {
|
self.isAvailable().then((isAvailable) => {
|
||||||
|
|
Loading…
Reference in New Issue