@@ -4,7 +4,7 @@ const promisify = require('promisify-es6')
4
4
const ConcatStream = require ( 'concat-stream' )
5
5
const once = require ( 'once' )
6
6
const isStream = require ( 'is-stream' )
7
- const OtherBuffer = require ( 'buffer' ) . Buffer
7
+ const isString = require ( 'lodash/isString' )
8
8
const isSource = require ( 'is-pull-stream' ) . isSource
9
9
const FileResultStreamConverter = require ( '../utils/file-result-stream-converter' )
10
10
const SendFilesStream = require ( '../utils/send-files-stream' )
@@ -25,15 +25,23 @@ module.exports = (send) => {
25
25
}
26
26
options . converter = FileResultStreamConverter
27
27
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 ) )
34
42
35
43
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' ) )
37
45
}
38
46
39
47
const files = [ ] . concat ( _files )
0 commit comments