-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayer.js
101 lines (81 loc) · 2.2 KB
/
layer.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const pathRegExp = require('path-to-regexp');
const hasOwnProperty = Object.prototype.hasOwnProperty;
function decode_param(val) {
if (typeof val !== 'string' || val.length === 0) {
return val;
}
try {
return decodeURIComponent(val);
} catch (err) {
if (err instanceof URIError) {
err.message = 'Failed to decode param \'' + val + '\'';
err.status = err.statusCode = 400;
}
throw err;
}
}
function Layer(path, options, fn) {
if (!(this instanceof Layer)) {
return new Layer(path, options, fn)
}
let opts = options || {}
this.name = options.name || fn.name || 'path-to-regexp-layer';
this.method = options.method && options.method.toLowerCase() || 'get';
this.regexp = pathRegExp(path, this.keys = [], opts);
this.origin = path;
this.path = undefined;
this.params = undefined;
this.handle = fn;
// set fast path flags
this.regexp.fast_star = path === '*'
this.regexp.fast_slash = path === '/' && opts.end === false
}
Layer.prototype = {
constructor: Layer,
match(path, method) {
let match = undefined;
if (this.method !== undefined && method !== undefined) {
if (this.method !== method.toLowerCase()) {
return false;
}
}
if (path != null) {
// fast path non-ending match for / (any path matches)
if (this.regexp.fast_slash) {
this.params = {}
this.path = ''
return true
}
// fast path for * (everything matched in a param)
if (this.regexp.fast_star) {
this.params = {
'0': decode_param(path)
}
this.path = path
return true
}
// match the path
match = this.regexp.exec(path)
}
if (!match) {
this.params = undefined;
this.path = undefined;
return false;
}
// store values
this.params = {};
this.path = match[0]
var keys = this.keys;
var params = this.params;
for (var i = 1; i < match.length; i++) {
var key = keys[i - 1];
var prop = key.name;
var val = decode_param(match[i])
if (val !== undefined || !(hasOwnProperty.call(params, prop))) {
params[prop] = val;
}
}
return true;
}
}
module.exports = Layer;