3 * Copyright(c) 2009-2013 TJ Holowaychuk
4 * Copyright(c) 2013 Roman Shtylman
5 * Copyright(c) 2014-2015 Douglas Christopher Wilson
12 * Module dependencies.
16 var accepts = require('accepts');
17 var deprecate = require('depd')('express');
18 var isIP = require('net').isIP;
19 var typeis = require('type-is');
20 var http = require('http');
21 var fresh = require('fresh');
22 var parseRange = require('range-parser');
23 var parse = require('parseurl');
24 var proxyaddr = require('proxy-addr');
31 var req = Object.create(http.IncomingMessage.prototype)
41 * Return request header.
43 * The `Referrer` header field is special-cased,
44 * both `Referrer` and `Referer` are interchangeable.
48 * req.get('Content-Type');
51 * req.get('content-type');
54 * req.get('Something');
57 * Aliased as `req.header()`.
59 * @param {String} name
65 req.header = function header(name) {
67 throw new TypeError('name argument is required to req.get');
70 if (typeof name !== 'string') {
71 throw new TypeError('name must be a string to req.get');
74 var lc = name.toLowerCase();
79 return this.headers.referrer
80 || this.headers.referer;
82 return this.headers[lc];
89 * Check if the given `type(s)` is acceptable, returning
90 * the best match when true, otherwise `undefined`, in which
91 * case you should respond with 406 "Not Acceptable".
93 * The `type` value may be a single MIME type string
94 * such as "application/json", an extension name
95 * such as "json", a comma-delimited list such as "json, html, text/plain",
96 * an argument list such as `"json", "html", "text/plain"`,
97 * or an array `["json", "html", "text/plain"]`. When a list
98 * or array is given, the _best_ match, if any is returned.
102 * // Accept: text/html
103 * req.accepts('html');
106 * // Accept: text/*, application/json
107 * req.accepts('html');
109 * req.accepts('text/html');
111 * req.accepts('json, text');
113 * req.accepts('application/json');
114 * // => "application/json"
116 * // Accept: text/*, application/json
117 * req.accepts('image/png');
118 * req.accepts('png');
121 * // Accept: text/*;q=.5, application/json
122 * req.accepts(['html', 'json']);
123 * req.accepts('html', 'json');
124 * req.accepts('html, json');
127 * @param {String|Array} type(s)
128 * @return {String|Array|Boolean}
132 req.accepts = function(){
133 var accept = accepts(this);
134 return accept.types.apply(accept, arguments);
138 * Check if the given `encoding`s are accepted.
140 * @param {String} ...encoding
141 * @return {String|Array}
145 req.acceptsEncodings = function(){
146 var accept = accepts(this);
147 return accept.encodings.apply(accept, arguments);
150 req.acceptsEncoding = deprecate.function(req.acceptsEncodings,
151 'req.acceptsEncoding: Use acceptsEncodings instead');
154 * Check if the given `charset`s are acceptable,
155 * otherwise you should respond with 406 "Not Acceptable".
157 * @param {String} ...charset
158 * @return {String|Array}
162 req.acceptsCharsets = function(){
163 var accept = accepts(this);
164 return accept.charsets.apply(accept, arguments);
167 req.acceptsCharset = deprecate.function(req.acceptsCharsets,
168 'req.acceptsCharset: Use acceptsCharsets instead');
171 * Check if the given `lang`s are acceptable,
172 * otherwise you should respond with 406 "Not Acceptable".
174 * @param {String} ...lang
175 * @return {String|Array}
179 req.acceptsLanguages = function(){
180 var accept = accepts(this);
181 return accept.languages.apply(accept, arguments);
184 req.acceptsLanguage = deprecate.function(req.acceptsLanguages,
185 'req.acceptsLanguage: Use acceptsLanguages instead');
188 * Parse Range header field, capping to the given `size`.
190 * Unspecified ranges such as "0-" require knowledge of your resource length. In
191 * the case of a byte range this is of course the total number of bytes. If the
192 * Range header field is not given `undefined` is returned, `-1` when unsatisfiable,
193 * and `-2` when syntactically invalid.
195 * When ranges are returned, the array has a "type" property which is the type of
196 * range that is required (most commonly, "bytes"). Each array element is an object
197 * with a "start" and "end" property for the portion of the range.
199 * The "combine" option can be set to `true` and overlapping & adjacent ranges
200 * will be combined into a single range.
202 * NOTE: remember that ranges are inclusive, so for example "Range: users=0-3"
203 * should respond with 4 users when available, not 3.
205 * @param {number} size
206 * @param {object} [options]
207 * @param {boolean} [options.combine=false]
208 * @return {number|array}
212 req.range = function range(size, options) {
213 var range = this.get('Range');
215 return parseRange(size, range, options);
219 * Return the value of param `name` when present or `defaultValue`.
221 * - Checks route placeholders, ex: _/user/:id_
222 * - Checks body params, ex: id=12, {"id":12}
223 * - Checks query string params, ex: ?id=12
225 * To utilize request bodies, `req.body`
226 * should be an object. This can be done by using
227 * the `bodyParser()` middleware.
229 * @param {String} name
230 * @param {Mixed} [defaultValue]
235 req.param = function param(name, defaultValue) {
236 var params = this.params || {};
237 var body = this.body || {};
238 var query = this.query || {};
240 var args = arguments.length === 1
243 deprecate('req.param(' + args + '): Use req.params, req.body, or req.query instead');
245 if (null != params[name] && params.hasOwnProperty(name)) return params[name];
246 if (null != body[name]) return body[name];
247 if (null != query[name]) return query[name];
253 * Check if the incoming request contains the "Content-Type"
254 * header field, and it contains the given mime `type`.
258 * // With Content-Type: text/html; charset=utf-8
260 * req.is('text/html');
264 * // When Content-Type is application/json
266 * req.is('application/json');
267 * req.is('application/*');
273 * @param {String|Array} types...
274 * @return {String|false|null}
278 req.is = function is(types) {
281 // support flattened arguments
282 if (!Array.isArray(types)) {
283 arr = new Array(arguments.length);
284 for (var i = 0; i < arr.length; i++) {
285 arr[i] = arguments[i];
289 return typeis(this, arr);
293 * Return the protocol string "http" or "https"
294 * when requested with TLS. When the "trust proxy"
295 * setting trusts the socket address, the
296 * "X-Forwarded-Proto" header field will be trusted
297 * and used if present.
299 * If you're running behind a reverse proxy that
300 * supplies https for you this may be enabled.
306 defineGetter(req, 'protocol', function protocol(){
307 var proto = this.connection.encrypted
310 var trust = this.app.get('trust proxy fn');
312 if (!trust(this.connection.remoteAddress, 0)) {
316 // Note: X-Forwarded-Proto is normally only ever a
317 // single value, but this is to be safe.
318 var header = this.get('X-Forwarded-Proto') || proto
319 var index = header.indexOf(',')
322 ? header.substring(0, index).trim()
329 * req.protocol === 'https'
335 defineGetter(req, 'secure', function secure(){
336 return this.protocol === 'https';
340 * Return the remote address from the trusted proxy.
342 * The is the remote address on the socket unless
343 * "trust proxy" is set.
349 defineGetter(req, 'ip', function ip(){
350 var trust = this.app.get('trust proxy fn');
351 return proxyaddr(this, trust);
355 * When "trust proxy" is set, trusted proxy addresses + client.
357 * For example if the value were "client, proxy1, proxy2"
358 * you would receive the array `["client", "proxy1", "proxy2"]`
359 * where "proxy2" is the furthest down-stream and "proxy1" and
360 * "proxy2" were trusted.
366 defineGetter(req, 'ips', function ips() {
367 var trust = this.app.get('trust proxy fn');
368 var addrs = proxyaddr.all(this, trust);
370 // reverse the order (to farthest -> closest)
371 // and remove socket address
372 addrs.reverse().pop()
378 * Return subdomains as an array.
380 * Subdomains are the dot-separated parts of the host before the main domain of
381 * the app. By default, the domain of the app is assumed to be the last two
382 * parts of the host. This can be changed by setting "subdomain offset".
384 * For example, if the domain is "tobi.ferrets.example.com":
385 * If "subdomain offset" is not set, req.subdomains is `["ferrets", "tobi"]`.
386 * If "subdomain offset" is 3, req.subdomains is `["tobi"]`.
392 defineGetter(req, 'subdomains', function subdomains() {
393 var hostname = this.hostname;
395 if (!hostname) return [];
397 var offset = this.app.get('subdomain offset');
398 var subdomains = !isIP(hostname)
399 ? hostname.split('.').reverse()
402 return subdomains.slice(offset);
406 * Short-hand for `url.parse(req.url).pathname`.
412 defineGetter(req, 'path', function path() {
413 return parse(this).pathname;
417 * Parse the "Host" header field to a hostname.
419 * When the "trust proxy" setting trusts the socket
420 * address, the "X-Forwarded-Host" header field will
427 defineGetter(req, 'hostname', function hostname(){
428 var trust = this.app.get('trust proxy fn');
429 var host = this.get('X-Forwarded-Host');
431 if (!host || !trust(this.connection.remoteAddress, 0)) {
432 host = this.get('Host');
433 } else if (host.indexOf(',') !== -1) {
434 // Note: X-Forwarded-Host is normally only ever a
435 // single value, but this is to be safe.
436 host = host.substring(0, host.indexOf(',')).trimRight()
441 // IPv6 literal support
442 var offset = host[0] === '['
443 ? host.indexOf(']') + 1
445 var index = host.indexOf(':', offset);
448 ? host.substring(0, index)
452 // TODO: change req.host to return host in next major
454 defineGetter(req, 'host', deprecate.function(function host(){
455 return this.hostname;
456 }, 'req.host: Use req.hostname instead'));
459 * Check if the request is fresh, aka
460 * Last-Modified and/or the ETag
467 defineGetter(req, 'fresh', function(){
468 var method = this.method;
470 var status = res.statusCode
472 // GET or HEAD for weak freshness validation only
473 if ('GET' !== method && 'HEAD' !== method) return false;
475 // 2xx or 304 as per rfc2616 14.26
476 if ((status >= 200 && status < 300) || 304 === status) {
477 return fresh(this.headers, {
478 'etag': res.get('ETag'),
479 'last-modified': res.get('Last-Modified')
487 * Check if the request is stale, aka
488 * "Last-Modified" and / or the "ETag" for the
489 * resource has changed.
495 defineGetter(req, 'stale', function stale(){
500 * Check if the request was an _XMLHttpRequest_.
506 defineGetter(req, 'xhr', function xhr(){
507 var val = this.get('X-Requested-With') || '';
508 return val.toLowerCase() === 'xmlhttprequest';
512 * Helper function for creating a getter on an object.
514 * @param {Object} obj
515 * @param {String} name
516 * @param {Function} getter
519 function defineGetter(obj, name, getter) {
520 Object.defineProperty(obj, name, {