-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #47679 Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
- Loading branch information
1 parent
25b6ddf
commit a437bb9
Showing
19 changed files
with
235 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
const assert = require('assert') | ||
const { | ||
ResponseStatusCodeError | ||
} = require('../core/errors') | ||
const { toUSVString } = require('../core/util') | ||
|
||
async function getResolveErrorBodyCallback ({ callback, body, contentType, statusCode, statusMessage, headers }) { | ||
assert(body) | ||
|
||
let chunks = [] | ||
let limit = 0 | ||
|
||
for await (const chunk of body) { | ||
chunks.push(chunk) | ||
limit += chunk.length | ||
if (limit > 128 * 1024) { | ||
chunks = null | ||
break | ||
} | ||
} | ||
|
||
if (statusCode === 204 || !contentType || !chunks) { | ||
process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers)) | ||
return | ||
} | ||
|
||
try { | ||
if (contentType.startsWith('application/json')) { | ||
const payload = JSON.parse(toUSVString(Buffer.concat(chunks))) | ||
process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers, payload)) | ||
return | ||
} | ||
|
||
if (contentType.startsWith('text/')) { | ||
const payload = toUSVString(Buffer.concat(chunks)) | ||
process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers, payload)) | ||
return | ||
} | ||
} catch (err) { | ||
// Process in a fallback if error | ||
} | ||
|
||
process.nextTick(callback, new ResponseStatusCodeError(`Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}`, statusCode, headers)) | ||
} | ||
|
||
module.exports = { getResolveErrorBodyCallback } |
Oops, something went wrong.