embark/lib/modules/swarm/upload.js

67 lines
2.3 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/';
this.swarm = options.swarm;
this.providerUrl = options.providerUrl;
this.env = options.env;
2017-03-30 11:12:39 +00:00
}
2018-07-07 21:02:46 +00:00
deploy(cb) {
console.log(__("deploying to swarm!"));
const self = this;
const swarm = this.swarm;
2018-07-07 21:02:46 +00:00
async.waterfall([
function runCommand(callback) {
console.log(("=== " + __("adding %s to swarm", self.buildDir)).green);
swarm.uploadDirectory(self.buildDir, 'index.html', callback);
2018-07-07 21:02:46 +00:00
},
function printUrls(dir_hash, callback) {
if (!dir_hash) {
return callback('No directory hash was returned');
2017-03-30 11:12:39 +00: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);
if(self.env === 'development') {
console.log(("\n=== " +
"Blockchain must be running".bold +
" ===").yellow);
console.log((
"embark run".italic +
__(" or ") +
"embark blockchain".italic +
__(" must be running when the site is loaded to interact with the blockchain.\n")
).yellow);
console.log(("=== " +
"Usage with the public gateway".bold +
" ===").yellow);
console.log((
__("If you wish to load your development site from the public gateway (swarm-gateways.net), you will need to first update your CORS settings (") +
"config/blockchain.js > wsOrigins".italic +
__(" and ") +
"config/blockchain.js > rpcCorsDomain".italic +
__(") to allow ") +
"swarm-gateways.net".underline +
__(". If these were set to 'auto', they would now need to be set to ") +
"https://swarm-gateways.net,http://localhost:8000,http://localhost:8500,embark".underline +
".\n").yellow);
}
2018-07-07 21:02:46 +00:00
2018-07-30 15:57:00 +00:00
callback(null, dir_hash);
2018-07-07 21:02:46 +00:00
}
2018-07-30 15:57:00 +00:00
], function (err, dir_hash) {
2018-07-07 21:02:46 +00:00
if (err) {
console.log(__("error uploading to swarm").red);
console.log(err);
return cb(err);
}
2018-07-30 15:57:00 +00:00
cb(null, dir_hash);
2017-03-30 11:12:39 +00:00
});
}
}
2017-01-07 21:52:29 +00:00
module.exports = Swarm;