|
|
@ -6,41 +6,31 @@ import ( |
|
|
|
"sync" |
|
|
|
"sync" |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
// FilterFunc is a function which receives an http.Handler and returns another http.Handler.
|
|
|
|
// HandlerFunc defines a function to serve HTTP requests.
|
|
|
|
type FilterFunc func(http.Handler) http.Handler |
|
|
|
type HandlerFunc func(Context) error |
|
|
|
|
|
|
|
|
|
|
|
// FilterChain returns a FilterFunc that specifies the chained handler for HTTP Router.
|
|
|
|
// Router is an HTTP router.
|
|
|
|
func FilterChain(filters ...FilterFunc) FilterFunc { |
|
|
|
type Router struct { |
|
|
|
return func(next http.Handler) http.Handler { |
|
|
|
|
|
|
|
for i := len(filters) - 1; i >= 0; i-- { |
|
|
|
|
|
|
|
next = filters[i](next) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return next |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Route is an HTTP route.
|
|
|
|
|
|
|
|
type Route struct { |
|
|
|
|
|
|
|
prefix string |
|
|
|
prefix string |
|
|
|
pool sync.Pool |
|
|
|
pool sync.Pool |
|
|
|
srv *Server |
|
|
|
srv *Server |
|
|
|
filters []FilterFunc |
|
|
|
filters []FilterFunc |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func newRoute(prefix string, srv *Server, filters ...FilterFunc) *Route { |
|
|
|
func newRouter(prefix string, srv *Server, filters ...FilterFunc) *Router { |
|
|
|
r := &Route{ |
|
|
|
r := &Router{ |
|
|
|
prefix: prefix, |
|
|
|
prefix: prefix, |
|
|
|
srv: srv, |
|
|
|
srv: srv, |
|
|
|
filters: filters, |
|
|
|
filters: filters, |
|
|
|
} |
|
|
|
} |
|
|
|
r.pool.New = func() interface{} { |
|
|
|
r.pool.New = func() interface{} { |
|
|
|
return &wrapper{route: r} |
|
|
|
return &wrapper{router: r} |
|
|
|
} |
|
|
|
} |
|
|
|
return r |
|
|
|
return r |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Handle registers a new route with a matcher for the URL path and method.
|
|
|
|
// Handle registers a new route with a matcher for the URL path and method.
|
|
|
|
func (r *Route) Handle(method, relativePath string, h HandlerFunc, filters ...FilterFunc) { |
|
|
|
func (r *Router) Handle(method, relativePath string, h HandlerFunc, filters ...FilterFunc) { |
|
|
|
next := http.Handler(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) { |
|
|
|
next := http.Handler(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) { |
|
|
|
ctx := r.pool.Get().(Context) |
|
|
|
ctx := r.pool.Get().(Context) |
|
|
|
ctx.Reset(res, req) |
|
|
|
ctx.Reset(res, req) |
|
|
@ -56,46 +46,46 @@ func (r *Route) Handle(method, relativePath string, h HandlerFunc, filters ...Fi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// GET registers a new GET route for a path with matching handler in the router.
|
|
|
|
// GET registers a new GET route for a path with matching handler in the router.
|
|
|
|
func (r *Route) GET(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) GET(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodGet, path, h, m...) |
|
|
|
r.Handle(http.MethodGet, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// HEAD registers a new HEAD route for a path with matching handler in the router.
|
|
|
|
// HEAD registers a new HEAD route for a path with matching handler in the router.
|
|
|
|
func (r *Route) HEAD(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) HEAD(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodHead, path, h, m...) |
|
|
|
r.Handle(http.MethodHead, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// POST registers a new POST route for a path with matching handler in the router.
|
|
|
|
// POST registers a new POST route for a path with matching handler in the router.
|
|
|
|
func (r *Route) POST(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) POST(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodPost, path, h, m...) |
|
|
|
r.Handle(http.MethodPost, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// PUT registers a new PUT route for a path with matching handler in the router.
|
|
|
|
// PUT registers a new PUT route for a path with matching handler in the router.
|
|
|
|
func (r *Route) PUT(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) PUT(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodPut, path, h, m...) |
|
|
|
r.Handle(http.MethodPut, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// PATCH registers a new PATCH route for a path with matching handler in the router.
|
|
|
|
// PATCH registers a new PATCH route for a path with matching handler in the router.
|
|
|
|
func (r *Route) PATCH(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) PATCH(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodPatch, path, h, m...) |
|
|
|
r.Handle(http.MethodPatch, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// DELETE registers a new DELETE route for a path with matching handler in the router.
|
|
|
|
// DELETE registers a new DELETE route for a path with matching handler in the router.
|
|
|
|
func (r *Route) DELETE(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) DELETE(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodDelete, path, h, m...) |
|
|
|
r.Handle(http.MethodDelete, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// CONNECT registers a new CONNECT route for a path with matching handler in the router.
|
|
|
|
// CONNECT registers a new CONNECT route for a path with matching handler in the router.
|
|
|
|
func (r *Route) CONNECT(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) CONNECT(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodConnect, path, h, m...) |
|
|
|
r.Handle(http.MethodConnect, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// OPTIONS registers a new OPTIONS route for a path with matching handler in the router.
|
|
|
|
// OPTIONS registers a new OPTIONS route for a path with matching handler in the router.
|
|
|
|
func (r *Route) OPTIONS(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) OPTIONS(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodOptions, path, h, m...) |
|
|
|
r.Handle(http.MethodOptions, path, h, m...) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// TRACE registers a new TRACE route for a path with matching handler in the router.
|
|
|
|
// TRACE registers a new TRACE route for a path with matching handler in the router.
|
|
|
|
func (r *Route) TRACE(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
func (r *Router) TRACE(path string, h HandlerFunc, m ...FilterFunc) { |
|
|
|
r.Handle(http.MethodTrace, path, h, m...) |
|
|
|
r.Handle(http.MethodTrace, path, h, m...) |
|
|
|
} |
|
|
|
} |