blob: 733d348436e54e536d080bc4cf9be0d1a9d3dc80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package exhttp
import "net/http"
// Middleware represents a middleware that can be applied to an [http.Handler].
type Middleware func(http.Handler) http.Handler
// ApplyMiddleware applies the provided [Middleware] functions to the given
// router. The middlewares will be applied in the order they are provided.
func ApplyMiddleware(router http.Handler, middlewares ...Middleware) http.Handler {
// Apply middlewares in reverse order because the first middleware provided
// needs to be the outermost one.
for i := len(middlewares) - 1; i >= 0; i-- {
router = middlewares[i](router)
}
return router
}
// StripPrefix is a wrapper for [http.StripPrefix] is compatible with the middleware pattern.
func StripPrefix(prefix string) Middleware {
return func(next http.Handler) http.Handler {
return http.StripPrefix(prefix, next)
}
}
|