3 Commits

Author SHA1 Message Date
ef1ae5add7 Use DNS multiaddr
Makes it much easier to identify the node you're connecting to
2020-10-26 09:16:00 +01:00
9c34e4c913 WIP Use new IPFS peering config
Currently crashes go-ipfs 0.6 for some reason.
2020-10-25 10:59:59 +01:00
ba5f67861f Change IPFS bootstrap node 2020-10-23 12:08:36 +02:00
6 changed files with 1817 additions and 2960 deletions

View File

@@ -1,6 +1,6 @@
# Kredits IPFS Pinner
This tool pins the IPFS documents of a Kredits organization on any IPFS node.
This tool pins the IPFS hashes of a Kredits organisation on an IPFS node.
## Usage
@@ -9,11 +9,11 @@ config flags, in case it is not running on localhost with default ports.)
### With NPX magic
npx @kredits/ipfs-pinner
npx @kosmos/kredits-ipfs-pinner
### Global install
npm install -g @kredits/ipfs-pinner
npm install -g @kosmos/kredits-ipfs-pinner
kredits-ipfs-pinner
### From repo

View File

@@ -1,6 +0,0 @@
[
{
"ID": "QmRw21aC3TroRVdZhrE2Qh4W6PBA67kbE8p3fNfsVcfW8D",
"Addrs": ["/dns4/draco.kosmos.org/tcp/4001"]
}
]

View File

@@ -1,30 +1,38 @@
#!/usr/bin/env node
const fs = require('fs');
const debug = require('debug')('ipfs-pinner');
const Kredits = require('@kredits/contracts');
const Kredits = require('kredits-contracts');
const IpfsPinner = require('./lib/ipfs-pinner');
const defaultPeers = JSON.parse(fs.readFileSync('./config/peers.json'));
const debug = require('debug')('ipfs-pinner');
const { inspect } = require('util');
// TODO make configurable
const peerId = "QmbqZCZ2RzVr4r1UEdFak6ra76kHxtGmfV9r3e1Ev6Tj5D";
const peerAddrs = [ "/dns4/barnard.kosmos.org/tcp/4001" ];
const bootstrapNode = `${peerAddrs[0]}/ipfs/${peerId}`;
const peerConfig = { "ID": peerId, "Addrs": [ peerAddrs ] };
const argv = require('yargs')
.default({
rpcUrl: 'https://rsk-testnet.kosmos.org',
network: 'rinkeby',
apm: 'open.aragonpm.eth',
host: 'localhost',
port: '5001',
protocol: 'http',
monitor: true,
bootstrapNode: `${defaultPeers[0].Addrs[0]}/ipfs/${defaultPeers[0].ID}`
bootstrapNode: bootstrapNode
})
.boolean('monitor')
.describe({
rpcUrl: 'Web3/EVM node RPC URL; alternative to --network',
network: 'Ethereum network to connect to',
rpcUrl: 'Ethereum node RPC URL; alternative to --network',
daoAddress: 'Optional Kredits DAO address',
host: 'IPFS API host',
port: 'IPFS API port',
protocol: 'IPFS API protocol',
monitor: 'Monitor contract events for new IPFS documents',
bootstrapNode: 'IPFS node address to connect to before fetching documents'
})
.example('$0 --host localhost', 'Pins all existing IPFS documents to the IPFS API running on localhost and monitors for new events')
.example('$0 --network rinkeby --host localhost', 'Pins all existing IPFS documents to the IPFS API running on localhost and monitors for new events.')
.argv;
const ipfsConfig = {
@@ -38,31 +46,45 @@ console.log(`Using IPFS:`, ipfsConfig);
(async () => {
try {
const kredits = await Kredits.for(
{ rpcUrl: argv.rpcUrl },
{ ipfsConfig: ipfsConfig }
{ network: argv.network, rpcUrl: argv.rpcUrl },
{ apm: argv.apm, ipfsConfig: ipfsConfig, addresses: { Kernel: argv.daoAddress } }
).init();
// Check the connection to the IPFS client
// check the connection to the IPFS client
// TODO redesign IPFS wrapper API and do not use an internal attribute
const ipfsApi = kredits.ipfs._ipfsAPI;
await ipfsApi.id();
debug(`Connecting to known IPFS node ${argv.bootstrapNode}`);
await ipfsApi.swarm.connect(argv.bootstrapNode);
// debug(`Connecting to known IPFS node ${argv.bootstrapNode}`);
// await ipfsApi.swarm.connect(argv.bootstrapNode);
const ipfsPinner = new IpfsPinner(kredits);
let peers;
ipfsPinner.pinAll().then(pins => {
console.log(`Pinned ${pins.length} existing documents`);
});
try {
peers = await ipfsApi.config.get('Peering.Peers');
} catch(e) { /* No peers configured */ }
ipfsPinner.monitor(pin => {
console.log('Pinned a new document:', pin[0]["hash"]);
});
if (peers) {
// TODO check for kosmos peer
debug('IPFS peers configured:');
debug(inspect(peers.map(p => p.ID)));
} else {
debug(`Configuring persistent IPFS peer: ${peerId}`);
await ipfsApi.config.set('Peering', { "Peers": [ peerConfig ]});
}
// TODO Add new deployment/DAO/org ID or all contract proxy addresses
// console.log(`Subscribed to DAO: ${kredits.Kernel.contract.address}`);
// const ipfsPinner = new IpfsPinner(kredits);
// ipfsPinner.pinAll().then(pins => {
// console.log(`Pinned ${pins.length} existing documents`);
// });
//
// ipfsPinner.monitor(pin => {
// console.log('Pinned a new document:', pin[0]["hash"]);
// });
console.log(`Subscribed to DAO: ${kredits.Kernel.contract.address}`);
} catch(e) {
console.log('Failed to start');
console.log(e);

View File

@@ -1,16 +1,5 @@
const debug = require('debug')('ipfs-pinner');
async function promiseAllInBatches(task, items, batchSize) {
let position = 0;
let results = [];
while (position < items.length) {
const itemsForBatch = items.slice(position, position + batchSize);
results = [...results, ...await Promise.allSettled(itemsForBatch.map(item => task(item)))];
position += batchSize;
}
return results;
}
class IpfsPinner {
constructor (kredits, ipfsApi) {
this.kredits = kredits;
@@ -18,12 +7,12 @@ class IpfsPinner {
}
async pinAll () {
const contributorHashes = await this._pinAllFromContract(this.kredits.Contributor);
const contributionHashes = await this._pinAllFromContract(this.kredits.Contribution);
const reimbursementHashes = await this._pinAllFromContract(this.kredits.Reimbursement);
const contributorHashes = await this._pinAllFromContract(this.kredits.Contributor);
const contributionHashes = await this._pinAllFromContract(this.kredits.Contribution);
const proposalHashes = await this._pinAllFromContract(this.kredits.Proposal);
return contributorHashes.concat(contributionHashes)
.concat(reimbursementHashes);
.concat(proposalHashes);
}
monitor (callback) {
@@ -44,25 +33,19 @@ class IpfsPinner {
});
}
async _pinAllFromContract (contract) {
_pinAllFromContract (contract) {
debug(`Pinning data from ${contract.constructor.name}...`);
const count = await contract.count;
debug('Item count:', count);
const ids = [...Array(count).keys()].map(i => i+1);
const cids = [];
async function loadAndPin (id) {
debug(`Loading ${contract.constructor.name} #${id}`);
return contract.getData(id).then(data => {
debug(`Pinning ${contract.constructor.name} #${id}`);
return this.ipfsApi.pin(data).then(cid => cids.push(cid));
return contract.count.then(count => {
let promises = [...Array(count).keys()].map(i => {
let id = i + 1; // 0 => 1 - ids start with 1 and not with 0
debug(`Loading ${contract.constructor.name} #${id}`);
return contract.getData(id).then(data => {
debug(`Pinning ${contract.constructor.name} #${id}`);
return this.ipfsApi.pin(data);
});
});
}
await promiseAllInBatches(loadAndPin.bind(this), ids, 100);
return cids;
return Promise.all(promises);
});
}
}
module.exports = IpfsPinner;

4646
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -20,9 +20,9 @@
],
"license": "MIT",
"dependencies": {
"@kredits/contracts": "git+https://gitea.kosmos.org/kredits/contracts#6e0ec87",
"debug": "^4.3.4",
"yargs": "^17.6.0"
"debug": "^4.1.1",
"kredits-contracts": "^5.4.0",
"yargs": "^13.2.4"
},
"repository": {
"type": "git",