Documentation ¶
Index ¶
- func PathParams(r *http.Request) map[string]string
- type ParamPerms
- type PathSegment
- type PathTemplate
- type RequestHandlerMiddleware
- type RequestVals
- type ResponseVals
- type RootRouter
- type RootRouterParam
- type RouteHandlerMiddleware
- type RouteParam
- func ForbiddenHeaderParams(forbiddenParams ...string) RouteParam
- func ForbiddenPathParams(forbiddenParams ...string) RouteParam
- func ForbiddenQueryParams(forbiddenParams ...string) RouteParam
- func MetricTags(tags metrics.Tags) RouteParam
- func RouteParamPermsParam(perms RouteParamPerms) RouteParam
- func SafeHeaderParams(safeParams ...string) RouteParam
- func SafePathParams(safeParams ...string) RouteParam
- func SafeQueryParams(safeParams ...string) RouteParam
- type RouteParamPerms
- type RouteRequestHandler
- type RouteSpec
- type Router
- type RouterImpl
- type SegmentType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ParamPerms ¶
type ParamPerms interface { // Safe returns true if the parameter with the provided name is safe to log. Case-insensitive. Safe(paramName string) bool // Forbidden returns true if the provided parameter is forbidden from being logged (that is, it should not be logged // at all, even as an unsafe parameter). Case-insensitive. Forbidden(paramName string) bool }
func NewCombinedParamPerms ¶
func NewCombinedParamPerms(paramPerms ...ParamPerms) ParamPerms
type PathSegment ¶
type PathSegment struct { Type SegmentType Value string }
type PathTemplate ¶
type PathTemplate interface { Template() string Segments() []PathSegment }
func NewPathTemplate ¶
func NewPathTemplate(in string) (PathTemplate, error)
NewPathTemplate creates a new PathTemplate using the provided path. The provided path must be of the following form:
- Must start with '/'
- Must contain only alphanumeric characters and '_', '{', '}', '/', '.', '-', and '*'
- Path parameters must be of the form "{paramName}", where paramName must be an alphanumeric string
- Path parameters that occur at the end of a path can take the form "{paramName*}", in which case the "*" signifies that the parameter is a trailing path parameter
- For trailing path parameters, the value of the parameter will be the string that occurs after the final '/' that precedes the variable
- For example, a route registered with path "/pkg/{pkgPath*}" matched against the request "/pkg/product/1.0.0/package.tgz" will result in a path parameter value of "product/1.0.0/package.tgz"
type RequestVals ¶
type ResponseVals ¶
type RootRouter ¶
type RootRouter interface { http.Handler Router AddRequestHandlerMiddleware(handlers ...RequestHandlerMiddleware) AddRouteHandlerMiddleware(handlers ...RouteHandlerMiddleware) }
func New ¶
func New(impl RouterImpl, params ...RootRouterParam) RootRouter
type RootRouterParam ¶
type RootRouterParam interface {
// contains filtered or unexported methods
}
func RootRouterParamAddRequestHandlerMiddleware ¶
func RootRouterParamAddRequestHandlerMiddleware(reqHandler ...RequestHandlerMiddleware) RootRouterParam
func RootRouterParamAddRouteHandlerMiddleware ¶
func RootRouterParamAddRouteHandlerMiddleware(routeReqHandler ...RouteHandlerMiddleware) RootRouterParam
type RouteHandlerMiddleware ¶
type RouteHandlerMiddleware func(rw http.ResponseWriter, r *http.Request, reqVals RequestVals, next RouteRequestHandler)
type RouteParam ¶
type RouteParam interface {
// contains filtered or unexported methods
}
func ForbiddenHeaderParams ¶
func ForbiddenHeaderParams(forbiddenParams ...string) RouteParam
func ForbiddenPathParams ¶
func ForbiddenPathParams(forbiddenParams ...string) RouteParam
func ForbiddenQueryParams ¶
func ForbiddenQueryParams(forbiddenParams ...string) RouteParam
func MetricTags ¶ added in v1.6.3
func MetricTags(tags metrics.Tags) RouteParam
func RouteParamPermsParam ¶
func RouteParamPermsParam(perms RouteParamPerms) RouteParam
func SafeHeaderParams ¶
func SafeHeaderParams(safeParams ...string) RouteParam
func SafePathParams ¶
func SafePathParams(safeParams ...string) RouteParam
func SafeQueryParams ¶
func SafeQueryParams(safeParams ...string) RouteParam
type RouteParamPerms ¶
type RouteParamPerms interface { PathParamPerms() ParamPerms QueryParamPerms() ParamPerms HeaderParamPerms() ParamPerms }
type RouteRequestHandler ¶
type RouteRequestHandler func(rw http.ResponseWriter, r *http.Request, reqVals RequestVals)
type RouteSpec ¶
RouteSpec is the specification of a full route. Consists of the HTTP method and path template for the route.
type Router ¶
type Router interface { // Register registers the provided handler for this router for the provided method (GET, POST, etc.) and path. // The RouteParam parameters specifies any path, query or header parameters that should be considered safe or // forbidden for the purposes of logging. Register(method, path string, handler http.Handler, params ...RouteParam) error // RegisteredRoutes returns a slice of all of the routes registered with this router in sorted order. RegisteredRoutes() []RouteSpec // Get is a shorthand for Register(http.MethodGet, path, handler, params...) Get(path string, handler http.Handler, params ...RouteParam) error // Head is a shorthand for Register(http.MethodHead, path, handler, params...) Head(path string, handler http.Handler, params ...RouteParam) error // Post is a shorthand for Register(http.MethodPost, path, handler, params...) Post(path string, handler http.Handler, params ...RouteParam) error // Put is a shorthand for Register(http.MethodPut, path, handler, params...) Put(path string, handler http.Handler, params ...RouteParam) error // Patch is a shorthand for Register(http.MethodPatch, path, handler, params...) Patch(path string, handler http.Handler, params ...RouteParam) error // Delete is a shorthand for Register(http.MethodDelete, path, handler, params...) Delete(path string, handler http.Handler, params ...RouteParam) error // Subrouter returns a new Router that is a child of this Router. A child router is effectively an alias to the root // router -- any routes registered on the child router are registered on the root router with all of the prefixes up // to the child router. Subrouter(path string, params ...RouteParam) Router // Path returns the path stored by this router. The path is empty for the root router, while subrouters will return // only the portion of the path managed by the subrouter. Path() string // Parent returns the parent router of this Router, or nil if this router is the root router. Parent() Router // RootRouter returns the RootRouter for this router (which may be itself). RootRouter() RootRouter }
type RouterImpl ¶
type RouterImpl interface { // RouterImpl must implement http.Handler http.Handler // Register registers the provided handler for this router for the provided method (GET, POST, etc.) and // pathSegments. Register(method string, pathSegments []PathSegment, handler http.Handler) // PathParams returns the path parameters for the provided request. The size of the returned slice must match // the number of parameters in the path. The variable names of the parameters in the path are provided in order // in the "pathVarNames" slice. PathParams(req *http.Request, pathVarNames []string) map[string]string }
type SegmentType ¶
type SegmentType int
const ( LiteralSegment SegmentType = iota PathParamSegment TrailingPathParamSegment )
Source Files ¶
Click to show internal directories.
Click to hide internal directories.