-
Notifications
You must be signed in to change notification settings - Fork 0
/
route.js
82 lines (65 loc) · 1.52 KB
/
route.js
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
var pathToRegexp = require('path-to-regexp')
var Helpers = require('./helpers')
module.exports = Route
function Route(path, method) {
this.path = (path === '*') ? '(.*)' : path
this.regexp = pathToRegexp(this.path, this.keys = [], {end: false})
this.method = method
this.matchQueryString = Helpers.hasQueryString(path)
this.fullUrl = Helpers.isFullUrl(path)
}
/**
* Return route middleware with
* the given callback `fn()`.
*
* @param {Function} fn
* @return {Function}
* @api public
*/
Route.prototype.middleware = function(fn) {
var self = this;
return function(req,res,next) {
var url
if(!self.fullUrl) {
url = req.pathname
if(self.matchQueryString) {
url = req.path
}
} else {
url = req.url
}
// Match method... /if/ its there
if(self.method && self.method !== req.method) {
return next()
}
var m = self.match(url)
if (m) {
req.params = m
return fn(req,res,next);
}
next()
}
}
/**
* Check if this route matches `path`, if so
* populate `params`.
*
* @param {String} path
* @param {Object} params
* @return {Boolean}
* @api private
*/
Route.prototype.match = function(path) {
var keys = this.keys
, m = this.regexp.exec(path)
, params = {}
if (!m) return false;
for (var i = 1, len = m.length; i < len; ++i) {
var key = keys[i - 1];
var val = m[i];
if (val !== undefined || !(hasOwnProperty.call(params, key.name))) {
params[key.name] = val;
}
}
return params
}