embark-area-51/lib/modules/ipfs/index.js

108 lines
3.5 KiB
JavaScript
Raw Normal View History

const UploadIPFS = require('./upload.js');
const utils = require('../../utils/utils.js');
const fs = require('../../core/fs.js');
const IpfsApi = require('ipfs-api');
const _ = require('underscore');
2017-12-27 00:55:42 +00:00
class IPFS {
constructor(embark, options) {
this.logger = embark.logger;
2017-12-27 01:32:51 +00:00
this.events = embark.events;
this.buildDir = options.buildDir;
this.storageConfig = embark.config.storageConfig;
this.host = options.host || this.storageConfig.upload.host;
this.port = options.port || this.storageConfig.upload.port;
this.protocol = options.protocol || this.storageConfig.upload.protocol;
2017-12-27 01:32:51 +00:00
this.embark = embark;
}
commandlineDeploy() {
let upload_ipfs = new UploadIPFS({
buildDir: this.buildDir || 'dist/',
storageConfig: this.storageConfig.upload,
2017-12-27 01:32:51 +00:00
configIpfsBin: this.storageConfig.ipfs_bin || "ipfs"
2017-12-27 00:55:42 +00:00
});
2017-12-27 01:32:51 +00:00
this.embark.registerUploadCommand('ipfs', upload_ipfs.deploy.bind(upload_ipfs));
}
setServiceCheck() {
let self = this;
let storageConfig = this.storageConfig;
if (!storageConfig.enabled) {
return;
}
if (_.findWhere(this.storageConfig.dappConnection, {'provider': 'ipfs'}) === undefined && (storageConfig.upload.provider !== 'ipfs' || storageConfig.available_providers.indexOf("ipfs") < 0)) {
2017-12-27 01:32:51 +00:00
return;
}
self.events.on('check:backOnline:IPFS', function () {
2018-05-08 21:49:46 +00:00
self.logger.info(__('IPFS node detected') + '..');
2017-12-27 01:32:51 +00:00
});
self.events.on('check:wentOffline:IPFS', function () {
2018-05-08 21:49:46 +00:00
self.logger.info(__('IPFS node is offline') + '..');
2017-12-27 01:32:51 +00:00
});
self.events.request("services:register", 'IPFS', function (cb) {
let url = (self.protocol || 'http') + '://' + self.host + ':' + self.port + '/api/v0/version';
self.logger.trace(`Checking IPFS version on ${url}...`);
if(self.protocol !== 'https'){
utils.httpGetJson(url, versionCb);
} else {
utils.httpsGetJson(url, versionCb);
}
function versionCb(err, body) {
2017-12-31 02:44:59 +00:00
if (err) {
self.logger.trace("IPFS unavailable");
2017-12-27 01:32:51 +00:00
return cb({name: "IPFS ", status: 'off'});
}
2017-12-31 02:44:59 +00:00
if (body.Version) {
self.logger.trace("IPFS available");
2017-12-31 02:44:59 +00:00
return cb({name: ("IPFS " + body.Version), status: 'on'});
}
self.logger.trace("IPFS available");
2017-12-31 02:44:59 +00:00
return cb({name: "IPFS ", status: 'on'});
}
2017-12-27 01:32:51 +00:00
});
2017-12-27 00:55:42 +00:00
}
addProviderToEmbarkJS() {
2018-01-10 16:15:32 +00:00
const self = this;
// TODO: make this a shouldAdd condition
2017-12-28 17:16:50 +00:00
if (this.storageConfig === {}) {
return;
}
if (this.storageConfig.available_providers.indexOf('ipfs') < 0 || _.findWhere(this.storageConfig.dappConnection, {'provider': 'ipfs'}) === undefined || this.storageConfig.enabled !== true) {
2017-12-28 17:16:50 +00:00
return;
}
2018-01-10 16:15:32 +00:00
self.events.request("version:get:ipfs-api", function(ipfsApiVersion) {
let currentIpfsApiVersion = require('../../../package.json').dependencies["ipfs-api"];
if (ipfsApiVersion !== currentIpfsApiVersion) {
self.events.request("version:getPackageLocation", "ipfs-api", ipfsApiVersion, function(err, location) {
2018-04-02 19:06:56 +00:00
self.embark.registerImportFile("ipfs-api", fs.dappPath(location));
2018-01-10 16:15:32 +00:00
});
}
});
2017-12-28 17:16:50 +00:00
let code = "";
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'embarkjs.js')).toString();
code += "\nEmbarkJS.Storage.registerProvider('ipfs', __embarkIPFS);";
this.embark.addCodeToEmbarkJS(code);
}
2017-12-28 22:42:25 +00:00
addObjectToConsole() {
let ipfs = IpfsApi(this.host, this.port);
2018-05-30 21:22:12 +00:00
this.events.emit("runcode:register", "ipfs", ipfs);
2018-05-18 19:56:36 +00:00
}
2017-12-27 00:55:42 +00:00
}
module.exports = IPFS;