This repository was archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Copy pathblock.js
100 lines (86 loc) · 2.54 KB
/
block.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
'use strict'
const promisify = require('promisify-es6')
const Block = require('ipfs-block')
const multihash = require('multihashes')
const CID = require('cids')
const streamToValue = require('../stream-to-value')
module.exports = (send) => {
return {
get: promisify((args, opts, callback) => {
// TODO this needs to be adjusted with the new go-ipfs http-api
if (CID.isCID(args)) {
args = multihash.toB58String(args.multihash)
}
if (Buffer.isBuffer(args)) {
args = multihash.toB58String(args)
}
if (typeof opts === 'function') {
callback = opts
opts = {}
}
// Transform the response from Buffer or a Stream to a Block
const transform = (res, callback) => {
if (Buffer.isBuffer(res)) {
callback(null, new Block(res))
} else {
streamToValue(res, (err, data) => {
if (err) {
return callback(err)
}
callback(null, new Block(data))
})
}
}
const request = {
path: 'block/get',
args: args,
qs: opts
}
send.andTransform(request, transform, callback)
}),
stat: promisify((args, opts, callback) => {
// TODO this needs to be adjusted with the new go-ipfs http-api
if (args && CID.isCID(args)) {
args = multihash.toB58String(args.multihash)
}
if (typeof (opts) === 'function') {
callback = opts
opts = {}
}
const request = {
path: 'block/stat',
args: args,
qs: opts
}
// Transform the response from { Key, Size } objects to { key, size } objects
const transform = (stats, callback) => {
callback(null, {
key: stats.Key,
size: stats.Size
})
}
send.andTransform(request, transform, callback)
}),
put: promisify((block, cid, callback) => {
// TODO this needs to be adjusted with the new go-ipfs http-api
if (typeof cid === 'function') {
callback = cid
cid = {}
}
if (Array.isArray(block)) {
const err = new Error('block.put() only accepts 1 file')
return callback(err)
}
if (typeof block === 'object' && block.data) {
block = block.data
}
const request = {
path: 'block/put',
files: block
}
// Transform the response to a Block
const transform = (blockInfo, callback) => callback(null, new Block(block))
send.andTransform(request, transform, callback)
})
}
}