Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Fix #140: ipfs add url wrap doesn't work #750

Merged
merged 2 commits into from
Apr 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/util/url-add.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ module.exports = (send) => {
const validUrl = (url) => typeof url === 'string' && url.startsWith('http')

const requestWithRedirect = (url, opts, sendOneFile, callback) => {
const req = request(parseUrl(url).protocol)(url, (res) => {
const parsedUrl = parseUrl(url)

const req = request(parsedUrl.protocol)(url, (res) => {
if (res.statusCode >= 400) {
return callback(new Error(`Failed to download with ${res.statusCode}`))
}
Expand All @@ -46,13 +48,18 @@ const requestWithRedirect = (url, opts, sendOneFile, callback) => {
if (!validUrl(redirection)) {
return callback(new Error('redirection url must be an http(s) url'))
}

requestWithRedirect(redirection, opts, sendOneFile, callback)
} else {
const requestOpts = {
qs: opts,
converter: FileResultStreamConverter
}
sendOneFile(res, requestOpts, callback)

sendOneFile({
content: res,
path: parsedUrl.pathname.split('/').pop()
}, requestOpts, callback)
}
})

Expand Down
13 changes: 13 additions & 0 deletions test/util.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,19 @@ describe('.util', () => {
.then(out => expectTimeout(ipfs.object.get(out[0].hash), 4000))
})

it('with wrap-with-directory=true', (done) => {
ipfs.util.addFromURL('http://ipfs.io/ipfs/QmWjppACLcFLQ2qL38unKQvJBhXH3RUtcGLPk7zmrTwV61/969165.jpg', {
wrapWithDirectory: true
}, (err, result) => {
expect(err).to.not.exist()
expect(result[0].hash).to.equal('QmaL9zy7YUfvWmtD5ZXp42buP7P4xmZJWFkm78p8FJqgjg')
expect(result[0].path).to.equal('969165.jpg')
expect(result[1].hash).to.equal('QmWjppACLcFLQ2qL38unKQvJBhXH3RUtcGLPk7zmrTwV61')
expect(result.length).to.equal(2)
done()
})
})

it('with invalid url', function (done) {
ipfs.util.addFromURL('http://invalid', (err, result) => {
expect(err.code).to.equal('ENOTFOUND')
Expand Down