forked from devfeel/dotweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.go
409 lines (357 loc) · 9.53 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
package dotweb
import (
"encoding/json"
"errors"
"io/ioutil"
"net/http"
"net/url"
"strings"
"fmt"
"github.com/devfeel/dotweb/router"
"github.com/devfeel/dotweb/session"
)
const (
defaultMemory = 32 << 20 // 32 MB
)
type HttpContext struct {
Request *http.Request
RouterParams router.Params
Response *Response
WebSocket *WebSocket
HijackConn *HijackConn
IsWebSocket bool
IsHijack bool
isEnd bool //表示当前处理流程是否需要终止
dotApp *DotWeb
HttpServer *HttpServer
SessionID string
items *ItemContext
}
//reset response attr
func (ctx *HttpContext) Reset(res *Response, r *http.Request, server *HttpServer, params router.Params) {
ctx.Request = r
ctx.Response = res
ctx.RouterParams = params
ctx.IsHijack = false
ctx.IsWebSocket = false
ctx.HttpServer = server
ctx.isEnd = false
ctx.items = NewItemContext()
}
//release all field
func (ctx *HttpContext) release() {
ctx.Request = nil
ctx.Response = nil
ctx.RouterParams = nil
ctx.IsHijack = false
ctx.IsWebSocket = false
ctx.HttpServer = nil
ctx.isEnd = false
ctx.items = nil
}
//get application's global appcontext
//issue #3
func (ctx *HttpContext) AppContext() *ItemContext {
if ctx.HttpServer != nil {
return ctx.HttpServer.DotApp.AppContext
} else {
return NewItemContext()
}
}
//get request's global item context
func (ctx *HttpContext) Items() *ItemContext {
return ctx.items
}
//get session state in current context
func (ctx *HttpContext) Session() (session *session.SessionState) {
if ctx.HttpServer == nil {
//return nil, errors.New("no effective http-server")
panic("no effective http-server")
}
if !ctx.HttpServer.ServerConfig.EnabledSession {
//return nil, errors.New("http-server not enabled session")
panic("http-server not enabled session")
}
state, err := ctx.HttpServer.sessionManager.GetSessionState(ctx.SessionID)
if err != nil {
panic(err.Error())
}
return state
}
//make current connection to hijack mode
func (ctx *HttpContext) Hijack() (*HijackConn, error) {
hj, ok := ctx.Response.Writer().(http.Hijacker)
if !ok {
return nil, errors.New("The Web Server does not support Hijacking! ")
}
conn, bufrw, err := hj.Hijack()
if err != nil {
return nil, errors.New("Hijack error:" + err.Error())
}
ctx.HijackConn = &HijackConn{Conn: conn, ReadWriter: bufrw, header: "HTTP/1.1 200 OK\r\n"}
ctx.IsHijack = true
return ctx.HijackConn, nil
}
//set context user handler process end
//if set HttpContext.End,ignore user handler, but exec all http module - fixed issue #5
func (ctx *HttpContext) End() {
ctx.isEnd = true
}
func (ctx *HttpContext) IsEnd() bool {
return ctx.isEnd
}
//redirect replies to the request with a redirect to url
//default use 301
func (ctx *HttpContext) Redirect(targetUrl string) {
http.Redirect(ctx.Response.Writer(), ctx.Request, targetUrl, http.StatusMovedPermanently)
}
/*
* 返回查询字符串map表示
*/
func (ctx *HttpContext) QueryStrings() url.Values {
return ctx.Request.URL.Query()
}
/*
* 获取原始查询字符串
*/
func (ctx *HttpContext) RawQuery() string {
return ctx.Request.URL.RawQuery
}
/*
* 根据指定key获取对应value
*/
func (ctx *HttpContext) QueryString(key string) string {
return ctx.Request.URL.Query().Get(key)
}
/*
* 根据指定key获取包括在post、put和get内的值
*/
func (ctx *HttpContext) FormValue(key string) string {
return ctx.Request.FormValue(key)
}
func (ctx *HttpContext) FormFile(key string) (*UploadFile, error) {
file, header, err := ctx.Request.FormFile(key)
if err != nil {
return nil, err
} else {
return &UploadFile{
File: file,
Header: header,
}, nil
}
}
/*
* 获取包括post、put和get内的值
*/
func (ctx *HttpContext) FormValues() map[string][]string {
ctx.parseForm()
return map[string][]string(ctx.Request.Form)
}
func (ctx *HttpContext) parseForm() error {
if strings.HasPrefix(ctx.QueryHeader(HeaderContentType), MIMEMultipartForm) {
if err := ctx.Request.ParseMultipartForm(defaultMemory); err != nil {
return err
}
} else {
if err := ctx.Request.ParseForm(); err != nil {
return err
}
}
return nil
}
/*
* 根据指定key获取包括在post、put内的值
*/
func (ctx *HttpContext) PostFormValue(key string) string {
return ctx.Request.PostFormValue(key)
}
/*
* 根据指定key获取包括在post、put内的值
*/
func (ctx *HttpContext) PostString(key string) string {
return ctx.Request.PostFormValue(key)
}
/*
* 获取post提交的字节数组
*/
func (ctx *HttpContext) PostBody() []byte {
bts, err := ioutil.ReadAll(ctx.Request.Body)
if err != nil {
return []byte{}
} else {
return bts
}
}
/*
* 支持Json、Xml、Form提交的属性绑定
*/
func (ctx *HttpContext) Bind(i interface{}) error {
return ctx.HttpServer.Binder().Bind(i, ctx)
}
func (ctx *HttpContext) QueryHeader(key string) string {
return ctx.Request.Header.Get(key)
}
func (ctx *HttpContext) DelHeader(key string) {
ctx.Response.Header().Del(key)
}
//set response header kv info
func (ctx *HttpContext) SetHeader(key, value string) {
if ctx.IsHijack {
ctx.HijackConn.SetHeader(key, value)
} else {
ctx.Response.Header().Set(key, value)
}
}
func (ctx *HttpContext) Url() string {
return ctx.Request.URL.String()
}
func (ctx *HttpContext) ContentType() string {
return ctx.Request.Header.Get(HeaderContentType)
}
func (ctx *HttpContext) GetRouterName(key string) string {
return ctx.RouterParams.ByName(key)
}
// IsAJAX returns if it is a ajax request
func (ctx *HttpContext) IsAJAX() bool {
return ctx.Request.Header.Get(HeaderXRequestedWith) == "XMLHttpRequest"
}
func (ctx *HttpContext) Proto() string {
return ctx.Request.Proto
}
func (ctx *HttpContext) Method() string {
return ctx.Request.Method
}
//RemoteAddr to an "IP" address
func (ctx *HttpContext) RemoteIP() string {
fullIp := ctx.Request.RemoteAddr
s := strings.Split(fullIp, ":")
if len(s) > 1 {
return s[0]
} else {
return fullIp
}
}
//RemoteAddr to an "IP:port" address
func (ctx *HttpContext) FullRemoteIP() string {
fullIp := ctx.Request.RemoteAddr
return fullIp
}
// Referer returns request referer.
//
// The referer is valid until returning from RequestHandler.
func (ctx *HttpContext) Referer() string {
return ctx.Request.Referer()
}
// UserAgent returns User-Agent header value from the request.
func (ctx *HttpContext) UserAgent() string {
return ctx.Request.UserAgent()
}
// Path returns requested path.
//
// The path is valid until returning from RequestHandler.
func (ctx *HttpContext) Path() string {
return ctx.Request.URL.Path
}
// Host returns requested host.
//
// The host is valid until returning from RequestHandler.
func (ctx *HttpContext) Host() string {
return ctx.Request.Host
}
func (ctx *HttpContext) SetContentType(contenttype string) {
ctx.SetHeader(HeaderContentType, contenttype)
}
func (ctx *HttpContext) SetStatusCode(code int) error {
return ctx.Response.WriteHeader(code)
}
// write cookie for domain&name&liveseconds
//
// default path = "/"
// default domain = current domain
// default seconds = 0
func (ctx *HttpContext) WriteCookie(name, value string, seconds int) {
cookie := http.Cookie{Name: name, Value: value, MaxAge: seconds}
http.SetCookie(ctx.Response.Writer(), &cookie)
}
// write cookie with cookie-obj
func (ctx *HttpContext) WriteCookieObj(cookie http.Cookie) {
http.SetCookie(ctx.Response.Writer(), &cookie)
}
// remove cookie for path&name
func (ctx *HttpContext) RemoveCookie(name string) {
cookie := http.Cookie{Name: name, MaxAge: -1}
http.SetCookie(ctx.Response.Writer(), &cookie)
}
// read cookie value for name
func (ctx *HttpContext) ReadCookie(name string) (string, error) {
cookieobj, err := ctx.Request.Cookie(name)
if err != nil {
return "", err
} else {
return cookieobj.Value, nil
}
}
// read cookie object for name
func (ctx *HttpContext) ReadCookieObj(name string) (*http.Cookie, error) {
return ctx.Request.Cookie(name)
}
// write string content to response
func (ctx *HttpContext) WriteString(contents ...interface{}) (int, error) {
content := fmt.Sprint(contents...)
if ctx.IsHijack {
return ctx.HijackConn.WriteString(content)
} else {
return ctx.Response.Write([]byte(content))
}
}
// write []byte content to response
func (ctx *HttpContext) WriteBlob(contentType string, b []byte) (int, error) {
if contentType != "" {
ctx.SetContentType(contentType)
}
if ctx.IsHijack {
return ctx.HijackConn.WriteBlob(b)
} else {
return ctx.Response.Write(b)
}
}
// write json string to response
//
// auto convert interface{} to json string
func (ctx *HttpContext) WriteJson(i interface{}) (int, error) {
b, err := json.Marshal(i)
if err != nil {
return 0, err
}
return ctx.WriteJsonBlob(b)
}
// write json string as []byte to response
func (ctx *HttpContext) WriteJsonBlob(b []byte) (int, error) {
return ctx.WriteBlob(MIMEApplicationJSONCharsetUTF8, b)
}
// write jsonp string to response
func (ctx *HttpContext) WriteJsonp(callback string, i interface{}) (int, error) {
b, err := json.Marshal(i)
if err != nil {
return 0, err
}
return ctx.WriteJsonpBlob(callback, b)
}
// write jsonp string as []byte to response
func (ctx *HttpContext) WriteJsonpBlob(callback string, b []byte) (size int, err error) {
ctx.SetContentType(MIMEApplicationJavaScriptCharsetUTF8)
//特殊处理,如果为hijack,需要先行WriteBlob头部
if ctx.IsHijack {
if size, err = ctx.HijackConn.WriteBlob([]byte(ctx.HijackConn.header + "\r\n")); err != nil {
return
}
}
if size, err = ctx.WriteBlob("", []byte(callback+"(")); err != nil {
return
}
if size, err = ctx.WriteBlob("", b); err != nil {
return
}
size, err = ctx.WriteBlob("", []byte(");"))
return
}