2017-12-27 00:55:42 +00:00
|
|
|
let UploadIPFS = require('./upload.js');
|
2017-12-27 01:32:51 +00:00
|
|
|
let utils = require('../../utils/utils.js');
|
2017-12-28 17:16:50 +00:00
|
|
|
let fs = require('../../core/fs.js');
|
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 = options.storageConfig;
|
|
|
|
this.host = options.host || this.storageConfig.host;
|
|
|
|
this.port = options.port || this.storageConfig.port;
|
|
|
|
this.addCheck = options.addCheck;
|
|
|
|
this.embark = embark;
|
2017-12-27 00:55:42 +00:00
|
|
|
|
2017-12-27 01:32:51 +00:00
|
|
|
this.commandlineDeploy();
|
|
|
|
this.setServiceCheck();
|
2017-12-28 17:16:50 +00:00
|
|
|
this.addIPFSToEmbarkJS();
|
2017-12-28 22:42:25 +00:00
|
|
|
this.addSetProvider();
|
2017-12-27 01:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
commandlineDeploy() {
|
|
|
|
let upload_ipfs = new UploadIPFS({
|
|
|
|
buildDir: this.buildDir || 'dist/',
|
|
|
|
storageConfig: this.storageConfig,
|
|
|
|
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 (storageConfig.provider !== 'ipfs' && storageConfig.available_providers.indexOf("ipfs") < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.events.on('check:backOnline:IPFS', function () {
|
|
|
|
self.logger.info('IPFS node detected..');
|
|
|
|
});
|
|
|
|
|
|
|
|
self.events.on('check:wentOffline:IPFS', function () {
|
|
|
|
self.logger.info('IPFS node is offline..');
|
|
|
|
});
|
|
|
|
|
2018-03-30 14:59:31 +00:00
|
|
|
if (!self.addCheck) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.addCheck('IPFS', function (cb) {
|
2017-12-31 02:44:59 +00:00
|
|
|
self.logger.trace("Checking IPFS version...");
|
2018-03-02 22:25:59 +00:00
|
|
|
utils.httpGetJson('http://' + self.host + ':' + self.port + '/api/v0/version', function (err, body) {
|
2017-12-31 02:44:59 +00:00
|
|
|
if (err) {
|
|
|
|
self.logger.trace("Check IPFS version error: " + err);
|
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) {
|
|
|
|
return cb({name: ("IPFS " + body.Version), status: 'on'});
|
|
|
|
}
|
|
|
|
return cb({name: "IPFS ", status: 'on'});
|
2017-12-27 01:32:51 +00:00
|
|
|
});
|
|
|
|
});
|
2017-12-27 00:55:42 +00:00
|
|
|
}
|
|
|
|
|
2017-12-28 17:16:50 +00:00
|
|
|
addIPFSToEmbarkJS() {
|
2018-01-10 16:15:32 +00:00
|
|
|
const self = this;
|
2017-12-29 21:11:45 +00:00
|
|
|
// TODO: make this a shouldAdd condition
|
2017-12-28 17:16:50 +00:00
|
|
|
if (this.storageConfig === {}) {
|
|
|
|
return;
|
|
|
|
}
|
2017-12-29 21:11:45 +00:00
|
|
|
|
|
|
|
if ((this.storageConfig.available_providers.indexOf('ipfs') < 0) && (this.storageConfig.provider !== 'ipfs' || 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
|
|
|
|
|
|
|
addSetProvider() {
|
|
|
|
let config = JSON.stringify({
|
|
|
|
server: this.storageConfig.host,
|
|
|
|
port: this.storageConfig.port,
|
2018-03-02 21:57:55 +00:00
|
|
|
protocol: this.storageConfig.protocol,
|
2017-12-28 22:42:25 +00:00
|
|
|
getUrl: this.storageConfig.getUrl
|
|
|
|
});
|
|
|
|
let code = "\nEmbarkJS.Storage.setProvider('ipfs'," + config + ");";
|
|
|
|
|
|
|
|
let shouldInit = (storageConfig) => {
|
|
|
|
return (storageConfig.provider === 'ipfs' && storageConfig.enabled === true);
|
|
|
|
};
|
|
|
|
|
|
|
|
this.embark.addProviderInit('storage', code, shouldInit);
|
|
|
|
}
|
2017-12-27 00:55:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = IPFS;
|