43 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-12-05 18:14:46 -05:00
require('colors');
2017-03-30 02:50:05 +09:00
let async = require('async');
2017-01-07 16:52:29 -05:00
2017-03-30 20:12:39 +09:00
class Swarm {
constructor(options) {
this.options = options;
this.buildDir = options.buildDir || 'dist/';
this.swarm = options.swarm;
this.providerUrl = options.providerUrl;
2017-03-30 20:12:39 +09:00
}
2018-07-08 00:02:46 +03:00
deploy(cb) {
console.log(__("deploying to swarm!"));
const self = this;
const swarm = this.swarm;
2018-07-08 00:02:46 +03:00
async.waterfall([
function runCommand(callback) {
console.log(("=== " + __("adding %s to swarm", self.buildDir)).green);
swarm.uploadDirectory(self.buildDir, 'index.html', callback);
2018-07-08 00:02:46 +03:00
},
function printUrls(dir_hash, callback) {
if (!dir_hash) {
return callback('No directory hash was returned');
2017-03-30 20:12:39 +09:00
}
console.log(("=== " + __("DApp available at") + ` ${self.providerUrl}/bzz:/${dir_hash}/index.html`).green);
console.log(("=== " + __("DApp available at") + ` https://swarm-gateways.net/bzz:/${dir_hash}/index.html`).green);
console.log(("=== " + __("NOTE: Swarm AND a blockchain node must be running for the dApp to work correctly (ie 'embark run')").yellow));
2018-07-08 00:02:46 +03:00
2018-07-30 11:57:00 -04:00
callback(null, dir_hash);
2018-07-08 00:02:46 +03:00
}
2018-07-30 11:57:00 -04:00
], function (err, dir_hash) {
2018-07-08 00:02:46 +03:00
if (err) {
console.log(__("error uploading to swarm").red);
console.log(err);
return cb(err);
}
2018-07-30 11:57:00 -04:00
cb(null, dir_hash);
2017-03-30 20:12:39 +09:00
});
}
}
2017-01-07 16:52:29 -05:00
module.exports = Swarm;