This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree 7 files changed +19
-19
lines changed
7 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 11
11
"license" : " MIT" ,
12
12
"devDependencies" : {
13
13
"browserify" : " ^13.1.1" ,
14
- "ipfs-api" : " ^24.0.0 " ,
14
+ "ipfs-api" : " ../../ " ,
15
15
"http-server" : " ~0.9.0"
16
16
},
17
17
"dependencies" : {}
Original file line number Diff line number Diff line change 11
11
"devDependencies" : {
12
12
"babel-core" : " ^5.4.7" ,
13
13
"babel-loader" : " ^5.1.2" ,
14
- "ipfs-api" : " ^11.1.0 " ,
14
+ "ipfs-api" : " ../../ " ,
15
15
"json-loader" : " ~0.5.3" ,
16
16
"react" : " ~0.13.0" ,
17
17
"react-hot-loader" : " ^1.3.0" ,
Original file line number Diff line number Diff line change 41
41
"ipfs-block" : " ~0.8.0" ,
42
42
"ipfs-unixfs" : " ~0.1.16" ,
43
43
"ipld-dag-cbor" : " ~0.13.0" ,
44
- "ipld-dag-pb" : " ~0.14.11 " ,
44
+ "ipld-dag-pb" : " ~0.15.0 " ,
45
45
"is-ipfs" : " ~0.4.7" ,
46
46
"is-pull-stream" : " 0.0.0" ,
47
47
"is-stream" : " ^1.1.0" ,
85
85
"eslint-plugin-react" : " ^7.11.1" ,
86
86
"go-ipfs-dep" : " ~0.4.18" ,
87
87
"gulp" : " ^3.9.1" ,
88
- "interface-ipfs-core" : " ~0.84.3 " ,
88
+ "interface-ipfs-core" : " ~0.85.0 " ,
89
89
"ipfsd-ctl" : " ~0.40.0" ,
90
90
"pull-stream" : " ^3.6.9" ,
91
91
"stream-equal" : " ^1.1.1"
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ module.exports = (send) => {
26
26
args : [
27
27
multihash ,
28
28
dLink . name ,
29
- cleanMultihash ( dLink . multihash )
29
+ cleanMultihash ( dLink . cid . buffer )
30
30
]
31
31
} , ( err , result ) => {
32
32
if ( err ) {
Original file line number Diff line number Diff line change @@ -35,10 +35,6 @@ module.exports = (send) => {
35
35
return callback ( err )
36
36
}
37
37
38
- if ( node . toJSON ( ) . multihash !== result . Hash ) {
39
- return callback ( new Error ( 'multihashes do not match' ) )
40
- }
41
-
42
38
callback ( null , node )
43
39
} )
44
40
} )
Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ module.exports = (send) => {
39
39
Links : [ ]
40
40
}
41
41
}
42
- } else if ( obj . multihash ) {
42
+ } else if ( DAGNode . isDAGNode ( obj ) ) {
43
43
tmpObj = {
44
44
Data : obj . data . toString ( ) ,
45
45
Links : obj . links . map ( ( l ) => {
46
46
const link = l . toJSON ( )
47
- link . hash = link . multihash
47
+ link . hash = link . cid
48
48
return link
49
49
} )
50
50
}
@@ -82,7 +82,7 @@ module.exports = (send) => {
82
82
83
83
let node
84
84
85
- if ( obj . multihash ) {
85
+ if ( DAGNode . isDAGNode ( obj ) ) {
86
86
node = obj
87
87
} else if ( options . enc === 'protobuf' ) {
88
88
dagPB . util . deserialize ( obj , ( err , _node ) => {
@@ -106,14 +106,14 @@ module.exports = (send) => {
106
106
next ( )
107
107
108
108
function next ( ) {
109
- const nodeJSON = node . toJSON ( )
110
- if ( nodeJSON . multihash !== result . Hash ) {
111
- const err = new Error ( 'multihashes do not match' )
112
- return callback ( err )
113
- }
109
+ dagPB . util . cid ( node , ( err , cid ) => {
110
+ if ( err ) {
111
+ return callback ( err )
112
+ }
114
113
115
- cache . set ( result . Hash , node )
116
- callback ( null , node )
114
+ cache . set ( cid . toBaseEncodedString ( ) , node )
115
+ callback ( null , node )
116
+ } )
117
117
}
118
118
} )
119
119
} )
Original file line number Diff line number Diff line change 1
1
'use strict'
2
2
3
3
const bs58 = require ( 'bs58' )
4
+ const CID = require ( 'cids' )
4
5
const isIPFS = require ( 'is-ipfs' )
5
6
6
7
module . exports = function ( multihash ) {
7
8
if ( Buffer . isBuffer ( multihash ) ) {
8
9
multihash = bs58 . encode ( multihash )
9
10
}
11
+ if ( CID . isCID ( multihash ) ) {
12
+ multihash = multihash . toBaseEncodedString ( )
13
+ }
10
14
if ( typeof multihash !== 'string' ) {
11
15
throw new Error ( 'unexpected multihash type: ' + typeof multihash )
12
16
}
You can’t perform that action at this time.
0 commit comments