2015-03-27 14:21:30 -07:00
|
|
|
package echo
|
2015-03-01 09:45:13 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
2015-03-14 16:26:44 -07:00
|
|
|
// Context represents context for the current request. It holds request and
|
2015-04-05 14:21:03 -07:00
|
|
|
// response references, path parameters, data and registered handler.
|
2015-03-01 09:45:13 -08:00
|
|
|
Context struct {
|
2015-03-02 10:19:30 -08:00
|
|
|
Request *http.Request
|
2015-03-05 20:46:17 -08:00
|
|
|
Response *response
|
2015-03-02 10:19:30 -08:00
|
|
|
params Params
|
2015-04-05 14:21:03 -07:00
|
|
|
store store
|
2015-03-27 14:21:30 -07:00
|
|
|
echo *Echo
|
2015-03-01 09:45:13 -08:00
|
|
|
}
|
|
|
|
store map[string]interface{}
|
|
|
|
)
|
|
|
|
|
2015-03-14 16:26:44 -07:00
|
|
|
// P returns path parameter by index.
|
2015-03-01 09:45:13 -08:00
|
|
|
func (c *Context) P(i uint8) string {
|
|
|
|
return c.params[i].Value
|
|
|
|
}
|
|
|
|
|
2015-03-14 16:26:44 -07:00
|
|
|
// Param returns path parameter by name.
|
2015-04-05 20:08:52 -07:00
|
|
|
func (c *Context) Param(name string) (value string) {
|
|
|
|
for _, p := range c.params {
|
|
|
|
if p.Name == name {
|
|
|
|
value = p.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
2015-03-01 09:45:13 -08:00
|
|
|
}
|
|
|
|
|
2015-04-15 10:10:05 -07:00
|
|
|
// Bind binds the request body into specified type v. Default binder does it
|
|
|
|
// based on Content-Type header.
|
2015-04-07 13:02:23 -07:00
|
|
|
func (c *Context) Bind(v interface{}) error {
|
2015-04-15 10:10:05 -07:00
|
|
|
return c.echo.binder(c.Request, v)
|
2015-03-01 09:45:13 -08:00
|
|
|
}
|
|
|
|
|
2015-04-15 10:10:05 -07:00
|
|
|
// Render invokes the registered HTML template renderer and sends a text/html
|
2015-04-18 16:47:48 -07:00
|
|
|
// response with status code.
|
|
|
|
func (c *Context) Render(code int, name string, data interface{}) error {
|
2015-04-10 21:48:26 -07:00
|
|
|
if c.echo.renderer == nil {
|
|
|
|
return ErrNoRenderer
|
|
|
|
}
|
2015-04-07 13:02:23 -07:00
|
|
|
c.Response.Header().Set(HeaderContentType, MIMEHTML+"; charset=utf-8")
|
2015-04-18 16:47:48 -07:00
|
|
|
c.Response.WriteHeader(code)
|
2015-04-09 14:59:31 -07:00
|
|
|
return c.echo.renderer.Render(c.Response, name, data)
|
2015-03-29 23:35:08 -07:00
|
|
|
}
|
|
|
|
|
2015-03-30 07:38:53 -07:00
|
|
|
// JSON sends an application/json response with status code.
|
2015-04-07 13:02:23 -07:00
|
|
|
func (c *Context) JSON(code int, v interface{}) error {
|
2015-03-08 23:58:10 -07:00
|
|
|
c.Response.Header().Set(HeaderContentType, MIMEJSON+"; charset=utf-8")
|
2015-04-05 14:21:03 -07:00
|
|
|
c.Response.WriteHeader(code)
|
2015-04-07 13:02:23 -07:00
|
|
|
return json.NewEncoder(c.Response).Encode(v)
|
2015-04-05 14:21:03 -07:00
|
|
|
}
|
|
|
|
|
2015-04-06 07:52:00 -07:00
|
|
|
// String sends a text/plain response with status code.
|
|
|
|
func (c *Context) String(code int, s string) (err error) {
|
2015-04-05 14:21:03 -07:00
|
|
|
c.Response.Header().Set(HeaderContentType, MIMEText+"; charset=utf-8")
|
|
|
|
c.Response.WriteHeader(code)
|
|
|
|
_, err = c.Response.Write([]byte(s))
|
2015-04-02 20:18:34 -07:00
|
|
|
return
|
2015-03-01 09:45:13 -08:00
|
|
|
}
|
|
|
|
|
2015-04-07 13:02:23 -07:00
|
|
|
// HTML sends a text/html response with status code.
|
|
|
|
func (c *Context) HTML(code int, html string) (err error) {
|
2015-04-05 14:21:03 -07:00
|
|
|
c.Response.Header().Set(HeaderContentType, MIMEHTML+"; charset=utf-8")
|
|
|
|
c.Response.WriteHeader(code)
|
|
|
|
_, err = c.Response.Write([]byte(html))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-04-18 16:47:48 -07:00
|
|
|
// NoContent sends a response with no body and a status code.
|
|
|
|
func (c *Context) NoContent(code int) error {
|
|
|
|
c.Response.WriteHeader(code)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-19 16:00:23 -07:00
|
|
|
// Error invokes the registered HTTP error handler.
|
|
|
|
func (c *Context) Error(err error) {
|
|
|
|
c.echo.httpErrorHandler(err, c)
|
|
|
|
}
|
2015-03-08 23:58:10 -07:00
|
|
|
|
2015-03-14 16:26:44 -07:00
|
|
|
// Get retrieves data from the context.
|
2015-03-01 09:45:13 -08:00
|
|
|
func (c *Context) Get(key string) interface{} {
|
|
|
|
return c.store[key]
|
|
|
|
}
|
|
|
|
|
2015-03-14 16:26:44 -07:00
|
|
|
// Set saves data in the context.
|
2015-03-01 09:45:13 -08:00
|
|
|
func (c *Context) Set(key string, val interface{}) {
|
|
|
|
c.store[key] = val
|
|
|
|
}
|
2015-03-05 20:46:17 -08:00
|
|
|
|
2015-03-30 07:38:53 -07:00
|
|
|
// Redirect redirects the request using http.Redirect with status code.
|
2015-04-05 14:21:03 -07:00
|
|
|
func (c *Context) Redirect(code int, url string) {
|
|
|
|
http.Redirect(c.Response, c.Request, url, code)
|
2015-03-05 20:46:17 -08:00
|
|
|
}
|
2015-03-06 11:12:33 -08:00
|
|
|
|
2015-04-07 13:02:23 -07:00
|
|
|
func (c *Context) reset(w http.ResponseWriter, r *http.Request, e *Echo) {
|
|
|
|
c.Response.reset(w)
|
2015-03-06 11:12:33 -08:00
|
|
|
c.Request = r
|
2015-04-02 05:02:52 -07:00
|
|
|
c.echo = e
|
2015-03-06 11:12:33 -08:00
|
|
|
}
|