3
3
const promisify = require ( 'promisify-es6' )
4
4
const dagPB = require ( 'ipld-dag-pb' )
5
5
const DAGLink = dagPB . DAGLink
6
- const cleanMultihash = require ( '../utils/clean-multihash ' )
6
+ const CID = require ( 'cids ' )
7
7
const LRU = require ( 'lru-cache' )
8
8
const lruOptions = {
9
9
max : 128
@@ -12,7 +12,7 @@ const lruOptions = {
12
12
const cache = new LRU ( lruOptions )
13
13
14
14
module . exports = ( send ) => {
15
- return promisify ( ( multihash , options , callback ) => {
15
+ return promisify ( ( cid , options , callback ) => {
16
16
if ( typeof options === 'function' ) {
17
17
callback = options
18
18
options = { }
@@ -22,20 +22,20 @@ module.exports = (send) => {
22
22
}
23
23
24
24
try {
25
- multihash = cleanMultihash ( multihash , options )
25
+ cid = new CID ( cid )
26
26
} catch ( err ) {
27
27
return callback ( err )
28
28
}
29
29
30
- const node = cache . get ( multihash )
30
+ const node = cache . get ( cid . toString ( ) )
31
31
32
32
if ( node ) {
33
33
return callback ( null , node . links )
34
34
}
35
35
36
36
send ( {
37
37
path : 'object/links' ,
38
- args : multihash
38
+ args : cid . toString ( )
39
39
} , ( err , result ) => {
40
40
if ( err ) {
41
41
return callback ( err )
@@ -44,9 +44,7 @@ module.exports = (send) => {
44
44
let links = [ ]
45
45
46
46
if ( result . Links ) {
47
- links = result . Links . map ( ( l ) => {
48
- return new DAGLink ( l . Name , l . Size , l . Hash )
49
- } )
47
+ links = result . Links . map ( ( l ) => new DAGLink ( l . Name , l . Size , l . Hash ) )
50
48
}
51
49
callback ( null , links )
52
50
} )
0 commit comments