-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathindex.js
73 lines (63 loc) · 1.65 KB
/
index.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
'use strict'
/**
* @param {Array} middleware
* @return {Function}
*/
const composeSlim = (middleware) => async (ctx, next) => {
const dispatch = (i) => async () => {
const fn = i === middleware.length
? next
: middleware[i]
if (!fn) return
return await fn(ctx, dispatch(i + 1))
}
return dispatch(0)()
}
/** @typedef {import("koa").Middleware} Middleware */
/**
* Compose `middleware` returning
* a fully valid middleware comprised
* of all those which are passed.
*
* @param {...(Middleware | Middleware[])} middleware
* @return {Middleware}
* @api public
*/
const compose = (...middleware) => {
const funcs = middleware.flat()
for (const fn of funcs) {
if (typeof fn !== 'function') throw new TypeError('Middleware must be composed of functions!')
}
if (process.env.NODE_ENV === 'production') return composeSlim(funcs)
return async (ctx, next) => {
const dispatch = async (i) => {
const fn = i === funcs.length
? next
: funcs[i]
if (!fn) return
let nextCalled = false
let nextResolved = false
const nextProxy = async () => {
if (nextCalled) throw Error('next() called multiple times')
nextCalled = true
try {
return await dispatch(i + 1)
} finally {
nextResolved = true
}
}
const result = await fn(ctx, nextProxy)
if (nextCalled && !nextResolved) {
throw Error(
'Middleware resolved before downstream.\n\tYou are probably missing an await or return'
)
}
return result
}
return dispatch(0)
}
}
/**
* Expose compositor.
*/
module.exports = compose