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

Commit a3bd811

Browse files
lidelalanshaw
authored andcommitted
fix: util.addFromURL with URL-escaped file
1 parent 966f973 commit a3bd811

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

src/util/url-add.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,11 @@ const requestWithRedirect = (url, opts, sendOneFile, callback) => {
5555
qs: opts,
5656
converter: FileResultStreamConverter
5757
}
58+
const fileName = decodeURIComponent(parsedUrl.pathname.split('/').pop())
5859

5960
sendOneFile({
6061
content: res,
61-
path: parsedUrl.pathname.split('/').pop()
62+
path: fileName
6263
}, requestOpts, callback)
6364
}
6465
})

test/util.spec.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ describe('.util', () => {
161161
})
162162

163163
it('with wrap-with-directory=true', (done) => {
164-
ipfs.util.addFromURL('http://ipfs.io/ipfs/QmWjppACLcFLQ2qL38unKQvJBhXH3RUtcGLPk7zmrTwV61/969165.jpg', {
164+
ipfs.util.addFromURL('http://ipfs.io/ipfs/QmWjppACLcFLQ2qL38unKQvJBhXH3RUtcGLPk7zmrTwV61/969165.jpg?foo=bar#buzz', {
165165
wrapWithDirectory: true
166166
}, (err, result) => {
167167
expect(err).to.not.exist()
@@ -173,6 +173,20 @@ describe('.util', () => {
173173
})
174174
})
175175

176+
it('with wrap-with-directory=true and URL-escaped file name', (done) => {
177+
// Sample URL contains URL-escaped ( ) and local diacritics
178+
ipfs.util.addFromURL('https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Doma%C5%BElice%2C_Jir%C3%A1skova_43_%289102%29.jpg/320px-Doma%C5%BElice%2C_Jir%C3%A1skova_43_%289102%29.jpg?foo=bar#buzz', {
179+
wrapWithDirectory: true
180+
}, (err, result) => {
181+
expect(err).to.not.exist()
182+
expect(result[0].hash).to.equal('QmRJ9ExxSMV4BLF9ZJUb2mLngupm6BXZEek755VHGTJo2Y')
183+
expect(result[0].path).to.equal('320px-Domažlice,_Jiráskova_43_(9102).jpg')
184+
expect(result[1].hash).to.equal('QmbxsHFU3sCfr8wszDHuDLA76C2xCv9HT8L3aC1pBwgaHk')
185+
expect(result.length).to.equal(2)
186+
done()
187+
})
188+
})
189+
176190
it('with invalid url', function (done) {
177191
ipfs.util.addFromURL('http://invalid', (err, result) => {
178192
expect(err.code).to.equal('ENOTFOUND')

0 commit comments

Comments
 (0)