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

Commit 315b7f7

Browse files
author
Alan Shaw
authored
fix: better input validation for add (#876)
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 6e6d7a2 commit 315b7f7

10 files changed

+29
-20
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ docs
77
test/setup/tmp-disposable-nodes-addrs.json
88
dist
99
coverage
10+
.nyc_output
1011
**/*.swp
1112
examples/sub-module/**/bundle.js
1213
examples/sub-module/**/*-minified.js

.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node_modules
22
*.log
33
coverage
4-
4+
.nyc_output
55
test

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@
7777
"url": "https://github.com/ipfs/js-ipfs-api"
7878
},
7979
"devDependencies": {
80-
"aegir": "^17.0.1",
80+
"aegir": "^17.1.1",
8181
"browser-process-platform": "~0.1.1",
8282
"chai": "^4.2.0",
8383
"cross-env": "^5.2.0",
8484
"dirty-chai": "^2.0.1",
8585
"eslint-plugin-react": "^7.11.1",
8686
"go-ipfs-dep": "~0.4.18",
8787
"gulp": "^3.9.1",
88-
"interface-ipfs-core": "~0.86.0",
88+
"interface-ipfs-core": "~0.87.0",
8989
"ipfsd-ctl": "~0.40.0",
9090
"nock": "^10.0.2",
9191
"pull-stream": "^3.6.9",

src/files-regular/add-from-url.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const parseUrl = require('url').parse
4+
const { URL } = require('url')
55
const request = require('../utils/request')
66
const SendOneFile = require('../utils/send-one-file-multiple-results')
77
const FileResultStreamConverter = require('../utils/file-result-stream-converter')
@@ -35,7 +35,7 @@ module.exports = (send) => {
3535
const validUrl = (url) => typeof url === 'string' && url.startsWith('http')
3636

3737
const requestWithRedirect = (url, opts, sendOneFile, callback) => {
38-
const parsedUrl = parseUrl(url)
38+
const parsedUrl = new URL(url)
3939

4040
const req = request(parsedUrl.protocol)(url, (res) => {
4141
if (res.statusCode >= 400) {

src/files-regular/add.js

+16-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const promisify = require('promisify-es6')
44
const ConcatStream = require('concat-stream')
55
const once = require('once')
66
const isStream = require('is-stream')
7-
const OtherBuffer = require('buffer').Buffer
7+
const isString = require('lodash/isString')
88
const isSource = require('is-pull-stream').isSource
99
const FileResultStreamConverter = require('../utils/file-result-stream-converter')
1010
const SendFilesStream = require('../utils/send-files-stream')
@@ -25,15 +25,23 @@ module.exports = (send) => {
2525
}
2626
options.converter = FileResultStreamConverter
2727

28-
const ok = Buffer.isBuffer(_files) ||
29-
isStream.readable(_files) ||
30-
Array.isArray(_files) ||
31-
OtherBuffer.isBuffer(_files) ||
32-
typeof _files === 'object' ||
33-
isSource(_files)
28+
// Buffer, pull stream or Node.js stream
29+
const isBufferOrStream = obj => Buffer.isBuffer(obj) || isStream.readable(obj) || isSource(obj)
30+
// An object like { content?, path? }, where content isBufferOrStream and path isString
31+
const isContentObject = obj => {
32+
if (typeof obj !== 'object') return false
33+
// path is optional if content is present
34+
if (obj.content) return isBufferOrStream(obj.content)
35+
// path must be a non-empty string if no content
36+
return Boolean(obj.path) && isString(obj.path)
37+
}
38+
// An input atom: a buffer, stream or content object
39+
const isInput = obj => isBufferOrStream(obj) || isContentObject(obj)
40+
// All is ok if data isInput or data is an array of isInput
41+
const ok = isInput(_files) || (Array.isArray(_files) && _files.every(isInput))
3442

3543
if (!ok) {
36-
return callback(new Error('first arg must be a buffer, readable stream, pull stream, an object or array of objects'))
44+
return callback(new Error('invalid input: expected buffer, readable stream, pull stream, object or array of objects'))
3745
}
3846

3947
const files = [].concat(_files)

src/files-regular/get-readable-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = (send) => {
1010
return (path, opts) => {
1111
opts = opts || {}
1212

13-
const pt = new Stream.PassThrough({objectMode: true})
13+
const pt = new Stream.PassThrough({ objectMode: true })
1414

1515
try {
1616
path = cleanCID(path)

src/files-regular/ls-readable-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = (arg) => {
1212
opts = {}
1313
}
1414

15-
const pt = new Stream.PassThrough({objectMode: true})
15+
const pt = new Stream.PassThrough({ objectMode: true })
1616

1717
send({ path: 'ls', args: args, qs: opts }, (err, results) => {
1818
if (err) { return callback(err) }

src/utils/send-files-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module.exports = (send, path) => {
4343
const next = once(_next)
4444
try {
4545
const files = prepareFile(file, options)
46-
.map((file) => Object.assign({headers: headers(file)}, file))
46+
.map((file) => Object.assign({ headers: headers(file) }, file))
4747

4848
writing = true
4949
eachSeries(

test/dag.spec.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('.dag', function () {
3939
const data = Buffer.from('some data')
4040
DAGNode.create(data, (err, node) => {
4141
expect(err).to.not.exist()
42-
ipfs.dag.put(node, {format: 'dag-pb', hashAlg: 'sha2-256'}, (err, cid) => {
42+
ipfs.dag.put(node, { format: 'dag-pb', hashAlg: 'sha2-256' }, (err, cid) => {
4343
expect(err).to.not.exist()
4444
cid = cid.toV0()
4545
expect(cid.codec).to.equal('dag-pb')
@@ -56,8 +56,8 @@ describe('.dag', function () {
5656
})
5757

5858
it('should be able to put and get a DAG node with format dag-cbor', (done) => {
59-
const cbor = {foo: 'dag-cbor-bar'}
60-
ipfs.dag.put(cbor, {format: 'dag-cbor', hashAlg: 'sha2-256'}, (err, cid) => {
59+
const cbor = { foo: 'dag-cbor-bar' }
60+
ipfs.dag.put(cbor, { format: 'dag-cbor', hashAlg: 'sha2-256' }, (err, cid) => {
6161
expect(err).to.not.exist()
6262
expect(cid.codec).to.equal('dag-cbor')
6363
cid = cid.toBaseEncodedString('base32')

test/interface.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const CommonFactory = require('./utils/interface-common-factory')
77
const IPFSApi = require('../src')
88
const isWindows = process.platform && process.platform === 'win32'
99

10-
describe.only('interface-ipfs-core tests', () => {
10+
describe('interface-ipfs-core tests', () => {
1111
const defaultCommonFactory = CommonFactory.create()
1212

1313
tests.bitswap(defaultCommonFactory, {

0 commit comments

Comments
 (0)