1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | 'use strict'
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | var createError = require('http-errors')
|
16 | var debug = require('debug')('send')
|
17 | var deprecate = require('depd')('send')
|
18 | var destroy = require('destroy')
|
19 | var encodeUrl = require('encodeurl')
|
20 | var escapeHtml = require('escape-html')
|
21 | var etag = require('etag')
|
22 | var fresh = require('fresh')
|
23 | var fs = require('fs')
|
24 | var mime = require('mime')
|
25 | var ms = require('ms')
|
26 | var onFinished = require('on-finished')
|
27 | var parseRange = require('range-parser')
|
28 | var path = require('path')
|
29 | var statuses = require('statuses')
|
30 | var Stream = require('stream')
|
31 | var util = require('util')
|
32 |
|
33 |
|
34 |
|
35 |
|
36 |
|
37 |
|
38 | var extname = path.extname
|
39 | var join = path.join
|
40 | var normalize = path.normalize
|
41 | var resolve = path.resolve
|
42 | var sep = path.sep
|
43 |
|
44 |
|
45 |
|
46 |
|
47 |
|
48 |
|
49 | var BYTES_RANGE_REGEXP = /^ *bytes=/
|
50 |
|
51 |
|
52 |
|
53 |
|
54 |
|
55 |
|
56 | var MAX_MAXAGE = 60 * 60 * 24 * 365 * 1000
|
57 |
|
58 |
|
59 |
|
60 |
|
61 |
|
62 |
|
63 | var UP_PATH_REGEXP = /(?:^|[\\/])\.\.(?:[\\/]|$)/
|
64 |
|
65 |
|
66 |
|
67 |
|
68 |
|
69 |
|
70 | module.exports = send
|
71 | module.exports.mime = mime
|
72 |
|
73 |
|
74 |
|
75 |
|
76 |
|
77 |
|
78 |
|
79 |
|
80 |
|
81 |
|
82 |
|
83 | function send (req, path, options) {
|
84 | return new SendStream(req, path, options)
|
85 | }
|
86 |
|
87 |
|
88 |
|
89 |
|
90 |
|
91 |
|
92 |
|
93 |
|
94 |
|
95 |
|
96 | function SendStream (req, path, options) {
|
97 | Stream.call(this)
|
98 |
|
99 | var opts = options || {}
|
100 |
|
101 | this.options = opts
|
102 | this.path = path
|
103 | this.req = req
|
104 |
|
105 | this._acceptRanges = opts.acceptRanges !== undefined
|
106 | ? Boolean(opts.acceptRanges)
|
107 | : true
|
108 |
|
109 | this._cacheControl = opts.cacheControl !== undefined
|
110 | ? Boolean(opts.cacheControl)
|
111 | : true
|
112 |
|
113 | this._etag = opts.etag !== undefined
|
114 | ? Boolean(opts.etag)
|
115 | : true
|
116 |
|
117 | this._dotfiles = opts.dotfiles !== undefined
|
118 | ? opts.dotfiles
|
119 | : 'ignore'
|
120 |
|
121 | if (this._dotfiles !== 'ignore' && this._dotfiles !== 'allow' && this._dotfiles !== 'deny') {
|
122 | throw new TypeError('dotfiles option must be "allow", "deny", or "ignore"')
|
123 | }
|
124 |
|
125 | this._hidden = Boolean(opts.hidden)
|
126 |
|
127 | if (opts.hidden !== undefined) {
|
128 | deprecate('hidden: use dotfiles: \'' + (this._hidden ? 'allow' : 'ignore') + '\' instead')
|
129 | }
|
130 |
|
131 |
|
132 | if (opts.dotfiles === undefined) {
|
133 | this._dotfiles = undefined
|
134 | }
|
135 |
|
136 | this._extensions = opts.extensions !== undefined
|
137 | ? normalizeList(opts.extensions, 'extensions option')
|
138 | : []
|
139 |
|
140 | this._immutable = opts.immutable !== undefined
|
141 | ? Boolean(opts.immutable)
|
142 | : false
|
143 |
|
144 | this._index = opts.index !== undefined
|
145 | ? normalizeList(opts.index, 'index option')
|
146 | : ['index.html']
|
147 |
|
148 | this._lastModified = opts.lastModified !== undefined
|
149 | ? Boolean(opts.lastModified)
|
150 | : true
|
151 |
|
152 | this._maxage = opts.maxAge || opts.maxage
|
153 | this._maxage = typeof this._maxage === 'string'
|
154 | ? ms(this._maxage)
|
155 | : Number(this._maxage)
|
156 | this._maxage = !isNaN(this._maxage)
|
157 | ? Math.min(Math.max(0, this._maxage), MAX_MAXAGE)
|
158 | : 0
|
159 |
|
160 | this._root = opts.root
|
161 | ? resolve(opts.root)
|
162 | : null
|
163 |
|
164 | if (!this._root && opts.from) {
|
165 | this.from(opts.from)
|
166 | }
|
167 | }
|
168 |
|
169 |
|
170 |
|
171 |
|
172 |
|
173 | util.inherits(SendStream, Stream)
|
174 |
|
175 |
|
176 |
|
177 |
|
178 |
|
179 |
|
180 |
|
181 |
|
182 |
|
183 | SendStream.prototype.etag = deprecate.function(function etag (val) {
|
184 | this._etag = Boolean(val)
|
185 | debug('etag %s', this._etag)
|
186 | return this
|
187 | }, 'send.etag: pass etag as option')
|
188 |
|
189 |
|
190 |
|
191 |
|
192 |
|
193 |
|
194 |
|
195 |
|
196 |
|
197 | SendStream.prototype.hidden = deprecate.function(function hidden (val) {
|
198 | this._hidden = Boolean(val)
|
199 | this._dotfiles = undefined
|
200 | debug('hidden %s', this._hidden)
|
201 | return this
|
202 | }, 'send.hidden: use dotfiles option')
|
203 |
|
204 |
|
205 |
|
206 |
|
207 |
|
208 |
|
209 |
|
210 |
|
211 |
|
212 |
|
213 | SendStream.prototype.index = deprecate.function(function index (paths) {
|
214 | var index = !paths ? [] : normalizeList(paths, 'paths argument')
|
215 | debug('index %o', paths)
|
216 | this._index = index
|
217 | return this
|
218 | }, 'send.index: pass index as option')
|
219 |
|
220 |
|
221 |
|
222 |
|
223 |
|
224 |
|
225 |
|
226 |
|
227 |
|
228 | SendStream.prototype.root = function root (path) {
|
229 | this._root = resolve(String(path))
|
230 | debug('root %s', this._root)
|
231 | return this
|
232 | }
|
233 |
|
234 | SendStream.prototype.from = deprecate.function(SendStream.prototype.root,
|
235 | 'send.from: pass root as option')
|
236 |
|
237 | SendStream.prototype.root = deprecate.function(SendStream.prototype.root,
|
238 | 'send.root: pass root as option')
|
239 |
|
240 |
|
241 |
|
242 |
|
243 |
|
244 |
|
245 |
|
246 |
|
247 |
|
248 | SendStream.prototype.maxage = deprecate.function(function maxage (maxAge) {
|
249 | this._maxage = typeof maxAge === 'string'
|
250 | ? ms(maxAge)
|
251 | : Number(maxAge)
|
252 | this._maxage = !isNaN(this._maxage)
|
253 | ? Math.min(Math.max(0, this._maxage), MAX_MAXAGE)
|
254 | : 0
|
255 | debug('max-age %d', this._maxage)
|
256 | return this
|
257 | }, 'send.maxage: pass maxAge as option')
|
258 |
|
259 |
|
260 |
|
261 |
|
262 |
|
263 |
|
264 |
|
265 |
|
266 |
|
267 | SendStream.prototype.error = function error (status, err) {
|
268 |
|
269 | if (hasListeners(this, 'error')) {
|
270 | return this.emit('error', createHttpError(status, err))
|
271 | }
|
272 |
|
273 | var res = this.res
|
274 | var msg = statuses.message[status] || String(status)
|
275 | var doc = createHtmlDocument('Error', escapeHtml(msg))
|
276 |
|
277 |
|
278 | clearHeaders(res)
|
279 |
|
280 |
|
281 | if (err && err.headers) {
|
282 | setHeaders(res, err.headers)
|
283 | }
|
284 |
|
285 |
|
286 | res.statusCode = status
|
287 | res.setHeader('Content-Type', 'text/html; charset=UTF-8')
|
288 | res.setHeader('Content-Length', Buffer.byteLength(doc))
|
289 | res.setHeader('Content-Security-Policy', "default-src 'none'")
|
290 | res.setHeader('X-Content-Type-Options', 'nosniff')
|
291 | res.end(doc)
|
292 | }
|
293 |
|
294 |
|
295 |
|
296 |
|
297 |
|
298 |
|
299 |
|
300 |
|
301 | SendStream.prototype.hasTrailingSlash = function hasTrailingSlash () {
|
302 | return this.path[this.path.length - 1] === '/'
|
303 | }
|
304 |
|
305 |
|
306 |
|
307 |
|
308 |
|
309 |
|
310 |
|
311 |
|
312 | SendStream.prototype.isConditionalGET = function isConditionalGET () {
|
313 | return this.req.headers['if-match'] ||
|
314 | this.req.headers['if-unmodified-since'] ||
|
315 | this.req.headers['if-none-match'] ||
|
316 | this.req.headers['if-modified-since']
|
317 | }
|
318 |
|
319 |
|
320 |
|
321 |
|
322 |
|
323 |
|
324 |
|
325 |
|
326 | SendStream.prototype.isPreconditionFailure = function isPreconditionFailure () {
|
327 | var req = this.req
|
328 | var res = this.res
|
329 |
|
330 |
|
331 | var match = req.headers['if-match']
|
332 | if (match) {
|
333 | var etag = res.getHeader('ETag')
|
334 | return !etag || (match !== '*' && parseTokenList(match).every(function (match) {
|
335 | return match !== etag && match !== 'W/' + etag && 'W/' + match !== etag
|
336 | }))
|
337 | }
|
338 |
|
339 |
|
340 | var unmodifiedSince = parseHttpDate(req.headers['if-unmodified-since'])
|
341 | if (!isNaN(unmodifiedSince)) {
|
342 | var lastModified = parseHttpDate(res.getHeader('Last-Modified'))
|
343 | return isNaN(lastModified) || lastModified > unmodifiedSince
|
344 | }
|
345 |
|
346 | return false
|
347 | }
|
348 |
|
349 |
|
350 |
|
351 |
|
352 |
|
353 |
|
354 |
|
355 | SendStream.prototype.removeContentHeaderFields = function removeContentHeaderFields () {
|
356 | var res = this.res
|
357 |
|
358 | res.removeHeader('Content-Encoding')
|
359 | res.removeHeader('Content-Language')
|
360 | res.removeHeader('Content-Length')
|
361 | res.removeHeader('Content-Range')
|
362 | res.removeHeader('Content-Type')
|
363 | }
|
364 |
|
365 |
|
366 |
|
367 |
|
368 |
|
369 |
|
370 |
|
371 | SendStream.prototype.notModified = function notModified () {
|
372 | var res = this.res
|
373 | debug('not modified')
|
374 | this.removeContentHeaderFields()
|
375 | res.statusCode = 304
|
376 | res.end()
|
377 | }
|
378 |
|
379 |
|
380 |
|
381 |
|
382 |
|
383 |
|
384 |
|
385 | SendStream.prototype.headersAlreadySent = function headersAlreadySent () {
|
386 | var err = new Error('Can\'t set headers after they are sent.')
|
387 | debug('headers already sent')
|
388 | this.error(500, err)
|
389 | }
|
390 |
|
391 |
|
392 |
|
393 |
|
394 |
|
395 |
|
396 |
|
397 |
|
398 |
|
399 | SendStream.prototype.isCachable = function isCachable () {
|
400 | var statusCode = this.res.statusCode
|
401 | return (statusCode >= 200 && statusCode < 300) ||
|
402 | statusCode === 304
|
403 | }
|
404 |
|
405 |
|
406 |
|
407 |
|
408 |
|
409 |
|
410 |
|
411 |
|
412 | SendStream.prototype.onStatError = function onStatError (error) {
|
413 | switch (error.code) {
|
414 | case 'ENAMETOOLONG':
|
415 | case 'ENOENT':
|
416 | case 'ENOTDIR':
|
417 | this.error(404, error)
|
418 | break
|
419 | default:
|
420 | this.error(500, error)
|
421 | break
|
422 | }
|
423 | }
|
424 |
|
425 |
|
426 |
|
427 |
|
428 |
|
429 |
|
430 |
|
431 |
|
432 | SendStream.prototype.isFresh = function isFresh () {
|
433 | return fresh(this.req.headers, {
|
434 | etag: this.res.getHeader('ETag'),
|
435 | 'last-modified': this.res.getHeader('Last-Modified')
|
436 | })
|
437 | }
|
438 |
|
439 |
|
440 |
|
441 |
|
442 |
|
443 |
|
444 |
|
445 |
|
446 | SendStream.prototype.isRangeFresh = function isRangeFresh () {
|
447 | var ifRange = this.req.headers['if-range']
|
448 |
|
449 | if (!ifRange) {
|
450 | return true
|
451 | }
|
452 |
|
453 |
|
454 | if (ifRange.indexOf('"') !== -1) {
|
455 | var etag = this.res.getHeader('ETag')
|
456 | return Boolean(etag && ifRange.indexOf(etag) !== -1)
|
457 | }
|
458 |
|
459 |
|
460 | var lastModified = this.res.getHeader('Last-Modified')
|
461 | return parseHttpDate(lastModified) <= parseHttpDate(ifRange)
|
462 | }
|
463 |
|
464 |
|
465 |
|
466 |
|
467 |
|
468 |
|
469 |
|
470 |
|
471 | SendStream.prototype.redirect = function redirect (path) {
|
472 | var res = this.res
|
473 |
|
474 | if (hasListeners(this, 'directory')) {
|
475 | this.emit('directory', res, path)
|
476 | return
|
477 | }
|
478 |
|
479 | if (this.hasTrailingSlash()) {
|
480 | this.error(403)
|
481 | return
|
482 | }
|
483 |
|
484 | var loc = encodeUrl(collapseLeadingSlashes(this.path + '/'))
|
485 | var doc = createHtmlDocument('Redirecting', 'Redirecting to <a href="' + escapeHtml(loc) + '">' +
|
486 | escapeHtml(loc) + '</a>')
|
487 |
|
488 |
|
489 | res.statusCode = 301
|
490 | res.setHeader('Content-Type', 'text/html; charset=UTF-8')
|
491 | res.setHeader('Content-Length', Buffer.byteLength(doc))
|
492 | res.setHeader('Content-Security-Policy', "default-src 'none'")
|
493 | res.setHeader('X-Content-Type-Options', 'nosniff')
|
494 | res.setHeader('Location', loc)
|
495 | res.end(doc)
|
496 | }
|
497 |
|
498 |
|
499 |
|
500 |
|
501 |
|
502 |
|
503 |
|
504 |
|
505 |
|
506 | SendStream.prototype.pipe = function pipe (res) {
|
507 |
|
508 | var root = this._root
|
509 |
|
510 |
|
511 | this.res = res
|
512 |
|
513 |
|
514 | var path = decode(this.path)
|
515 | if (path === -1) {
|
516 | this.error(400)
|
517 | return res
|
518 | }
|
519 |
|
520 |
|
521 | if (~path.indexOf('\0')) {
|
522 | this.error(400)
|
523 | return res
|
524 | }
|
525 |
|
526 | var parts
|
527 | if (root !== null) {
|
528 |
|
529 | if (path) {
|
530 | path = normalize('.' + sep + path)
|
531 | }
|
532 |
|
533 |
|
534 | if (UP_PATH_REGEXP.test(path)) {
|
535 | debug('malicious path "%s"', path)
|
536 | this.error(403)
|
537 | return res
|
538 | }
|
539 |
|
540 |
|
541 | parts = path.split(sep)
|
542 |
|
543 |
|
544 | path = normalize(join(root, path))
|
545 | } else {
|
546 |
|
547 | if (UP_PATH_REGEXP.test(path)) {
|
548 | debug('malicious path "%s"', path)
|
549 | this.error(403)
|
550 | return res
|
551 | }
|
552 |
|
553 |
|
554 | parts = normalize(path).split(sep)
|
555 |
|
556 |
|
557 | path = resolve(path)
|
558 | }
|
559 |
|
560 |
|
561 | if (containsDotFile(parts)) {
|
562 | var access = this._dotfiles
|
563 |
|
564 |
|
565 | if (access === undefined) {
|
566 | access = parts[parts.length - 1][0] === '.'
|
567 | ? (this._hidden ? 'allow' : 'ignore')
|
568 | : 'allow'
|
569 | }
|
570 |
|
571 | debug('%s dotfile "%s"', access, path)
|
572 | switch (access) {
|
573 | case 'allow':
|
574 | break
|
575 | case 'deny':
|
576 | this.error(403)
|
577 | return res
|
578 | case 'ignore':
|
579 | default:
|
580 | this.error(404)
|
581 | return res
|
582 | }
|
583 | }
|
584 |
|
585 |
|
586 | if (this._index.length && this.hasTrailingSlash()) {
|
587 | this.sendIndex(path)
|
588 | return res
|
589 | }
|
590 |
|
591 | this.sendFile(path)
|
592 | return res
|
593 | }
|
594 |
|
595 |
|
596 |
|
597 |
|
598 |
|
599 |
|
600 |
|
601 |
|
602 | SendStream.prototype.send = function send (path, stat) {
|
603 | var len = stat.size
|
604 | var options = this.options
|
605 | var opts = {}
|
606 | var res = this.res
|
607 | var req = this.req
|
608 | var ranges = req.headers.range
|
609 | var offset = options.start || 0
|
610 |
|
611 | if (headersSent(res)) {
|
612 |
|
613 | this.headersAlreadySent()
|
614 | return
|
615 | }
|
616 |
|
617 | debug('pipe "%s"', path)
|
618 |
|
619 |
|
620 | this.setHeader(path, stat)
|
621 |
|
622 |
|
623 | this.type(path)
|
624 |
|
625 |
|
626 | if (this.isConditionalGET()) {
|
627 | if (this.isPreconditionFailure()) {
|
628 | this.error(412)
|
629 | return
|
630 | }
|
631 |
|
632 | if (this.isCachable() && this.isFresh()) {
|
633 | this.notModified()
|
634 | return
|
635 | }
|
636 | }
|
637 |
|
638 |
|
639 | len = Math.max(0, len - offset)
|
640 | if (options.end !== undefined) {
|
641 | var bytes = options.end - offset + 1
|
642 | if (len > bytes) len = bytes
|
643 | }
|
644 |
|
645 |
|
646 | if (this._acceptRanges && BYTES_RANGE_REGEXP.test(ranges)) {
|
647 |
|
648 | ranges = parseRange(len, ranges, {
|
649 | combine: true
|
650 | })
|
651 |
|
652 |
|
653 | if (!this.isRangeFresh()) {
|
654 | debug('range stale')
|
655 | ranges = -2
|
656 | }
|
657 |
|
658 |
|
659 | if (ranges === -1) {
|
660 | debug('range unsatisfiable')
|
661 |
|
662 |
|
663 | res.setHeader('Content-Range', contentRange('bytes', len))
|
664 |
|
665 |
|
666 | return this.error(416, {
|
667 | headers: { 'Content-Range': res.getHeader('Content-Range') }
|
668 | })
|
669 | }
|
670 |
|
671 |
|
672 | if (ranges !== -2 && ranges.length === 1) {
|
673 | debug('range %j', ranges)
|
674 |
|
675 |
|
676 | res.statusCode = 206
|
677 | res.setHeader('Content-Range', contentRange('bytes', len, ranges[0]))
|
678 |
|
679 |
|
680 | offset += ranges[0].start
|
681 | len = ranges[0].end - ranges[0].start + 1
|
682 | }
|
683 | }
|
684 |
|
685 |
|
686 | for (var prop in options) {
|
687 | opts[prop] = options[prop]
|
688 | }
|
689 |
|
690 |
|
691 | opts.start = offset
|
692 | opts.end = Math.max(offset, offset + len - 1)
|
693 |
|
694 |
|
695 | res.setHeader('Content-Length', len)
|
696 |
|
697 |
|
698 | if (req.method === 'HEAD') {
|
699 | res.end()
|
700 | return
|
701 | }
|
702 |
|
703 | this.stream(path, opts)
|
704 | }
|
705 |
|
706 |
|
707 |
|
708 |
|
709 |
|
710 |
|
711 |
|
712 | SendStream.prototype.sendFile = function sendFile (path) {
|
713 | var i = 0
|
714 | var self = this
|
715 |
|
716 | debug('stat "%s"', path)
|
717 | fs.stat(path, function onstat (err, stat) {
|
718 | if (err && err.code === 'ENOENT' && !extname(path) && path[path.length - 1] !== sep) {
|
719 |
|
720 | return next(err)
|
721 | }
|
722 | if (err) return self.onStatError(err)
|
723 | if (stat.isDirectory()) return self.redirect(path)
|
724 | self.emit('file', path, stat)
|
725 | self.send(path, stat)
|
726 | })
|
727 |
|
728 | function next (err) {
|
729 | if (self._extensions.length <= i) {
|
730 | return err
|
731 | ? self.onStatError(err)
|
732 | : self.error(404)
|
733 | }
|
734 |
|
735 | var p = path + '.' + self._extensions[i++]
|
736 |
|
737 | debug('stat "%s"', p)
|
738 | fs.stat(p, function (err, stat) {
|
739 | if (err) return next(err)
|
740 | if (stat.isDirectory()) return next()
|
741 | self.emit('file', p, stat)
|
742 | self.send(p, stat)
|
743 | })
|
744 | }
|
745 | }
|
746 |
|
747 |
|
748 |
|
749 |
|
750 |
|
751 |
|
752 |
|
753 | SendStream.prototype.sendIndex = function sendIndex (path) {
|
754 | var i = -1
|
755 | var self = this
|
756 |
|
757 | function next (err) {
|
758 | if (++i >= self._index.length) {
|
759 | if (err) return self.onStatError(err)
|
760 | return self.error(404)
|
761 | }
|
762 |
|
763 | var p = join(path, self._index[i])
|
764 |
|
765 | debug('stat "%s"', p)
|
766 | fs.stat(p, function (err, stat) {
|
767 | if (err) return next(err)
|
768 | if (stat.isDirectory()) return next()
|
769 | self.emit('file', p, stat)
|
770 | self.send(p, stat)
|
771 | })
|
772 | }
|
773 |
|
774 | next()
|
775 | }
|
776 |
|
777 |
|
778 |
|
779 |
|
780 |
|
781 |
|
782 |
|
783 |
|
784 |
|
785 | SendStream.prototype.stream = function stream (path, options) {
|
786 | var self = this
|
787 | var res = this.res
|
788 |
|
789 |
|
790 | var stream = fs.createReadStream(path, options)
|
791 | this.emit('stream', stream)
|
792 | stream.pipe(res)
|
793 |
|
794 |
|
795 | function cleanup () {
|
796 | destroy(stream, true)
|
797 | }
|
798 |
|
799 |
|
800 | onFinished(res, cleanup)
|
801 |
|
802 |
|
803 | stream.on('error', function onerror (err) {
|
804 |
|
805 | cleanup()
|
806 |
|
807 |
|
808 | self.onStatError(err)
|
809 | })
|
810 |
|
811 |
|
812 | stream.on('end', function onend () {
|
813 | self.emit('end')
|
814 | })
|
815 | }
|
816 |
|
817 |
|
818 |
|
819 |
|
820 |
|
821 |
|
822 |
|
823 |
|
824 |
|
825 | SendStream.prototype.type = function type (path) {
|
826 | var res = this.res
|
827 |
|
828 | if (res.getHeader('Content-Type')) return
|
829 |
|
830 | var type = mime.lookup(path)
|
831 |
|
832 | if (!type) {
|
833 | debug('no content-type')
|
834 | return
|
835 | }
|
836 |
|
837 | var charset = mime.charsets.lookup(type)
|
838 |
|
839 | debug('content-type %s', type)
|
840 | res.setHeader('Content-Type', type + (charset ? '; charset=' + charset : ''))
|
841 | }
|
842 |
|
843 |
|
844 |
|
845 |
|
846 |
|
847 |
|
848 |
|
849 |
|
850 |
|
851 |
|
852 | SendStream.prototype.setHeader = function setHeader (path, stat) {
|
853 | var res = this.res
|
854 |
|
855 | this.emit('headers', res, path, stat)
|
856 |
|
857 | if (this._acceptRanges && !res.getHeader('Accept-Ranges')) {
|
858 | debug('accept ranges')
|
859 | res.setHeader('Accept-Ranges', 'bytes')
|
860 | }
|
861 |
|
862 | if (this._cacheControl && !res.getHeader('Cache-Control')) {
|
863 | var cacheControl = 'public, max-age=' + Math.floor(this._maxage / 1000)
|
864 |
|
865 | if (this._immutable) {
|
866 | cacheControl += ', immutable'
|
867 | }
|
868 |
|
869 | debug('cache-control %s', cacheControl)
|
870 | res.setHeader('Cache-Control', cacheControl)
|
871 | }
|
872 |
|
873 | if (this._lastModified && !res.getHeader('Last-Modified')) {
|
874 | var modified = stat.mtime.toUTCString()
|
875 | debug('modified %s', modified)
|
876 | res.setHeader('Last-Modified', modified)
|
877 | }
|
878 |
|
879 | if (this._etag && !res.getHeader('ETag')) {
|
880 | var val = etag(stat)
|
881 | debug('etag %s', val)
|
882 | res.setHeader('ETag', val)
|
883 | }
|
884 | }
|
885 |
|
886 |
|
887 |
|
888 |
|
889 |
|
890 |
|
891 |
|
892 |
|
893 | function clearHeaders (res) {
|
894 | var headers = getHeaderNames(res)
|
895 |
|
896 | for (var i = 0; i < headers.length; i++) {
|
897 | res.removeHeader(headers[i])
|
898 | }
|
899 | }
|
900 |
|
901 |
|
902 |
|
903 |
|
904 |
|
905 |
|
906 |
|
907 | function collapseLeadingSlashes (str) {
|
908 | for (var i = 0; i < str.length; i++) {
|
909 | if (str[i] !== '/') {
|
910 | break
|
911 | }
|
912 | }
|
913 |
|
914 | return i > 1
|
915 | ? '/' + str.substr(i)
|
916 | : str
|
917 | }
|
918 |
|
919 |
|
920 |
|
921 |
|
922 |
|
923 |
|
924 |
|
925 | function containsDotFile (parts) {
|
926 | for (var i = 0; i < parts.length; i++) {
|
927 | var part = parts[i]
|
928 | if (part.length > 1 && part[0] === '.') {
|
929 | return true
|
930 | }
|
931 | }
|
932 |
|
933 | return false
|
934 | }
|
935 |
|
936 |
|
937 |
|
938 |
|
939 |
|
940 |
|
941 |
|
942 |
|
943 |
|
944 | function contentRange (type, size, range) {
|
945 | return type + ' ' + (range ? range.start + '-' + range.end : '*') + '/' + size
|
946 | }
|
947 |
|
948 |
|
949 |
|
950 |
|
951 |
|
952 |
|
953 |
|
954 |
|
955 |
|
956 | function createHtmlDocument (title, body) {
|
957 | return '<!DOCTYPE html>\n' +
|
958 | '<html lang="en">\n' +
|
959 | '<head>\n' +
|
960 | '<meta charset="utf-8">\n' +
|
961 | '<title>' + title + '</title>\n' +
|
962 | '</head>\n' +
|
963 | '<body>\n' +
|
964 | '<pre>' + body + '</pre>\n' +
|
965 | '</body>\n' +
|
966 | '</html>\n'
|
967 | }
|
968 |
|
969 |
|
970 |
|
971 |
|
972 |
|
973 |
|
974 |
|
975 |
|
976 |
|
977 | function createHttpError (status, err) {
|
978 | if (!err) {
|
979 | return createError(status)
|
980 | }
|
981 |
|
982 | return err instanceof Error
|
983 | ? createError(status, err, { expose: false })
|
984 | : createError(status, err)
|
985 | }
|
986 |
|
987 |
|
988 |
|
989 |
|
990 |
|
991 |
|
992 |
|
993 |
|
994 |
|
995 |
|
996 |
|
997 | function decode (path) {
|
998 | try {
|
999 | return decodeURIComponent(path)
|
1000 | } catch (err) {
|
1001 | return -1
|
1002 | }
|
1003 | }
|
1004 |
|
1005 |
|
1006 |
|
1007 |
|
1008 |
|
1009 |
|
1010 |
|
1011 |
|
1012 |
|
1013 | function getHeaderNames (res) {
|
1014 | return typeof res.getHeaderNames !== 'function'
|
1015 | ? Object.keys(res._headers || {})
|
1016 | : res.getHeaderNames()
|
1017 | }
|
1018 |
|
1019 |
|
1020 |
|
1021 |
|
1022 |
|
1023 |
|
1024 |
|
1025 |
|
1026 |
|
1027 |
|
1028 |
|
1029 |
|
1030 |
|
1031 | function hasListeners (emitter, type) {
|
1032 | var count = typeof emitter.listenerCount !== 'function'
|
1033 | ? emitter.listeners(type).length
|
1034 | : emitter.listenerCount(type)
|
1035 |
|
1036 | return count > 0
|
1037 | }
|
1038 |
|
1039 |
|
1040 |
|
1041 |
|
1042 |
|
1043 |
|
1044 |
|
1045 |
|
1046 |
|
1047 | function headersSent (res) {
|
1048 | return typeof res.headersSent !== 'boolean'
|
1049 | ? Boolean(res._header)
|
1050 | : res.headersSent
|
1051 | }
|
1052 |
|
1053 |
|
1054 |
|
1055 |
|
1056 |
|
1057 |
|
1058 |
|
1059 |
|
1060 |
|
1061 | function normalizeList (val, name) {
|
1062 | var list = [].concat(val || [])
|
1063 |
|
1064 | for (var i = 0; i < list.length; i++) {
|
1065 | if (typeof list[i] !== 'string') {
|
1066 | throw new TypeError(name + ' must be array of strings or false')
|
1067 | }
|
1068 | }
|
1069 |
|
1070 | return list
|
1071 | }
|
1072 |
|
1073 |
|
1074 |
|
1075 |
|
1076 |
|
1077 |
|
1078 |
|
1079 |
|
1080 | function parseHttpDate (date) {
|
1081 | var timestamp = date && Date.parse(date)
|
1082 |
|
1083 | return typeof timestamp === 'number'
|
1084 | ? timestamp
|
1085 | : NaN
|
1086 | }
|
1087 |
|
1088 |
|
1089 |
|
1090 |
|
1091 |
|
1092 |
|
1093 |
|
1094 |
|
1095 | function parseTokenList (str) {
|
1096 | var end = 0
|
1097 | var list = []
|
1098 | var start = 0
|
1099 |
|
1100 |
|
1101 | for (var i = 0, len = str.length; i < len; i++) {
|
1102 | switch (str.charCodeAt(i)) {
|
1103 | case 0x20:
|
1104 | if (start === end) {
|
1105 | start = end = i + 1
|
1106 | }
|
1107 | break
|
1108 | case 0x2c:
|
1109 | if (start !== end) {
|
1110 | list.push(str.substring(start, end))
|
1111 | }
|
1112 | start = end = i + 1
|
1113 | break
|
1114 | default:
|
1115 | end = i + 1
|
1116 | break
|
1117 | }
|
1118 | }
|
1119 |
|
1120 |
|
1121 | if (start !== end) {
|
1122 | list.push(str.substring(start, end))
|
1123 | }
|
1124 |
|
1125 | return list
|
1126 | }
|
1127 |
|
1128 |
|
1129 |
|
1130 |
|
1131 |
|
1132 |
|
1133 |
|
1134 |
|
1135 |
|
1136 | function setHeaders (res, headers) {
|
1137 | var keys = Object.keys(headers)
|
1138 |
|
1139 | for (var i = 0; i < keys.length; i++) {
|
1140 | var key = keys[i]
|
1141 | res.setHeader(key, headers[key])
|
1142 | }
|
1143 | }
|