mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 18:30:54 +08:00
http: Change routes to sequential matcher evaluation (#2967)
Previously, all matchers in a route would be evaluated before any handlers were executed, and a composite route of the matching routes would be created. This made rewrites especially tricky, since the only way to defer later matchers' evaluation was to wrap them in a subroute, or to invoke a "rehandle" which often caused bugs. Instead, this new sequential design evaluates each route's matchers then its handlers in lock-step; matcher-handlers-matcher-handlers... If the first matching route consists of a rewrite, then the second route will be evaluated against the rewritten request, rather than the original one, and so on. This should do away with any need for rehandling. I've also taken this opportunity to avoid adding new values to the request context in the handler chain, as this creates a copy of the Request struct, which may possibly lead to bugs like it has in the past (see PR #1542, PR #1481, and maybe issue #2463). We now add all the expected context values in the top-level handler at the server, then any new values can be added to the variable table via the VarsCtxKey context key, or just the GetVar/SetVar functions. In particular, we are using this facility to convey dial information in the reverse proxy. Had to be careful in one place as the middleware compilation logic has changed, and moved a bit. We no longer compile a middleware chain per- request; instead, we can compile it at provision-time, and defer only the evaluation of matchers to request-time, which should slightly improve performance. Doing this, however, we take advantage of multiple function closures, and we also changed the use of HandlerFunc (function pointer) to Handler (interface)... this led to a situation where, if we aren't careful, allows one request routed a certain way to permanently change the "next" handler for all/most other requests! We avoid this by making a copy of the interface value (which is a lightweight pointer copy) and using exclusively that within our wrapped handlers. This way, the original stack frame is preserved in a "read-only" fashion. The comments in the code describe this phenomenon. This may very well be a breaking change for some configurations, however I do not expect it to impact many people. I will make it clear in the release notes that this change has occurred.
This commit is contained in:
parent
7c419d5349
commit
a5ebec0041
|
@ -171,6 +171,9 @@ func (app *App) Provision(ctx caddy.Context) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("server %s: setting up server routes: %v", srvName, err)
|
return fmt.Errorf("server %s: setting up server routes: %v", srvName, err)
|
||||||
}
|
}
|
||||||
|
// pre-compile the handler chain, and be sure to wrap it in our
|
||||||
|
// route handler so that important security checks are done, etc.
|
||||||
|
srv.primaryHandlerChain = srv.wrapPrimaryRoute(srv.Routes.Compile())
|
||||||
}
|
}
|
||||||
|
|
||||||
if srv.Errors != nil {
|
if srv.Errors != nil {
|
||||||
|
@ -178,10 +181,7 @@ func (app *App) Provision(ctx caddy.Context) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("server %s: setting up server error handling routes: %v", srvName, err)
|
return fmt.Errorf("server %s: setting up server error handling routes: %v", srvName, err)
|
||||||
}
|
}
|
||||||
}
|
srv.errorHandlerChain = srv.Errors.Routes.Compile()
|
||||||
|
|
||||||
if srv.MaxRehandles == nil {
|
|
||||||
srv.MaxRehandles = &DefaultMaxRehandles
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -210,13 +210,6 @@ func (app *App) Validate() error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// each server's max rehandle value must be valid
|
|
||||||
for srvName, srv := range app.Servers {
|
|
||||||
if srv.MaxRehandles != nil && *srv.MaxRehandles < 0 {
|
|
||||||
return fmt.Errorf("%s: invalid max_rehandles value: %d", srvName, *srv.MaxRehandles)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -608,7 +601,7 @@ func (f HandlerFunc) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
|
||||||
|
|
||||||
// Middleware chains one Handler to the next by being passed
|
// Middleware chains one Handler to the next by being passed
|
||||||
// the next Handler in the chain.
|
// the next Handler in the chain.
|
||||||
type Middleware func(HandlerFunc) HandlerFunc
|
type Middleware func(Handler) Handler
|
||||||
|
|
||||||
// MiddlewareHandler is like Handler except it takes as a third
|
// MiddlewareHandler is like Handler except it takes as a third
|
||||||
// argument the next handler in the chain. The next handler will
|
// argument the next handler in the chain. The next handler will
|
||||||
|
@ -624,7 +617,7 @@ type MiddlewareHandler interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
// emptyHandler is used as a no-op handler.
|
// emptyHandler is used as a no-op handler.
|
||||||
var emptyHandler HandlerFunc = func(http.ResponseWriter, *http.Request) error { return nil }
|
var emptyHandler Handler = HandlerFunc(func(http.ResponseWriter, *http.Request) error { return nil })
|
||||||
|
|
||||||
// WeakString is a type that unmarshals any JSON value
|
// WeakString is a type that unmarshals any JSON value
|
||||||
// as a string literal, with the following exceptions:
|
// as a string literal, with the following exceptions:
|
||||||
|
@ -734,10 +727,6 @@ const (
|
||||||
DefaultHTTPSPort = 443
|
DefaultHTTPSPort = 443
|
||||||
)
|
)
|
||||||
|
|
||||||
// DefaultMaxRehandles is the maximum number of rehandles to
|
|
||||||
// allow, if not specified explicitly.
|
|
||||||
var DefaultMaxRehandles = 3
|
|
||||||
|
|
||||||
// Interface guards
|
// Interface guards
|
||||||
var (
|
var (
|
||||||
_ caddy.App = (*App)(nil)
|
_ caddy.App = (*App)(nil)
|
||||||
|
|
|
@ -106,12 +106,6 @@ func trace() string {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// ErrRehandle is a special error value that Handlers should return
|
|
||||||
// from their ServeHTTP() method if the request is to be re-processed.
|
|
||||||
// This error value is a sentinel value that should not be wrapped or
|
|
||||||
// modified.
|
|
||||||
var ErrRehandle = fmt.Errorf("rehandling request")
|
|
||||||
|
|
||||||
// ErrorCtxKey is the context key to use when storing
|
// ErrorCtxKey is the context key to use when storing
|
||||||
// an error (for use with context.Context).
|
// an error (for use with context.Context).
|
||||||
const ErrorCtxKey = caddy.CtxKey("handler_chain_error")
|
const ErrorCtxKey = caddy.CtxKey("handler_chain_error")
|
||||||
|
|
|
@ -127,8 +127,7 @@ func parseTryFiles(h httpcaddyfile.Helper) ([]httpcaddyfile.ConfigValue, error)
|
||||||
// to the end of the query string.
|
// to the end of the query string.
|
||||||
makeRoute := func(try []string, writeURIAppend string) []httpcaddyfile.ConfigValue {
|
makeRoute := func(try []string, writeURIAppend string) []httpcaddyfile.ConfigValue {
|
||||||
handler := rewrite.Rewrite{
|
handler := rewrite.Rewrite{
|
||||||
Rehandle: true,
|
URI: "{http.matchers.file.relative}{http.request.uri.query_string}" + writeURIAppend,
|
||||||
URI: "{http.matchers.file.relative}{http.request.uri.query_string}" + writeURIAppend,
|
|
||||||
}
|
}
|
||||||
matcherSet := caddy.ModuleMap{
|
matcherSet := caddy.ModuleMap{
|
||||||
"file": h.JSON(MatchFile{
|
"file": h.JSON(MatchFile{
|
||||||
|
|
|
@ -149,8 +149,7 @@ func parsePHPFastCGI(h httpcaddyfile.Helper) ([]httpcaddyfile.ConfigValue, error
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
rewriteHandler := rewrite.Rewrite{
|
rewriteHandler := rewrite.Rewrite{
|
||||||
URI: "{http.matchers.file.relative}{http.request.uri.query_string}",
|
URI: "{http.matchers.file.relative}{http.request.uri.query_string}",
|
||||||
Rehandle: true,
|
|
||||||
}
|
}
|
||||||
rewriteRoute := caddyhttp.Route{
|
rewriteRoute := caddyhttp.Route{
|
||||||
MatcherSetsRaw: []caddy.ModuleMap{rewriteMatcherSet},
|
MatcherSetsRaw: []caddy.ModuleMap{rewriteMatcherSet},
|
||||||
|
|
|
@ -102,11 +102,9 @@ func (t Transport) RoundTrip(r *http.Request) (*http.Response, error) {
|
||||||
defer cancel()
|
defer cancel()
|
||||||
}
|
}
|
||||||
|
|
||||||
// extract dial information from request (this
|
// extract dial information from request (should have been embedded by the reverse proxy)
|
||||||
// should embedded by the reverse proxy)
|
|
||||||
network, address := "tcp", r.URL.Host
|
network, address := "tcp", r.URL.Host
|
||||||
if dialInfoVal := ctx.Value(reverseproxy.DialInfoCtxKey); dialInfoVal != nil {
|
if dialInfo, ok := reverseproxy.GetDialInfo(ctx); ok {
|
||||||
dialInfo := dialInfoVal.(reverseproxy.DialInfo)
|
|
||||||
network = dialInfo.Network
|
network = dialInfo.Network
|
||||||
address = dialInfo.Address
|
address = dialInfo.Address
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,7 +212,9 @@ func (h *Handler) doActiveHealthCheck(dialInfo DialInfo, hostAddr string, host H
|
||||||
// attach dialing information to this request
|
// attach dialing information to this request
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
ctx = context.WithValue(ctx, caddy.ReplacerCtxKey, caddy.NewReplacer())
|
ctx = context.WithValue(ctx, caddy.ReplacerCtxKey, caddy.NewReplacer())
|
||||||
ctx = context.WithValue(ctx, DialInfoCtxKey, dialInfo)
|
ctx = context.WithValue(ctx, caddyhttp.VarsCtxKey, map[string]interface{}{
|
||||||
|
dialInfoVarKey: dialInfo,
|
||||||
|
})
|
||||||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, u.String(), nil)
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, u.String(), nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("making request: %v", err)
|
return fmt.Errorf("making request: %v", err)
|
||||||
|
|
|
@ -15,11 +15,13 @@
|
||||||
package reverseproxy
|
package reverseproxy
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
|
|
||||||
"github.com/caddyserver/caddy/v2"
|
"github.com/caddyserver/caddy/v2"
|
||||||
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Host represents a remote host which can be proxied to.
|
// Host represents a remote host which can be proxied to.
|
||||||
|
@ -223,12 +225,19 @@ func fillDialInfo(upstream *Upstream, repl *caddy.Replacer) (DialInfo, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// DialInfoCtxKey is used to store a DialInfo
|
// GetDialInfo gets the upstream dialing info out of the context,
|
||||||
// in a context.Context.
|
// and returns true if there was a valid value; false otherwise.
|
||||||
const DialInfoCtxKey = caddy.CtxKey("dial_info")
|
func GetDialInfo(ctx context.Context) (DialInfo, bool) {
|
||||||
|
dialInfo, ok := caddyhttp.GetVar(ctx, dialInfoVarKey).(DialInfo)
|
||||||
|
return dialInfo, ok
|
||||||
|
}
|
||||||
|
|
||||||
// hosts is the global repository for hosts that are
|
// hosts is the global repository for hosts that are
|
||||||
// currently in use by active configuration(s). This
|
// currently in use by active configuration(s). This
|
||||||
// allows the state of remote hosts to be preserved
|
// allows the state of remote hosts to be preserved
|
||||||
// through config reloads.
|
// through config reloads.
|
||||||
var hosts = caddy.NewUsagePool()
|
var hosts = caddy.NewUsagePool()
|
||||||
|
|
||||||
|
// dialInfoVarKey is the key used for the variable that holds
|
||||||
|
// the dial info for the upstream connection.
|
||||||
|
const dialInfoVarKey = "reverse_proxy.dial_info"
|
||||||
|
|
|
@ -92,8 +92,7 @@ func (h *HTTPTransport) newTransport() (*http.Transport, error) {
|
||||||
rt := &http.Transport{
|
rt := &http.Transport{
|
||||||
DialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
DialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
||||||
// the proper dialing information should be embedded into the request's context
|
// the proper dialing information should be embedded into the request's context
|
||||||
if dialInfoVal := ctx.Value(DialInfoCtxKey); dialInfoVal != nil {
|
if dialInfo, ok := GetDialInfo(ctx); ok {
|
||||||
dialInfo := dialInfoVal.(DialInfo)
|
|
||||||
network = dialInfo.Network
|
network = dialInfo.Network
|
||||||
address = dialInfo.Address
|
address = dialInfo.Address
|
||||||
}
|
}
|
||||||
|
|
|
@ -320,8 +320,7 @@ func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyht
|
||||||
// attach to the request information about how to dial the upstream;
|
// attach to the request information about how to dial the upstream;
|
||||||
// this is necessary because the information cannot be sufficiently
|
// this is necessary because the information cannot be sufficiently
|
||||||
// or satisfactorily represented in a URL
|
// or satisfactorily represented in a URL
|
||||||
ctx := context.WithValue(r.Context(), DialInfoCtxKey, dialInfo)
|
caddyhttp.SetVar(r.Context(), dialInfoVarKey, dialInfo)
|
||||||
r = r.WithContext(ctx)
|
|
||||||
|
|
||||||
// set placeholders with information about this upstream
|
// set placeholders with information about this upstream
|
||||||
repl.Set("http.reverse_proxy.upstream.address", dialInfo.String())
|
repl.Set("http.reverse_proxy.upstream.address", dialInfo.String())
|
||||||
|
|
|
@ -44,7 +44,6 @@ func parseCaddyfileRewrite(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler,
|
||||||
return nil, h.ArgErr()
|
return nil, h.ArgErr()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rewr.Rehandle = true
|
|
||||||
return rewr, nil
|
return rewr, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +51,7 @@ func parseCaddyfileRewrite(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler,
|
||||||
//
|
//
|
||||||
// strip_prefix [<matcher>] <prefix>
|
// strip_prefix [<matcher>] <prefix>
|
||||||
//
|
//
|
||||||
// The request path will be stripped its prefix if it matches <prefix>.
|
// The request path will be stripped the given prefix.
|
||||||
func parseCaddyfileStripPrefix(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) {
|
func parseCaddyfileStripPrefix(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) {
|
||||||
var rewr Rewrite
|
var rewr Rewrite
|
||||||
for h.Next() {
|
for h.Next() {
|
||||||
|
@ -71,7 +70,7 @@ func parseCaddyfileStripPrefix(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHand
|
||||||
//
|
//
|
||||||
// strip_suffix [<matcher>] <suffix>
|
// strip_suffix [<matcher>] <suffix>
|
||||||
//
|
//
|
||||||
// The request path will be stripped its suffix if it matches <suffix>.
|
// The request path will be stripped the given suffix.
|
||||||
func parseCaddyfileStripSuffix(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) {
|
func parseCaddyfileStripSuffix(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) {
|
||||||
var rewr Rewrite
|
var rewr Rewrite
|
||||||
for h.Next() {
|
for h.Next() {
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
package rewrite
|
package rewrite
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
@ -32,9 +31,6 @@ func init() {
|
||||||
|
|
||||||
// Rewrite is a middleware which can rewrite HTTP requests.
|
// Rewrite is a middleware which can rewrite HTTP requests.
|
||||||
//
|
//
|
||||||
// The Rehandle and HTTPRedirect properties are mutually exclusive
|
|
||||||
// (you cannot both rehandle and issue a redirect).
|
|
||||||
//
|
|
||||||
// These rewrite properties are applied to a request in this order:
|
// These rewrite properties are applied to a request in this order:
|
||||||
// Method, URI, StripPathPrefix, StripPathSuffix, URISubstring.
|
// Method, URI, StripPathPrefix, StripPathSuffix, URISubstring.
|
||||||
//
|
//
|
||||||
|
@ -61,10 +57,6 @@ type Rewrite struct {
|
||||||
// given status code.
|
// given status code.
|
||||||
HTTPRedirect caddyhttp.WeakString `json:"http_redirect,omitempty"`
|
HTTPRedirect caddyhttp.WeakString `json:"http_redirect,omitempty"`
|
||||||
|
|
||||||
// If true, the request will sent for rehandling after rewriting
|
|
||||||
// only if anything about the request was changed.
|
|
||||||
Rehandle bool `json:"rehandle,omitempty"`
|
|
||||||
|
|
||||||
logger *zap.Logger
|
logger *zap.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,14 +74,6 @@ func (rewr *Rewrite) Provision(ctx caddy.Context) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate ensures rewr's configuration is valid.
|
|
||||||
func (rewr Rewrite) Validate() error {
|
|
||||||
if rewr.HTTPRedirect != "" && rewr.Rehandle {
|
|
||||||
return fmt.Errorf("cannot be configured to both redirect externally and rehandle internally")
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (rewr Rewrite) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {
|
func (rewr Rewrite) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {
|
||||||
repl := r.Context().Value(caddy.ReplacerCtxKey).(*caddy.Replacer)
|
repl := r.Context().Value(caddy.ReplacerCtxKey).(*caddy.Replacer)
|
||||||
|
|
||||||
|
@ -104,9 +88,6 @@ func (rewr Rewrite) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddy
|
||||||
zap.String("method", r.Method),
|
zap.String("method", r.Method),
|
||||||
zap.String("uri", r.RequestURI),
|
zap.String("uri", r.RequestURI),
|
||||||
)
|
)
|
||||||
if rewr.Rehandle {
|
|
||||||
return caddyhttp.ErrRehandle
|
|
||||||
}
|
|
||||||
if rewr.HTTPRedirect != "" {
|
if rewr.HTTPRedirect != "" {
|
||||||
statusCode, err := strconv.Atoi(repl.ReplaceAll(rewr.HTTPRedirect.String(), ""))
|
statusCode, err := strconv.Atoi(repl.ReplaceAll(rewr.HTTPRedirect.String(), ""))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -28,13 +28,15 @@ import (
|
||||||
// in a highly flexible and performant manner.
|
// in a highly flexible and performant manner.
|
||||||
type Route struct {
|
type Route struct {
|
||||||
// Group is an optional name for a group to which this
|
// Group is an optional name for a group to which this
|
||||||
// route belongs. If a route belongs to a group, only
|
// route belongs. Grouping a route makes it mutually
|
||||||
// the first matching route in the group will be used.
|
// exclusive with others in its group; if a route belongs
|
||||||
|
// to a group, only the first matching route in that group
|
||||||
|
// will be executed.
|
||||||
Group string `json:"group,omitempty"`
|
Group string `json:"group,omitempty"`
|
||||||
|
|
||||||
// The matcher sets which will be used to qualify this
|
// The matcher sets which will be used to qualify this
|
||||||
// route for a request. Essentially the "if" statement
|
// route for a request (essentially the "if" statement
|
||||||
// of this route. Each matcher set is OR'ed, but matchers
|
// of this route). Each matcher set is OR'ed, but matchers
|
||||||
// within a set are AND'ed together.
|
// within a set are AND'ed together.
|
||||||
MatcherSetsRaw RawMatcherSets `json:"match,omitempty" caddy:"namespace=http.matchers"`
|
MatcherSetsRaw RawMatcherSets `json:"match,omitempty" caddy:"namespace=http.matchers"`
|
||||||
|
|
||||||
|
@ -87,12 +89,14 @@ type Route struct {
|
||||||
// If you think of routes in this way, it will be easy and even fun to solve the puzzle of writing correct routes.
|
// If you think of routes in this way, it will be easy and even fun to solve the puzzle of writing correct routes.
|
||||||
HandlersRaw []json.RawMessage `json:"handle,omitempty" caddy:"namespace=http.handlers inline_key=handler"`
|
HandlersRaw []json.RawMessage `json:"handle,omitempty" caddy:"namespace=http.handlers inline_key=handler"`
|
||||||
|
|
||||||
// If true, no more routes will be executed after this one, even if they matched.
|
// If true, no more routes will be executed after this one.
|
||||||
Terminal bool `json:"terminal,omitempty"`
|
Terminal bool `json:"terminal,omitempty"`
|
||||||
|
|
||||||
// decoded values
|
// decoded values
|
||||||
MatcherSets MatcherSets `json:"-"`
|
MatcherSets MatcherSets `json:"-"`
|
||||||
Handlers []MiddlewareHandler `json:"-"`
|
Handlers []MiddlewareHandler `json:"-"`
|
||||||
|
|
||||||
|
middleware []Middleware
|
||||||
}
|
}
|
||||||
|
|
||||||
// Empty returns true if the route has all zero/default values.
|
// Empty returns true if the route has all zero/default values.
|
||||||
|
@ -111,9 +115,9 @@ type RouteList []Route
|
||||||
|
|
||||||
// Provision sets up all the routes by loading the modules.
|
// Provision sets up all the routes by loading the modules.
|
||||||
func (routes RouteList) Provision(ctx caddy.Context) error {
|
func (routes RouteList) Provision(ctx caddy.Context) error {
|
||||||
for i, route := range routes {
|
for i := range routes {
|
||||||
// matchers
|
// matchers
|
||||||
matchersIface, err := ctx.LoadModule(&route, "MatcherSetsRaw")
|
matchersIface, err := ctx.LoadModule(&routes[i], "MatcherSetsRaw")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("loading matchers in route %d: %v", i, err)
|
return fmt.Errorf("loading matchers in route %d: %v", i, err)
|
||||||
}
|
}
|
||||||
|
@ -123,93 +127,115 @@ func (routes RouteList) Provision(ctx caddy.Context) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// handlers
|
// handlers
|
||||||
handlersIface, err := ctx.LoadModule(&route, "HandlersRaw")
|
handlersIface, err := ctx.LoadModule(&routes[i], "HandlersRaw")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("loading handler modules in route %d: %v", i, err)
|
return fmt.Errorf("loading handler modules in route %d: %v", i, err)
|
||||||
}
|
}
|
||||||
for _, handler := range handlersIface.([]interface{}) {
|
for _, handler := range handlersIface.([]interface{}) {
|
||||||
routes[i].Handlers = append(routes[i].Handlers, handler.(MiddlewareHandler))
|
routes[i].Handlers = append(routes[i].Handlers, handler.(MiddlewareHandler))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// pre-compile the middleware handler chain
|
||||||
|
for _, midhandler := range routes[i].Handlers {
|
||||||
|
routes[i].middleware = append(routes[i].middleware, wrapMiddleware(midhandler))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// BuildCompositeRoute creates a chain of handlers by
|
// Compile prepares a middleware chain from the route list.
|
||||||
// applying all of the matching routes.
|
// This should only be done once: after all the routes have
|
||||||
func (routes RouteList) BuildCompositeRoute(req *http.Request) Handler {
|
// been provisioned, and before serving requests.
|
||||||
if len(routes) == 0 {
|
func (routes RouteList) Compile() Handler {
|
||||||
return emptyHandler
|
|
||||||
}
|
|
||||||
|
|
||||||
var mid []Middleware
|
var mid []Middleware
|
||||||
groups := make(map[string]struct{})
|
|
||||||
|
|
||||||
for _, route := range routes {
|
for _, route := range routes {
|
||||||
// route must match at least one of the matcher sets
|
mid = append(mid, wrapRoute(route))
|
||||||
if !route.MatcherSets.AnyMatch(req) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
// if route is part of a group, ensure only the
|
|
||||||
// first matching route in the group is applied
|
|
||||||
if route.Group != "" {
|
|
||||||
_, ok := groups[route.Group]
|
|
||||||
if ok {
|
|
||||||
// this group has already been satisfied
|
|
||||||
// by a matching route
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
// this matching route satisfies the group
|
|
||||||
groups[route.Group] = struct{}{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// apply the rest of the route
|
|
||||||
for _, mh := range route.Handlers {
|
|
||||||
// we have to be sure to wrap mh outside
|
|
||||||
// of our current stack frame so that the
|
|
||||||
// reference to this mh isn't overwritten
|
|
||||||
// on the next iteration, leaving the last
|
|
||||||
// middleware in the chain as the ONLY
|
|
||||||
// middleware in the chain!
|
|
||||||
mid = append(mid, wrapMiddleware(mh))
|
|
||||||
}
|
|
||||||
|
|
||||||
// if this route is supposed to be last, don't
|
|
||||||
// compile any more into the chain
|
|
||||||
if route.Terminal {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// build the middleware chain, with the responder at the end
|
|
||||||
stack := emptyHandler
|
stack := emptyHandler
|
||||||
for i := len(mid) - 1; i >= 0; i-- {
|
for i := len(mid) - 1; i >= 0; i-- {
|
||||||
stack = mid[i](stack)
|
stack = mid[i](stack)
|
||||||
}
|
}
|
||||||
|
|
||||||
return stack
|
return stack
|
||||||
}
|
}
|
||||||
|
|
||||||
// wrapMiddleware wraps m such that it can be correctly
|
// wrapRoute wraps route with a middleware and handler so that it can
|
||||||
// appended to a list of middleware. We can't do this
|
// be chained in and defer evaluation of its matchers to request-time.
|
||||||
// directly in a loop because it relies on a reference
|
// Like wrapMiddleware, it is vital that this wrapping takes place in
|
||||||
// to mh not changing until the execution of its handler,
|
// its own stack frame so as to not overwrite the reference to the
|
||||||
// which is deferred by multiple func closures. In other
|
// intended route by looping and changing the reference each time.
|
||||||
// words, we need to pull this particular MiddlewareHandler
|
func wrapRoute(route Route) Middleware {
|
||||||
|
return func(next Handler) Handler {
|
||||||
|
return HandlerFunc(func(rw http.ResponseWriter, req *http.Request) error {
|
||||||
|
// copy the next handler (it's an interface, so it's just
|
||||||
|
// a very lightweight copy of a pointer); this is important
|
||||||
|
// because this is a closure to the func below, which
|
||||||
|
// re-assigns the value as it compiles the middleware stack;
|
||||||
|
// if we don't make this copy, we'd affect the underlying
|
||||||
|
// pointer for all future request (yikes); we could
|
||||||
|
// alternatively solve this by moving the func below out of
|
||||||
|
// this closure and into a standalone package-level func,
|
||||||
|
// but I just thought this made more sense
|
||||||
|
nextCopy := next
|
||||||
|
|
||||||
|
// route must match at least one of the matcher sets
|
||||||
|
if !route.MatcherSets.AnyMatch(req) {
|
||||||
|
return nextCopy.ServeHTTP(rw, req)
|
||||||
|
}
|
||||||
|
|
||||||
|
// if route is part of a group, ensure only the
|
||||||
|
// first matching route in the group is applied
|
||||||
|
if route.Group != "" {
|
||||||
|
groups := req.Context().Value(routeGroupCtxKey).(map[string]struct{})
|
||||||
|
|
||||||
|
if _, ok := groups[route.Group]; ok {
|
||||||
|
// this group has already been
|
||||||
|
// satisfied by a matching route
|
||||||
|
return nextCopy.ServeHTTP(rw, req)
|
||||||
|
}
|
||||||
|
|
||||||
|
// this matching route satisfies the group
|
||||||
|
groups[route.Group] = struct{}{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// make terminal routes terminate
|
||||||
|
if route.Terminal {
|
||||||
|
nextCopy = emptyHandler
|
||||||
|
}
|
||||||
|
|
||||||
|
// compile this route's handler stack
|
||||||
|
for i := len(route.middleware) - 1; i >= 0; i-- {
|
||||||
|
nextCopy = route.middleware[i](nextCopy)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nextCopy.ServeHTTP(rw, req)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// wrapMiddleware wraps mh such that it can be correctly
|
||||||
|
// appended to a list of middleware in preparation for
|
||||||
|
// compiling into a handler chain. We can't do this inline
|
||||||
|
// inside a loop, because it relies on a reference to mh
|
||||||
|
// not changing until the execution of its handler (which
|
||||||
|
// is deferred by multiple func closures). In other words,
|
||||||
|
// we need to pull this particular MiddlewareHandler
|
||||||
// pointer into its own stack frame to preserve it so it
|
// pointer into its own stack frame to preserve it so it
|
||||||
// won't be overwritten in future loop iterations.
|
// won't be overwritten in future loop iterations.
|
||||||
func wrapMiddleware(mh MiddlewareHandler) Middleware {
|
func wrapMiddleware(mh MiddlewareHandler) Middleware {
|
||||||
return func(next HandlerFunc) HandlerFunc {
|
return func(next Handler) Handler {
|
||||||
return func(w http.ResponseWriter, r *http.Request) error {
|
// copy the next handler (it's an interface, so it's
|
||||||
// TODO: We could wait to evaluate matchers here, just eval
|
// just a very lightweight copy of a pointer); this
|
||||||
// the next matcher and choose the next route...
|
// is a safeguard against the handler changing the
|
||||||
|
// value, which could affect future requests (yikes)
|
||||||
|
nextCopy := next
|
||||||
|
|
||||||
// TODO: This is where request tracing could be implemented; also
|
return HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
|
||||||
// see below to trace the responder as well
|
// TODO: This is where request tracing could be implemented
|
||||||
// TODO: Trace a diff of the request, would be cool too! see what changed since the last middleware (host, headers, URI...)
|
// TODO: Trace a diff of the request, would be cool too... see what changed since the last middleware (host, headers, URI...)
|
||||||
// TODO: see what the std lib gives us in terms of stack tracing too
|
// TODO: see what the std lib gives us in terms of stack tracing too
|
||||||
return mh.ServeHTTP(w, r, next)
|
return mh.ServeHTTP(w, r, nextCopy)
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -219,7 +245,7 @@ func wrapMiddleware(mh MiddlewareHandler) Middleware {
|
||||||
type MatcherSet []RequestMatcher
|
type MatcherSet []RequestMatcher
|
||||||
|
|
||||||
// Match returns true if the request matches all
|
// Match returns true if the request matches all
|
||||||
// matchers in mset.
|
// matchers in mset or if there are no matchers.
|
||||||
func (mset MatcherSet) Match(r *http.Request) bool {
|
func (mset MatcherSet) Match(r *http.Request) bool {
|
||||||
for _, m := range mset {
|
for _, m := range mset {
|
||||||
if !m.Match(r) {
|
if !m.Match(r) {
|
||||||
|
@ -265,3 +291,5 @@ func (ms *MatcherSets) FromInterface(matcherSets interface{}) error {
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var routeGroupCtxKey = caddy.CtxKey("route_group")
|
||||||
|
|
|
@ -61,10 +61,12 @@ type Server struct {
|
||||||
MaxHeaderBytes int `json:"max_header_bytes,omitempty"`
|
MaxHeaderBytes int `json:"max_header_bytes,omitempty"`
|
||||||
|
|
||||||
// Routes describes how this server will handle requests.
|
// Routes describes how this server will handle requests.
|
||||||
// When a request comes in, each route's matchers will
|
// Routes are executed sequentially. First a route's matchers
|
||||||
// be evaluated against the request, and matching routes
|
// are evaluated, then its grouping. If it matches and has
|
||||||
// will be compiled into a middleware chain in the order
|
// not been mutually-excluded by its grouping, then its
|
||||||
// in which they appear in the list.
|
// handlers are executed sequentially. The sequence of invoked
|
||||||
|
// handlers comprises a compiled middleware chain that flows
|
||||||
|
// from each matching route and its handlers to the next.
|
||||||
Routes RouteList `json:"routes,omitempty"`
|
Routes RouteList `json:"routes,omitempty"`
|
||||||
|
|
||||||
// Errors is how this server will handle errors returned from any
|
// Errors is how this server will handle errors returned from any
|
||||||
|
@ -86,11 +88,6 @@ type Server struct {
|
||||||
// only on the HTTPS port.
|
// only on the HTTPS port.
|
||||||
AutoHTTPS *AutoHTTPSConfig `json:"automatic_https,omitempty"`
|
AutoHTTPS *AutoHTTPSConfig `json:"automatic_https,omitempty"`
|
||||||
|
|
||||||
// MaxRehandles is the maximum number of times to allow a
|
|
||||||
// request to be rehandled, to prevent accidental infinite
|
|
||||||
// loops. Default: 1.
|
|
||||||
MaxRehandles *int `json:"max_rehandles,omitempty"`
|
|
||||||
|
|
||||||
// If true, will require that a request's Host header match
|
// If true, will require that a request's Host header match
|
||||||
// the value of the ServerName sent by the client's TLS
|
// the value of the ServerName sent by the client's TLS
|
||||||
// ClientHello; often a necessary safeguard when using TLS
|
// ClientHello; often a necessary safeguard when using TLS
|
||||||
|
@ -105,6 +102,9 @@ type Server struct {
|
||||||
// This field is not subject to compatibility promises.
|
// This field is not subject to compatibility promises.
|
||||||
ExperimentalHTTP3 bool `json:"experimental_http3,omitempty"`
|
ExperimentalHTTP3 bool `json:"experimental_http3,omitempty"`
|
||||||
|
|
||||||
|
primaryHandlerChain Handler
|
||||||
|
errorHandlerChain Handler
|
||||||
|
|
||||||
tlsApp *caddytls.TLS
|
tlsApp *caddytls.TLS
|
||||||
logger *zap.Logger
|
logger *zap.Logger
|
||||||
accessLogger *zap.Logger
|
accessLogger *zap.Logger
|
||||||
|
@ -129,6 +129,7 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
ctx := context.WithValue(r.Context(), caddy.ReplacerCtxKey, repl)
|
ctx := context.WithValue(r.Context(), caddy.ReplacerCtxKey, repl)
|
||||||
ctx = context.WithValue(ctx, ServerCtxKey, s)
|
ctx = context.WithValue(ctx, ServerCtxKey, s)
|
||||||
ctx = context.WithValue(ctx, VarsCtxKey, make(map[string]interface{}))
|
ctx = context.WithValue(ctx, VarsCtxKey, make(map[string]interface{}))
|
||||||
|
ctx = context.WithValue(ctx, routeGroupCtxKey, make(map[string]struct{}))
|
||||||
var url2 url.URL // avoid letting this escape to the heap
|
var url2 url.URL // avoid letting this escape to the heap
|
||||||
ctx = context.WithValue(ctx, OriginalRequestCtxKey, originalRequest(r, &url2))
|
ctx = context.WithValue(ctx, OriginalRequestCtxKey, originalRequest(r, &url2))
|
||||||
r = r.WithContext(ctx)
|
r = r.WithContext(ctx)
|
||||||
|
@ -137,22 +138,22 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
// anymore, finish setting up the replacer
|
// anymore, finish setting up the replacer
|
||||||
addHTTPVarsToReplacer(repl, r, w)
|
addHTTPVarsToReplacer(repl, r, w)
|
||||||
|
|
||||||
loggableReq := LoggableHTTPRequest{r}
|
// encode the request for logging purposes before
|
||||||
|
// it enters any handler chain; this is necessary
|
||||||
|
// to capture the original request in case it gets
|
||||||
|
// modified during handling
|
||||||
|
loggableReq := zap.Object("request", LoggableHTTPRequest{r})
|
||||||
errLog := s.errorLogger.With(
|
errLog := s.errorLogger.With(
|
||||||
// encode the request for logging purposes before
|
loggableReq,
|
||||||
// it enters any handler chain; this is necessary
|
|
||||||
// to capture the original request in case it gets
|
|
||||||
// modified during handling
|
|
||||||
zap.Object("request", loggableReq),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if s.accessLogger != nil {
|
if s.accessLogger != nil {
|
||||||
wrec := NewResponseRecorder(w, nil, nil)
|
wrec := NewResponseRecorder(w, nil, nil)
|
||||||
w = wrec
|
w = wrec
|
||||||
accLog := s.accessLogger.With(
|
|
||||||
// capture the original version of the request
|
// capture the original version of the request
|
||||||
zap.Object("request", loggableReq),
|
accLog := s.accessLogger.With(loggableReq)
|
||||||
)
|
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
defer func() {
|
defer func() {
|
||||||
latency := time.Since(start)
|
latency := time.Since(start)
|
||||||
|
@ -187,8 +188,8 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// build and execute the primary handler chain
|
// execute the primary handler chain
|
||||||
err := s.executeCompositeRoute(w, r, s.Routes)
|
err := s.primaryHandlerChain.ServeHTTP(w, r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// prepare the error log
|
// prepare the error log
|
||||||
logger := errLog
|
logger := errLog
|
||||||
|
@ -204,7 +205,7 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
if s.Errors != nil && len(s.Errors.Routes) > 0 {
|
if s.Errors != nil && len(s.Errors.Routes) > 0 {
|
||||||
// execute user-defined error handling route
|
// execute user-defined error handling route
|
||||||
err2 := s.executeCompositeRoute(w, r, s.Errors.Routes)
|
err2 := s.errorHandlerChain.ServeHTTP(w, r)
|
||||||
if err2 == nil {
|
if err2 == nil {
|
||||||
// user's error route handled the error response
|
// user's error route handled the error response
|
||||||
// successfully, so now just log the error
|
// successfully, so now just log the error
|
||||||
|
@ -229,39 +230,6 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// executeCompositeRoute compiles a composite route from routeList and executes
|
|
||||||
// it using w and r. This function handles the sentinel ErrRehandle error value,
|
|
||||||
// which reprocesses requests through the stack again. Any error value returned
|
|
||||||
// from this function would be an actual error that needs to be handled.
|
|
||||||
func (s *Server) executeCompositeRoute(w http.ResponseWriter, r *http.Request, routeList RouteList) error {
|
|
||||||
maxRehandles := 0
|
|
||||||
if s.MaxRehandles != nil {
|
|
||||||
maxRehandles = *s.MaxRehandles
|
|
||||||
}
|
|
||||||
var err error
|
|
||||||
for i := -1; i <= maxRehandles; i++ {
|
|
||||||
// we started the counter at -1 because we
|
|
||||||
// always want to run this at least once
|
|
||||||
|
|
||||||
// the purpose of rehandling is often to give
|
|
||||||
// matchers a chance to re-evaluate on the
|
|
||||||
// changed version of the request, so compile
|
|
||||||
// the handler stack anew in each iteration
|
|
||||||
stack := routeList.BuildCompositeRoute(r)
|
|
||||||
stack = s.wrapPrimaryRoute(stack)
|
|
||||||
|
|
||||||
// only loop if rehandling is required
|
|
||||||
err = stack.ServeHTTP(w, r)
|
|
||||||
if err != ErrRehandle {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
if i >= maxRehandles-1 {
|
|
||||||
return fmt.Errorf("too many rehandles")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// wrapPrimaryRoute wraps stack (a compiled middleware handler chain)
|
// wrapPrimaryRoute wraps stack (a compiled middleware handler chain)
|
||||||
// in s.enforcementHandler which performs crucial security checks, etc.
|
// in s.enforcementHandler which performs crucial security checks, etc.
|
||||||
func (s *Server) wrapPrimaryRoute(stack Handler) Handler {
|
func (s *Server) wrapPrimaryRoute(stack Handler) Handler {
|
||||||
|
|
|
@ -59,7 +59,7 @@ func (s *StarlarkMW) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// dynamically build middleware chain for each request
|
// dynamically build middleware chain for each request
|
||||||
stack := caddyhttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
|
var stack caddyhttp.Handler = caddyhttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
|
||||||
wr, err := convert.ToValue(w)
|
wr, err := convert.ToValue(w)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("cannot convert response writer to starlark value")
|
return fmt.Errorf("cannot convert response writer to starlark value")
|
||||||
|
@ -83,10 +83,10 @@ func (s *StarlarkMW) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
|
||||||
// TODO :- make middlewareResponseWriter exported and wrap w with that
|
// TODO :- make middlewareResponseWriter exported and wrap w with that
|
||||||
var mid []caddyhttp.Middleware
|
var mid []caddyhttp.Middleware
|
||||||
for _, m := range s.execute.Modules {
|
for _, m := range s.execute.Modules {
|
||||||
mid = append(mid, func(next caddyhttp.HandlerFunc) caddyhttp.HandlerFunc {
|
mid = append(mid, func(next caddyhttp.Handler) caddyhttp.Handler {
|
||||||
return func(w http.ResponseWriter, r *http.Request) error {
|
return caddyhttp.HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
|
||||||
return m.Instance.ServeHTTP(w, r, next)
|
return m.Instance.ServeHTTP(w, r, next)
|
||||||
}
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ func (s *StarlarkMW) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
|
||||||
|
|
||||||
s.execute.Modules = nil
|
s.execute.Modules = nil
|
||||||
|
|
||||||
return stack(w, r)
|
return stack.ServeHTTP(w, r)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cleanup cleans up any modules loaded during the creation of a starlark route.
|
// Cleanup cleans up any modules loaded during the creation of a starlark route.
|
||||||
|
|
|
@ -27,13 +27,12 @@ func init() {
|
||||||
|
|
||||||
// Subroute implements a handler that compiles and executes routes.
|
// Subroute implements a handler that compiles and executes routes.
|
||||||
// This is useful for a batch of routes that all inherit the same
|
// This is useful for a batch of routes that all inherit the same
|
||||||
// matchers, or for routes with matchers that must be have deferred
|
// matchers, or for multiple routes that should be treated as a
|
||||||
// evaluation (e.g. if they depend on placeholders created by other
|
// single route.
|
||||||
// matchers that need to be evaluated first).
|
|
||||||
//
|
//
|
||||||
// You can also use subroutes to handle errors from specific handlers.
|
// You can also use subroutes to handle errors from its handlers.
|
||||||
// First the primary Routes will be executed, and if they return an
|
// First the primary routes will be executed, and if they return an
|
||||||
// error, the Errors routes will be executed; in that case, an error
|
// error, the errors routes will be executed; in that case, an error
|
||||||
// is only returned to the entry point at the server if there is an
|
// is only returned to the entry point at the server if there is an
|
||||||
// additional error returned from the errors routes.
|
// additional error returned from the errors routes.
|
||||||
type Subroute struct {
|
type Subroute struct {
|
||||||
|
@ -71,11 +70,11 @@ func (sr *Subroute) Provision(ctx caddy.Context) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sr *Subroute) ServeHTTP(w http.ResponseWriter, r *http.Request, _ Handler) error {
|
func (sr *Subroute) ServeHTTP(w http.ResponseWriter, r *http.Request, _ Handler) error {
|
||||||
subroute := sr.Routes.BuildCompositeRoute(r)
|
subroute := sr.Routes.Compile()
|
||||||
err := subroute.ServeHTTP(w, r)
|
err := subroute.ServeHTTP(w, r)
|
||||||
if err != nil && sr.Errors != nil {
|
if err != nil && sr.Errors != nil {
|
||||||
r = sr.Errors.WithError(r, err)
|
r = sr.Errors.WithError(r, err)
|
||||||
errRoute := sr.Errors.Routes.BuildCompositeRoute(r)
|
errRoute := sr.Errors.Routes.Compile()
|
||||||
return errRoute.ServeHTTP(w, r)
|
return errRoute.ServeHTTP(w, r)
|
||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
package caddyhttp
|
package caddyhttp
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/caddyserver/caddy/v2"
|
"github.com/caddyserver/caddy/v2"
|
||||||
|
@ -75,6 +76,27 @@ func (m VarsMatcher) Match(r *http.Request) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetVar gets a value out of the context's variable table by key.
|
||||||
|
// If the key does not exist, the return value will be nil.
|
||||||
|
func GetVar(ctx context.Context, key string) interface{} {
|
||||||
|
varMap, ok := ctx.Value(VarsCtxKey).(map[string]interface{})
|
||||||
|
if !ok {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return varMap[key]
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetVar sets a value in the context's variable table with
|
||||||
|
// the given key. It overwrites any previous value with the
|
||||||
|
// same key.
|
||||||
|
func SetVar(ctx context.Context, key string, value interface{}) {
|
||||||
|
varMap, ok := ctx.Value(VarsCtxKey).(map[string]interface{})
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
varMap[key] = value
|
||||||
|
}
|
||||||
|
|
||||||
// Interface guards
|
// Interface guards
|
||||||
var (
|
var (
|
||||||
_ MiddlewareHandler = (*VarsMiddleware)(nil)
|
_ MiddlewareHandler = (*VarsMiddleware)(nil)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user