-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchain.go
51 lines (42 loc) · 1.44 KB
/
chain.go
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
package phi
import (
"github.com/valyala/fasthttp"
)
// Chain returns a Middlewares type from a slice of middleware handlers.
func Chain(middlewares ...Middleware) Middlewares {
return Middlewares(middlewares)
}
// Handler builds and returns a phi.Handler from the chain of middlewares,
// with `h phi.HandlerFunc` as the final handler.
func (mws Middlewares) Handler(h Handler) Handler {
return &ChainHandler{mws, h, chain(mws, h)}
}
// HandlerFunc builds and returns a phi.Handler from the chain of middlewares,
// with `h phi.HandlerFunc` as the final handler.
func (mws Middlewares) HandlerFunc(h HandlerFunc) Handler {
return &ChainHandler{mws, h, chain(mws, h)}
}
// ChainHandler is a phi.Handler with support for handler composition and
// execution.
type ChainHandler struct {
Middlewares Middlewares
Endpoint Handler
chain Handler
}
func (c *ChainHandler) ServeFastHTTP(ctx *fasthttp.RequestCtx) { // nolint
c.chain.ServeFastHTTP(ctx)
}
// chain builds a phi.Handler composed of an inline middleware stack and endpoint
// handler in the order they are passed.
func chain(middlewares Middlewares, endpoint Handler) Handler {
// Return ahead of time if there aren't any middlewares for the chain
if len(middlewares) == 0 {
return endpoint
}
// Wrap the end handler with the middleware chain
h := middlewares[len(middlewares)-1](endpoint.ServeFastHTTP)
for i := len(middlewares) - 2; i >= 0; i-- {
h = middlewares[i](h)
}
return h
}