-
Notifications
You must be signed in to change notification settings - Fork 1
/
bundle.js
142 lines (112 loc) · 2.94 KB
/
bundle.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
const Koa = require('koa');
const Router = require('./router');
const Bundler = require('./bundler');
const compose = require('koa-compose');
const parse = require('co-body');
const qs = require('qs');
const kDownstream = Symbol('downstream');
class Bundle extends Koa {
constructor () {
super();
this.use(bundleMiddleware(this));
this.router = new Router();
this.bundler = new Bundler();
}
createContext (req, res) {
const ctx = super.createContext(req, res);
Object.assign(ctx, {
parameters: {},
async parse (type) {
if ('_parsedBody' in this.request) {
return this.request._parsedBody;
} else if ('_parsedError' in this.request) {
throw this.request._parsedError;
} else {
try {
if (!type) {
this.request._parsedBody = await parse(this);
} else if (!parse[type]) {
throw new Error(`Parser ${type} not found`);
} else {
this.request._parsedBody = await parse[type](this);
}
return this.request._parsedBody;
} catch (err) {
err.status = err.status || 400;
this.request._parsedError = err;
throw err;
}
}
},
});
Object.defineProperty(ctx.request, 'query', {
get () {
const str = this.querystring;
if (!str) return {};
const c = this._querycache = this._querycache || {};
if (!c[str]) {
c[str] = qs.parse(str);
}
return c[str];
},
set (obj) {
this.querystring = qs.stringify(obj);
},
});
return ctx;
}
use (fn) {
const lastFn = this.middleware.pop();
super.use(fn);
if (lastFn) {
super.use(lastFn);
}
return this;
}
bundle (uri, bundle) {
this.bundler.set(uri, bundle);
}
get (uri, callback) {
this.route(['GET'], uri, callback);
}
post (uri, callback) {
this.route(['POST'], uri, callback);
}
put (uri, callback) {
this.route(['PUT'], uri, callback);
}
patch (uri, callback) {
this.route(['PATCH'], uri, callback);
}
delete (uri, callback) {
this.route(['DELETE'], uri, callback);
}
route (methods, uri, callback) {
this.router.route(methods, uri, callback);
}
getDownstream () {
if (!this[kDownstream]) {
this[kDownstream] = compose(this.middleware);
}
return this[kDownstream];
}
async dispatch (matcher, ctx) {
const originalPath = ctx.path;
ctx.path = matcher.shiftPath(ctx);
const downstream = this.getDownstream();
await downstream(ctx);
ctx.path = originalPath;
}
}
function bundleMiddleware (bundle) {
return async (ctx, next) => {
const { bundler, router } = bundle;
ctx.state.bundle = bundle;
const delegated = await bundler.delegate(ctx);
if (!delegated) {
await router.delegate(ctx);
}
await next();
};
}
module.exports = Bundle;