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

Commit d9e56b8

Browse files
committed
feat: export resolver
1 parent a02a518 commit d9e56b8

File tree

3 files changed

+33
-8
lines changed

3 files changed

+33
-8
lines changed

README.md

+23-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,30 @@
2121
This project consists on creating a HTTP response from an IPFS Hash. This response can be a file, a directory list view or the entry point of a web page.
2222

2323
```js
24-
const ipfsHttpResponse = require('ipfs-http-response')
24+
const { getResponse } = require('ipfs-http-response')
2525

26-
ipfsHttpResponse(ipfsNode, ipfsPath)
27-
.then((response) => {
26+
getResponse(ipfsNode, ipfsPath)
27+
.then((result) => {
28+
...
29+
})
30+
```
31+
32+
This module also exports the used ipfs resolver, which should be used when the response needs to be customized.
33+
34+
```js
35+
const { resolver } = require('ipfs-http-response')
36+
37+
resolver.multihash(ipfsNode, ipfsPath)
38+
.then((result) => {
39+
...
40+
})
41+
```
42+
43+
```js
44+
const { resolver } = require('ipfs-http-response')
45+
46+
resolver.directory(node, path, multihash)
47+
.then((result) => {
2848
...
2949
})
3050
```

src/index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const header = (status = 200, statusText = 'OK', headers = {}) => ({
1616
headers
1717
})
1818

19-
module.exports = (ipfsNode, ipfsPath) => {
19+
const response = (ipfsNode, ipfsPath) => {
2020
// handle hash resolve error (simple hash, test for directory now)
2121
const handleResolveError = (node, path, error) => {
2222
if (error) {
@@ -100,3 +100,8 @@ module.exports = (ipfsNode, ipfsPath) => {
100100
})
101101
})
102102
}
103+
104+
module.exports = {
105+
getResponse: response,
106+
resolver: resolver
107+
}

test/index.spec.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const loadFixture = require('aegir/fixtures')
1010
const ipfs = require('ipfs')
1111
const DaemonFactory = require('ipfsd-ctl')
1212

13-
const ipfsHttpResponse = require('../src')
13+
const { getResponse } = require('../src')
1414
const makeWebResponseEnv = require('./utils/web-response-env')
1515

1616
const df = DaemonFactory.create({ type: 'proc', exec: ipfs })
@@ -46,7 +46,7 @@ describe('resolve file', function () {
4646
})
4747

4848
it('should resolve a multihash', async () => {
49-
const res = await ipfsHttpResponse(ipfs, `/ipfs/${file.cid}`)
49+
const res = await getResponse(ipfs, `/ipfs/${file.cid}`)
5050

5151
expect(res).to.exist()
5252
expect(res).to.deep.include({
@@ -98,7 +98,7 @@ describe('resolve directory', function () {
9898
})
9999

100100
it('should return the list of files of a directory', async () => {
101-
const res = await ipfsHttpResponse(ipfs, `/ipfs/${directory.cid}`, directory.cid)
101+
const res = await getResponse(ipfs, `/ipfs/${directory.cid}`, directory.cid)
102102

103103
expect(res).to.exist()
104104
})
@@ -149,7 +149,7 @@ describe('resolve web page', function () {
149149
})
150150

151151
it('should return the entry point of a web page when a trying to fetch a directory containing a web page', async () => {
152-
const res = await ipfsHttpResponse(ipfs, `/ipfs/${webpage.cid}`, webpage.cid)
152+
const res = await getResponse(ipfs, `/ipfs/${webpage.cid}`, webpage.cid)
153153

154154
expect(res).to.exist()
155155
expect(res).to.equal(`/ipfs/${webpage.cid}/index.html`)

0 commit comments

Comments
 (0)