2014-10-08 23:37:26 +04:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package gin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"path"
|
2015-06-04 05:50:40 +03:00
|
|
|
"regexp"
|
2015-05-21 17:59:58 +03:00
|
|
|
"strings"
|
2014-10-08 23:37:26 +04:00
|
|
|
)
|
|
|
|
|
2015-06-11 02:02:38 +03:00
|
|
|
type routesInterface interface {
|
|
|
|
Use(...HandlerFunc) routesInterface
|
|
|
|
|
|
|
|
Handle(string, string, ...HandlerFunc) routesInterface
|
|
|
|
Any(string, ...HandlerFunc) routesInterface
|
|
|
|
GET(string, ...HandlerFunc) routesInterface
|
|
|
|
POST(string, ...HandlerFunc) routesInterface
|
|
|
|
DELETE(string, ...HandlerFunc) routesInterface
|
|
|
|
PATCH(string, ...HandlerFunc) routesInterface
|
|
|
|
PUT(string, ...HandlerFunc) routesInterface
|
|
|
|
OPTIONS(string, ...HandlerFunc) routesInterface
|
|
|
|
HEAD(string, ...HandlerFunc) routesInterface
|
|
|
|
|
|
|
|
StaticFile(string, string) routesInterface
|
|
|
|
Static(string, string) routesInterface
|
|
|
|
StaticFS(string, http.FileSystem) routesInterface
|
|
|
|
}
|
|
|
|
|
2014-10-08 23:37:26 +04:00
|
|
|
// Used internally to configure router, a RouterGroup is associated with a prefix
|
|
|
|
// and an array of handlers (middlewares)
|
|
|
|
type RouterGroup struct {
|
2015-05-16 19:08:19 +03:00
|
|
|
Handlers HandlersChain
|
|
|
|
BasePath string
|
|
|
|
engine *Engine
|
2015-06-11 02:02:38 +03:00
|
|
|
root bool
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Adds middlewares to the group, see example code in github.
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) Use(middlewares ...HandlerFunc) routesInterface {
|
2014-10-08 23:37:26 +04:00
|
|
|
group.Handlers = append(group.Handlers, middlewares...)
|
2015-06-11 02:02:38 +03:00
|
|
|
return group.returnObj()
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates a new router group. You should add all the routes that have common middlwares or the same path prefix.
|
|
|
|
// For example, all the routes that use a common middlware for authorization could be grouped.
|
|
|
|
func (group *RouterGroup) Group(relativePath string, handlers ...HandlerFunc) *RouterGroup {
|
|
|
|
return &RouterGroup{
|
2015-05-16 19:08:19 +03:00
|
|
|
Handlers: group.combineHandlers(handlers),
|
|
|
|
BasePath: group.calculateAbsolutePath(relativePath),
|
|
|
|
engine: group.engine,
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle registers a new request handle and middlewares with the given path and method.
|
|
|
|
// The last handler should be the real handler, the other ones should be middlewares that can and should be shared among different routes.
|
|
|
|
// See the example code in github.
|
|
|
|
//
|
|
|
|
// For GET, POST, PUT, PATCH and DELETE requests the respective shortcut
|
|
|
|
// functions can be used.
|
|
|
|
//
|
|
|
|
// This function is intended for bulk loading and to allow the usage of less
|
|
|
|
// frequently used, non-standardized or custom methods (e.g. for internal
|
|
|
|
// communication with a proxy).
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) handle(httpMethod, relativePath string, handlers HandlersChain) routesInterface {
|
2014-10-08 23:37:26 +04:00
|
|
|
absolutePath := group.calculateAbsolutePath(relativePath)
|
|
|
|
handlers = group.combineHandlers(handlers)
|
2015-05-20 00:22:35 +03:00
|
|
|
group.engine.addRoute(httpMethod, absolutePath, handlers)
|
2015-06-11 02:02:38 +03:00
|
|
|
return group.returnObj()
|
2015-05-20 00:22:35 +03:00
|
|
|
}
|
|
|
|
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) Handle(httpMethod, relativePath string, handlers ...HandlerFunc) routesInterface {
|
2015-06-04 05:50:40 +03:00
|
|
|
if matches, err := regexp.MatchString("^[A-Z]+$", httpMethod); !matches || err != nil {
|
|
|
|
panic("http method " + httpMethod + " is not valid")
|
|
|
|
}
|
2015-06-11 02:02:38 +03:00
|
|
|
return group.handle(httpMethod, relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// POST is a shortcut for router.Handle("POST", path, handle)
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) POST(relativePath string, handlers ...HandlerFunc) routesInterface {
|
|
|
|
return group.handle("POST", relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// GET is a shortcut for router.Handle("GET", path, handle)
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) GET(relativePath string, handlers ...HandlerFunc) routesInterface {
|
|
|
|
return group.handle("GET", relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// DELETE is a shortcut for router.Handle("DELETE", path, handle)
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) DELETE(relativePath string, handlers ...HandlerFunc) routesInterface {
|
|
|
|
return group.handle("DELETE", relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// PATCH is a shortcut for router.Handle("PATCH", path, handle)
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) PATCH(relativePath string, handlers ...HandlerFunc) routesInterface {
|
|
|
|
return group.handle("PATCH", relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// PUT is a shortcut for router.Handle("PUT", path, handle)
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) PUT(relativePath string, handlers ...HandlerFunc) routesInterface {
|
|
|
|
return group.handle("PUT", relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// OPTIONS is a shortcut for router.Handle("OPTIONS", path, handle)
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) OPTIONS(relativePath string, handlers ...HandlerFunc) routesInterface {
|
|
|
|
return group.handle("OPTIONS", relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// HEAD is a shortcut for router.Handle("HEAD", path, handle)
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) HEAD(relativePath string, handlers ...HandlerFunc) routesInterface {
|
|
|
|
return group.handle("HEAD", relativePath, handlers)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) Any(relativePath string, handlers ...HandlerFunc) routesInterface {
|
2015-05-20 01:32:06 +03:00
|
|
|
// GET, POST, PUT, PATCH, HEAD, OPTIONS, DELETE, CONNECT, TRACE
|
2015-05-20 00:22:35 +03:00
|
|
|
group.handle("GET", relativePath, handlers)
|
|
|
|
group.handle("POST", relativePath, handlers)
|
|
|
|
group.handle("PUT", relativePath, handlers)
|
|
|
|
group.handle("PATCH", relativePath, handlers)
|
|
|
|
group.handle("HEAD", relativePath, handlers)
|
|
|
|
group.handle("OPTIONS", relativePath, handlers)
|
|
|
|
group.handle("DELETE", relativePath, handlers)
|
|
|
|
group.handle("CONNECT", relativePath, handlers)
|
|
|
|
group.handle("TRACE", relativePath, handlers)
|
2015-06-11 02:02:38 +03:00
|
|
|
return group.returnObj()
|
2015-05-20 00:00:55 +03:00
|
|
|
}
|
|
|
|
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) StaticFile(relativePath, filepath string) routesInterface {
|
2015-05-21 17:59:58 +03:00
|
|
|
if strings.Contains(relativePath, ":") || strings.Contains(relativePath, "*") {
|
|
|
|
panic("URL parameters can not be used when serving a static file")
|
|
|
|
}
|
|
|
|
handler := func(c *Context) {
|
|
|
|
c.File(filepath)
|
|
|
|
}
|
|
|
|
group.GET(relativePath, handler)
|
|
|
|
group.HEAD(relativePath, handler)
|
2015-06-11 02:02:38 +03:00
|
|
|
return group.returnObj()
|
2015-05-21 17:59:58 +03:00
|
|
|
}
|
|
|
|
|
2014-10-08 23:37:26 +04:00
|
|
|
// Static serves files from the given file system root.
|
|
|
|
// Internally a http.FileServer is used, therefore http.NotFound is used instead
|
|
|
|
// of the Router's NotFound handler.
|
|
|
|
// To use the operating system's file system implementation,
|
|
|
|
// use :
|
|
|
|
// router.Static("/static", "/var/www")
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) Static(relativePath, root string) routesInterface {
|
2015-06-10 18:10:34 +03:00
|
|
|
return group.StaticFS(relativePath, Dir(root, false))
|
2015-05-20 11:50:59 +03:00
|
|
|
}
|
|
|
|
|
2015-06-11 02:02:38 +03:00
|
|
|
func (group *RouterGroup) StaticFS(relativePath string, fs http.FileSystem) routesInterface {
|
2015-05-21 18:01:13 +03:00
|
|
|
if strings.Contains(relativePath, ":") || strings.Contains(relativePath, "*") {
|
|
|
|
panic("URL parameters can not be used when serving a static folder")
|
|
|
|
}
|
2015-05-24 17:29:55 +03:00
|
|
|
handler := group.createStaticHandler(relativePath, fs)
|
2015-05-31 16:55:10 +03:00
|
|
|
urlPattern := path.Join(relativePath, "/*filepath")
|
2014-10-09 03:40:42 +04:00
|
|
|
|
|
|
|
// Register GET and HEAD handlers
|
2015-05-31 16:55:10 +03:00
|
|
|
group.GET(urlPattern, handler)
|
|
|
|
group.HEAD(urlPattern, handler)
|
2015-06-11 02:02:38 +03:00
|
|
|
return group.returnObj()
|
2014-10-08 23:49:08 +04:00
|
|
|
}
|
|
|
|
|
2015-05-24 17:29:55 +03:00
|
|
|
func (group *RouterGroup) createStaticHandler(relativePath string, fs http.FileSystem) HandlerFunc {
|
2015-05-16 19:08:19 +03:00
|
|
|
absolutePath := group.calculateAbsolutePath(relativePath)
|
2015-05-20 11:50:59 +03:00
|
|
|
fileServer := http.StripPrefix(absolutePath, http.FileServer(fs))
|
2015-05-24 18:03:44 +03:00
|
|
|
_, nolisting := fs.(*onlyfilesFS)
|
|
|
|
return func(c *Context) {
|
|
|
|
if nolisting {
|
|
|
|
c.Writer.WriteHeader(404)
|
|
|
|
}
|
|
|
|
fileServer.ServeHTTP(c.Writer, c.Request)
|
|
|
|
}
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
2015-05-07 12:30:01 +03:00
|
|
|
func (group *RouterGroup) combineHandlers(handlers HandlersChain) HandlersChain {
|
2014-10-08 23:37:26 +04:00
|
|
|
finalSize := len(group.Handlers) + len(handlers)
|
2015-05-31 19:35:28 +03:00
|
|
|
if finalSize >= int(AbortIndex) {
|
2015-05-31 05:34:21 +03:00
|
|
|
panic("too many handlers")
|
|
|
|
}
|
2015-05-07 12:30:01 +03:00
|
|
|
mergedHandlers := make(HandlersChain, finalSize)
|
2015-04-09 13:15:02 +03:00
|
|
|
copy(mergedHandlers, group.Handlers)
|
|
|
|
copy(mergedHandlers[len(group.Handlers):], handlers)
|
|
|
|
return mergedHandlers
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (group *RouterGroup) calculateAbsolutePath(relativePath string) string {
|
2015-05-16 19:08:19 +03:00
|
|
|
return joinPaths(group.BasePath, relativePath)
|
2014-10-08 23:37:26 +04:00
|
|
|
}
|
2015-06-11 02:02:38 +03:00
|
|
|
|
|
|
|
func (group *RouterGroup) returnObj() routesInterface {
|
|
|
|
if group.root {
|
|
|
|
return group.engine
|
|
|
|
} else {
|
|
|
|
return group
|
|
|
|
}
|
|
|
|
}
|