Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit 529613a

Browse files
achingbrainvasco-santos
authored andcommitted
chore: update ipld formats (#25)
BREAKING CHANGE: v1 CIDs created by this module now default to base32 encoding when stringified Not a direct dependency of this module but ipld-dag-pb changed the case of some property names that are used by this module. License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 47ccbe1 commit 529613a

File tree

6 files changed

+28
-30
lines changed

6 files changed

+28
-30
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"homepage": "https://github.com/ipfs/js-ipfs-http-response#readme",
3333
"dependencies": {
3434
"async": "^2.6.1",
35-
"cids": "~0.5.7",
35+
"cids": "~0.7.1",
3636
"debug": "^4.1.1",
3737
"file-type": "^8.0.0",
3838
"filesize": "^3.6.1",

src/dir-view/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ function buildFilesList (path, links) {
1818
const rows = links.map((link) => {
1919
let row = [
2020
`<div class="ipfs-icon ipfs-_blank">&nbsp;</div>`,
21-
`<a href="${path}${path.endsWith('/') ? '' : '/'}${link.name}">${link.name}</a>`,
22-
filesize(link.size)
21+
`<a href="${path}${path.endsWith('/') ? '' : '/'}${link.Name}">${link.Name}</a>`,
22+
filesize(link.Tsize)
2323
]
2424

2525
row = row.map((cell) => `<td>${cell}</td>`).join('')

src/index.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
const stream = require('stream')
66
const toBlob = require('stream-to-blob')
77

8+
const debug = require('debug')
9+
const log = debug('ipfs:http:response')
10+
811
const resolver = require('./resolver')
912
const pathUtils = require('./utils/path')
1013
const detectContentType = require('./utils/content-type')
@@ -34,9 +37,10 @@ const response = (ipfsNode, ipfsPath) => {
3437
}
3538

3639
// redirect to dir entry point (index)
37-
resolve(Response.redirect(pathUtils.joinURLParts(path, content[0].name)))
40+
resolve(Response.redirect(pathUtils.joinURLParts(path, content[0].Name)))
3841
})
3942
.catch((error) => {
43+
log(error)
4044
resolve(new Response(errorString, header(500, error.toString())))
4145
})
4246
break
@@ -48,6 +52,7 @@ const response = (ipfsNode, ipfsPath) => {
4852
resolve(new Response(errorString, header(400, errorString)))
4953
break
5054
default:
55+
log(error)
5156
resolve(new Response(errorString, header(500, errorString)))
5257
}
5358
})
@@ -68,6 +73,7 @@ const response = (ipfsNode, ipfsPath) => {
6873

6974
readableStream.once('error', (error) => {
7075
if (error) {
76+
log(error)
7177
resolve(new Response(error.toString(), header(500, 'Error fetching the file')))
7278
}
7379
})
@@ -106,6 +112,7 @@ const response = (ipfsNode, ipfsPath) => {
106112
})
107113
})
108114
.catch((error) => {
115+
log(error)
109116
resolve(handleResolveError(ipfsNode, ipfsPath, error))
110117
})
111118
})

src/resolver.js

+9-18
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ const reduce = require('async/reduce')
66
const CID = require('cids')
77
const Unixfs = require('ipfs-unixfs')
88
const debug = require('debug')
9-
const log = debug('jsipfs:http:response:resolver')
10-
log.error = debug('jsipfs:http:response:resolver:error')
9+
const log = debug('ipfs:http:response:resolver')
1110

1211
const dirView = require('./dir-view')
1312
const pathUtil = require('./utils/path')
@@ -19,13 +18,13 @@ function getIndexFiles (links) {
1918
'index.shtml'
2019
]
2120
// directory
22-
let indexes = links.filter((link) => INDEX_HTML_FILES.indexOf(link.name) !== -1)
21+
let indexes = links.filter((link) => INDEX_HTML_FILES.indexOf(link.Name) !== -1)
2322
if (indexes.length) {
2423
return indexes
2524
}
2625
// hamt-sharded-directory uses a 2 char prefix
2726
return links.filter((link) => {
28-
return link.name.length > 2 && INDEX_HTML_FILES.indexOf(link.name.substring(2)) !== -1
27+
return link.Name.length > 2 && INDEX_HTML_FILES.indexOf(link.Name.substring(2)) !== -1
2928
})
3029
}
3130

@@ -38,13 +37,13 @@ const directory = promisify((ipfs, path, cid, callback) => {
3837
}
3938

4039
// Test if it is a Website
41-
const indexFiles = getIndexFiles(dagNode.links)
40+
const indexFiles = getIndexFiles(dagNode.Links)
4241

4342
if (indexFiles.length) {
4443
return callback(null, indexFiles)
4544
}
4645

47-
return callback(null, dirView.render(path, dagNode.links))
46+
return callback(null, dirView.render(path, dagNode.Links))
4847
})
4948
})
5049

@@ -80,17 +79,9 @@ const cid = promisify((ipfs, path, callback) => {
8079
const nextFileName = item
8180

8281
try {
83-
for (let link of dagNode.links) {
84-
if (link.name === nextFileName) {
85-
// found multihash/cid of requested named-file
86-
try {
87-
// assume a Buffer with a valid CID
88-
// (cid is allowed instead of multihash since https://github.com/ipld/js-ipld-dag-pb/pull/80)
89-
cidOfNextFile = new CID(link.cid)
90-
} catch (err) {
91-
// fallback to multihash
92-
cidOfNextFile = new CID(mh.toB58String(link.multihash))
93-
}
82+
for (let link of dagNode.Links) {
83+
if (link.Name === nextFileName) {
84+
cidOfNextFile = link.Hash
9485
break
9586
}
9687
}
@@ -129,7 +120,7 @@ const cid = promisify((ipfs, path, callback) => {
129120
}
130121

131122
try {
132-
let dagDataObj = Unixfs.unmarshal(dagResult.value.data)
123+
let dagDataObj = Unixfs.unmarshal(dagResult.value.Data)
133124
// There are at least two types of directories:
134125
// - "directory"
135126
// - "hamt-sharded-directory" (example: QmT5NvUtoM5nWFfrQdVrFtvGfKFmG7AHE8P34isapyhCxX)

test/index.spec.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe('resolve file (CIDv1)', function () {
6666
let ipfsd = null
6767

6868
const file = {
69-
cid: 'zb2rhdTDKmCQD2a9x2TfLR61M3s7RmESzwV5mqgnakXQbm5gp',
69+
cid: 'bafkreidffqfydlguosmmyebv5rp72m45tbpbq6segnkosa45kjfnduix6u',
7070
data: loadFixture('test/fixtures/testfile.txt')
7171
}
7272

@@ -181,7 +181,7 @@ describe('resolve directory (CIDv1)', function () {
181181
let ipfsd = null
182182

183183
const directory = {
184-
cid: 'zdj7WggpWuCD8yN57uSxoVJPZr371E75q8m4FmZoCvhBJzGvP',
184+
cid: 'bafybeifhimn7nu6dgmdvj6o63zegwro3yznnpfqib6kkjnagc54h46ox5q',
185185
files: {
186186
'pp.txt': Buffer.from(loadFixture('test/fixtures/test-folder/pp.txt')),
187187
'holmes.txt': loadFixture('test/fixtures/test-folder/holmes.txt')
@@ -302,7 +302,7 @@ describe('resolve web page (CIDv1)', function () {
302302
let ipfsd = null
303303

304304
const webpage = {
305-
cid: 'zdj7WYcfiUZa2wBeD9G2Jg9jqHx3Wh8nRsBNdVSWwsZ7XE62V',
305+
cid: 'bafybeibpkvlqjkwl73yam6ffsbrlgbwiffnehajc6qvnrhai5bve6jnawi',
306306
files: {
307307
'pp.txt': loadFixture('test/fixtures/test-site/pp.txt'),
308308
'holmes.txt': loadFixture('test/fixtures/test-site/holmes.txt'),

test/resolver.spec.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ describe('resolve file (CIDv1)', function () {
7070
let ipfsd = null
7171

7272
const file = {
73-
cid: 'zb2rhdTDKmCQD2a9x2TfLR61M3s7RmESzwV5mqgnakXQbm5gp',
73+
cid: 'bafkreidffqfydlguosmmyebv5rp72m45tbpbq6segnkosa45kjfnduix6u',
7474
data: loadFixture('test/fixtures/testfile.txt')
7575
}
7676

@@ -177,7 +177,7 @@ describe('resolve directory (CIDv1)', function () {
177177
let ipfsd = null
178178

179179
const directory = {
180-
cid: 'zdj7WggpWuCD8yN57uSxoVJPZr371E75q8m4FmZoCvhBJzGvP',
180+
cid: 'bafybeifhimn7nu6dgmdvj6o63zegwro3yznnpfqib6kkjnagc54h46ox5q',
181181
files: {
182182
'pp.txt': loadFixture('test/fixtures/test-folder/pp.txt'),
183183
'holmes.txt': loadFixture('test/fixtures/test-folder/holmes.txt')
@@ -290,7 +290,7 @@ describe('resolve web page (CIDv0)', function () {
290290

291291
expect(res).to.exist()
292292
expect(res[0]).to.deep.include({
293-
name: 'index.html'
293+
Name: 'index.html'
294294
})
295295
})
296296
})
@@ -300,7 +300,7 @@ describe('resolve web page (CIDv1)', function () {
300300
let ipfsd = null
301301

302302
const webpage = {
303-
cid: 'zdj7WYcfiUZa2wBeD9G2Jg9jqHx3Wh8nRsBNdVSWwsZ7XE62V',
303+
cid: 'bafybeibpkvlqjkwl73yam6ffsbrlgbwiffnehajc6qvnrhai5bve6jnawi',
304304
files: {
305305
'pp.txt': loadFixture('test/fixtures/test-site/pp.txt'),
306306
'holmes.txt': loadFixture('test/fixtures/test-site/holmes.txt'),
@@ -352,7 +352,7 @@ describe('resolve web page (CIDv1)', function () {
352352

353353
expect(res).to.exist()
354354
expect(res[0]).to.deep.include({
355-
name: 'index.html'
355+
Name: 'index.html'
356356
})
357357
})
358358
})

0 commit comments

Comments
 (0)