-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.go
375 lines (350 loc) · 7.06 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
package kapi
import (
"github.com/gin-gonic/gin"
"github.com/linxlib/conv"
"github.com/linxlib/inject"
"strings"
)
// Context KApi Context
type Context struct {
*gin.Context
inj inject.Injector
OnSuccess IOnSuccess `inject:""`
OnFail IOnFail `inject:""`
OnNotFound IOnNotFound `inject:""`
OnNoPermission IOnNoPermission `inject:""`
OnError IOnError `inject:""`
OnErrorDetail IOnErrorDetail `inject:""`
OnUnAuthed IOnUnAuthed `inject:""`
OnData IOnData `inject:""`
}
// newContext create a new custom context
func newContext(c *gin.Context, parent ...inject.Injector) *Context {
cc := &Context{
Context: c,
inj: inject.New(),
}
if len(parent) > 0 {
cc.inj.SetParent(parent[0])
}
err := cc.inj.Apply(cc)
if err != nil {
var builder = NewDefaultBuilder()
cc.OnSuccess = builder.OnSuccess
cc.OnFail = builder.OnFail
cc.OnNotFound = builder.OnNotFound
cc.OnNoPermission = builder.OnNoPermission
cc.OnError = builder.OnError
cc.OnUnAuthed = builder.OnUnAuthed
cc.OnData = builder.OnData
cc.OnErrorDetail = builder.OnErrorDetail
}
return cc
}
// Method return HTTP method
//
// @return string
func (c *Context) Method() string {
return c.Request.Method
}
// GetQueryString return the string value of query param
//
// @param key
//
// @return string
func (c *Context) GetQueryString(key string, def ...string) string {
tmp, b := c.GetQuery(key)
if b {
return tmp
} else {
if len(def) > 0 {
return def[0]
}
return ""
}
}
// GetFormString return the string value of form param
//
// @param key
//
// @return string
func (c *Context) GetFormString(key string, def ...string) string {
tmp, b := c.GetPostForm(key)
if b {
return tmp
} else {
if len(def) > 0 {
return def[0]
}
return ""
}
}
// GetFormInt return the int value of form param
//
// @param key
//
// @return string
func (c *Context) GetFormInt(key string, def ...int) int {
tmp, b := c.GetPostForm(key)
if b {
return conv.Int(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return -1
}
}
// GetFormInt64 return the int64 value of form param
//
// @param key
//
// @return string
func (c *Context) GetFormInt64(key string, def ...int64) int64 {
tmp, b := c.GetPostForm(key)
if b {
return conv.Int64(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return -1
}
}
// GetFormUInt return the uint value of form param
//
// @param key
//
// @return string
func (c *Context) GetFormUInt(key string, def ...uint) uint {
tmp, b := c.GetPostForm(key)
if b {
return conv.Uint(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return 0
}
}
// GetFormFloat32 return the float32 value of query param
//
// @param key
// @param def
//
// @return string
func (c *Context) GetFormFloat32(key string, def ...float32) float32 {
tmp, b := c.GetPostForm(key)
if b {
return conv.Float32(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return 0.0
}
}
// GetFormFloat64 return the float64 value of form param
//
// @param key
// @param def
//
// @return string
func (c *Context) GetFormFloat64(key string, def ...float64) float64 {
tmp, b := c.GetPostForm(key)
if b {
return conv.Float64(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return 0.0
}
}
// GetQueryInt return the int value of query param
//
// @param key
// @param def
//
// @return int
func (c *Context) GetQueryInt(key string, def ...int) int {
tmp, b := c.GetQuery(key)
if b {
return conv.Int(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return -1
}
}
// GetQueryInt64 return the int64 value of query param
//
// @param key
// @param def
//
// @return int64
func (c *Context) GetQueryInt64(key string, def ...int64) int64 {
tmp, b := c.GetQuery(key)
if b {
return conv.Int64(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return -1
}
}
// GetQueryUInt64 return the uint64 value of query param
//
// @param key
// @param def
//
// @return uint64
func (c *Context) GetQueryUInt64(key string, def ...uint64) uint64 {
tmp, b := c.GetQuery(key)
if b {
return conv.Uint64(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return 0
}
}
// GetQueryUInt return the uint value of query param
//
// @param key
// @param def
//
// @return uint
func (c *Context) GetQueryUInt(key string, def ...uint) uint {
tmp, b := c.GetQuery(key)
if b {
return conv.Uint(tmp)
} else {
if len(def) > 0 {
return def[0]
}
return 0
}
}
// GetQueryBool return the boolean value of query param
//
// @param key
//
// @return bool
func (c *Context) GetQueryBool(key string) bool {
tmp, b := c.GetQuery(key)
if b {
return conv.Bool(tmp)
} else {
return false
}
}
// GetPageSize return the values of "page"-1 and "size" query params
//
// @param def
// def[0] can be the default value of "page" param and def[1] can be the default value of "size" param
//
// @return int page-1
// @return int size
func (c *Context) GetPageSize(def ...int) (int, int) {
defPage := 1
defSize := 10
if len(def) > 1 {
defPage = def[0]
defSize = def[1]
}
page := c.GetQueryInt("page", defPage)
size := c.GetQueryInt("size", defSize)
return conv.Int(page) - 1, conv.Int(size)
}
// OfFormFile 获取Form File的文件名和大小
//
// @param form
//
// @return string
// @return int64
func (c *Context) OfFormFile(form string) (string, int64) {
f, err := c.FormFile(form)
if err != nil {
return "", 0
}
return f.Filename, f.Size
}
// SaveFile save form file to destination
//
// @param form name of form file
// @param dst destination file name
//
// @return error
func (c *Context) SaveFile(form string, dst string) error {
f, err := c.FormFile(form)
if err != nil {
return err
}
if dst == "" {
dst = f.Filename
}
err = c.SaveUploadedFile(f, dst)
if err != nil {
return err
}
return nil
}
// RemoteAddr returns more real IP address.
func (c *Context) RemoteAddr() string {
addr := c.Request.Header.Get("X-Real-IP")
if len(addr) == 0 {
addr = c.Request.Header.Get("X-Forwarded-For")
if addr == "" {
addr = c.Request.RemoteAddr
if i := strings.LastIndex(addr, ":"); i > -1 {
addr = addr[:i]
}
}
}
return addr
}
// Map an instance
//
// @param i
//
// @return inject.TypeMapper
func (c *Context) Map(i ...interface{}) inject.TypeMapper {
return c.inj.Map(i...)
}
// MapTo map instance to interface
//
// @param i 要注入的值(指针)
// @param j 接口类型(指针)
//
// @return inject.TypeMapper
func (c *Context) MapTo(i interface{}, j interface{}) inject.TypeMapper {
return c.inj.MapTo(i, j)
}
// Apply 为一个结构注入带inject标签的Field
//
// @param ctl 需要为指针
//
// @return error
func (c *Context) Apply(ctl interface{}) error {
return c.inj.Apply(ctl)
}
// Provide 提供已注入的实例
//
// @param i 需要为指针
//
// @return error
func (c *Context) Provide(i interface{}) error {
return c.inj.Provide(i)
}
// File returns a file
//
// @param fileName
// @param fileData
func (c *Context) File(fileName string, fileData []byte) {
c.Header("Content-Disposition", "attachment; filename=\""+fileName+"\"")
c.Data(200, "application/octet-stream", fileData)
}