-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.go
455 lines (387 loc) · 8.76 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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
package easierweb
import (
"encoding/json"
"encoding/xml"
"fmt"
"github.com/julienschmidt/httprouter"
"golang.org/x/net/websocket"
"gopkg.in/yaml.v3"
"io"
"log/slog"
"mime/multipart"
"net/http"
"net/url"
"os"
"strings"
"time"
)
type Context struct {
Route string
Header Params
Path Params
Query Params
Form Params
Body Data
Code int
Result Data
Request *http.Request
ResponseWriter http.ResponseWriter
WebsocketConn *websocket.Conn
Flusher http.Flusher
Logger *slog.Logger
index int
handles []Handle
written bool
closed bool
}
func (c *Context) Next() {
c.index++
for c.index < len(c.handles) {
c.handles[c.index](c)
c.index++
}
}
func (c *Context) Abort() {
c.index = len(c.handles) + 1
}
// POST Form File
func (c *Context) FileKeys() []string {
files := c.Request.MultipartForm.File
var ks = make([]string, 0, len(files))
for k := range files {
ks = append(ks, k)
}
return ks
}
func (c *Context) GetFile(key string) (multipart.File, error) {
file, _, err := c.Request.FormFile(key)
if err != nil {
return nil, err
}
return file, nil
}
// Query/Form/Path/Header Params Bind
func (c *Context) BindQuery(obj any) error {
return c.Query.Bind(obj)
}
func (c *Context) BindForm(obj any) error {
return c.Form.Bind(obj)
}
func (c *Context) BindPath(obj any) error {
return c.Path.Bind(obj)
}
func (c *Context) BindHeader(obj any) error {
return c.Header.Bind(obj)
}
// POST Body Bind
func (c *Context) BindJSON(obj any) error {
return c.Body.ParseJSON(obj)
}
func (c *Context) BindYAML(obj any) error {
return c.Body.ParseYAML(obj)
}
func (c *Context) BindXML(obj any) error {
return c.Body.ParseXML(obj)
}
// Result Write
func (c *Context) WriteJSON(code int, obj any) {
if c.written {
return
}
marshal, err := json.Marshal(obj)
if err != nil {
panic(err)
}
c.AddContentType("application/json; charset=utf-8")
c.Write(code, marshal)
}
func (c *Context) WriteYAML(code int, obj any) {
if c.written {
return
}
marshal, err := yaml.Marshal(obj)
if err != nil {
panic(err)
}
c.AddContentType("application/x-yaml; charset=utf-8")
c.Write(code, marshal)
}
func (c *Context) WriteXML(code int, obj any) {
if c.written {
return
}
marshal, err := xml.Marshal(obj)
if err != nil {
panic(err)
}
c.AddContentType("application/xml; charset=utf-8")
c.Write(code, marshal)
}
func (c *Context) Redirect(code int, url string) {
if c.written {
return
}
http.Redirect(c.ResponseWriter, c.Request, url, code)
}
func (c *Context) WriteLocalFile(fileName, localFilePath string) {
if c.written {
return
}
fileBytes, err := os.ReadFile(localFilePath)
if err != nil {
panic(err)
}
c.WriteFile(fileName, fileBytes)
}
func (c *Context) WriteFile(fileName string, fileBytes []byte) {
if c.written {
return
}
if len(fileName) > 0 {
c.SetContentDisposition(fmt.Sprintf("attachment; filename=\"%s\"", fileName))
} else {
c.SetContentDisposition(fmt.Sprintf("attachment; filename=\"%v\"", time.Now().Unix()))
}
c.AddContentType("application/octet-stream")
c.Write(http.StatusOK, fileBytes)
}
func (c *Context) WriteHTML(code int, html string) {
if c.written {
return
}
c.AddContentType("text/html; charset=utf-8")
c.Write(code, []byte(html))
}
func (c *Context) WriteString(code int, text string) {
if c.written {
return
}
c.AddContentType("text/plain; charset=utf-8")
c.Write(code, []byte(text))
}
func (c *Context) NoContent(code int) {
c.Write(code, nil)
}
func (c *Context) Write(code int, data []byte) {
if c.written {
return
}
c.ResponseWriter.WriteHeader(code)
_, err := c.ResponseWriter.Write(data)
if err != nil {
panic(err)
}
c.Code = code
c.Result = data
c.written = true
}
func (c *Context) AddContentType(value string) {
c.AddHeader("Content-Type", value)
}
func (c *Context) AddContentDisposition(value string) {
c.AddHeader("Content-Disposition", value)
}
func (c *Context) SetContentType(value string) {
c.SetHeader("Content-Type", value)
}
func (c *Context) SetContentDisposition(value string) {
c.SetHeader("Content-Disposition", value)
}
func (c *Context) SetHeader(key, value string) {
c.ResponseWriter.Header().Set(key, value)
}
func (c *Context) AddHeader(key, value string) {
c.ResponseWriter.Header().Add(key, value)
}
// WS Receive
func (c *Context) ReceiveJSON(obj any) error {
return websocket.JSON.Receive(c.WebsocketConn, obj)
}
func (c *Context) ReceiveYAML(obj any) error {
var buf string
err := websocket.Message.Receive(c.WebsocketConn, &buf)
if err != nil {
return err
}
return yaml.Unmarshal([]byte(buf), obj)
}
func (c *Context) ReceiveXML(obj any) error {
var buf string
err := websocket.Message.Receive(c.WebsocketConn, &buf)
if err != nil {
return err
}
return xml.Unmarshal([]byte(buf), obj)
}
func (c *Context) ReceiveString() (string, error) {
var buf string
err := websocket.Message.Receive(c.WebsocketConn, &buf)
if err != nil {
return "", err
}
return buf, nil
}
func (c *Context) Receive() ([]byte, error) {
var buf []byte
err := websocket.Message.Receive(c.WebsocketConn, &buf)
if err != nil {
return nil, err
}
return buf, nil
}
// WS Send
func (c *Context) SendJSON(obj any) error {
marshal, err := json.Marshal(obj)
if err != nil {
return err
}
return c.Send(marshal)
}
func (c *Context) SendYAML(obj any) error {
marshal, err := yaml.Marshal(obj)
if err != nil {
return err
}
return c.Send(marshal)
}
func (c *Context) SendXML(obj any) error {
marshal, err := xml.Marshal(obj)
if err != nil {
return err
}
return c.Send(marshal)
}
func (c *Context) SendString(text string) error {
return c.Send([]byte(text))
}
func (c *Context) Send(msg []byte) error {
_, err := c.WebsocketConn.Write(msg)
if err != nil {
return err
}
return nil
}
// WS Close
func (c *Context) Close() error {
if c.closed {
return nil
}
err := c.WebsocketConn.Close()
if err != nil {
return err
}
c.closed = true
return nil
}
// SSE Push
func (c *Context) Push(msg string) error {
_, err := fmt.Fprintf(c.ResponseWriter, msg)
if err != nil {
return err
}
c.Flusher.Flush()
return nil
}
// Other request parameters
func (c *Context) GetCookie(name string) (*http.Cookie, error) {
return c.Request.Cookie(name)
}
func (c *Context) Cookies() []*http.Cookie {
return c.Request.Cookies()
}
func (c *Context) URI() string {
return c.Request.RequestURI
}
func (c *Context) Method() string {
return c.Request.Method
}
func (c *Context) URL() *url.URL {
return c.Request.URL
}
func (c *Context) RemoteAddr() string {
return c.Request.RemoteAddr
}
func (c *Context) Host() string {
return c.Request.Host
}
func (c *Context) Proto() string {
return c.Request.Proto
}
// Set
func setContext(ctx *Context, router *Router, route string, res http.ResponseWriter, req *http.Request, par httprouter.Params, ws *websocket.Conn, middlewares ...Handle) error {
defer func() {
err := recover()
if err != nil {
router.logger.Error(fmt.Sprintf("set context error: %s", err))
}
}()
handles := append([]Handle(nil), router.middlewares...)
handles = append(handles, middlewares...)
ctx.Route = route
ctx.index = 0
ctx.handles = handles
ctx.Header = nil
ctx.Path = nil
ctx.Query = nil
ctx.Form = nil
ctx.Body = nil
ctx.Request = req
ctx.ResponseWriter = res
ctx.WebsocketConn = ws
ctx.Flusher = nil
ctx.Logger = router.logger
ctx.Code = 0
ctx.Result = nil
ctx.written = false
ctx.closed = false
if strings.Contains(strings.ToLower(req.Header.Get("Content-Type")), "multipart/form-data") ||
strings.Contains(strings.ToLower(req.Header.Get("content-type")), "multipart/form-data") {
err := req.ParseMultipartForm(router.multipartFormMaxMemory)
if err != nil {
return err
}
} else if strings.Contains(strings.ToLower(req.Header.Get("Content-Type")), "application/x-www-form-urlencoded") ||
strings.Contains(strings.ToLower(req.Header.Get("content-type")), "application/x-www-form-urlencoded") {
err := req.ParseForm()
if err != nil {
return err
}
} else {
bodyBytes, err := io.ReadAll(req.Body)
if err != nil {
return err
}
ctx.Body = bodyBytes
}
if len(req.Header) > 0 {
ctx.Header = make(map[string]string, len(req.Header))
for k, v := range req.Header {
if len(v) > 0 {
ctx.Header[k] = v[0]
}
}
}
if len(par) > 0 {
ctx.Path = make(map[string]string, len(par))
for _, v := range par {
ctx.Path[v.Key] = v.Value
}
}
if len(req.URL.Query()) > 0 {
ctx.Query = make(map[string]string, len(req.URL.Query()))
for k, v := range req.URL.Query() {
if len(v) > 0 {
ctx.Query[k] = v[0]
}
}
}
if len(req.PostForm) > 0 {
ctx.Form = make(map[string]string, len(req.PostForm))
for k, v := range req.PostForm {
if len(v) > 0 {
ctx.Form[k] = v[0]
}
}
}
return nil
}