forked from devfeel/dotweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.go
More file actions
440 lines (387 loc) · 11.7 KB
/
context.go
File metadata and controls
440 lines (387 loc) · 11.7 KB
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
package dotweb
import (
"encoding/json"
"errors"
"net/http"
"net/url"
"fmt"
"github.com/devfeel/dotweb/cache"
"github.com/devfeel/dotweb/core"
"github.com/devfeel/dotweb/session"
"time"
)
const (
defaultMemory = 32 << 20 // 32 MB
defaultHttpCode = http.StatusOK
)
type (
Context interface {
HttpServer() *HttpServer
Response() *Response
Request() *Request
WebSocket() *WebSocket
HijackConn() *HijackConn
RouterNode() RouterNode
RouterParams() Params
Handler() HttpHandle
AppContext() *core.ItemContext
Cache() cache.Cache
Items() *core.ItemContext
AppSetConfig() *core.ItemContext
ViewData() *core.ItemContext
SessionID() string
Session() (state *session.SessionState)
Hijack() (*HijackConn, error)
IsHijack() bool
IsWebSocket() bool
End()
IsEnd() bool
Redirect(code int, targetUrl string) error
QueryString(key string) string
FormValue(key string) string
PostFormValue(key string) string
Bind(i interface{}) error
GetRouterName(key string) string
RemoteIP() string
SetCookieValue(name, value string, maxAge int)
SetCookie(cookie *http.Cookie)
RemoveCookie(name string)
ReadCookieValue(name string) (string, error)
ReadCookie(name string) (*http.Cookie, error)
View(name string) error
ViewC(code int, name string) error
Write(code int, content []byte) (int, error)
WriteString(contents ...interface{}) (int, error)
WriteStringC(code int, contents ...interface{}) (int, error)
WriteBlob(contentType string, b []byte) (int, error)
WriteBlobC(code int, contentType string, b []byte) (int, error)
WriteJson(i interface{}) (int, error)
WriteJsonC(code int, i interface{}) (int, error)
WriteJsonBlob(b []byte) (int, error)
WriteJsonBlobC(code int, b []byte) (int, error)
WriteJsonp(callback string, i interface{}) (int, error)
WriteJsonpBlob(callback string, b []byte) (size int, err error)
}
HttpContext struct {
request *Request
routerNode RouterNode
routerParams Params
response *Response
webSocket *WebSocket
hijackConn *HijackConn
isWebSocket bool
isHijack bool
isEnd bool //表示当前处理流程是否需要终止
httpServer *HttpServer
sessionID string
items *core.ItemContext
viewData *core.ItemContext
features *xFeatureTools
handler HttpHandle
startTime time.Time
}
)
//reset response attr
func (ctx *HttpContext) reset(res *Response, r *Request, server *HttpServer, node RouterNode, params Params, handler HttpHandle) {
ctx.request = r
ctx.response = res
ctx.routerNode = node
ctx.routerParams = params
ctx.isHijack = false
ctx.isWebSocket = false
ctx.httpServer = server
ctx.items = nil
ctx.isEnd = false
ctx.features = FeatureTools
ctx.handler = handler
ctx.startTime = time.Now()
}
//release all field
func (ctx *HttpContext) release() {
ctx.request = nil
ctx.response = nil
ctx.routerNode = nil
ctx.routerParams = nil
ctx.webSocket = nil
ctx.hijackConn = nil
ctx.isHijack = false
ctx.isWebSocket = false
ctx.httpServer = nil
ctx.isEnd = false
ctx.features = nil
ctx.items = nil
ctx.viewData = nil
ctx.sessionID = ""
ctx.handler = nil
ctx.startTime = time.Time{}
}
func (ctx *HttpContext) HttpServer() *HttpServer {
return ctx.httpServer
}
func (ctx *HttpContext) Response() *Response {
return ctx.response
}
func (ctx *HttpContext) Request() *Request {
return ctx.request
}
func (ctx *HttpContext) RouterNode() RouterNode {
return ctx.routerNode
}
func (ctx *HttpContext) WebSocket() *WebSocket {
return ctx.webSocket
}
func (ctx *HttpContext) IsWebSocket() bool {
return ctx.isWebSocket
}
func (ctx *HttpContext) IsHijack() bool {
return ctx.isHijack
}
func (ctx *HttpContext) HijackConn() *HijackConn {
return ctx.hijackConn
}
func (ctx *HttpContext) RouterParams() Params {
return ctx.routerParams
}
func (ctx *HttpContext) Handler() HttpHandle {
return ctx.handler
}
func (ctx *HttpContext) SessionID() string {
return ctx.sessionID
}
func (ctx *HttpContext) Features() *xFeatureTools {
return ctx.features
}
// AppContext get application's global appcontext
// issue #3
func (ctx *HttpContext) AppContext() *core.ItemContext {
if ctx.HttpServer != nil {
return ctx.httpServer.DotApp.AppContext
} else {
return core.NewItemContext()
}
}
// Cache get application's global cache
func (ctx *HttpContext) Cache() cache.Cache {
return ctx.httpServer.DotApp.Cache()
}
// Items get request's tem context
// lazy init when first use
func (ctx *HttpContext) Items() *core.ItemContext {
if ctx.items == nil {
ctx.items = core.NewItemContext()
}
return ctx.items
}
// AppSetConfig get appset from config file
// update for issue #16 配置文件
func (ctx *HttpContext) AppSetConfig() *core.ItemContext {
return ctx.HttpServer().DotApp.Config.AppSetConfig
}
// ViewData get view data context
// lazy init when first use
func (ctx *HttpContext) ViewData() *core.ItemContext {
if ctx.viewData == nil {
ctx.viewData = core.NewItemContext()
}
return ctx.viewData
}
// Session get session state in current context
func (ctx *HttpContext) Session() (state *session.SessionState) {
if ctx.httpServer == nil {
//return nil, errors.New("no effective http-server")
panic("no effective http-server")
}
if !ctx.httpServer.SessionConfig.EnabledSession {
//return nil, errors.New("http-server not enabled session")
panic("http-server not enabled session")
}
state, _ = ctx.httpServer.sessionManager.GetSessionState(ctx.sessionID)
return state
}
// Hijack 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
}
// End 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 redirect replies to the request with a redirect to url and with httpcode
// default you can use http.StatusFound
func (ctx *HttpContext) Redirect(code int, targetUrl string) error {
return ctx.response.Redirect(code, targetUrl)
}
/*
* 根据指定key获取对应value
*/
func (ctx *HttpContext) QueryString(key string) string {
return ctx.request.QueryString(key)
}
/*
* 根据指定key获取包括在post、put和get内的值
*/
func (ctx *HttpContext) FormValue(key string) string {
return ctx.request.FormValue(key)
}
/*
* 根据指定key获取包括在post、put内的值
*/
func (ctx *HttpContext) PostFormValue(key string) string {
return ctx.request.PostFormValue(key)
}
/*
* 支持Json、Xml、Form提交的属性绑定
*/
func (ctx *HttpContext) Bind(i interface{}) error {
return ctx.httpServer.Binder().Bind(i, ctx)
}
func (ctx *HttpContext) GetRouterName(key string) string {
return ctx.routerParams.ByName(key)
}
// RemoteIP return user IP address
func (ctx *HttpContext) RemoteIP() string {
return ctx.request.RemoteIP()
}
// SetCookieValue write cookie for name & value & maxAge
// default path = "/"
// default domain = current domain
// default maxAge = 0 //seconds
// seconds=0 means no 'Max-Age' attribute specified.
// seconds<0 means delete cookie now, equivalently 'Max-Age: 0'
// seconds>0 means Max-Age attribute present and given in seconds
func (ctx *HttpContext) SetCookieValue(name, value string, maxAge int) {
cookie := &http.Cookie{Name: name, Value: url.QueryEscape(value), MaxAge: maxAge}
cookie.Path = "/"
ctx.SetCookie(cookie)
}
// SetCookie write cookie with cookie-obj
func (ctx *HttpContext) SetCookie(cookie *http.Cookie) {
http.SetCookie(ctx.response.Writer(), cookie)
}
// RemoveCookie remove cookie for path&name
func (ctx *HttpContext) RemoveCookie(name string) {
cookie := &http.Cookie{Name: name, MaxAge: -1}
ctx.SetCookie(cookie)
}
// ReadCookieValue read cookie value for name
func (ctx *HttpContext) ReadCookieValue(name string) (string, error) {
cookieobj, err := ctx.request.Cookie(name)
if err != nil {
return "", err
} else {
return url.QueryUnescape(cookieobj.Value)
}
}
// ReadCookie read cookie object for name
func (ctx *HttpContext) ReadCookie(name string) (*http.Cookie, error) {
return ctx.request.Cookie(name)
}
// View write view content to response
func (ctx *HttpContext) View(name string) error {
return ctx.ViewC(defaultHttpCode, name)
}
// ViewC write (httpCode, view content) to response
func (ctx *HttpContext) ViewC(code int, name string) error {
ctx.response.SetStatusCode(code)
err := ctx.httpServer.Renderer().Render(ctx.response.Writer(), name, ctx.ViewData().GetCurrentMap(), ctx)
return err
}
// Write write code and content content to response
func (ctx *HttpContext) Write(code int, content []byte) (int, error) {
if ctx.IsHijack() {
//TODO:hijack mode, status-code set default 200
return ctx.hijackConn.WriteBlob(content)
} else {
return ctx.response.Write(code, content)
}
}
// WriteString write string content to response
func (ctx *HttpContext) WriteString(contents ...interface{}) (int, error) {
return ctx.WriteStringC(defaultHttpCode, contents...)
}
// WriteStringC write (httpCode, string) to response
func (ctx *HttpContext) WriteStringC(code int, contents ...interface{}) (int, error) {
content := fmt.Sprint(contents...)
if ctx.IsHijack() {
return ctx.hijackConn.WriteString(content)
} else {
return ctx.response.Write(code, []byte(content))
}
}
// WriteBlob write []byte content to response
func (ctx *HttpContext) WriteBlob(contentType string, b []byte) (int, error) {
return ctx.WriteBlobC(defaultHttpCode, contentType, b)
}
// WriteBlobC write (httpCode, []byte) to response
func (ctx *HttpContext) WriteBlobC(code int, contentType string, b []byte) (int, error) {
if contentType != "" {
ctx.response.SetContentType(contentType)
}
if ctx.IsHijack() {
return ctx.hijackConn.WriteBlob(b)
} else {
return ctx.response.Write(code, b)
}
}
// WriteJson write (httpCode, json string) to response
// auto convert interface{} to json string
func (ctx *HttpContext) WriteJson(i interface{}) (int, error) {
return ctx.WriteJsonC(defaultHttpCode, i)
}
// WriteJsonC write (httpCode, json string) to response
// auto convert interface{} to json string
func (ctx *HttpContext) WriteJsonC(code int, i interface{}) (int, error) {
b, err := json.Marshal(i)
if err != nil {
return 0, err
}
return ctx.WriteJsonBlobC(code, b)
}
// WriteJsonBlob write json []byte to response
func (ctx *HttpContext) WriteJsonBlob(b []byte) (int, error) {
return ctx.WriteJsonBlobC(defaultHttpCode, b)
}
// WriteJsonBlobC write (httpCode, json []byte) to response
func (ctx *HttpContext) WriteJsonBlobC(code int, b []byte) (int, error) {
return ctx.WriteBlobC(code, MIMEApplicationJSONCharsetUTF8, b)
}
// WriteJsonp 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)
}
// WriteJsonpBlob write jsonp string as []byte to response
func (ctx *HttpContext) WriteJsonpBlob(callback string, b []byte) (size int, err error) {
ctx.response.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
}