-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.go
129 lines (105 loc) · 2.3 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package blue
import (
"encoding/json"
"io"
"mime/multipart"
"net/http"
"os"
)
type C map[string]interface{}
type Context struct {
Request *http.Request
ResponseWriter http.ResponseWriter
Params Params
engine *Engine
index int
handlers []HandlerFunc
parsed bool
}
func (c *Context) Json(status int, data interface{}) {
jsonBytes, err := json.Marshal(data)
if err != nil {
DebugLog(err)
}
c.ResponseWriter.Write(jsonBytes)
c.ResponseWriter.WriteHeader(status)
}
func (c *Context) String(status int, s string) {
c.ResponseWriter.Write([]byte(s))
c.ResponseWriter.WriteHeader(status)
}
func (c *Context) Param(key string) string {
for _, p := range c.Params {
if p.Key == key {
return p.Value
}
}
return ""
}
func (c *Context) Get(key string) string {
return c.GetDefault(key, "")
}
func (c *Context) Post(key string) string {
return c.PostDefault(key, "")
}
func (c *Context) GetDefault(key string, defaultValue string) string {
values := c.GetArray(key)
if len(values) == 0 {
return defaultValue
}
return values[0]
}
func (c *Context) GetArray(key string) []string {
//这里每次都要Query()解析一下 稍后可以优化
if values, ok := c.Request.URL.Query()[key]; ok && len(values) > 0 { //len(values)这里注意下
return values
}
return []string{}
}
func (c *Context) PostDefault(key string, defaultValue string) string {
values := c.PostArray(key)
if len(values) == 0 {
return defaultValue
}
return values[0]
}
func (c *Context) PostArray(key string) []string {
c.parseForm()
if values, ok := c.Request.PostForm[key]; ok {
return values
}
return []string{}
}
func (c *Context) parseForm() {
if !c.parsed {
c.Request.ParseForm()
}
}
func (c *Context) FormFile(file string) (*multipart.FileHeader, error) {
_, fh, err := c.Request.FormFile(file)
return fh, err
}
func (c *Context) SaveUploadedFile(fh *multipart.FileHeader, dst string) error {
s, err := fh.Open()
if err != nil {
return err
}
defer s.Close()
d, err := os.Create(dst)
if err != nil {
return err
}
defer d.Close()
_, err = io.Copy(d, s)
if err != nil {
return err
}
return nil
}
/**************flowcontrol************************/
func (c *Context) Next() {
c.index++
if c.index < len(c.handlers) {
c.handlers[c.index](c)
}
}