mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 00:41:02 +00:00
87 lines
3.4 KiB
Go
87 lines
3.4 KiB
Go
|
// +build !go1.7
|
||
|
|
||
|
package httptreemux
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"sync"
|
||
|
)
|
||
|
|
||
|
type TreeMux struct {
|
||
|
root *node
|
||
|
mutex sync.RWMutex
|
||
|
|
||
|
Group
|
||
|
|
||
|
// The default PanicHandler just returns a 500 code.
|
||
|
PanicHandler PanicHandler
|
||
|
|
||
|
// The default NotFoundHandler is http.NotFound.
|
||
|
NotFoundHandler func(w http.ResponseWriter, r *http.Request)
|
||
|
|
||
|
// Any OPTIONS request that matches a path without its own OPTIONS handler will use this handler,
|
||
|
// if set, instead of calling MethodNotAllowedHandler.
|
||
|
OptionsHandler HandlerFunc
|
||
|
|
||
|
// MethodNotAllowedHandler is called when a pattern matches, but that
|
||
|
// pattern does not have a handler for the requested method. The default
|
||
|
// handler just writes the status code http.StatusMethodNotAllowed and adds
|
||
|
// the required Allowed header.
|
||
|
// The methods parameter contains the map of each method to the corresponding
|
||
|
// handler function.
|
||
|
MethodNotAllowedHandler func(w http.ResponseWriter, r *http.Request,
|
||
|
methods map[string]HandlerFunc)
|
||
|
|
||
|
// HeadCanUseGet allows the router to use the GET handler to respond to
|
||
|
// HEAD requests if no explicit HEAD handler has been added for the
|
||
|
// matching pattern. This is true by default.
|
||
|
HeadCanUseGet bool
|
||
|
|
||
|
// RedirectCleanPath allows the router to try clean the current request path,
|
||
|
// if no handler is registered for it, using CleanPath from github.com/dimfeld/httppath.
|
||
|
// This is true by default.
|
||
|
RedirectCleanPath bool
|
||
|
|
||
|
// RedirectTrailingSlash enables automatic redirection in case router doesn't find a matching route
|
||
|
// for the current request path but a handler for the path with or without the trailing
|
||
|
// slash exists. This is true by default.
|
||
|
RedirectTrailingSlash bool
|
||
|
|
||
|
// RemoveCatchAllTrailingSlash removes the trailing slash when a catch-all pattern
|
||
|
// is matched, if set to true. By default, catch-all paths are never redirected.
|
||
|
RemoveCatchAllTrailingSlash bool
|
||
|
|
||
|
// RedirectBehavior sets the default redirect behavior when RedirectTrailingSlash or
|
||
|
// RedirectCleanPath are true. The default value is Redirect301.
|
||
|
RedirectBehavior RedirectBehavior
|
||
|
|
||
|
// RedirectMethodBehavior overrides the default behavior for a particular HTTP method.
|
||
|
// The key is the method name, and the value is the behavior to use for that method.
|
||
|
RedirectMethodBehavior map[string]RedirectBehavior
|
||
|
|
||
|
// PathSource determines from where the router gets its path to search.
|
||
|
// By default it pulls the data from the RequestURI member, but this can
|
||
|
// be overridden to use URL.Path instead.
|
||
|
//
|
||
|
// There is a small tradeoff here. Using RequestURI allows the router to handle
|
||
|
// encoded slashes (i.e. %2f) in the URL properly, while URL.Path provides
|
||
|
// better compatibility with some utility functions in the http
|
||
|
// library that modify the Request before passing it to the router.
|
||
|
PathSource PathSource
|
||
|
|
||
|
// EscapeAddedRoutes controls URI escaping behavior when adding a route to the tree.
|
||
|
// If set to true, the router will add both the route as originally passed, and
|
||
|
// a version passed through URL.EscapedPath. This behavior is disabled by default.
|
||
|
EscapeAddedRoutes bool
|
||
|
|
||
|
// SafeAddRoutesWhileRunning tells the router to protect all accesses to the tree with an RWMutex. This is only needed
|
||
|
// if you are going to add routes after the router has already begun serving requests. There is a potential
|
||
|
// performance penalty at high load.
|
||
|
SafeAddRoutesWhileRunning bool
|
||
|
}
|
||
|
|
||
|
func (t *TreeMux) setDefaultRequestContext(r *http.Request) *http.Request {
|
||
|
// Nothing to do on Go 1.6 and before
|
||
|
return r
|
||
|
}
|