mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-09 21:46:12 +00:00
96495b99c3
* Add loglevel and logfile switch to `embark build` * Support existing `loglevel` and `logfile` switch for `embark run/upload` * make casing consistent for `loglevel` and `logfile` * remove passing engine to `build()` and instead pass needed objects in options. * prevent duplicate plugin initiation (above point) * allow `Events` object to be passed to `Engine` constructor and `init()` * prevent echo of upload commands to allow interception and control via logging
64 lines
2.0 KiB
JavaScript
64 lines
2.0 KiB
JavaScript
require('colors');
|
|
let async = require('async');
|
|
let shelljs = require('shelljs');
|
|
|
|
class Swarm {
|
|
constructor(options) {
|
|
this.options = options;
|
|
this.buildDir = options.buildDir || 'dist/';
|
|
}
|
|
|
|
deploy() {
|
|
return new Promise((resolve, reject) => {
|
|
console.log("deploying to swarm!");
|
|
let self = this;
|
|
async.waterfall([
|
|
function findBinary(callback) {
|
|
let swarm_bin = shelljs.which('swarm');
|
|
|
|
if (swarm_bin === 'swarm not found' || !swarm_bin) {
|
|
console.log('=== WARNING: Swarm not in an executable path. Guessing ~/go/bin/swarm for path'.yellow);
|
|
swarm_bin = "~/go/bin/swarm";
|
|
}
|
|
|
|
callback(null, swarm_bin);
|
|
},
|
|
function runCommand(swarm_bin, callback) {
|
|
let cmd = `"${swarm_bin}" --defaultpath ${self.buildDir} index.html --recursive up ${self.buildDir}`;
|
|
console.log(("=== adding " + self.buildDir + " to swarm").green);
|
|
console.trace(cmd);
|
|
shelljs.exec(cmd, {silent:true}, function(code, stdout, stderr){ // {silent:true}: don't echo cmd output so it can be controlled via logLevel
|
|
console.log(stdout.green);
|
|
callback(stderr, {code: code, output: stdout});
|
|
});
|
|
},
|
|
function getHashFromOutput(result, callback) {
|
|
if (result.code !== 0) {
|
|
callback("couldn't upload, is the swarm daemon running?");
|
|
}
|
|
else{
|
|
let rows = result.output.split("\n");
|
|
let dir_hash = rows.reverse()[1];
|
|
|
|
callback(null, dir_hash);
|
|
}
|
|
},
|
|
function printUrls(dir_hash, callback) {
|
|
console.log(("=== DApp available at http://localhost:8500/bzz:/" + dir_hash + "/").green);
|
|
|
|
callback();
|
|
}
|
|
], function (err, _result) {
|
|
if (err) {
|
|
console.log("error uploading to swarm".red);
|
|
console.log(err);
|
|
reject(err);
|
|
}
|
|
else resolve('successfully uploaded to swarm');
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = Swarm;
|