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

183 lines
5.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');
// TODO: not great, breaks module isolation
const StorageProcessesLauncher = require('../storage/storageProcessesLauncher');
2017-12-27 00:55:42 +00:00
class IPFS {
constructor(embark, options) {
const self = this;
2017-12-27 00:55:42 +00:00
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;
2018-07-27 09:51:17 +00:00
this.namesystemConfig = embark.config.namesystemConfig;
2017-12-27 01:32:51 +00:00
this.embark = embark;
2018-07-07 16:29:04 +00:00
2018-07-07 21:46:15 +00:00
this.webServerConfig = embark.config.webServerConfig;
this.blockchainConfig = embark.config.blockchainConfig;
2018-07-07 16:29:04 +00:00
2018-07-27 09:51:17 +00:00
if (this.isIpfsEnabledInTheConfig() || this.isIpnsEnabledInTheConfig()) {
this.downloadIpfsApi();
this.addDefaultToEmbarkJS();
}
2018-07-27 09:51:17 +00:00
if (this.isIpfsEnabledInTheConfig()) {
this.setServiceCheck();
this.addStorageProviderToEmbarkJS();
this.addObjectToConsole();
this.registerUploadCommand();
2018-07-27 09:51:17 +00:00
this._checkService((err) => {
if (!err) {
return;
}
self.logger.info("IPFS node not found, attempting to start own node");
self.startProcess(() => {});
});
}
if (this.isIpnsEnabledInTheConfig()) {
this.addNamesystemProviderToEmbarkJS();
this.setNamesystemProvider();
}
}
downloadIpfsApi() {
const self = this;
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));
});
}
});
2017-12-27 01:32:51 +00:00
}
setServiceCheck() {
let self = this;
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) {
self._checkService((err, body) => {
2017-12-31 02:44:59 +00:00
if (err) {
2018-07-07 19:00:42 +00:00
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) {
2018-07-07 19:00:42 +00:00
self.logger.trace("IPFS available");
2017-12-31 02:44:59 +00:00
return cb({name: ("IPFS " + body.Version), status: 'on'});
}
2018-07-07 19:00:42 +00:00
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
}
_getNodeUrl() {
if (this.storageConfig.upload.provider === 'ipfs') {
2018-07-11 07:24:03 +00:00
return utils.buildUrlFromConfig(this.storageConfig.upload) + '/api/v0/version';
}
for (let connection of this.storageConfig.dappConnection) {
if (connection.provider === 'ipfs') {
2018-07-11 07:24:03 +00:00
return utils.buildUrlFromConfig(connection) + '/api/v0/version';
}
}
}
_checkService(cb) {
let url = this._getNodeUrl();
2018-07-08 18:24:19 +00:00
utils.getJson(url, cb);
}
2018-07-27 09:51:17 +00:00
addDefaultToEmbarkJS() {
let code = "";
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'embarkjs' , 'default.js')).toString();
2017-12-28 17:16:50 +00:00
2018-07-27 09:51:17 +00:00
this.embark.addCodeToEmbarkJS(code);
}
2018-01-10 16:15:32 +00:00
2018-07-27 09:51:17 +00:00
addStorageProviderToEmbarkJS() {
2017-12-28 17:16:50 +00:00
let code = "";
2018-07-27 09:51:17 +00:00
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'embarkjs', 'storage.js')).toString();
2017-12-28 17:16:50 +00:00
code += "\nEmbarkJS.Storage.registerProvider('ipfs', __embarkIPFS);";
2018-07-27 09:51:17 +00:00
this.embark.addCodeToEmbarkJS(code);
}
addNamesystemProviderToEmbarkJS() {
let code = "";
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'embarkjs', 'name.js')).toString();
2018-07-26 13:03:35 +00:00
code += "\nEmbarkJS.Names.registerProvider('ipns', __embarkIPFS);";
2017-12-28 17:16:50 +00:00
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
}
2018-07-07 16:29:04 +00:00
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...`);
2018-07-08 17:43:41 +00:00
return storageProcessesLauncher.launchProcess('ipfs', callback);
2018-07-07 16:29:04 +00:00
}
registerUploadCommand() {
const self = this;
this.embark.registerUploadCommand('ipfs', (cb) => {
let upload_ipfs = new UploadIPFS({
buildDir: self.buildDir || 'dist/',
storageConfig: self.storageConfig,
configIpfsBin: self.storageConfig.ipfs_bin || "ipfs"
});
upload_ipfs.deploy(cb);
});
}
2018-07-08 18:14:44 +00:00
isIpfsEnabledInTheConfig() {
2018-07-08 22:21:27 +00:00
let {enabled, available_providers, dappConnection} = this.storageConfig;
2018-07-08 18:14:44 +00:00
return enabled && (available_providers.indexOf('ipfs') > 0 || dappConnection.find(c => c.provider === 'ipfs'));
}
2018-07-27 09:51:17 +00:00
isIpnsEnabledInTheConfig() {
2018-07-30 11:49:03 +00:00
let {enabled, available_providers} = this.namesystemConfig;
return enabled && available_providers.indexOf('ipns') > 0;
2018-07-27 09:51:17 +00:00
}
setNamesystemProvider() {
let code = `\nEmbarkJS.Names.setProvider('ipns', ${JSON.stringify(this.storageConfig.dappConnection[0] || {})});`;
2018-07-30 11:49:03 +00:00
let shouldInit = (namesystemConfig) => {
return (namesystemConfig.provider === 'ipns' && namesystemConfig.enabled === true);
};
this.embark.addProviderInit('names', code, shouldInit);
2018-07-27 09:51:17 +00:00
}
2017-12-27 00:55:42 +00:00
}
module.exports = IPFS;