-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter.go
499 lines (439 loc) · 12.7 KB
/
router.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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
package router
import (
"errors"
"fmt"
"github.com/gin-gonic/gin"
"github.com/gouef/mode"
"net/http"
"reflect"
)
const (
// DebugMode indicates Mode is debug.
DebugMode = "debug"
// ReleaseMode indicates Mode is release.
ReleaseMode = "release"
// TestMode indicates Mode is test.
TestMode = "test"
)
type ErrorHandlerFunc func(c *gin.Context)
type Router struct {
Router *gin.Engine
Routes map[string]*Route
middlewares []interface{}
ErrorHandlers map[int]ErrorHandlerFunc
DefaultHandler ErrorHandlerFunc
Mode *mode.Mode
}
type routeGroupStruct struct {
pattern string
routes []*Route
children []*routeGroupStruct
}
// NewRouter create new Router
func NewRouter() *Router {
router := gin.New()
m, _ := mode.NewBasicMode()
return &Router{
Router: router,
Routes: make(map[string]*Route),
ErrorHandlers: make(map[int]ErrorHandlerFunc),
DefaultHandler: func(c *gin.Context) {
status := c.Writer.Status()
c.JSON(status, gin.H{
"error": "An error occurred",
"description": "No specific handler defined for this status",
})
},
Mode: m,
}
}
// SetDefaultErrorHandler set default error handler
// Example:
//
// router.SetDefaultErrorHandler(func(c *gin.Context) {
// c.JSON(http.StatusNotFound, gin.H{
// "error": "Custom 404",
// })
func (r *Router) SetDefaultErrorHandler(handler ErrorHandlerFunc) *Router {
r.DefaultHandler = handler
r.Router.NoRoute(func(cc *gin.Context) {
handler(cc)
})
return r
}
// GetRoutes return list of Routes
func (r *Router) GetRoutes() map[string]*Route {
return r.Routes
}
// SetErrorHandler set Error handler for status code
// Example:
//
// router.SetErrorHandler(400, func(c *gin.Context) {
// status := c.Writer.Status()
// c.JSON(status, gin.H{
// "error": "An error occurred",
// "description": "No specific handler defined for this status",
// })
// })
func (r *Router) SetErrorHandler(status int, handler ErrorHandlerFunc) *Router {
if status == 404 {
r.Router.NoRoute(func(cc *gin.Context) {
handler(cc)
})
}
r.ErrorHandlers[status] = handler
return r
}
// ErrorHandlerMiddleware middleware for customization error stats responses
func (r *Router) ErrorHandlerMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
c.Next()
status := c.Writer.Status()
if status >= 400 {
if handler, exists := r.ErrorHandlers[status]; exists {
handler(c)
} else {
r.DefaultHandler(c)
}
}
}
}
// AddRouteList add RouteList to router
// Example:
//
// lr := NewRouteList()
// v1 := CreateRouteList("/v1")
// lr.AddChild(v1)
//
// lr.Add("/:locale/products/:id", productDetailHandler, Get)
// v1.Add("/:locale/products/:id", productDetailHandler, Get)
//
// router := NewRouter()
// router.AddRouteList(lr)
func (r *Router) AddRouteList(l *RouteList) error {
groupStruct := r.createGroupStruct(l)
return r.createNativeGroup(groupStruct)
}
// createNativeGroup internal, create gin groups
func (r *Router) createNativeGroup(rgs *routeGroupStruct) error {
var group *gin.RouterGroup
group = r.GetNativeRouter().Group(rgs.pattern)
for _, route := range rgs.routes {
_, err := createNativeRoute(*group, route)
r.Routes[route.name] = route
if err != nil {
return err
}
}
return r.createNativeGroupChildren(group, rgs.children)
}
// createNativeGroupChildren internal, create gin groups children
func (r *Router) createNativeGroupChildren(group *gin.RouterGroup, children []*routeGroupStruct) error {
for _, child := range children {
childGroup := group.Group(child.pattern)
for _, route := range child.routes {
_, err := createNativeRoute(*childGroup, route)
if err != nil {
return err
}
r.Routes[route.name] = route
}
if len(child.children) > 0 {
err2 := r.createNativeGroupChildren(childGroup, child.children)
if err2 != nil {
return err2
}
}
}
return nil
}
// createGroupStruct internal, create structure for generate gin groups
func (r *Router) createGroupStruct(l *RouteList) *routeGroupStruct {
s := &routeGroupStruct{
pattern: l.pattern,
routes: l.routes,
}
var children []*routeGroupStruct
if l.children != nil {
for _, child := range l.children {
children = append(children, r.createGroupStruct(child))
}
}
s.children = children
return s
}
// createHandlerFunc internal, add route to group, and return gin.IRoutes
func createNativeRoute(g gin.RouterGroup, route *Route) (gin.IRoutes, error) {
handler, err := createHandlerFunc(route.handler)
if err != nil {
return nil, err
}
return g.Handle(route.method.String(), route.pattern, handler), nil
}
// createHandlerFunc internal, create gin.HandlerFunc
func createHandlerFunc(handler interface{}) (gin.HandlerFunc, error) {
handlerType := reflect.TypeOf(handler)
if handlerType.Kind() != reflect.Func {
return nil, errors.New("handler must be a function")
}
numIn := handlerType.NumIn()
if numIn < 1 || numIn > 2 {
return nil, errors.New("handler must have one or two parameters")
}
if numIn == 2 {
paramType := handlerType.In(1)
if paramType.Kind() != reflect.Ptr {
return nil, errors.New(fmt.Sprintf("Handler parameter must be a pointer to a struct, got %v", paramType.Kind()))
}
}
return func(c *gin.Context) {
if numIn == 1 {
reflect.ValueOf(handler).Call([]reflect.Value{
reflect.ValueOf(c),
})
return
} else {
paramType := handlerType.In(1)
paramElemType := paramType.Elem()
paramValue := reflect.New(paramElemType).Interface()
err := c.ShouldBindUri(paramValue)
if err != nil {
c.JSON(400, gin.H{"error": err.Error()})
return
}
// Call handler with binded struct
reflect.ValueOf(handler).Call([]reflect.Value{
reflect.ValueOf(c),
reflect.ValueOf(paramValue),
})
}
}, nil
}
// AddRoute add route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
// method: Method
//
// Example:
//
// router.AddRoute("user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// }, Get)
func (r *Router) AddRoute(name string, pattern string, handler interface{}, method Method) error {
handlerFunc, err := createHandlerFunc(handler)
if err != nil {
return err
}
r.Routes[name] = NewRoute(name, pattern, handler, method)
r.Router.Handle(method.String(), pattern, handlerFunc)
return nil
}
func (r *Router) AddRouteObject(route *Route) *Router {
l := NewRouteList()
l.AddRoute(route)
r.AddRouteList(l)
return r
}
// AddMultiMethodsRoute add route with multiple methods to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
// methods: []Method
//
// Example:
//
// router.AddMultiMethodsRoute("user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// }, []Method{Get, Post},
// )
func (r *Router) AddMultiMethodsRoute(name string, pattern string, handler interface{}, methods []Method) *Router {
for _, m := range methods {
r.AddRoute(name, pattern, handler, m)
}
return r
}
// AddRouteMethod add route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
// method: Method
//
// Example:
//
// router.AddRouteMethod("user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// }, Get)
func (r *Router) AddRouteMethod(name string, pattern string, handler interface{}, method Method) error {
return r.AddRoute(name, pattern, handler, method)
}
// CreateRoute add generic route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
// method: Method
//
// Example:
//
// CreateRoute(router, "user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// }, Get)
func CreateRoute[T any](r *Router, name string, pattern string, handler func(c *gin.Context, p *T), method Method) error {
return r.AddRoute(name, pattern, handler, method)
}
// AddRouteGet add GET route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
//
// Example:
//
// router.AddRouteGet("user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// })
func (r *Router) AddRouteGet(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Get)
}
// AddRoutePost add POST route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
//
// Example:
//
// router.AddRoutePost("user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// })
func (r *Router) AddRoutePost(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Post)
}
// AddRoutePatch add Path route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
//
// Example:
//
// router.AddRoutePatch("user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// })
func (r *Router) AddRoutePatch(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Patch)
}
// AddRouteDelete add Delete route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
//
// Example:
//
// router.AddRouteDelete("user:detail", "/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// })
func (r *Router) AddRouteDelete(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Delete)
}
// AddRoutePut add Put route to router.
// name: name id for url construct
// pattern: path to route, example "/users/:id".
// handler: func(c *gin.Context, p *struct)
//
// Example:
//
// router.AddRoutePut("/users/:id", func(c *gin.Context, p *struct{
// ID int `uri:"id" binding:"required"`
// }) {
// // code
// c.JSON(http.StatusOK, gin.H{
// "id": p.ID,
// })
// })
func (r *Router) AddRoutePut(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Put)
}
func (r *Router) AddRouteHead(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Head)
}
func (r *Router) AddRouteOptions(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Options)
}
func (r *Router) AddRouteConnect(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Connect)
}
func (r *Router) AddRouteTrace(name string, pattern string, handler interface{}) error {
return r.AddRouteMethod(name, pattern, handler, Trace)
}
func (r *Router) GenerateUrlByName(name string, params map[string]interface{}) (string, error) {
route, exists := r.Routes[name]
if !exists {
return "", errors.New(fmt.Sprintf("route with name %s not found", name))
}
return r.GenerateUrlByPattern(route.pattern, params)
}
func (r *Router) GenerateUrlByPattern(pattern string, params map[string]interface{}) (string, error) {
return GenerateUrlByPattern(pattern, params)
}
// GetNativeRouter return gin router engine
// Docs continue in gin.Engine
func (r *Router) GetNativeRouter() *gin.Engine {
return r.Router
}
// Run attaches the router to a http.Server and starts listening and serving HTTP requests.
// It is a shortcut for http.ListenAndServe(addr, router)
// Note: this method will block the calling goroutine indefinitely unless an error happens.
func (r *Router) Run(addr string) error {
router := r.Router
if h, ok := r.ErrorHandlers[404]; ok {
router.NoRoute(func(c *gin.Context) {
h(c)
})
} else {
router.NoRoute(func(c *gin.Context) {
c.JSON(http.StatusNotFound, gin.H{
"error": "Custom 404",
})
})
}
router.Use(r.ErrorHandlerMiddleware())
return router.Run(addr)
}