-
Notifications
You must be signed in to change notification settings - Fork 1
/
layer.js
253 lines (235 loc) · 6.9 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
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
import qs from 'qs';
import ptr from 'path-to-regexp';
import bodyParser from 'koa-body';
import {
debug, assert, safeDecodeURIComponent, takeInOptions, transformType, layerId, toURI
} from './utils';
export default class Layer {
constructor(path, methods, middlewares, opts) {
this.opts = opts || {};
this.id = layerId();
this.name = this.opts.name || null;
this.methods = [];
this.pathKeys = [];
this.parameters = [];
this.operations = methods;
this.stack = Array.isArray(middlewares) ? middlewares : [middlewares];
methods.forEach((method) => {
const m = method.toUpperCase();
this.methods.push(m);
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD
if (m === 'GET') {
this.methods.unshift('HEAD');
}
});
// ensure middleware is a function
this.stack.forEach((fn) => {
const msg = `${methods} ${this.opts.name || path}: middleware must be a function`;
assert(typeof fn === 'function', msg);
});
this.path = path;
this.setPrefix(this.opts.prefix || '');
this.setBodyParser();
}
getPathItem() {
const {
pathTemplate, parameters, operations, opts
} = this;
if (!pathTemplate || opts.ignoreParams) {
return {};
}
const path = pathTemplate();
let tmp = {};
if (operations.length) {
const obj = takeInOptions(opts, 'method');
operations.forEach((m) => {
tmp[m.toLowerCase()] = { ...obj, parameters };
});
} else {
const obj = takeInOptions(opts, 'path');
tmp = { ...obj, parameters };
}
return { [path]: tmp };
}
setParameters() {
const { pathKeys, opts } = this;
const { params } = opts;
const inPath = {};
const parameters = pathKeys.map((key, index) => {
const name = String(key.name);
inPath[name] = { index };
return {
name,
in: 'path',
required: !key.optional,
schema: { type: 'string' }
};
});
params && Object.keys(params).forEach((name) => {
const { type, ...others } = params[name];
const p = { ...others, name };
if (type) {
p.schema = { ...p.schema, ...transformType(type) };
}
const find = inPath[name];
if (find) {
const { index } = find;
parameters[index] = { ...parameters[index], ...p };
assert(parameters[index].in === 'path', `${name} must be in path`);
} else {
parameters.push(p);
}
});
this.parameters = parameters;
}
getParamsValidate() {
if (this.paramsValidate) {
return this.paramsValidate;
}
if (this.parameters.length === 0 || this.opts.ignoreParams) {
return null;
}
const properties = {};
const required = [];
let hasProps = false;
this.parameters.forEach((p) => {
if (p.schema) {
hasProps = true;
properties[p.name] = p.schema;
if (p.required) {
required.push(p.name);
}
}
});
if (!hasProps) return null;
const { validator } = this.opts;
if (!validator) return null;
this.paramsValidate = validator.compile({
type: 'object',
properties,
required
});
return this.paramsValidate;
}
setBodyParser() {
const { body, bodyparser } = this.opts;
if (bodyparser || body) {
const options = bodyparser === true ? {} : bodyparser;
this.stack.unshift(bodyParser(options));
}
}
setPrefix(prefix) {
if (this.path) {
this.path = prefix + this.path;
if (/.+\/$/.test(this.path)) {
this.path = this.path.replace(/\/$/, '');
}
debug('defined route %s %s', this.methods, this.path);
const tokens = ptr.parse(this.path, this.opts);
this.pathKeys = [];
this.regexp = ptr.tokensToRegExp(tokens, this.pathKeys, this.opts);
this.url = (params, options = {}) => {
let replace = {};
if (Array.isArray(params)) {
this.pathKeys.forEach((key, i) => {
replace[key.name] = params[i];
});
} else {
replace = params;
}
const toPath = ptr.tokensToFunction(tokens);
const base = toPath(replace, options);
return toURI(base, options.query);
};
this.pathTemplate = () => {
const obj = this.pathKeys.reduce((memo, k) => {
memo[k.name] = k.name;
return memo;
}, {});
return this.url(obj, {
encode: v => `{${v}}`,
skipMatch: true
});
};
this.setParameters();
}
return this;
}
match(path) {
return this.regexp.test(path);
}
params(path, ctx) {
// "query", "header", "path" or "cookie"
const params = ctx.params || {};
if (this.opts.ignoreParams) {
return params;
}
const { parameters, opts } = this;
const paramsIn = s => parameters.filter(p => p.in === s);
// handle params in header
paramsIn('header').forEach((p) => {
params[p.name] = ctx.get(p.name);
});
// handle params in cookie
paramsIn('cookie').forEach((p) => {
params[p.name] = ctx.cookies.get(p.name, opts.cookieOptions);
});
// handle params in query
const queryParams = paramsIn('query');
if (queryParams.length) {
const query = (() => {
const str = ctx.querystring;
const c = ctx._querycache = ctx._querycache || {};
return c[str] || (c[str] = qs.parse(str, opts.queryOptions));
})();
queryParams.forEach((p) => {
params[p.name] = query[p.name];
});
}
// handle params in path
if (!ctx._pathParsed) {
const { regexp, pathKeys } = this;
const captures = path.match(regexp).slice(1);
for (let len = captures.length, i = 0; i < len; i++) {
if (pathKeys[i]) {
const c = captures[i];
params[pathKeys[i].name] = c ? safeDecodeURIComponent(c) : c;
}
}
ctx._pathParsed = true;
}
const validate = this.getParamsValidate();
if (validate) {
const valid = validate(params);
ctx.paramsErrors = validate.errors;
if (!valid && opts.throwParamsError !== false) {
if (typeof opts.throwParamsError === 'function') {
opts.throwParamsError(ctx.paramsErrors);
} else {
const msgs = ctx.paramsErrors.map((e) => {
const key = e.dataPath.substring(1);
return `[${key}] ${e.message}`;
});
ctx.throw(400, msgs.join('\n'));
}
}
}
return params;
}
param(param, fn) {
const { stack, parameters } = this;
const paramFn = (ctx, next) => fn(ctx.params[param], ctx, next);
paramFn.param = param;
const names = parameters.map(p => p.name);
const x = names.indexOf(param);
if (x > -1) {
stack.some((mw, i) => {
if (!mw.param || names.indexOf(mw.param) > x) {
stack.splice(i, 0, paramFn);
return true; // break the loop
}
});
}
return this;
}
}