Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: update Reply module #4072

Merged
merged 6 commits into from Jul 1, 2022
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
61 changes: 30 additions & 31 deletions lib/reply.js
Expand Up @@ -165,6 +165,7 @@ Reply.prototype.send = function (payload) {
// If user doesn't set charset, we will set charset to utf-8
if (contentType.indexOf('charset') === -1) {
const customContentType = contentType.trim()

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is happening here? Is this a line ending change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, just a new line to separate var definition and if condition (I added it when I was refactoring this reverted block of code). Delete?

if (customContentType.endsWith(';')) {
// custom content-type is ended with ';'
this[kReplyHeaders]['content-type'] = `${customContentType} charset=utf-8`
Expand All @@ -186,12 +187,8 @@ Reply.prototype.send = function (payload) {

Reply.prototype.getHeader = function (key) {
key = key.toLowerCase()
const res = this.raw
let value = this[kReplyHeaders][key]
if (value === undefined && res.hasHeader(key)) {
value = res.getHeader(key)
}
return value

return this[kReplyHeaders][key] ?? this.raw.getHeader(key)
jsumners marked this conversation as resolved.
Show resolved Hide resolved
}

Reply.prototype.getHeaders = function () {
Expand All @@ -203,10 +200,8 @@ Reply.prototype.getHeaders = function () {

Reply.prototype.hasHeader = function (key) {
key = key.toLowerCase()
if (this[kReplyHeaders][key] !== undefined) {
return true
}
return this.raw.hasHeader(key)

return this[kReplyHeaders][key] !== undefined || this.raw.hasHeader(key)
}

Reply.prototype.removeHeader = function (key) {
Expand All @@ -216,25 +211,24 @@ Reply.prototype.removeHeader = function (key) {
return this
}

Reply.prototype.header = function (key, value) {
const _key = key.toLowerCase()

// default the value to ''
value = value === undefined ? '' : value
Reply.prototype.header = function (key, value = '') {
key = key.toLowerCase()

if (this[kReplyHeaders][_key] && _key === 'set-cookie') {
if (this[kReplyHeaders][key] && key === 'set-cookie') {
// https://tools.ietf.org/html/rfc7230#section-3.2.2
if (typeof this[kReplyHeaders][_key] === 'string') {
this[kReplyHeaders][_key] = [this[kReplyHeaders][_key]]
if (typeof this[kReplyHeaders][key] === 'string') {
this[kReplyHeaders][key] = [this[kReplyHeaders][key]]
}

if (Array.isArray(value)) {
Array.prototype.push.apply(this[kReplyHeaders][_key], value)
this[kReplyHeaders][key].push(...value)
} else {
this[kReplyHeaders][_key].push(value)
this[kReplyHeaders][key].push(value)
}
} else {
this[kReplyHeaders][_key] = value
this[kReplyHeaders][key] = value
}

return this
}

Expand All @@ -245,6 +239,7 @@ Reply.prototype.headers = function (headers) {
const key = keys[i]
this.header(key, headers[key])
jsumners marked this conversation as resolved.
Show resolved Hide resolved
}

return this
}

Expand All @@ -267,25 +262,29 @@ const INVALID_TRAILERS = new Set([

Reply.prototype.trailer = function (key, fn) {
key = key.toLowerCase()

if (INVALID_TRAILERS.has(key)) {
throw new FST_ERR_BAD_TRAILER_NAME(key)
}

if (typeof fn !== 'function') {
throw new FST_ERR_BAD_TRAILER_VALUE(key, typeof fn)
}
if (this[kReplyTrailers] === null) this[kReplyTrailers] = {}

this[kReplyTrailers] = this[kReplyTrailers] ?? {}
this[kReplyTrailers][key] = fn

return this
}

Reply.prototype.hasTrailer = function (key) {
if (this[kReplyTrailers] === null) return false
return this[kReplyTrailers][key.toLowerCase()] !== undefined
return this[kReplyTrailers]?.[key.toLowerCase()] !== undefined
}

Reply.prototype.removeTrailer = function (key) {
if (this[kReplyTrailers] === null) return this
this[kReplyTrailers][key.toLowerCase()] = undefined

return this
}

Expand Down Expand Up @@ -330,8 +329,7 @@ Reply.prototype.redirect = function (code, url) {
code = this[kReplyHasStatusCode] ? this.raw.statusCode : 302
}

this.header('location', url).code(code).send()
return this
return this.header('location', url).code(code).send()
}

Reply.prototype.callNotFound = function () {
Expand Down Expand Up @@ -485,9 +483,7 @@ function onSendEnd (reply, payload) {
}

if (reply[kReplyTrailers] === null) {
if (!reply[kReplyHeaders]['content-length']) {
reply[kReplyHeaders]['content-length'] = '' + Buffer.byteLength(payload)
} else if (req.raw.method !== 'HEAD' && reply[kReplyHeaders]['content-length'] !== Buffer.byteLength(payload)) {
if (!reply[kReplyHeaders]['content-length'] || (req.raw.method !== 'HEAD' && parseInt(reply[kReplyHeaders]['content-length'], 10) !== Buffer.byteLength(payload))) {
Eomm marked this conversation as resolved.
Show resolved Hide resolved
reply[kReplyHeaders]['content-length'] = '' + Buffer.byteLength(payload)
denshakhov marked this conversation as resolved.
Show resolved Hide resolved
}
}
Expand Down Expand Up @@ -568,12 +564,15 @@ function sendStream (payload, res, reply) {

function sendTrailer (payload, res, reply) {
if (reply[kReplyTrailers] === null) return
const trailerHeaders = Object.keys(reply[kReplyTrailers])

const trailers = {}
for (const trailerName of trailerHeaders) {

for (const trailerName in reply[kReplyTrailers]) {
Eomm marked this conversation as resolved.
Show resolved Hide resolved
if (typeof reply[kReplyTrailers][trailerName] !== 'function') continue

trailers[trailerName] = reply[kReplyTrailers][trailerName](reply, payload)
}

res.addTrailers(trailers)
}

Expand Down