mirror of https://github.com/embarklabs/embark.git
re-add register upload cmd api; refactor storage module initialization
This commit is contained in:
parent
be1d9cc502
commit
9592f3e69b
|
@ -254,17 +254,9 @@ class Engine {
|
||||||
}
|
}
|
||||||
|
|
||||||
storageService(_options) {
|
storageService(_options) {
|
||||||
this.registerModule('storage', {
|
this.registerModule('storage');
|
||||||
storageConfig: this.config.storageConfig,
|
this.registerModule('ipfs');
|
||||||
webServerConfig: this.config.webServerConfig,
|
this.registerModule('swarm');
|
||||||
blockchainConfig: this.config.blockchainConfig,
|
|
||||||
host: _options.host,
|
|
||||||
port: _options.port,
|
|
||||||
servicesMonitor: this.servicesMonitor,
|
|
||||||
events: this.events,
|
|
||||||
logger: this.logger,
|
|
||||||
context: this.context
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
web3Service(options) {
|
web3Service(options) {
|
||||||
|
|
|
@ -22,6 +22,7 @@ var Plugin = function(options) {
|
||||||
this.compilers = [];
|
this.compilers = [];
|
||||||
this.serviceChecks = [];
|
this.serviceChecks = [];
|
||||||
this.pluginTypes = [];
|
this.pluginTypes = [];
|
||||||
|
this.uploadCmds = [];
|
||||||
this.imports = [];
|
this.imports = [];
|
||||||
this.embarkjs_code = [];
|
this.embarkjs_code = [];
|
||||||
this.embarkjs_init_code = {};
|
this.embarkjs_init_code = {};
|
||||||
|
@ -173,6 +174,11 @@ Plugin.prototype.registerCompiler = function(extension, cb) {
|
||||||
this.addPluginType('compilers');
|
this.addPluginType('compilers');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Plugin.prototype.registerUploadCommand = function(cmd, cb) {
|
||||||
|
this.uploadCmds.push({cmd: cmd, cb: cb});
|
||||||
|
this.addPluginType('uploadCmds');
|
||||||
|
};
|
||||||
|
|
||||||
Plugin.prototype.addCodeToEmbarkJS = function(code) {
|
Plugin.prototype.addCodeToEmbarkJS = function(code) {
|
||||||
this.embarkjs_code.push(code);
|
this.embarkjs_code.push(code);
|
||||||
this.addPluginType('embarkjsCode');
|
this.addPluginType('embarkjsCode');
|
||||||
|
|
|
@ -18,10 +18,10 @@ class IPFS {
|
||||||
this.webServerConfig = embark.config.webServerConfig;
|
this.webServerConfig = embark.config.webServerConfig;
|
||||||
this.blockchainConfig = embark.config.blockchainConfig;
|
this.blockchainConfig = embark.config.blockchainConfig;
|
||||||
|
|
||||||
this.commandlineDeploy();
|
|
||||||
this.setServiceCheck();
|
this.setServiceCheck();
|
||||||
this.addProviderToEmbarkJS();
|
this.addProviderToEmbarkJS();
|
||||||
this.addObjectToConsole();
|
this.addObjectToConsole();
|
||||||
|
this.registerUploadCommand();
|
||||||
|
|
||||||
this._checkService((err) => {
|
this._checkService((err) => {
|
||||||
if (!err) {
|
if (!err) {
|
||||||
|
@ -32,16 +32,6 @@ class IPFS {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
commandlineDeploy() {
|
|
||||||
let upload_ipfs = new UploadIPFS({
|
|
||||||
buildDir: this.buildDir || 'dist/',
|
|
||||||
storageConfig: this.storageConfig.upload,
|
|
||||||
configIpfsBin: this.storageConfig.ipfs_bin || "ipfs"
|
|
||||||
});
|
|
||||||
|
|
||||||
this.events.setCommandHandler('storage:upload:ipfs', upload_ipfs.deploy.bind(upload_ipfs));
|
|
||||||
}
|
|
||||||
|
|
||||||
setServiceCheck() {
|
setServiceCheck() {
|
||||||
let self = this;
|
let self = this;
|
||||||
|
|
||||||
|
@ -154,6 +144,19 @@ class IPFS {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
registerUploadCommand() {
|
||||||
|
const self = this;
|
||||||
|
this.embark.registerUploadCommand('ipfs', (cb) => {
|
||||||
|
let upload_ipfs = new UploadIPFS({
|
||||||
|
buildDir: self.buildDir || 'dist/',
|
||||||
|
storageConfig: self.storageConfig,
|
||||||
|
configIpfsBin: self.storageConfig.ipfs_bin || "ipfs"
|
||||||
|
});
|
||||||
|
|
||||||
|
upload_ipfs.deploy(cb);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = IPFS;
|
module.exports = IPFS;
|
||||||
|
|
|
@ -1,35 +1,33 @@
|
||||||
const _ = require('underscore');
|
|
||||||
|
|
||||||
const IpfsModule = require('../ipfs');
|
|
||||||
const SwarmModule = require('../swarm');
|
|
||||||
|
|
||||||
class Storage {
|
class Storage {
|
||||||
constructor(embark, options){
|
constructor(embark, _options){
|
||||||
this.embark = embark;
|
this.embark = embark;
|
||||||
this.storageConfig = embark.config.storageConfig;
|
this.storageConfig = embark.config.storageConfig;
|
||||||
|
|
||||||
if (!this.storageConfig.enabled) return;
|
if (!this.storageConfig.enabled) return;
|
||||||
|
|
||||||
|
this.handleUploadCommand();
|
||||||
this.addSetProviders();
|
this.addSetProviders();
|
||||||
|
}
|
||||||
|
|
||||||
new IpfsModule(embark, options); /*eslint no-new: "off"*/
|
handleUploadCommand() {
|
||||||
new SwarmModule(embark, options); /*eslint no-new: "off"*/
|
const self = this;
|
||||||
|
this.embark.events.setCommandHandler('storage:upload', (cb) => {
|
||||||
|
let platform = self.storageConfig.upload.provider;
|
||||||
|
|
||||||
embark.events.setCommandHandler('storage:upload', (cb) => {
|
let uploadCmds = self.embark.getPluginsProperty('uploadCmds', 'uploadCmds');
|
||||||
let platform = options.storageConfig.upload.provider;
|
for (let uploadCmd of uploadCmds) {
|
||||||
|
if (uploadCmd.cmd === platform) {
|
||||||
if (['swarm', 'ipfs'].indexOf(platform) === -1) {
|
return uploadCmd.cb.call(uploadCmd.cb, cb);
|
||||||
return cb({message: __('platform "{{platform}}" is specified as the upload provider, however no plugins have registered an upload command for "{{platform}}".', {platform: platform})});
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
embark.events.request("storage:upload:" + platform, cb);
|
cb({message: __('platform "{{platform}}" is specified as the upload provider, however no plugins have registered an upload command for "{{platform}}".', {platform: platform})});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
addSetProviders() {
|
addSetProviders() {
|
||||||
const self = this;
|
let code = `\nEmbarkJS.Storage.setProviders(${JSON.stringify(this.storageConfig.dappConnection || [])});`;
|
||||||
|
|
||||||
let code = `\nEmbarkJS.Storage.setProviders(${JSON.stringify(this.storageConfig.dappConnection)});`;
|
|
||||||
|
|
||||||
let shouldInit = (storageConfig) => {
|
let shouldInit = (storageConfig) => {
|
||||||
return storageConfig.enabled;
|
return storageConfig.enabled;
|
||||||
|
|
|
@ -10,25 +10,25 @@ class Swarm {
|
||||||
constructor(embark, options) {
|
constructor(embark, options) {
|
||||||
this.logger = embark.logger;
|
this.logger = embark.logger;
|
||||||
this.events = embark.events;
|
this.events = embark.events;
|
||||||
this.buildDir = options.buildDir;
|
this.buildDir = embark.config.buildDir;
|
||||||
this.storageConfig = embark.config.storageConfig;
|
this.storageConfig = embark.config.storageConfig;
|
||||||
this.host = options.host || this.storageConfig.host;
|
this.host = this.storageConfig.host;
|
||||||
this.port = options.port || this.storageConfig.port;
|
this.port = this.storageConfig.port;
|
||||||
this.embark = embark;
|
this.embark = embark;
|
||||||
|
|
||||||
this.webServerConfig = embark.config.webServerConfig;
|
this.webServerConfig = embark.config.webServerConfig;
|
||||||
this.blockchainConfig = embark.config.blockchainConfig;
|
this.blockchainConfig = embark.config.blockchainConfig;
|
||||||
|
|
||||||
this.providerUrl = utils.buildUrl(options.protocol || options.storageConfig.upload.protocol, options.host || options.storageConfig.upload.host, options.port || options.storageConfig.upload.port);
|
this.providerUrl = utils.buildUrl(this.storageConfig.upload.protocol, this.storageConfig.upload.host, this.storageConfig.upload.port);
|
||||||
|
|
||||||
this.getUrl = options.storageConfig.upload.getUrl || this.providerUrl + '/bzz:/';
|
this.getUrl = this.storageConfig.upload.getUrl || this.providerUrl + '/bzz:/';
|
||||||
|
|
||||||
this.bzz = new Web3Bzz(this.providerUrl);
|
this.bzz = new Web3Bzz(this.providerUrl);
|
||||||
|
|
||||||
this.commandlineDeploy();
|
|
||||||
this.setServiceCheck();
|
this.setServiceCheck();
|
||||||
this.addProviderToEmbarkJS();
|
this.addProviderToEmbarkJS();
|
||||||
this.startProcess(() => {});
|
this.startProcess(() => {});
|
||||||
|
this.registerUploadCommand();
|
||||||
|
|
||||||
this._checkService((err) => {
|
this._checkService((err) => {
|
||||||
if (!err) {
|
if (!err) {
|
||||||
|
@ -39,17 +39,6 @@ class Swarm {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
commandlineDeploy() {
|
|
||||||
this.upload_swarm = new UploadSwarm({
|
|
||||||
buildDir: this.buildDir || 'dist/',
|
|
||||||
storageConfig: this.storageConfig,
|
|
||||||
getUrl: this.getUrl,
|
|
||||||
bzz: this.bzz
|
|
||||||
});
|
|
||||||
|
|
||||||
this.events.setCommandHandler('storage:upload:swarm', this.upload_swarm.deploy.bind(this.upload_swarm));
|
|
||||||
}
|
|
||||||
|
|
||||||
setServiceCheck() {
|
setServiceCheck() {
|
||||||
let self = this;
|
let self = this;
|
||||||
|
|
||||||
|
@ -124,6 +113,20 @@ class Swarm {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
registerUploadCommand(cb) {
|
||||||
|
const self = this;
|
||||||
|
this.embark.registerUploadCommand('ipfs', () => {
|
||||||
|
let upload_swarm = new UploadSwarm({
|
||||||
|
buildDir: self.buildDir || 'dist/',
|
||||||
|
storageConfig: self.storageConfig,
|
||||||
|
getUrl: self.getUrl,
|
||||||
|
bzz: self.bzz
|
||||||
|
});
|
||||||
|
|
||||||
|
upload_swarm.deploy(cb);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Swarm;
|
module.exports = Swarm;
|
||||||
|
|
Loading…
Reference in New Issue