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

Commit d62c6e2

Browse files
committed
feat: add options to block.put API, now it works with specified mhtype, format and version, just like the CLI
1 parent 0788c01 commit d62c6e2

File tree

3 files changed

+8916
-67
lines changed

3 files changed

+8916
-67
lines changed

API/block/README.md

+36-10
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,27 @@ A great source of [examples][] can be found in the tests for this API.
4343
4444
##### `Go` **WIP**
4545

46-
##### `JavaScript` - ipfs.block.put(block, cid, [callback])
46+
##### `JavaScript` - ipfs.block.put(block [, options], [callback])
4747

4848
Where `block` can be:
4949

5050
- `Buffer` - the raw bytes of the Block
5151
- [`Block`][block] instance
5252

53-
`cid` is a [cid][cid] which can be passed as:
53+
and `options` is an Object that can contain the following properties:
5454

55-
- Buffer, the raw Buffer of the cid
56-
- CID, a CID instance
57-
- String, the base58 encoded version of the multihash
55+
- `cid` - a [cid][cid] which can be passed as:
56+
- Buffer, the raw Buffer of the cid
57+
- CID, a CID instance
58+
- String, the base58 encoded version of the multihash
59+
- format
60+
- mhtype
61+
- mhlen
62+
- version
63+
64+
if no options are passed, it defaults to `{ format: 'dag-pb', mhtype: 'sha2-256', version: 0 }`
65+
66+
**Note:** If you pass a [`Block`][block] instance as the block parameter, you don't need to pass options, as the block instance will carry the CID value as a property.
5867

5968
`callback` has the signature `function (err, block) {}`, where `err` is an error if the operation was not successful and `block` is a [Block][block] type object, containing both the data and the hash of the block.
6069

@@ -63,19 +72,36 @@ If no `callback` is passed, a promise is returned.
6372
**Example:**
6473

6574
```JavaScript
66-
const CID = require('cids')
75+
// Defaults
6776
const buf = new Buffer('a serialized object')
77+
78+
ipfs.block.put(blob, (err, block) => {
79+
if (err) { throw err }
80+
// Block has been stored
81+
82+
console.log(block.data.toString())
83+
// Logs:
84+
// a serialized object
85+
console.log(block.cid.toBaseEncodedString())
86+
// Logs:
87+
// the CID of the object
88+
})
89+
90+
// With custom format and hashtype through CID
91+
const CID = require('cids')
92+
const buf = new Buffer('another serialized object')
6893
const cid = new CID(1, 'dag-pb', multihash)
6994

7095
ipfs.block.put(blob, cid, (err, block) => {
71-
if (err) {
72-
throw err
73-
}
74-
// Block hsa been stored
96+
if (err) { throw err }
97+
// Block has been stored
7598

7699
console.log(block.data.toString())
77100
// Logs:
78101
// a serialized object
102+
console.log(block.cid.toBaseEncodedString())
103+
// Logs:
104+
// the CID of the object
79105
})
80106
```
81107

0 commit comments

Comments
 (0)