Skip to content

Commit 849f208

Browse files
committedMay 2, 2015
add option to filter which files to accept
1 parent 158c45c commit 849f208

File tree

3 files changed

+93
-18
lines changed

3 files changed

+93
-18
lines changed
 

‎README.md

+24
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ The following are the options that can be passed to Multer.
6464
Key | Description
6565
--- | ---
6666
`dest` or `storage` | Where to store the files
67+
`fileFilter` | Function to control which files are accepted
6768
`limits` | Limits of the uploaded data
6869

6970
Apart from these, Multer also supports more advanced [busboy options](https://github.com/mscdex/busboy#busboy-methods) like `highWaterMark`, `fileHwm`, and `defCharset`.
@@ -146,6 +147,29 @@ Key | Description | Default
146147

147148
Specifying the limits can help protect your site against denial of service (DoS) attacks.
148149

150+
### `fileFilter`
151+
152+
Set this to a function to control which files should be uploaded and which
153+
should be skipped. The function should look like this:
154+
155+
```javascript
156+
function fileFilter (req, file, cb) {
157+
158+
// The function should call `cb` with a boolean
159+
// to indicate if the file should be accepted
160+
161+
// To reject this file pass `false`, like so:
162+
cb(null, false)
163+
164+
// To accept the file pass `true`, like so:
165+
cb(null, true)
166+
167+
// You can always pass an error if something goes wrong:
168+
cb(new Error('I don\'t have a clue!'))
169+
170+
}
171+
```
172+
149173
## License
150174

151175
[MIT](LICENSE)

‎index.js

+30-18
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ var appendField = require('./lib/append-field')
77
var diskStorage = require('./storage/disk')
88
var memoryStorage = require('./storage/memory')
99

10+
function allowAll (req, file, cb) {
11+
cb(null, true)
12+
}
13+
1014
function multer (options) {
1115
options = options || {}
1216

@@ -17,6 +21,8 @@ function multer (options) {
1721
storage = diskStorage({ destination: options.dest })
1822
}
1923

24+
var fileFilter = (options.fileFilter || allowAll)
25+
2026
return function multerMiddleware (req, res, next) {
2127
if (!is(req, ['multipart'])) return next()
2228

@@ -61,35 +67,41 @@ function multer (options) {
6167
// don't attach to the files object, if there is no file
6268
if (!filename) return fileStream.resume()
6369

64-
// defines is processing a new file
65-
pendingWrites++
66-
6770
var file = {
6871
fieldname: fieldname,
6972
originalname: filename,
7073
encoding: encoding,
7174
mimetype: mimetype
7275
}
7376

74-
Object.defineProperty(file, 'stream', {
75-
configurable: true,
76-
enumerable: false,
77-
value: fileStream
78-
})
77+
fileFilter(req, file, function (err, includeFile) {
78+
if (err) return abort(err)
79+
if (!includeFile) return fileStream.resume()
7980

80-
fileStream.on('error', abort)
81-
fileStream.on('limit', function () {
82-
abort('LIMIT_FILE_SIZE')
83-
})
81+
// defines is processing a new file
82+
pendingWrites++
8483

85-
storage.handleFile(req, file, function (err, info) {
86-
if (err) return abort(err)
84+
Object.defineProperty(file, 'stream', {
85+
configurable: true,
86+
enumerable: false,
87+
value: fileStream
88+
})
89+
90+
fileStream.on('error', abort)
91+
fileStream.on('limit', function () {
92+
abort('LIMIT_FILE_SIZE')
93+
})
94+
95+
storage.handleFile(req, file, function (err, info) {
96+
if (err) return abort(err)
97+
98+
if (!req.files[fieldname]) req.files[fieldname] = []
99+
req.files[fieldname].push(extend(file, info))
87100

88-
if (!req.files[fieldname]) req.files[fieldname] = []
89-
req.files[fieldname].push(extend(file, info))
101+
pendingWrites--
102+
indicateDone()
103+
})
90104

91-
pendingWrites--
92-
indicateDone()
93105
})
94106

95107
})

‎test/file-filter.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/* eslint-env mocha */
2+
3+
var assert = require('assert')
4+
5+
var util = require('./_util')
6+
var multer = require('../')
7+
var FormData = require('form-data')
8+
9+
describe('File Filter', function () {
10+
var parser
11+
12+
before(function () {
13+
parser = multer({
14+
storage: multer.memoryStorage(),
15+
fileFilter: function (req, file, cb) {
16+
cb(null, file.fieldname !== 'notme')
17+
}
18+
})
19+
})
20+
21+
it('should skip some files', function (done) {
22+
var form = new FormData()
23+
24+
form.append('notme', util.file('tiny0.dat'))
25+
form.append('butme', util.file('tiny1.dat'))
26+
27+
util.submitForm(parser, form, function (err, req) {
28+
assert.ifError(err)
29+
assert.equal(req.files.notme, undefined)
30+
assert.equal(req.files.butme.length, 1)
31+
assert.equal(req.files.butme[0].fieldname, 'butme')
32+
assert.equal(req.files.butme[0].originalname, 'tiny1.dat')
33+
assert.equal(req.files.butme[0].size, 7)
34+
assert.equal(req.files.butme[0].buffer.length, 7)
35+
done()
36+
})
37+
})
38+
39+
})

0 commit comments

Comments
 (0)
Please sign in to comment.