2024-03-09 11:21:24 +02:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// SPDX-FileCopyrightText: © 2015 LabStack LLC and Echo contributors
|
|
|
|
|
2015-05-23 05:26:52 +02:00
|
|
|
package echo
|
|
|
|
|
2017-03-06 05:08:11 +02:00
|
|
|
import (
|
2018-10-14 17:16:58 +02:00
|
|
|
"net/http"
|
2017-03-06 05:08:11 +02:00
|
|
|
)
|
|
|
|
|
2015-05-23 05:26:52 +02:00
|
|
|
type (
|
2016-03-20 00:47:20 +02:00
|
|
|
// Group is a set of sub-routes for a specified route. It can be used for inner
|
2017-03-06 05:08:11 +02:00
|
|
|
// routes that share a common middleware or functionality that should be separate
|
2016-03-20 00:47:20 +02:00
|
|
|
// from the parent echo instance while still inheriting from it.
|
2015-05-23 05:26:52 +02:00
|
|
|
Group struct {
|
2019-04-29 22:21:11 +02:00
|
|
|
common
|
2019-04-29 07:22:35 +02:00
|
|
|
host string
|
2016-04-12 07:53:31 +02:00
|
|
|
prefix string
|
|
|
|
middleware []MiddlewareFunc
|
|
|
|
echo *Echo
|
2015-05-23 05:26:52 +02:00
|
|
|
}
|
|
|
|
)
|
2015-05-23 06:24:35 +02:00
|
|
|
|
2016-03-20 00:47:20 +02:00
|
|
|
// Use implements `Echo#Use()` for sub-routes within the Group.
|
2016-10-23 00:12:12 +02:00
|
|
|
func (g *Group) Use(middleware ...MiddlewareFunc) {
|
|
|
|
g.middleware = append(g.middleware, middleware...)
|
2019-04-30 01:46:08 +02:00
|
|
|
if len(g.middleware) == 0 {
|
|
|
|
return
|
|
|
|
}
|
2023-02-23 21:02:12 +02:00
|
|
|
// group level middlewares are different from Echo `Pre` and `Use` middlewares (those are global). Group level middlewares
|
|
|
|
// are only executed if they are added to the Router with route.
|
|
|
|
// So we register catch all route (404 is a safe way to emulate route match) for this group and now during routing the
|
|
|
|
// Router would find route to match our request path and therefore guarantee the middleware(s) will get executed.
|
|
|
|
g.RouteNotFound("", NotFoundHandler)
|
|
|
|
g.RouteNotFound("/*", NotFoundHandler)
|
2015-05-23 06:24:35 +02:00
|
|
|
}
|
|
|
|
|
2016-04-19 01:59:58 +02:00
|
|
|
// CONNECT implements `Echo#CONNECT()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) CONNECT(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodConnect, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// DELETE implements `Echo#DELETE()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) DELETE(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodDelete, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// GET implements `Echo#GET()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) GET(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodGet, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// HEAD implements `Echo#HEAD()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) HEAD(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodHead, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// OPTIONS implements `Echo#OPTIONS()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) OPTIONS(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodOptions, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// PATCH implements `Echo#PATCH()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) PATCH(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodPatch, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// POST implements `Echo#POST()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) POST(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodPost, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// PUT implements `Echo#PUT()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) PUT(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodPut, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// TRACE implements `Echo#TRACE()` for sub-routes within the Group.
|
2017-06-22 19:59:02 +02:00
|
|
|
func (g *Group) TRACE(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
2018-10-14 17:16:58 +02:00
|
|
|
return g.Add(http.MethodTrace, path, h, m...)
|
2016-04-19 01:59:58 +02:00
|
|
|
}
|
|
|
|
|
2016-03-20 00:47:20 +02:00
|
|
|
// Any implements `Echo#Any()` for sub-routes within the Group.
|
2017-12-22 22:09:52 +02:00
|
|
|
func (g *Group) Any(path string, handler HandlerFunc, middleware ...MiddlewareFunc) []*Route {
|
|
|
|
routes := make([]*Route, len(methods))
|
|
|
|
for i, m := range methods {
|
|
|
|
routes[i] = g.Add(m, path, handler, middleware...)
|
2016-02-20 18:11:02 +02:00
|
|
|
}
|
2017-12-22 22:09:52 +02:00
|
|
|
return routes
|
2016-02-20 18:11:02 +02:00
|
|
|
}
|
|
|
|
|
2016-03-20 00:47:20 +02:00
|
|
|
// Match implements `Echo#Match()` for sub-routes within the Group.
|
2017-12-22 22:09:52 +02:00
|
|
|
func (g *Group) Match(methods []string, path string, handler HandlerFunc, middleware ...MiddlewareFunc) []*Route {
|
|
|
|
routes := make([]*Route, len(methods))
|
|
|
|
for i, m := range methods {
|
|
|
|
routes[i] = g.Add(m, path, handler, middleware...)
|
2016-02-20 18:11:02 +02:00
|
|
|
}
|
2017-12-22 22:09:52 +02:00
|
|
|
return routes
|
2015-05-23 06:24:35 +02:00
|
|
|
}
|
|
|
|
|
2016-03-20 00:47:20 +02:00
|
|
|
// Group creates a new sub-group with prefix and optional sub-group-level middleware.
|
2019-04-29 08:10:00 +02:00
|
|
|
func (g *Group) Group(prefix string, middleware ...MiddlewareFunc) (sg *Group) {
|
2018-02-21 20:44:17 +02:00
|
|
|
m := make([]MiddlewareFunc, 0, len(g.middleware)+len(middleware))
|
2016-06-14 03:50:17 +02:00
|
|
|
m = append(m, g.middleware...)
|
|
|
|
m = append(m, middleware...)
|
2019-04-29 08:10:00 +02:00
|
|
|
sg = g.echo.Group(g.prefix+prefix, m...)
|
|
|
|
sg.host = g.host
|
|
|
|
return
|
2015-05-27 23:07:52 +02:00
|
|
|
}
|
|
|
|
|
2016-04-09 23:00:23 +02:00
|
|
|
// File implements `Echo#File()` for sub-routes within the Group.
|
|
|
|
func (g *Group) File(path, file string) {
|
2020-04-25 19:58:16 +02:00
|
|
|
g.file(path, file, g.GET)
|
2016-04-09 23:00:23 +02:00
|
|
|
}
|
|
|
|
|
2022-07-12 20:53:41 +02:00
|
|
|
// RouteNotFound implements `Echo#RouteNotFound()` for sub-routes within the Group.
|
|
|
|
//
|
|
|
|
// Example: `g.RouteNotFound("/*", func(c echo.Context) error { return c.NoContent(http.StatusNotFound) })`
|
|
|
|
func (g *Group) RouteNotFound(path string, h HandlerFunc, m ...MiddlewareFunc) *Route {
|
|
|
|
return g.Add(RouteNotFound, path, h, m...)
|
|
|
|
}
|
|
|
|
|
2017-08-08 20:08:13 +02:00
|
|
|
// Add implements `Echo#Add()` for sub-routes within the Group.
|
|
|
|
func (g *Group) Add(method, path string, handler HandlerFunc, middleware ...MiddlewareFunc) *Route {
|
2016-08-12 01:25:03 +02:00
|
|
|
// Combine into a new slice to avoid accidentally passing the same slice for
|
|
|
|
// multiple routes, which would lead to later add() calls overwriting the
|
|
|
|
// middleware from earlier calls.
|
2018-02-21 20:44:17 +02:00
|
|
|
m := make([]MiddlewareFunc, 0, len(g.middleware)+len(middleware))
|
2016-06-14 03:50:17 +02:00
|
|
|
m = append(m, g.middleware...)
|
|
|
|
m = append(m, middleware...)
|
2019-04-29 07:22:35 +02:00
|
|
|
return g.echo.add(g.host, method, g.prefix+path, handler, m...)
|
2015-05-23 06:24:35 +02:00
|
|
|
}
|