embark-area-51/lib/modules/swarm/upload.js

55 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-12-05 23:14:46 +00:00
require('colors');
2017-03-29 17:50:05 +00:00
let async = require('async');
2017-01-07 21:52:29 +00:00
2017-03-30 11:12:39 +00:00
class Swarm {
constructor(options) {
this.options = options;
this.buildDir = options.buildDir || 'dist/';
}
deploy(deployOptions) {
return new Promise((resolve, reject) => {
console.log("deploying to swarm!");
let self = this;
let web3 = (deployOptions || {}).web3;
async.waterfall([
function findWeb3(callback){
if(!web3){
callback('web3 must be passed in to the swarm deploy() method');
}else callback();
},
function setProvider(callback){
web3.bzz.setProvider(`http://${self.options.storageConfig.host}:${self.options.storageConfig.port}`);
callback();
},
function runCommand(callback) {
console.log(("=== adding " + self.buildDir + " to swarm").green);
web3.bzz.upload({
path: self.buildDir, // path to data / file / directory
kind: "directory", // could also be "file" or "data"
defaultFile: "index.html" // optional, and only for kind === "directory"
})
.then((success) => {
callback(null, success);
})
.catch(callback);
},
function printUrls(dir_hash, callback) {
console.log((`=== DApp available at ${self.options.storageConfig.getUrl}${dir_hash}/`).green);
callback();
2017-03-30 11:12:39 +00:00
}
], function (err, _result) {
if (err) {
console.log("error uploading to swarm".red);
console.log(err);
reject(err);
2017-03-30 11:12:39 +00:00
}
else resolve('successfully uploaded to swarm');
});
2017-03-30 11:12:39 +00:00
});
}
}
2017-01-07 21:52:29 +00:00
module.exports = Swarm;