-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext.go
143 lines (122 loc) · 3.11 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package http
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"sync"
)
type Context struct {
Request *http.Request
ResponseWriter http.ResponseWriter
MetaData map[string]interface{}
handlerIndex int
handlerChain []HandlerFunc
ManuResponse bool
HasResponse bool
Response []byte
HttpStatus int
ContentType string
RedirectLocation string
metaInternal *sync.Map
body []byte
hasReadBody bool
}
func newContext(w http.ResponseWriter, req *http.Request) *Context {
c := &Context{
Request: req,
ResponseWriter: w,
MetaData: make(map[string]interface{}),
metaInternal: new(sync.Map),
}
return c
}
func (this *Context) Body() []byte {
if !this.hasReadBody {
body, _ := ioutil.ReadAll(this.Request.Body)
this.hasReadBody = true
this.body = body
}
return this.body
}
func (this *Context) Path() string {
return this.Request.URL.Path
}
func (this *Context) Query(key string) (string, bool) {
if values := this.QueryArray(key); len(values) > 0 {
return values[0], true
}
return "", false
}
func (this *Context) QueryDefault(key string, defaultValue string) string {
if values := this.QueryArray(key); len(values) > 0 {
return values[0]
}
return defaultValue
}
func (this *Context) QueryArray(key string) []string {
if values, ok := this.Request.URL.Query()[key]; ok && len(values) > 0 {
return values
}
return []string{}
}
func (this *Context) Set(key string, value interface{}) {
this.MetaData[key] = value
}
func (this *Context) Get(key string) (value interface{}, exists bool) {
value, exists = this.MetaData[key]
return
}
func (this *Context) MustGet(key string) (value interface{}) {
value, _ = this.MetaData[key]
return
}
func (this *Context) Next() {
this.handlerIndex++
if this.handlerIndex < len(this.handlerChain) {
processHandlerFunc(this.handlerChain[this.handlerIndex], this)
}
}
func (this *Context) Text(msg ...interface{}) {
this.HasResponse = true
this.HttpStatus = 200
this.ContentType = "text/plain;charset=UTF-8"
out := []byte(fmt.Sprint(msg...))
this.Response = out
}
func (this *Context) Json(data interface{}) {
this.HasResponse = true
this.HttpStatus = 200
this.ContentType = "text/json;charset=UTF-8"
out, _ := json.Marshal(data)
this.Response = out
}
func (this *Context) DieWithHttpStatus(status int) {
this.HasResponse = true
this.HttpStatus = status
this.ContentType = "text/plain;charset=UTF-8"
}
func (this *Context) Redirect(status int, location string) {
this.HasResponse = true
if status < 300 || status > 308 {
status = 302
}
this.RedirectLocation = location
this.HttpStatus = status
this.ContentType = "text/plain;charset=UTF-8"
}
func (this *Context) response() {
if this.ManuResponse {
return
}
if this.ContentType != "" {
this.ResponseWriter.Header().Add("Content-Type", this.ContentType)
}
if this.HttpStatus >= 300 && this.HttpStatus <= 308 {
http.Redirect(this.ResponseWriter, this.Request, this.RedirectLocation, this.HttpStatus)
} else if this.HttpStatus == 200 {
this.ResponseWriter.Write(this.Response)
} else {
this.ResponseWriter.WriteHeader(this.HttpStatus)
}
}