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'); const StorageProcessesLauncher = require('../../processes/storageProcesses/storageProcessesLauncher'); class IPFS { constructor(embark, options) { const self = this; this.logger = embark.logger; this.events = embark.events; this.buildDir = options.buildDir; this.storageConfig = embark.config.storageConfig; this.embark = embark; this.webServerConfig = embark.config.webServerConfig this.blockchainConfig = embark.config.blockchainConfig this.commandlineDeploy(); this.setServiceCheck(); this.addProviderToEmbarkJS(); this.addObjectToConsole(); this._checkService((err) => { if (!err) { return; } self.logger.info("IPFS node not found, attempting to start own node"); self.startProcess(() => {}); }); } commandlineDeploy() { let upload_ipfs = new UploadIPFS({ buildDir: this.buildDir || 'dist/', storageConfig: this.storageConfig.upload, configIpfsBin: this.storageConfig.ipfs_bin || "ipfs" }); this.events.setCommandHandler('storage:upload:ipfs', upload_ipfs.deploy.bind(upload_ipfs)); } setServiceCheck() { console.dir("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)) { 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') + '..'); }); self.events.request("services:register", 'IPFS', function (cb) { self._checkService((err, body) => { if (err) { self.logger.info("IPFS unavailable"); return cb({name: "IPFS ", status: 'off'}); } if (body.Version) { self.logger.info("IPFS available"); return cb({name: ("IPFS " + body.Version), status: 'on'}); } self.logger.info("IPFS available"); return cb({name: "IPFS ", status: 'on'}); }); }); } _getNodeUrl() { if (this.storageConfig.upload.provider === 'ipfs') { let { protocol, host, port } = this.storageConfig.upload.provider; return (protocol || 'http') + '://' + host + ':' + port + '/api/v0/version'; } for (let connection of this.storageConfig.dappConnection) { if (connection.provider === 'ipfs') { let { protocol, host, port } = connection; return (protocol || 'http') + '://' + host + ':' + port + '/api/v0/version'; } } } _checkService(cb) { const self = this; let url = this._getNodeUrl(); self.logger.info(`Checking IPFS version on ${url}...`); if (self.protocol !== 'https'){ utils.httpGetJson(url, cb); } else { utils.httpsGetJson(url, cb); } } addProviderToEmbarkJS() { const self = this; // TODO: make this a shouldAdd condition if (this.storageConfig === {}) { return; } if (this.storageConfig.available_providers.indexOf('ipfs') < 0 || _.findWhere(this.storageConfig.dappConnection, {'provider': 'ipfs'}) === undefined || this.storageConfig.enabled !== true) { return; } 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) { self.embark.registerImportFile("ipfs-api", fs.dappPath(location)); }); } }); let code = ""; code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'embarkjs.js')).toString(); code += "\nEmbarkJS.Storage.registerProvider('ipfs', __embarkIPFS);"; this.embark.addCodeToEmbarkJS(code); } addObjectToConsole() { let ipfs = IpfsApi(this.host, this.port); this.events.emit("runcode:register", "ipfs", ipfs); } startProcess(callback) { let self = this; const storageProcessesLauncher = new StorageProcessesLauncher({ logger: self.logger, events: self.events, storageConfig: self.storageConfig, webServerConfig: self.webServerConfig, blockchainConfig: self.blockchainConfig }); self.logger.trace(`Storage module: Launching ipfs process...`); return storageProcessesLauncher.launchProcess('ipfs', (err) => { if (err) { return callback(err); } callback(); }); } } module.exports = IPFS;