forked from GoAdminGroup/go-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.go
430 lines (366 loc) · 12.1 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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package context
import (
"bytes"
"encoding/json"
"io/ioutil"
"math"
"net"
"net/http"
"net/url"
"strings"
)
const abortIndex int8 = math.MaxInt8 / 2
// Context is the simplify version of web framework context.
// But it is important which will be used in plugins to custom
// the request and response. And adapter will help to transform
// the Context to the web framework`s context. It has three attributes.
// Request and response are belongs to net/http package. UserValue
// is the custom key-value store of context.
type Context struct {
Request *http.Request
Response *http.Response
UserValue map[string]interface{}
index int8
handlers Handlers
}
// Path is used in the matching of request and response. Url stores the
// raw register url. RegUrl contains the wildcard which on behalf of
// the route params.
type Path struct {
URL string
Method string
}
// SetUserValue set the value of user context.
func (ctx *Context) SetUserValue(key string, value interface{}) {
ctx.UserValue[key] = value
}
// Path return the url path.
func (ctx *Context) Path() string {
return ctx.Request.URL.Path
}
// Abort abort the context.
func (ctx *Context) Abort() {
ctx.index = abortIndex
}
// Next should be used only inside middleware.
func (ctx *Context) Next() {
ctx.index++
for s := int8(len(ctx.handlers)); ctx.index < s; ctx.index++ {
ctx.handlers[ctx.index](ctx)
}
}
// SetHandlers set the handlers of Context.
func (ctx *Context) SetHandlers(handlers Handlers) *Context {
ctx.handlers = handlers
return ctx
}
// Method return the request method.
func (ctx *Context) Method() string {
return ctx.Request.Method
}
// NewContext used in adapter which return a Context with request
// and slice of UserValue and a default Response.
func NewContext(req *http.Request) *Context {
return &Context{
Request: req,
UserValue: make(map[string]interface{}),
Response: &http.Response{
StatusCode: http.StatusOK,
Header: make(http.Header),
},
index: -1,
}
}
// Write save the given status code, header and body string into the response.
func (ctx *Context) Write(code int, Header map[string]string, Body string) {
ctx.Response.StatusCode = code
for key, head := range Header {
ctx.AddHeader(key, head)
}
ctx.Response.Body = ioutil.NopCloser(strings.NewReader(Body))
}
// JSON serializes the given struct as JSON into the response body.
// It also sets the Content-Type as "application/json".
func (ctx *Context) JSON(code int, Body map[string]interface{}) {
ctx.Response.StatusCode = code
ctx.AddHeader("Content-Type", "application/json")
BodyStr, err := json.Marshal(Body)
if err != nil {
panic(err)
}
ctx.Response.Body = ioutil.NopCloser(bytes.NewReader(BodyStr))
}
// Data writes some data into the body stream and updates the HTTP code.
func (ctx *Context) Data(code int, contentType string, data []byte) {
ctx.Response.StatusCode = code
ctx.AddHeader("Content-Type", contentType)
ctx.Response.Body = ioutil.NopCloser(bytes.NewBuffer(data))
}
// Redirect add redirect url to header.
func (ctx *Context) Redirect(path string) {
ctx.Response.StatusCode = http.StatusFound
ctx.AddHeader("Content-Type", "text/html; charset=utf-8")
ctx.AddHeader("Location", path)
}
// HTML output html response.
func (ctx *Context) HTML(code int, body string) {
ctx.AddHeader("Content-Type", "text/html; charset=utf-8")
ctx.SetStatusCode(code)
ctx.WriteString(body)
}
// WriteString save the given body string into the response.
func (ctx *Context) WriteString(Body string) {
ctx.Response.Body = ioutil.NopCloser(strings.NewReader(Body))
}
// SetStatusCode save the given status code into the response.
func (ctx *Context) SetStatusCode(code int) {
ctx.Response.StatusCode = code
}
// SetContentType save the given content type header into the response header.
func (ctx *Context) SetContentType(contentType string) {
ctx.AddHeader("Content-Type", contentType)
}
// LocalIP return the request client ip.
func (ctx *Context) LocalIP() string {
xForwardedFor := ctx.Request.Header.Get("X-Forwarded-For")
ip := strings.TrimSpace(strings.Split(xForwardedFor, ",")[0])
if ip != "" {
return ip
}
ip = strings.TrimSpace(ctx.Request.Header.Get("X-Real-Ip"))
if ip != "" {
return ip
}
if ip, _, err := net.SplitHostPort(strings.TrimSpace(ctx.Request.RemoteAddr)); err == nil {
return ip
}
return "127.0.0.1"
}
// SetCookie save the given cookie obj into the response Set-Cookie header.
func (ctx *Context) SetCookie(cookie *http.Cookie) {
if v := cookie.String(); v != "" {
ctx.AddHeader("Set-Cookie", v)
}
}
// Query get the query parameter of url.
func (ctx *Context) Query(key string) string {
return ctx.Request.URL.Query().Get(key)
}
// QueryDefault get the query parameter of url. If it is empty, return the default.
func (ctx *Context) QueryDefault(key, def string) string {
value := ctx.Query(key)
if value == "" {
return def
}
return value
}
// Headers get the value of request headers key.
func (ctx *Context) Headers(key string) string {
return ctx.Request.Header.Get(key)
}
// FormValue get the value of request form key.
func (ctx *Context) FormValue(key string) string {
return ctx.Request.FormValue(key)
}
// PostForm get the values of request form.
func (ctx *Context) PostForm() url.Values {
_ = ctx.Request.ParseForm()
return ctx.Request.PostForm
}
// AddHeader adds the key, value pair to the header.
func (ctx *Context) AddHeader(key, value string) {
ctx.Response.Header.Add(key, value)
}
// SetHeader set the key, value pair to the header.
func (ctx *Context) SetHeader(key, value string) {
ctx.Response.Header.Set(key, value)
}
// User return the current login user.
func (ctx *Context) User() interface{} {
return ctx.UserValue["user"]
}
// App is the key struct of the package. App as a member of plugin
// entity contains the request and the corresponding handler. Prefix
// is the url prefix and MiddlewareList is for control flow.
type App struct {
Requests []Path
tree *node
Middlewares Handlers
Prefix string
}
// NewApp return an empty app.
func NewApp() *App {
return &App{
Requests: make([]Path, 0),
tree: tree(),
Prefix: "/",
Middlewares: make([]Handler, 0),
}
}
// Handler defines the handler used by the middleware as return value.
type Handler func(ctx *Context)
// Handlers is the array of Handler
type Handlers []Handler
// AppendReqAndResp stores the request info and handle into app.
// support the route parameter. The route parameter will be recognized as
// wildcard store into the RegUrl of Path struct. For example:
//
// /user/:id => /user/(.*)
// /user/:id/info => /user/(.*?)/info
//
// The RegUrl will be used to recognize the incoming path and find
// the handler.
func (app *App) AppendReqAndResp(url, method string, handler []Handler) {
app.Requests = append(app.Requests, Path{
URL: join(app.Prefix, url),
Method: method,
})
app.tree.addPath(stringToArr(join(app.Prefix, slash(url))), method, append(app.Middlewares, handler...))
}
// Find is public helper method for findPath of tree.
func (app *App) Find(url, method string) []Handler {
return app.tree.findPath(stringToArr(url), method)
}
// POST is a shortcut for app.AppendReqAndResp(url, "post", handler).
func (app *App) POST(url string, handler ...Handler) {
app.AppendReqAndResp(url, "post", handler)
}
// GET is a shortcut for app.AppendReqAndResp(url, "get", handler).
func (app *App) GET(url string, handler ...Handler) {
app.AppendReqAndResp(url, "get", handler)
}
// DELETE is a shortcut for app.AppendReqAndResp(url, "delete", handler).
func (app *App) DELETE(url string, handler ...Handler) {
app.AppendReqAndResp(url, "delete", handler)
}
// PUT is a shortcut for app.AppendReqAndResp(url, "put", handler).
func (app *App) PUT(url string, handler ...Handler) {
app.AppendReqAndResp(url, "put", handler)
}
// OPTIONS is a shortcut for app.AppendReqAndResp(url, "options", handler).
func (app *App) OPTIONS(url string, handler ...Handler) {
app.AppendReqAndResp(url, "options", handler)
}
// HEAD is a shortcut for app.AppendReqAndResp(url, "head", handler).
func (app *App) HEAD(url string, handler ...Handler) {
app.AppendReqAndResp(url, "head", handler)
}
// ANY registers a route that matches all the HTTP methods.
// GET, POST, PUT, HEAD, OPTIONS, DELETE.
func (app *App) ANY(url string, handler ...Handler) {
app.AppendReqAndResp(url, "post", handler)
app.AppendReqAndResp(url, "get", handler)
app.AppendReqAndResp(url, "delete", handler)
app.AppendReqAndResp(url, "put", handler)
app.AppendReqAndResp(url, "options", handler)
app.AppendReqAndResp(url, "head", handler)
}
// Group add middlewares and prefix for App.
func (app *App) Group(prefix string, middleware ...Handler) *RouterGroup {
return &RouterGroup{
app: app,
Middlewares: append(app.Middlewares, middleware...),
Prefix: slash(prefix),
}
}
// RouterGroup is a group of routes.
type RouterGroup struct {
app *App
Middlewares Handlers
Prefix string
}
// AppendReqAndResp stores the request info and handle into app.
// support the route parameter. The route parameter will be recognized as
// wildcard store into the RegUrl of Path struct. For example:
//
// /user/:id => /user/(.*)
// /user/:id/info => /user/(.*?)/info
//
// The RegUrl will be used to recognize the incoming path and find
// the handler.
func (g *RouterGroup) AppendReqAndResp(url, method string, handler []Handler) {
g.app.Requests = append(g.app.Requests, Path{
URL: join(g.Prefix, url),
Method: method,
})
g.app.tree.addPath(stringToArr(join(g.Prefix, slash(url))), method, append(g.Middlewares, handler...))
}
// POST is a shortcut for app.AppendReqAndResp(url, "post", handler).
func (g *RouterGroup) POST(url string, handler ...Handler) {
g.AppendReqAndResp(url, "post", handler)
}
// GET is a shortcut for app.AppendReqAndResp(url, "get", handler).
func (g *RouterGroup) GET(url string, handler ...Handler) {
g.AppendReqAndResp(url, "get", handler)
}
// DELETE is a shortcut for app.AppendReqAndResp(url, "delete", handler).
func (g *RouterGroup) DELETE(url string, handler ...Handler) {
g.AppendReqAndResp(url, "delete", handler)
}
// PUT is a shortcut for app.AppendReqAndResp(url, "put", handler).
func (g *RouterGroup) PUT(url string, handler ...Handler) {
g.AppendReqAndResp(url, "put", handler)
}
// OPTIONS is a shortcut for app.AppendReqAndResp(url, "options", handler).
func (g *RouterGroup) OPTIONS(url string, handler ...Handler) {
g.AppendReqAndResp(url, "options", handler)
}
// HEAD is a shortcut for app.AppendReqAndResp(url, "head", handler).
func (g *RouterGroup) HEAD(url string, handler ...Handler) {
g.AppendReqAndResp(url, "head", handler)
}
// ANY registers a route that matches all the HTTP methods.
// GET, POST, PUT, HEAD, OPTIONS, DELETE.
func (g *RouterGroup) ANY(url string, handler ...Handler) {
g.AppendReqAndResp(url, "post", handler)
g.AppendReqAndResp(url, "get", handler)
g.AppendReqAndResp(url, "delete", handler)
g.AppendReqAndResp(url, "put", handler)
g.AppendReqAndResp(url, "options", handler)
g.AppendReqAndResp(url, "head", handler)
}
// Group add middlewares and prefix for RouterGroup.
func (g *RouterGroup) Group(prefix string, middleware ...Handler) *RouterGroup {
return &RouterGroup{
app: g.app,
Middlewares: append(g.Middlewares, middleware...),
Prefix: join(slash(g.Prefix), slash(prefix)),
}
}
// slash fix the path which has wrong format problem.
//
// "" => "/"
// "abc/" => "/abc"
// "/abc/" => "/abc"
// "/abc" => "/abc"
// "/" => "/"
//
func slash(prefix string) string {
prefix = strings.TrimSpace(prefix)
if prefix == "" || prefix == "/" {
return "/"
}
if prefix[0] != '/' {
if prefix[len(prefix)-1] == '/' {
return "/" + prefix[:len(prefix)-1]
}
return "/" + prefix
}
if prefix[len(prefix)-1] == '/' {
return prefix[:len(prefix)-1]
}
return prefix
}
// join join the path.
func join(prefix, suffix string) string {
if prefix == "/" {
return suffix
}
if suffix == "/" {
return prefix
}
return prefix + suffix
}