forked from labstack/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.go
87 lines (75 loc) · 2.09 KB
/
context.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package echo
import (
"encoding/json"
"net/http"
"strings"
)
type (
// Context represents context for the current request. It holds request and
// response references, path parameters, data and registered handler for
// the route.
Context struct {
Request *http.Request
Response *response
params Params
store map[string]interface{}
echo *Echo
}
store map[string]interface{}
)
// P returns path parameter by index.
func (c *Context) P(i uint8) string {
return c.params[i].Value
}
// Param returns path parameter by name.
func (c *Context) Param(n string) string {
return c.params.Get(n)
}
// Bind decodes the payload into provided type based on Content-Type header.
func (c *Context) Bind(i interface{}) (err error) {
ct := c.Request.Header.Get(HeaderContentType)
if strings.HasPrefix(ct, MIMEJSON) {
dec := json.NewDecoder(c.Request.Body)
if err = dec.Decode(i); err != nil {
err = ErrBindJSON
}
} else {
err = ErrUnsupportedContentType
}
return
}
// String sends a text/plain response with status code.
func (c *Context) String(n int, s string) {
c.Response.Header().Set(HeaderContentType, MIMEText+"; charset=utf-8")
c.Response.WriteHeader(n)
c.Response.Write([]byte(s))
}
// JSON sends an application/json response with status code.
func (c *Context) JSON(n int, i interface{}) (err error) {
enc := json.NewEncoder(c.Response)
c.Response.Header().Set(HeaderContentType, MIMEJSON+"; charset=utf-8")
c.Response.WriteHeader(n)
if err := enc.Encode(i); err != nil {
err = ErrRenderJSON
}
return
}
// func (c *Context) File(n int, file, name string) {
// }
// 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(n int, url string) {
http.Redirect(c.Response, c.Request, url, n)
}
func (c *Context) reset(rw http.ResponseWriter, r *http.Request, e *Echo) {
c.Response.reset(rw)
c.Request = r
c.echo = e
}