2015-03-27 23:35:15 +02:00
|
|
|
package echo
|
|
|
|
|
|
|
|
import (
|
2015-04-15 19:10:05 +02:00
|
|
|
"encoding/json"
|
2015-04-03 05:18:34 +02:00
|
|
|
"errors"
|
2015-04-07 22:02:23 +02:00
|
|
|
"io"
|
2015-03-27 23:35:15 +02:00
|
|
|
"log"
|
|
|
|
"net/http"
|
2015-04-15 19:10:05 +02:00
|
|
|
"strings"
|
2015-03-27 23:35:15 +02:00
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
Echo struct {
|
2015-04-06 00:30:03 +02:00
|
|
|
Router *router
|
|
|
|
prefix string
|
|
|
|
middleware []MiddlewareFunc
|
|
|
|
maxParam byte
|
|
|
|
notFoundHandler HandlerFunc
|
2015-04-15 19:10:05 +02:00
|
|
|
binder BindFunc
|
2015-04-09 23:59:31 +02:00
|
|
|
renderer Renderer
|
2015-04-06 00:30:03 +02:00
|
|
|
pool sync.Pool
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
Middleware interface{}
|
|
|
|
MiddlewareFunc func(HandlerFunc) HandlerFunc
|
2015-04-02 14:02:52 +02:00
|
|
|
Handler interface{}
|
|
|
|
HandlerFunc func(*Context)
|
2015-04-15 19:10:05 +02:00
|
|
|
BindFunc func(r *http.Request, v interface{}) error
|
|
|
|
|
|
|
|
// Renderer is the interface that wraps the Render method.
|
|
|
|
//
|
|
|
|
// Render renders the HTML template with given name and specified data.
|
|
|
|
// It writes the output to w.
|
|
|
|
Renderer interface {
|
|
|
|
Render(w io.Writer, name string, data interface{}) error
|
2015-04-09 23:59:31 +02:00
|
|
|
}
|
2015-03-27 23:35:15 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-04-06 06:49:55 +02:00
|
|
|
CONNECT = "CONNECT"
|
|
|
|
DELETE = "DELETE"
|
|
|
|
GET = "GET"
|
|
|
|
HEAD = "HEAD"
|
|
|
|
OPTIONS = "OPTIONS"
|
|
|
|
PATCH = "PATCH"
|
|
|
|
POST = "POST"
|
|
|
|
PUT = "PUT"
|
|
|
|
TRACE = "TRACE"
|
2015-04-01 17:05:54 +02:00
|
|
|
|
2015-04-04 00:40:36 +02:00
|
|
|
MIMEJSON = "application/json"
|
|
|
|
MIMEText = "text/plain"
|
2015-04-06 16:52:00 +02:00
|
|
|
MIMEHTML = "text/html"
|
2015-04-04 00:40:36 +02:00
|
|
|
MIMEForm = "application/x-www-form-urlencoded"
|
|
|
|
MIMEMultipartForm = "multipart/form-data"
|
2015-03-27 23:35:15 +02:00
|
|
|
|
|
|
|
HeaderAccept = "Accept"
|
|
|
|
HeaderContentDisposition = "Content-Disposition"
|
|
|
|
HeaderContentLength = "Content-Length"
|
|
|
|
HeaderContentType = "Content-Type"
|
|
|
|
)
|
|
|
|
|
2015-04-01 17:05:54 +02:00
|
|
|
var (
|
2015-04-02 14:02:52 +02:00
|
|
|
methods = [...]string{
|
2015-04-06 06:49:55 +02:00
|
|
|
CONNECT,
|
|
|
|
DELETE,
|
|
|
|
GET,
|
|
|
|
HEAD,
|
|
|
|
OPTIONS,
|
|
|
|
PATCH,
|
|
|
|
POST,
|
|
|
|
PUT,
|
|
|
|
TRACE,
|
2015-04-01 17:05:54 +02:00
|
|
|
}
|
2015-04-03 05:18:34 +02:00
|
|
|
|
|
|
|
// Errors
|
2015-04-05 23:21:03 +02:00
|
|
|
ErrUnsupportedMediaType = errors.New("echo: unsupported media type")
|
2015-04-11 06:48:26 +02:00
|
|
|
ErrNoRenderer = errors.New("echo: renderer not registered")
|
2015-04-01 17:05:54 +02:00
|
|
|
)
|
|
|
|
|
2015-04-06 05:08:52 +02:00
|
|
|
// New creates an Echo instance.
|
2015-03-30 08:35:08 +02:00
|
|
|
func New() (e *Echo) {
|
|
|
|
e = &Echo{
|
2015-03-27 23:35:15 +02:00
|
|
|
maxParam: 5,
|
|
|
|
notFoundHandler: func(c *Context) {
|
|
|
|
http.Error(c.Response, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
|
|
},
|
2015-04-15 19:10:05 +02:00
|
|
|
binder: func(r *http.Request, v interface{}) error {
|
|
|
|
ct := r.Header.Get(HeaderContentType)
|
|
|
|
if strings.HasPrefix(ct, MIMEJSON) {
|
|
|
|
return json.NewDecoder(r.Body).Decode(v)
|
|
|
|
} else if strings.HasPrefix(ct, MIMEForm) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return ErrUnsupportedMediaType
|
|
|
|
},
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
2015-03-30 08:35:08 +02:00
|
|
|
e.Router = NewRouter(e)
|
|
|
|
e.pool.New = func() interface{} {
|
2015-03-27 23:35:15 +02:00
|
|
|
return &Context{
|
|
|
|
Response: &response{},
|
2015-03-30 08:35:08 +02:00
|
|
|
params: make(Params, e.maxParam),
|
2015-03-27 23:35:15 +02:00
|
|
|
store: make(store),
|
2015-04-02 23:41:36 +02:00
|
|
|
echo: e, // TODO: Do we need this?
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOP
|
2015-04-02 14:02:52 +02:00
|
|
|
func (h HandlerFunc) ServeHTTP(http.ResponseWriter, *http.Request) {
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
2015-04-07 22:43:52 +02:00
|
|
|
// Group creates a new sub router with prefix and inherits all properties from
|
|
|
|
// the parent. Passing middleware overrides parent middleware.
|
2015-04-07 22:02:23 +02:00
|
|
|
func (e *Echo) Group(pfx string, m ...Middleware) *Echo {
|
2015-04-03 00:15:09 +02:00
|
|
|
g := *e
|
|
|
|
g.prefix = pfx
|
2015-04-07 22:02:23 +02:00
|
|
|
if len(m) > 0 {
|
|
|
|
g.middleware = nil
|
|
|
|
g.Use(m...)
|
|
|
|
}
|
2015-04-03 00:15:09 +02:00
|
|
|
return &g
|
2015-04-02 14:02:52 +02:00
|
|
|
}
|
2015-03-27 23:35:15 +02:00
|
|
|
|
|
|
|
// MaxParam sets the maximum allowed path parameters. Default is 5, good enough
|
|
|
|
// for many users.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) MaxParam(n uint8) {
|
|
|
|
e.maxParam = n
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
2015-04-11 06:48:26 +02:00
|
|
|
// NotFoundHandler registers a custom NotFound handler.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) NotFoundHandler(h Handler) {
|
|
|
|
e.notFoundHandler = wrapH(h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
2015-04-15 19:10:05 +02:00
|
|
|
// Binder registers a custom binder. It's invoked by Context.Bind API.
|
|
|
|
func (e *Echo) Binder(b BindFunc) {
|
|
|
|
e.binder = b
|
|
|
|
}
|
|
|
|
|
|
|
|
// Renderer registers an HTML template renderer. It's invoked by Context.Render
|
|
|
|
// API.
|
2015-04-09 23:59:31 +02:00
|
|
|
func (e *Echo) Renderer(r Renderer) {
|
|
|
|
e.renderer = r
|
2015-04-08 02:34:00 +02:00
|
|
|
}
|
|
|
|
|
2015-03-27 23:35:15 +02:00
|
|
|
// Use adds handler to the middleware chain.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Use(m ...Middleware) {
|
2015-03-27 23:35:15 +02:00
|
|
|
for _, h := range m {
|
2015-03-30 08:35:08 +02:00
|
|
|
e.middleware = append(e.middleware, wrapM(h))
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect adds a CONNECT route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Connect(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(CONNECT, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete adds a DELETE route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Delete(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(DELETE, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get adds a GET route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Get(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(GET, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Head adds a HEAD route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Head(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(HEAD, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Options adds an OPTIONS route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Options(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(OPTIONS, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Patch adds a PATCH route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Patch(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(PATCH, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Post adds a POST route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Post(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(POST, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Put adds a PUT route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Put(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(PUT, path, h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Trace adds a TRACE route > handler to the router.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Trace(path string, h Handler) {
|
2015-04-06 06:49:55 +02:00
|
|
|
e.add(TRACE, path, h)
|
2015-04-02 14:02:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Echo) add(method, path string, h Handler) {
|
2015-04-02 23:41:36 +02:00
|
|
|
e.Router.Add(method, e.prefix+path, wrapH(h), e)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Static serves static files.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Static(path, root string) {
|
2015-03-27 23:35:15 +02:00
|
|
|
fs := http.StripPrefix(path, http.FileServer(http.Dir(root)))
|
2015-03-30 08:35:08 +02:00
|
|
|
e.Get(path+"/*", func(c *Context) {
|
2015-03-27 23:35:15 +02:00
|
|
|
fs.ServeHTTP(c.Response, c.Request)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServeFile serves a file.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) ServeFile(path, file string) {
|
|
|
|
e.Get(path, func(c *Context) {
|
2015-03-27 23:35:15 +02:00
|
|
|
http.ServeFile(c.Response, c.Request, file)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Index serves index file.
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Index(file string) {
|
|
|
|
e.ServeFile("/", file)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
2015-04-07 22:02:23 +02:00
|
|
|
func (e *Echo) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2015-04-09 23:59:31 +02:00
|
|
|
c := e.pool.Get().(*Context)
|
|
|
|
h, echo := e.Router.Find(r.Method, r.URL.Path, c.params)
|
2015-04-03 00:15:09 +02:00
|
|
|
if echo != nil {
|
|
|
|
e = echo
|
|
|
|
}
|
2015-04-02 14:02:52 +02:00
|
|
|
if h == nil {
|
|
|
|
h = e.notFoundHandler
|
|
|
|
}
|
2015-04-07 22:02:23 +02:00
|
|
|
c.reset(w, r, e)
|
2015-04-02 14:02:52 +02:00
|
|
|
// Middleware
|
|
|
|
for i := len(e.middleware) - 1; i >= 0; i-- {
|
|
|
|
h = e.middleware[i](h)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
2015-04-02 14:02:52 +02:00
|
|
|
// Handler
|
|
|
|
h(c)
|
2015-04-09 07:23:47 +02:00
|
|
|
e.pool.Put(c)
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
2015-04-03 14:24:47 +02:00
|
|
|
// Run a server
|
2015-03-30 08:35:08 +02:00
|
|
|
func (e *Echo) Run(addr string) {
|
|
|
|
log.Fatal(http.ListenAndServe(addr, e))
|
2015-03-27 23:35:15 +02:00
|
|
|
}
|
|
|
|
|
2015-04-03 14:24:47 +02:00
|
|
|
// RunTLS a server
|
|
|
|
func (e *Echo) RunTLS(addr, certFile, keyFile string) {
|
|
|
|
log.Fatal(http.ListenAndServeTLS(addr, certFile, keyFile, e))
|
|
|
|
}
|
|
|
|
|
|
|
|
// RunServer runs a custom server
|
|
|
|
func (e *Echo) RunServer(server *http.Server) {
|
|
|
|
server.Handler = e
|
|
|
|
log.Fatal(server.ListenAndServe())
|
|
|
|
}
|
|
|
|
|
|
|
|
// RunTLSServer runs a custom server with TLS configuration
|
|
|
|
func (e *Echo) RunTLSServer(server *http.Server, certFile, keyFile string) {
|
|
|
|
server.Handler = e
|
|
|
|
log.Fatal(server.ListenAndServeTLS(certFile, keyFile))
|
|
|
|
}
|
|
|
|
|
2015-03-27 23:35:15 +02:00
|
|
|
// wraps Middleware
|
|
|
|
func wrapM(m Middleware) MiddlewareFunc {
|
|
|
|
switch m := m.(type) {
|
2015-03-30 08:35:08 +02:00
|
|
|
case func(*Context):
|
|
|
|
return func(h HandlerFunc) HandlerFunc {
|
|
|
|
return func(c *Context) {
|
|
|
|
m(c)
|
|
|
|
h(c)
|
|
|
|
}
|
|
|
|
}
|
2015-03-27 23:35:15 +02:00
|
|
|
case func(HandlerFunc) HandlerFunc:
|
|
|
|
return MiddlewareFunc(m)
|
2015-03-30 08:35:08 +02:00
|
|
|
case func(http.Handler) http.Handler:
|
|
|
|
return func(h HandlerFunc) HandlerFunc {
|
|
|
|
return func(c *Context) {
|
|
|
|
m(h).ServeHTTP(c.Response, c.Request)
|
|
|
|
h(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case http.Handler, http.HandlerFunc:
|
2015-03-27 23:35:15 +02:00
|
|
|
return func(h HandlerFunc) HandlerFunc {
|
|
|
|
return func(c *Context) {
|
|
|
|
m.(http.Handler).ServeHTTP(c.Response, c.Request)
|
|
|
|
h(c)
|
|
|
|
}
|
|
|
|
}
|
2015-03-30 08:35:08 +02:00
|
|
|
case func(http.ResponseWriter, *http.Request):
|
2015-03-27 23:35:15 +02:00
|
|
|
return func(h HandlerFunc) HandlerFunc {
|
|
|
|
return func(c *Context) {
|
2015-03-30 08:35:08 +02:00
|
|
|
m(c.Response, c.Request)
|
2015-03-27 23:35:15 +02:00
|
|
|
h(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
panic("echo: unknown middleware")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// wraps Handler
|
|
|
|
func wrapH(h Handler) HandlerFunc {
|
|
|
|
switch h := h.(type) {
|
|
|
|
case func(*Context):
|
|
|
|
return HandlerFunc(h)
|
2015-03-30 08:35:08 +02:00
|
|
|
case http.Handler, http.HandlerFunc:
|
2015-03-27 23:35:15 +02:00
|
|
|
return func(c *Context) {
|
|
|
|
h.(http.Handler).ServeHTTP(c.Response, c.Request)
|
|
|
|
}
|
2015-03-30 08:35:08 +02:00
|
|
|
case func(http.ResponseWriter, *http.Request):
|
|
|
|
return func(c *Context) {
|
|
|
|
h(c.Response, c.Request)
|
|
|
|
}
|
2015-03-27 23:35:15 +02:00
|
|
|
default:
|
|
|
|
panic("echo: unknown handler")
|
|
|
|
}
|
|
|
|
}
|