-
Notifications
You must be signed in to change notification settings - Fork 16
/
router.go
575 lines (479 loc) · 14.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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
package rux
import (
"bytes"
"fmt"
"net/http"
"reflect"
"strings"
"sync"
"github.com/gookit/goutil"
)
/*************************************************************
* Router definition
*************************************************************/
// Router definition
type Router struct {
// router name
Name string
// server start error
err error
// count routes
counter int
// context pool
ctxPool sync.Pool
// Static/stable/fixed routes, no path params.
// {
// "GET/users": Route,
// "POST/users/register": Route,
// }
stableRoutes map[string]*Route
// Cached dynamic routes
// {
// "GET/users/12": Route,
// }
// cachedRoutes map[string]*Route
cachedRoutes *cachedRoutes
// Regular dynamic routing
// - key is METHOD + "first-node":
// - first node string in the route path. "/users/{id}" -> "user"
// Data example:
// {
// "GETblog": [ Route{path:"/blog/{id}"}, ...],
// "POSTblog": [ Route{path:"/blog/{user}/add"}, ...],
// "GETusers": [ Route{path:"/users/{id}"}, ...],
// ...
// }
regularRoutes methodRoutes
// Irregular dynamic routing
// {
// "GET": [Route, ...],
// "POST": [Route, Route, ...],
// }
irregularRoutes methodRoutes
// storage named routes. {"name": Route}
namedRoutes map[string]*Route
// some data for group
currentGroupPrefix string
currentGroupHandlers HandlersChain
// handlers chain
noRoute HandlersChain
noAllowed HandlersChain
handlers HandlersChain
//
// Router Settings:
//
// OnError on happen error
OnError HandlerFunc
// OnPanic on happen panic
OnPanic HandlerFunc
// intercept all request, then redirect to the path. eg. "/coming-soon" "/in-maintenance"
interceptAll string
// maximum number of cached dynamic routes. default is 1000
maxNumCaches uint16
// cache recently accessed dynamic routes. default is False
enableCaching bool
// use encoded path for match route. default is False
useEncodedPath bool
// strict match last slash char('/'). If is True, will strict compare last '/'. default is False
strictLastSlash bool
// the max memory limit for multipart forms
// maxMultipartMemory int64
// whether checks if another method is allowed for the current route. default is False
handleMethodNotAllowed bool
// whether handle the fallback route "/*"
// add by router->Any("/*", handler)
handleFallbackRoute bool
//
// Extends tools
//
// Renderer template(view) interface
// Deprecated: will be removed
Renderer Renderer
}
// New router instance, can with some options.
//
// Quick start:
//
// r := New()
// r.GET("/path", MyAction)
//
// With options:
//
// r := New(EnableCaching, MaxNumCaches(1000))
// r.GET("/path", MyAction)
func New(options ...func(*Router)) *Router {
router := &Router{
Name: "default",
maxNumCaches: 1000,
stableRoutes: make(map[string]*Route),
namedRoutes: make(map[string]*Route),
regularRoutes: make(methodRoutes),
irregularRoutes: make(methodRoutes),
}
// with some options
router.WithOptions(options...)
router.ctxPool.New = func() any {
return &Context{index: -1, router: router}
}
return router
}
// WithOptions for the router
func (r *Router) WithOptions(options ...func(*Router)) {
if r.counter > 0 {
panic("router: unable to set options after add route")
}
for _, opt := range options {
opt(r)
}
}
/*************************************************************
* register routes
*************************************************************/
// GET add routing and only allow GET request methods
func (r *Router) GET(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, GET).Use(middleware...)
}
// HEAD add routing and only allow HEAD request methods
func (r *Router) HEAD(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, HEAD).Use(middleware...)
}
// POST add routing and only allow POST request methods
func (r *Router) POST(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, POST).Use(middleware...)
}
// PUT add routing and only allow PUT request methods
func (r *Router) PUT(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, PUT).Use(middleware...)
}
// PATCH add routing and only allow PATCH request methods
func (r *Router) PATCH(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, PATCH).Use(middleware...)
}
// TRACE add routing and only allow TRACE request methods
func (r *Router) TRACE(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, TRACE).Use(middleware...)
}
// OPTIONS add routing and only allow OPTIONS request methods
func (r *Router) OPTIONS(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, OPTIONS).Use(middleware...)
}
// DELETE add routing and only allow OPTIONS request methods
func (r *Router) DELETE(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, DELETE).Use(middleware...)
}
// CONNECT add routing and only allow CONNECT request methods
func (r *Router) CONNECT(path string, handler HandlerFunc, middleware ...HandlerFunc) *Route {
return r.Add(path, handler, CONNECT).Use(middleware...)
}
// Any add route and allow any request methods
func (r *Router) Any(path string, handler HandlerFunc, middles ...HandlerFunc) {
route := NewRoute(path, handler, anyMethods...)
route.Use(middles...)
r.AddRoute(route)
}
// Add a route to router, allow set multi method
// Usage:
//
// r.Add("/path", myHandler)
// r.Add("/path1", myHandler, "GET", "POST")
func (r *Router) Add(path string, handler HandlerFunc, methods ...string) *Route {
route := NewRoute(path, handler, methods...)
return r.AddRoute(route)
}
// AddNamed add an named route to router, allow set multi method
func (r *Router) AddNamed(name, path string, handler HandlerFunc, methods ...string) *Route {
route := NewNamedRoute(name, path, handler, methods...)
return r.AddRoute(route)
}
// AddRoute add a route by Route instance. , methods ...string
func (r *Router) AddRoute(route *Route) *Route {
r.appendRoute(route)
// init route cache container
if r.enableCaching && r.cachedRoutes == nil {
r.cachedRoutes = NewCachedRoutes(int(r.maxNumCaches))
}
return route
}
// Group add an group routes, can with middleware
func (r *Router) Group(prefix string, register func(), middles ...HandlerFunc) {
prevPrefix := r.currentGroupPrefix
r.currentGroupPrefix = prevPrefix + r.formatPath(prefix)
// handle prev middleware
prevHandlers := r.currentGroupHandlers
if len(middles) > 0 {
// in multi level group routes.
if len(prevHandlers) > 0 {
r.currentGroupHandlers = append(r.currentGroupHandlers, middles...)
} else {
r.currentGroupHandlers = middles
}
}
// call register
register()
// revert
r.currentGroupPrefix = prevPrefix
r.currentGroupHandlers = prevHandlers
}
// Controller register some routes by a controller
func (r *Router) Controller(basePath string, controller ControllerFace, middles ...HandlerFunc) {
r.Group(basePath, func() {
controller.AddRoutes(r)
}, middles...)
}
// Resource register RESTFul style routes by a controller
//
// Methods Path Action Route Name
// GET /resource index resource_index
// GET /resource/create create resource_create
// POST /resource store resource_store
// GET /resource/{id} show resource_show
// GET /resource/{id}/edit edit resource_edit
// PUT/PATCH /resource/{id} update resource_update
// DELETE /resource/{id} delete resource_delete
func (r *Router) Resource(basePath string, controller any, middles ...HandlerFunc) {
cv := reflect.ValueOf(controller)
ct := cv.Type()
if cv.Kind() != reflect.Ptr {
panic("controller must type ptr")
}
if cv.Elem().Type().Kind() != reflect.Struct {
panic("controller must type struct")
}
var handlerFuncs = make(map[string][]HandlerFunc)
// can custom add middleware for actions
if m := cv.MethodByName("Uses"); m.IsValid() {
if uses, ok := m.Interface().(func() map[string][]HandlerFunc); ok {
handlerFuncs = uses()
}
}
resName := strings.ToLower(ct.Elem().Name())
basePath += resName
r.Group(basePath, func() {
for name, methods := range RESTFulActions {
m := cv.MethodByName(name)
if !m.IsValid() {
continue
}
action, ok := m.Interface().(func(*Context))
if !ok {
continue
}
var route *Route
routeName := resName + "_" + strings.ToLower(name)
if name == IndexAction || name == StoreAction {
route = r.AddNamed(routeName, "/", action, methods...)
} else if name == CreateAction {
route = r.AddNamed(routeName, "/"+strings.ToLower(name)+"/", action, methods...)
} else if name == EditAction {
route = r.AddNamed(routeName, "{id}/"+strings.ToLower(name)+"/", action, methods...)
} else { // if name == SHOW || name == UPDATE || name == DELETE
route = r.AddNamed(routeName, "{id}/", action, methods...)
}
if handlers, ok := handlerFuncs[name]; ok {
route.Use(handlers...)
}
}
}, middles...)
}
// NotFound handlers for router
func (r *Router) NotFound(handlers ...HandlerFunc) {
r.noRoute = handlers
}
// NotAllowed handlers for router
func (r *Router) NotAllowed(handlers ...HandlerFunc) {
r.noAllowed = handlers
}
// Handlers get global handlers
func (r *Router) Handlers() HandlersChain {
return r.handlers
}
/*************************************************************
* static assets file handle
*************************************************************/
// StaticFile add a static asset file handle
func (r *Router) StaticFile(path, filePath string) {
r.GET(path, func(c *Context) {
c.File(filePath)
})
}
// StaticFunc add a static asset file handle
func (r *Router) StaticFunc(path string, handler func(c *Context)) {
r.GET(path, handler)
}
// StaticFS add a file system handle.
func (r *Router) StaticFS(prefixURL string, fs http.FileSystem) {
fsHandler := http.StripPrefix(prefixURL, http.FileServer(fs))
r.GET(prefixURL+`/{file:.+}`, func(c *Context) {
fsHandler.ServeHTTP(c.Resp, c.Req)
})
}
// StaticDir add a static asset file handle
//
// Usage:
//
// r.StaticDir("/assets", "/static")
// // access GET /assets/css/site.css -> will find /static/css/site.css
func (r *Router) StaticDir(prefixURL string, fileDir string) {
fsHandler := http.StripPrefix(prefixURL, http.FileServer(http.Dir(fileDir)))
r.GET(prefixURL+`/{file:.+}`, func(c *Context) {
// c.Req.URL.Path = c.Param("file") // can also.
fsHandler.ServeHTTP(c.Resp, c.Req)
})
}
// StaticFiles static files from the given file system root. and allow limit extensions.
//
// Usage:
//
// router.ServeFiles("/src", "/var/www", "css|js|html")
//
// Notice: if the rootDir is relation path, it is relative the server runtime dir.
func (r *Router) StaticFiles(prefixURL string, rootDir string, exts string) {
fsHandler := http.FileServer(http.Dir(rootDir))
// eg "/assets/(?:.+\.(?:css|js|html))"
r.GET(fmt.Sprintf(`%s/{file:.+\.(?:%s)}`, prefixURL, exts), func(c *Context) {
c.Req.URL.Path = c.Param("file")
fsHandler.ServeHTTP(c.Resp, c.Req)
})
}
/*************************************************************
* help methods
*************************************************************/
// GetRoute get a named route.
func (r *Router) GetRoute(name string) *Route {
return r.namedRoutes[name]
}
// NamedRoutes get all named routes.
func (r *Router) NamedRoutes() map[string]*Route {
return r.namedRoutes
}
// Routes get all route basic info
func (r *Router) Routes() (rs []RouteInfo) {
r.IterateRoutes(func(route *Route) {
rs = append(rs, route.Info())
})
return
}
// IterateRoutes iterate all routes
func (r *Router) IterateRoutes(fn func(route *Route)) {
for _, route := range r.stableRoutes {
fn(route)
}
for _, routes := range r.regularRoutes {
for _, route := range routes {
fn(route)
}
}
for _, routes := range r.irregularRoutes {
for _, route := range routes {
fn(route)
}
}
}
// String convert all routes to string
func (r *Router) String() string {
buf := new(bytes.Buffer)
_, _ = fmt.Fprintf(buf, "Routes Count: %d\n", r.counter)
_, _ = fmt.Fprint(buf, "Stable(fixed):\n")
for _, route := range r.stableRoutes {
_, _ = fmt.Fprintf(buf, " %s\n", route)
}
_, _ = fmt.Fprint(buf, "Regular(dynamic):\n")
for pfx, routes := range r.regularRoutes {
_, _ = fmt.Fprintf(buf, " %s:\n", pfx)
for _, route := range routes {
_, _ = fmt.Fprintf(buf, " %s\n", route.String())
}
}
_, _ = fmt.Fprint(buf, "Irregular(dynamic):\n")
for m, routes := range r.irregularRoutes {
_, _ = fmt.Fprintf(buf, " %s:\n", m)
for _, route := range routes {
_, _ = fmt.Fprintf(buf, " %s\n", route.String())
}
}
return buf.String()
}
func (r *Router) formatPath(path string) string {
if path == "" || path == "/" {
return "/"
}
path = strings.TrimSpace(path)
// clear last slash: '/'
if !r.strictLastSlash && path[len(path)-1] == '/' {
path = strings.TrimRight(path, "/") // TODO alloc 1 times
}
if path == "" || path == "/" {
return "/"
}
// fix: "home" -> "/home"
if path[0] != '/' {
return "/" + path
}
// fix: "//home" -> "/home"
if path[1] == '/' {
return "/" + strings.TrimLeft(path, "/")
}
return path
}
func (r *Router) appendRoute(route *Route) {
// route check: methods, handler
route.goodInfo()
// format path and append group info
r.appendGroupInfo(route)
// print debug info
debugPrintRoute(route)
// has route name.
if route.name != "" {
r.namedRoutes[route.name] = route
}
// path is fixed(no param vars). eg. "/users"
if isFixedPath(route.path) {
path := route.path
for _, method := range route.methods {
key := method + path
r.counter++
r.stableRoutes[key] = route
}
return
}
// parsing route path with parameters
if first := r.parseParamRoute(route); first != "" {
for _, method := range route.methods {
key := method + first
rs, has := r.regularRoutes[key]
if !has {
rs = routes{}
}
r.counter++
r.regularRoutes[key] = append(rs, route)
}
return
}
// it's irregular param route
for _, method := range route.methods {
rs, has := r.irregularRoutes[method]
if has {
rs = routes{}
}
r.counter++
r.irregularRoutes[method] = append(rs, route)
}
}
func (r *Router) appendGroupInfo(route *Route) {
path := r.formatPath(route.path)
if r.currentGroupPrefix != "" {
path = r.formatPath(r.currentGroupPrefix + path)
}
if len(r.currentGroupHandlers) > 0 {
route.handlers = combineHandlers(r.currentGroupHandlers, route.handlers)
if finalSize := len(route.handlers); finalSize >= int(abortIndex) {
goutil.Panicf("too many handlers(number: %d)", finalSize)
}
}
// re-set formatted path
route.path = path
}
// Err get
func (r *Router) Err() error {
return r.err
}