Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit e290a38

Browse files
author
Alan Shaw
authored
fix: block.put options (#844)
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent e505098 commit e290a38

File tree

3 files changed

+55
-13
lines changed

3 files changed

+55
-13
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"eslint-plugin-react": "^7.10.0",
8181
"go-ipfs-dep": "~0.4.17",
8282
"gulp": "^3.9.1",
83-
"interface-ipfs-core": "~0.75.1",
83+
"interface-ipfs-core": "~0.78.0",
8484
"ipfsd-ctl": "~0.39.0",
8585
"pull-stream": "^3.6.8",
8686
"socket.io": "^2.1.1",

src/block/put.js

+49-12
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,72 @@
33
const promisify = require('promisify-es6')
44
const Block = require('ipfs-block')
55
const CID = require('cids')
6-
const once = require('once')
6+
const multihash = require('multihashes')
77
const SendOneFile = require('../utils/send-one-file')
88

99
module.exports = (send) => {
1010
const sendOneFile = SendOneFile(send, 'block/put')
1111

12-
return promisify((block, cid, _callback) => {
13-
// TODO this needs to be adjusted with the new go-ipfs http-api
14-
if (typeof cid === 'function') {
15-
_callback = cid
16-
cid = {}
12+
return promisify((block, options, callback) => {
13+
if (typeof options === 'function') {
14+
callback = options
15+
options = {}
1716
}
1817

19-
const callback = once(_callback)
18+
options = options || {}
2019

2120
if (Array.isArray(block)) {
2221
return callback(new Error('block.put accepts only one block'))
2322
}
2423

25-
if (typeof block === 'object' && block.data) {
26-
block = block.data
24+
if (Buffer.isBuffer(block)) {
25+
block = { data: block }
2726
}
2827

29-
sendOneFile(block, {}, (err, result) => {
28+
if (!block || !block.data) {
29+
return callback(new Error('invalid block arg'))
30+
}
31+
32+
const qs = {}
33+
34+
if (block.cid || options.cid) {
35+
let cid
36+
37+
try {
38+
cid = new CID(block.cid || options.cid)
39+
} catch (err) {
40+
return callback(err)
41+
}
42+
43+
const { name, length } = multihash.decode(cid.multihash)
44+
45+
qs.format = cid.codec
46+
qs.mhtype = name
47+
qs.mhlen = length
48+
qs.version = cid.version
49+
} else {
50+
if (options.format) qs.format = options.format
51+
if (options.mhtype) qs.mhtype = options.mhtype
52+
if (options.mhlen) qs.mhlen = options.mhlen
53+
if (options.version != null) qs.version = options.version
54+
}
55+
56+
sendOneFile(block.data, { qs }, (err, result) => {
3057
if (err) {
31-
return callback(err) // early
58+
// Retry with "protobuf" format for go-ipfs
59+
// TODO: remove when https://github.com/ipfs/go-cid/issues/75 resolved
60+
if (qs.format === 'dag-pb') {
61+
qs.format = 'protobuf'
62+
return sendOneFile(block.data, { qs }, (err, result) => {
63+
if (err) return callback(err)
64+
callback(null, new Block(block.data, new CID(result.Key)))
65+
})
66+
}
67+
68+
return callback(err)
3269
}
3370

34-
callback(null, new Block(block, new CID(result.Key)))
71+
callback(null, new Block(block.data, new CID(result.Key)))
3572
})
3673
})
3774
}

test/interface.spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@ describe('interface-ipfs-core tests', () => {
129129
isNode ? null : {
130130
name: 'should get a directory',
131131
reason: 'FIXME https://github.com/ipfs/js-ipfs-api/issues/339'
132+
},
133+
// files.write
134+
{
135+
name: 'should write to deeply nested non existent file with create and parents flags',
136+
reason: 'TODO remove when 0.4.18 is released https://github.com/ipfs/go-ipfs/pull/5359'
132137
}
133138
]
134139
})

0 commit comments

Comments
 (0)