Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
feat: support /ipns/ at HTTP Gateway
Browse files Browse the repository at this point in the history
It requires below to PRs to land first:

#2002
ipfs/js-ipfs-http-response#19
ipfs-inactive/js-ipfs-mfs#48

License: MIT
Signed-off-by: Marcin Rataj <lidel@lidel.org>
  • Loading branch information
lidel committed May 7, 2019
1 parent 373eedc commit 571eb4b
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 25 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@
"ipfs-block": "~0.8.0",
"ipfs-block-service": "~0.15.1",
"ipfs-http-client": "^30.1.1",
"ipfs-http-response": "~0.2.1",
"ipfs-mfs": "~0.10.2",
"ipfs-http-response": "https://github.com/ipfs/js-ipfs-http-response/tarball/7c2a49f43d1903689b50f87e14d1e5f046e3fe78/js-ipfs-http-response.tar.gz",
"ipfs-mfs": "https://github.com/ipfs/js-ipfs-mfs/tarball/c644291f31a57f7bc65318ba8bf83e002b83e030/js-ipfs-mfs.tar.gz",
"ipfs-multipart": "~0.1.0",
"ipfs-repo": "~0.26.1",
"ipfs-unixfs": "~0.1.16",
Expand Down
4 changes: 2 additions & 2 deletions src/http/api/routes/webui.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ const resources = require('../../gateway/resources')
module.exports = [
{
method: '*',
path: '/ipfs/{cid*}',
path: '/ipfs/{immutableId*}',
options: {
pre: [
{ method: resources.gateway.checkCID, assign: 'args' }
{ method: resources.gateway.checkImmutableId, assign: 'args' }
]
},
handler: resources.gateway.handler
Expand Down
29 changes: 23 additions & 6 deletions src/http/gateway/resources/gateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ function detectContentType (ref, chunk) {
return mime.contentType(mimeType)
}

async function resolveIpns (ref, ipfs) {
const [ root ] = PathUtils.splitPath(ref)
const immutableRoot = await ipfs.name.resolve(root, { recursive: true })
return ref.replace(`/ipns/${root}`, PathUtils.removeTrailingSlash(immutableRoot))
}

// Enable streaming of compressed payload
// https://github.com/hapijs/hapi/issues/3599
class ResponseStream extends PassThrough {
Expand All @@ -45,29 +51,40 @@ class ResponseStream extends PassThrough {
}

module.exports = {
checkCID (request, h) {
if (!request.params.cid) {
checkImmutableId (request, h) {
if (!request.params.immutableId) {
throw Boom.badRequest('Path Resolve error: path must contain at least one component')
}

return { ref: `/ipfs/${request.params.cid}` }
return { ref: `/ipfs/${request.params.immutableId}` }
},
checkMutableId (request, h) {
if (!request.params.mutableId) {
throw Boom.badRequest('Path Resolve error: path must contain at least one component')
}
return { ref: `/ipns/${request.params.mutableId}` }
},

async handler (request, h) {
const { ref } = request.pre.args
const { ipfs } = request.server.app

// The resolver from ipfs-http-response supports only immutable /ipfs/ for now,
// so we convert /ipns/ to /ipfs/ before passing it to the resolver ¯\_(ツ)_/¯
// This can be removed if a solution proposed in
// https://github.com/ipfs/js-ipfs-http-response/issues/22 lands upstream
const immutableRef = ref.startsWith('/ipns/') ? await resolveIpns(ref, ipfs) : ref

let data
try {
data = await resolver.cid(ipfs, ref)
data = await resolver.cid(ipfs, immutableRef)
} catch (err) {
const errorToString = err.toString()
log.error('err: ', errorToString, ' fileName: ', err.fileName)

// switch case with true feels so wrong.
switch (true) {
case (errorToString === 'Error: This dag node is a directory'):
data = await resolver.directory(ipfs, ref, err.cid)
data = await resolver.directory(ipfs, immutableRef, err.cid)

if (typeof data === 'string') {
// no index file found
Expand Down
46 changes: 32 additions & 14 deletions src/http/gateway/routes/gateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,37 @@

const resources = require('../resources')

module.exports = {
method: '*',
path: '/ipfs/{cid*}',
options: {
handler: resources.gateway.handler,
pre: [
{ method: resources.gateway.checkCID, assign: 'args' }
],
response: {
ranges: false // disable built-in support, we do it manually
},
ext: {
onPostHandler: { method: resources.gateway.afterHandler }
module.exports = [
{
method: '*',
path: '/ipfs/{immutableId*}',
options: {
handler: resources.gateway.handler,
pre: [
{ method: resources.gateway.checkImmutableId, assign: 'args' }
],
response: {
ranges: false // disable built-in support, we do it manually
},
ext: {
onPostHandler: { method: resources.gateway.afterHandler }
}
}
},
{
method: '*',
path: '/ipns/{mutableId*}',
options: {
handler: resources.gateway.handler,
pre: [
{ method: resources.gateway.checkMutableId, assign: 'args' }
],
response: {
ranges: false // disable built-in support, we do it manually
},
ext: {
onPostHandler: { method: resources.gateway.afterHandler }
}
}
}
}
]
2 changes: 1 addition & 1 deletion src/http/gateway/routes/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
'use strict'

module.exports = [require('./gateway')]
module.exports = [...require('./gateway')]

0 comments on commit 571eb4b

Please sign in to comment.