embark/lib/modules/ipfs/upload.js

60 lines
1.8 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');
let shelljs = require('shelljs');
2017-03-30 11:12:39 +00:00
class IPFS {
constructor(options) {
this.options = options;
this.buildDir = options.buildDir || 'dist/';
this.storageConfig = options.storageConfig;
this.configIpfsBin = this.storageConfig.ipfs_bin || "ipfs";
}
deploy() {
2017-12-27 00:55:42 +00:00
console.log("deploying!");
2017-03-30 11:12:39 +00:00
let self = this;
async.waterfall([
function findBinary(callback) {
2018-04-10 18:17:59 +00:00
let ipfs_bin = shelljs.which(self.configIpfsBin);
2017-03-30 11:12:39 +00:00
2018-04-10 20:02:59 +00:00
if (ipfs_bin === 'ipfs not found' || !ipfs_bin) {
2017-03-30 11:12:39 +00:00
console.log(('=== WARNING: ' + self.configIpfsBin + ' not found or not in the path. Guessing ~/go/bin/ipfs for path').yellow);
ipfs_bin = "~/go/bin/ipfs";
}
return callback(null, ipfs_bin);
},
function runCommand(ipfs_bin, callback) {
2018-04-10 18:17:59 +00:00
let cmd = `"${ipfs_bin}" add -r ${self.buildDir}`;
2017-03-30 11:12:39 +00:00
console.log(("=== adding " + self.buildDir + " to ipfs").green);
console.log(cmd.green);
let result = shelljs.exec(cmd);
return callback(null, result);
},
function getHashFromOutput(result, callback) {
let rows = result.output.split("\n");
let dir_row = rows[rows.length - 2];
let dir_hash = dir_row.split(" ")[1];
return callback(null, dir_hash);
},
function printUrls(dir_hash, callback) {
console.log(("=== DApp available at http://localhost:8080/ipfs/" + dir_hash + "/").green);
console.log(("=== DApp available at http://gateway.ipfs.io/ipfs/" + dir_hash + "/").green);
return callback();
2017-01-08 18:19:27 +00:00
}
2017-12-14 00:49:05 +00:00
], function (err, _result) {
2017-01-08 18:19:27 +00:00
if (err) {
console.log("error uploading to ipfs".red);
console.log(err);
}
2017-03-30 11:12:39 +00:00
});
}
}
2016-10-02 21:04:22 +00:00
module.exports = IPFS;