Skip to content

Commit 7b9cb14

Browse files
committedSep 8, 2017
Use http-errors to set status code on errors
1 parent 29a27f1 commit 7b9cb14

File tree

3 files changed

+8
-26
lines changed

3 files changed

+8
-26
lines changed
 

‎HISTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ unreleased
22
==========
33

44
* Fix JSON strict violation error to match native parse error
5+
* Use `http-errors` to set status code on errors
56
* deps: bytes@3.0.0
67
* deps: debug@2.6.8
78
* deps: depd@~1.1.1

‎README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,10 @@ encoding of the request. The parsing can be aborted by throwing an error.
273273
## Errors
274274

275275
The middlewares provided by this module create errors depending on the error
276-
condition during parsing. The errors will typically have a `status` property
277-
that contains the suggested HTTP response code and a `body` property containing
278-
the read body, if available.
276+
condition during parsing. The errors will typically have a `status`/`statusCode`
277+
property that contains the suggested HTTP response code, an `expose` property
278+
to determine if the `message` property should be displayed to the client and a
279+
`body` property containing the read body, if available.
279280

280281
The following are the common errors emitted, though any error can come through
281282
for various reasons.

‎lib/read.js

+3-23
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ function read (req, res, next, parse, debug, options) {
7575
debug('read body')
7676
getBody(stream, opts, function (err, body) {
7777
if (err) {
78-
// default to 400
79-
setErrorStatus(err, 400)
80-
8178
// echo back charset
8279
if (err.type === 'encoding.unsupported') {
8380
err = createError(415, 'unsupported charset "' + encoding.toUpperCase() + '"', {
@@ -88,7 +85,7 @@ function read (req, res, next, parse, debug, options) {
8885
// read off entire request
8986
stream.resume()
9087
onFinished(req, function onfinished () {
91-
next(err)
88+
next(createError(400, err))
9289
})
9390
return
9491
}
@@ -99,9 +96,7 @@ function read (req, res, next, parse, debug, options) {
9996
debug('verify body')
10097
verify(req, res, body, encoding)
10198
} catch (err) {
102-
// default to 403
103-
setErrorStatus(err, 403)
104-
next(err)
99+
next(createError(403, err))
105100
return
106101
}
107102
}
@@ -120,10 +115,7 @@ function read (req, res, next, parse, debug, options) {
120115
? body
121116
: str
122117

123-
// default to 400
124-
setErrorStatus(err, 400)
125-
126-
next(err)
118+
next(createError(400, err))
127119
return
128120
}
129121

@@ -175,15 +167,3 @@ function contentstream (req, debug, inflate) {
175167

176168
return stream
177169
}
178-
179-
/**
180-
* Set a status on an error object, if one does not exist
181-
* @private
182-
*/
183-
184-
function setErrorStatus (error, status) {
185-
if (!error.status && !error.statusCode) {
186-
error.status = status
187-
error.statusCode = status
188-
}
189-
}

0 commit comments

Comments
 (0)
Please sign in to comment.