1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00
echo/context.go
Vishal Rana 0a075ce7c5 Fixed catch all param
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-04-26 09:48:49 -07:00

113 lines
2.9 KiB
Go

package echo
import (
"encoding/json"
"net/http"
)
type (
// Context represents context for the current request. It holds request and
// response references, path parameters, data and registered handler.
Context struct {
Request *http.Request
Response *response
pnames []string
pvalues []string
store store
echo *Echo
}
store map[string]interface{}
)
// P returns path parameter by index.
func (c *Context) P(i int) (value string) {
if i <= len(c.pnames) {
value = c.pvalues[i]
}
return
}
// Param returns path parameter by name.
func (c *Context) Param(name string) (value string) {
l := len(c.pnames)
for i, n := range c.pnames {
if n == name && i <= l {
value = c.pvalues[i]
break
}
}
return
}
// Bind binds the request body into specified type v. Default binder does it
// based on Content-Type header.
func (c *Context) Bind(v interface{}) error {
return c.echo.binder(c.Request, v)
}
// Render invokes the registered HTML template renderer and sends a text/html
// response with status code.
func (c *Context) Render(code int, name string, data interface{}) error {
if c.echo.renderer == nil {
return RendererNotRegistered
}
c.Response.Header().Set(HeaderContentType, MIMEHTML+"; charset=utf-8")
c.Response.WriteHeader(code)
return c.echo.renderer.Render(c.Response, name, data)
}
// JSON sends an application/json response with status code.
func (c *Context) JSON(code int, v interface{}) error {
c.Response.Header().Set(HeaderContentType, MIMEJSON+"; charset=utf-8")
c.Response.WriteHeader(code)
return json.NewEncoder(c.Response).Encode(v)
}
// String sends a text/plain response with status code.
func (c *Context) String(code int, s string) (err error) {
c.Response.Header().Set(HeaderContentType, MIMEText+"; charset=utf-8")
c.Response.WriteHeader(code)
_, err = c.Response.Write([]byte(s))
return
}
// HTML sends a text/html response with status code.
func (c *Context) HTML(code int, html string) (err error) {
c.Response.Header().Set(HeaderContentType, MIMEHTML+"; charset=utf-8")
c.Response.WriteHeader(code)
_, err = c.Response.Write([]byte(html))
return
}
// NoContent sends a response with no body and a status code.
func (c *Context) NoContent(code int) error {
c.Response.WriteHeader(code)
return nil
}
// Error invokes the registered HTTP error handler.
func (c *Context) Error(code int, err error) {
c.echo.httpErrorHandler(code, err, c)
}
// Get retrieves data from the context.
func (c *Context) Get(key string) interface{} {
return c.store[key]
}
// Set saves data in the context.
func (c *Context) Set(key string, val interface{}) {
c.store[key] = val
}
// Redirect redirects the request using http.Redirect with status code.
func (c *Context) Redirect(code int, url string) {
http.Redirect(c.Response, c.Request, url, code)
}
func (c *Context) reset(w http.ResponseWriter, r *http.Request, e *Echo) {
c.Response.reset(w)
c.Request = r
c.echo = e
}