-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathindex.js
More file actions
313 lines (253 loc) · 5.95 KB
/
Copy pathindex.js
File metadata and controls
313 lines (253 loc) · 5.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*!
* finalhandler
* Copyright(c) 2014-2015 Douglas Christopher Wilson
* MIT Licensed
*/
'use strict'
/**
* Module dependencies.
* @private
*/
var accepts = require('accepts')
var debug = require('debug')('finalhandler')
var escapeHtml = require('escape-html')
var http = require('http')
var onFinished = require('on-finished')
var unpipe = require('unpipe')
/**
* Module variables.
* @private
*/
/* istanbul ignore next */
var defer = typeof setImmediate === 'function'
? setImmediate
: function (fn) { process.nextTick(fn.bind.apply(fn, arguments)) }
var isFinished = onFinished.isFinished
/**
* Module exports.
* @public
*/
module.exports = finalhandler
/**
* Create a function to handle the final response.
*
* @param {Request} req
* @param {Response} res
* @param {Object} [options]
* @return {Function}
* @public
*/
function finalhandler (req, res, options) {
var opts = options || {}
// get message option
var message = opts.message === true
? getDefaultErrorMessage
: opts.message || false
if (typeof message !== 'boolean' && typeof message !== 'function') {
throw new TypeError('option message must be boolean or function')
}
// get error callback
var onerror = opts.onerror
// get stack trace option
var stacktrace = opts.stacktrace || false
return function (err) {
var body
var constructBody
var msg
var status = res.statusCode
// ignore 404 on in-flight response
if (!err && res._header) {
debug('cannot 404 after headers sent')
return
}
// unhandled error
if (err) {
// respect status code from error
status = getErrorStatusCode(err) || status
// default status code to 500
if (!status || status < 400) {
status = 500
}
// build a stack trace or normal message
msg = stacktrace
? getErrorStack(err, status, message)
: getErrorMessage(err, status, message)
} else {
status = 404
msg = 'Cannot ' + req.method + ' ' + (req.originalUrl || req.url)
}
debug('default %s', status)
// schedule onerror callback
if (err && onerror) {
defer(onerror, err, req, res)
}
// cannot actually respond
if (res._header) {
return req.socket.destroy()
}
// negotiate
var accept = accepts(req)
var type = accept.types('html', 'text')
// construct body
switch (type) {
case 'html':
constructBody = constructHtmlBody
break
default:
// default to plain text
constructBody = constructTextBody
break
}
// construct body
body = constructBody(status, msg)
// send response
send(req, res, status, body)
}
}
/**
* Get HTML body string
*
* @param {number} status
* @param {string} message
* @return {Buffer}
* @private
*/
function constructHtmlBody (status, message) {
var msg = escapeHtml(message)
.replace(/\n/g, '<br>')
.replace(/\x20{2}/g, ' ')
var html = '<!doctype html>\n' +
'<html lang=en>\n' +
'<head>\n' +
'<meta charset=utf-8>\n' +
'<title>' + escapeHtml(http.STATUS_CODES[status]) + '</title>\n' +
'</head>\n' +
'<body>\n' +
msg + '\n' +
'</body>\n'
var body = new Buffer(html, 'utf8')
body.type = 'text/html; charset=utf-8'
return body
}
/**
* Get plain text body string
*
* @param {number} status
* @param {string} message
* @return {Buffer}
* @private
*/
function constructTextBody (status, message) {
var msg = message + '\n'
var body = new Buffer(msg, 'utf8')
body.type = 'text/plain; charset=utf-8'
return body
}
/**
* Get message from error
*
* @param {object} err
* @param {number} status
* @param {function} message
* @return {string}
* @private
*/
function getErrorMessage (err, status, message) {
var msg
if (message) {
msg = message(err, status)
}
return msg || http.STATUS_CODES[status]
}
/**
* Get default message from error
*
* @param {object} err
* @return {string}
* @private
*/
function getDefaultErrorMessage (err) {
return (err.status >= 400 && err.status < 600) || (err.statusCode >= 400 && err.statusCode < 600)
? err.message
: undefined
}
/**
* Get stack from error with custom message
*
* @param {object} err
* @param {number} status
* @param {function} message
* @return {string}
* @private
*/
function getErrorStack (err, status, message) {
var stack = err.stack || ''
if (message) {
var index = stack.indexOf('\n')
var msg = message(err, status) || err.message || String(err)
var name = err.name
// slice implicit message from top of stack
if (index !== -1) {
stack = stack.substr(index)
}
// prepend name and message to stack
stack = name
? name + ': ' + msg + stack
: msg + stack
} else if (!stack) {
// stringify error when no message generator and no stack
stack = String(err)
}
return stack
}
/**
* Get status code from an Error object.
*
* @param {object} err
* @return {number}
* @private
*/
function getErrorStatusCode (err) {
// check err.status
if (err.status >= 400 && err.status < 600) {
return err.status
}
// check err.statusCode
if (err.statusCode >= 400 && err.statusCode < 600) {
return err.statusCode
}
return undefined
}
/**
* Send response.
*
* @param {IncomingMessage} req
* @param {OutgoingMessage} res
* @param {number} status
* @param {Buffer} body
* @private
*/
function send (req, res, status, body) {
function write () {
res.statusCode = status
// security header for content sniffing
res.setHeader('X-Content-Type-Options', 'nosniff')
// standard headers
res.setHeader('Content-Type', body.type)
res.setHeader('Content-Length', body.length)
if (req.method === 'HEAD') {
res.end()
return
}
res.end(body, 'utf8')
}
if (isFinished(req)) {
write()
return
}
// unpipe everything from the request
unpipe(req)
// flush the request
onFinished(req, write)
req.resume()
}