embark-area-51/lib/processes/storageProcesses/ipfs.js

114 lines
3.7 KiB
JavaScript
Raw Normal View History

2018-05-28 16:49:44 +00:00
const child_process = require('child_process');
2018-05-28 15:48:27 +00:00
const ProcessWrapper = require('../../process/processWrapper');
const constants = require('../../constants');
2018-05-28 15:51:38 +00:00
let ipfsProcess; // eslint-disable-line no-unused-vars
2018-05-28 15:48:27 +00:00
class IPFSProcess extends ProcessWrapper {
constructor(_options) {
super();
this.cors = _options.cors;
this.checkIPFSVersion();
2018-05-28 15:48:27 +00:00
this.startIPFSDaemon();
}
checkIPFSVersion() {
2018-05-28 16:49:44 +00:00
child_process.exec('ipfs --version', {silent: true}, (err, stdout, _stderr) => {
if (err) {
console.error(err);
return;
}
const match = stdout.match(/[0-9]+\.[0-9]+\.[0-9]+/);
if (match[0]) {
const versions = match[0].split('.');
2018-05-25 17:50:44 +00:00
if (versions[0] <= 0 && versions[1] <= 4 && versions[2] <= 14) {
console.error(`You are using IPFS version ${match[0]} which has an issue with processes.`);
console.error(`Please update to IPFS version 0.4.15 or more recent: https://github.com/ipfs/ipfs-update`);
}
}
});
}
2018-05-28 15:48:27 +00:00
startIPFSDaemon() {
2018-05-28 15:51:38 +00:00
const self = this;
// spawn the daemon (muhaha)
2018-05-30 14:52:15 +00:00
this.child = child_process.spawn('ipfs', ['daemon']);
2018-05-28 19:43:27 +00:00
2018-05-30 14:52:15 +00:00
this.child.on('error', (err) => {
2018-05-28 19:43:27 +00:00
err = err.toString();
console.error('IPFS error: ', err);
});
2018-05-30 14:52:15 +00:00
this.child.stderr.on('data', (data) => {
2018-05-28 19:43:27 +00:00
data = data.toString();
console.log(`IPFS error: ${data}`);
});
2018-05-30 14:52:15 +00:00
this.child.stdout.on('data', (data) => {
2018-05-28 19:43:27 +00:00
data = data.toString();
2018-05-28 15:51:38 +00:00
if (!self.readyCalled && data.indexOf('Daemon is ready') > -1) {
self.readyCalled = true;
// update IPFS cors before spawning a daemon (muhaha)
console.log(`RUNNING IPFS CORS UPDATE COMMAND: ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\\"${self.cors.join('\\", \\"')}\\"]"`);
child_process.exec(`ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\\"${self.cors.join('\\", \\"')}\\"]"`, {silent: true}, (err, stdout, _stderr) => {
if(err){
err = err.toString();
console.error('IPFS CORS update error: ', err);
}
if(_stderr){
_stderr = _stderr.toString();
console.error(`IPFS CORS update error: ${_stderr}`);
}
child_process.exec('ipfs config --json API.HTTPHeaders.Access-Control-Allow-Credentials "[\\"true\\"]"', {silent: true}, (err, stdout, _stderr) => {
if(err){
err = err.toString();
console.error('IPFS CORS update error: ', err);
}
if(_stderr){
_stderr = _stderr.toString();
console.error(`IPFS CORS update error: ${_stderr}`);
}
child_process.exec('ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods "[\\"PUT\\", \\"POST\\", \\"GET\\"]"', {silent: true}, (err, stdout, _stderr) => {
if(err){
err = err.toString();
console.error('IPFS CORS update error: ', err);
}
if(_stderr){
_stderr = _stderr.toString();
console.error(`IPFS CORS update error: ${_stderr}`);
}
self.send({result: constants.storage.initiated});
});
});
});
2018-05-28 15:51:38 +00:00
}
console.log('IPFS: ' + data);
});
2018-05-30 14:52:15 +00:00
this.child.on('exit', (code) => {
2018-05-28 15:51:38 +00:00
if (code) {
console.error('IPFS exited with error code ' + code);
}
});
2018-05-28 15:48:27 +00:00
}
2018-05-30 14:52:15 +00:00
kill() {
if (this.child) {
this.child.kill();
}
}
2018-05-28 15:48:27 +00:00
}
process.on('message', (msg) => {
2018-05-30 14:52:15 +00:00
if (msg === 'exit') {
return ipfsProcess.kill();
}
if (msg.action === constants.storage.init) {
2018-05-28 15:48:27 +00:00
ipfsProcess = new IPFSProcess(msg.options);
}
});