-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrouter.go
237 lines (200 loc) · 5.47 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
package torque
import (
"context"
"io/fs"
"log"
"net/http"
"path/filepath"
"strings"
)
const (
parameterKey = "{}"
)
type Router interface {
http.Handler
Handle(pattern string, handler http.Handler)
HandleFileSystem(pattern string, fs fs.FS)
Redirect(pattern string, location string, status int)
Match(method, pattern string) (http.Handler, PathParams, bool)
}
type Middleware func(http.Handler) http.Handler
type trieNode struct {
segment string
parent *trieNode
children map[string]*trieNode
handlers map[string]http.Handler
isParam bool
paramName string
}
type router struct {
h Handler
root *trieNode
prefix string
}
func createRouter[T ViewModel](h *handlerImpl[T], ctl Controller) *router {
r := &router{
h: h,
prefix: h.path,
root: &trieNode{
children: make(map[string]*trieNode),
handlers: map[string]http.Handler{"*": h},
},
}
if rp, ok := ctl.(RouterProvider); ok {
rp.Router(r)
}
return r
}
func (r *router) ServeHTTP(w http.ResponseWriter, req *http.Request) {
h, params, ok := r.Match(req.Method, req.URL.Path)
if !ok {
http.NotFound(w, req)
return
}
ctx := req.Context()
ctx = context.WithValue(ctx, paramsContextKey, params)
h.ServeHTTP(w, req.WithContext(ctx))
}
func (r *router) Handle(path string, h http.Handler) {
r.handleMethod("*", path, h)
}
// handleMethod registers a handler or merges a router if passed.
func (r *router) handleMethod(method, path string, h http.Handler) {
var handler http.Handler
switch h.(type) {
case Handler:
handler = h
case noWrapHandler:
// prevent wrapping by using torque.NoOutlet
handler = h
case http.Handler:
// promote any vanilla handlers by wrapping
handler = MustNewV(h.(http.Handler))
}
var (
fullPath = filepath.Join(r.prefix, path)
segments = strings.Split(fullPath, "/")
node = r.root
)
for _, segment := range segments {
if segment == "" {
continue
}
isParam := strings.HasPrefix(segment, "{") && strings.HasSuffix(segment, "}")
var key string
if isParam {
key = parameterKey
} else {
key = segment
}
if _, exists := node.children[key]; !exists {
node.children[key] = &trieNode{
segment: segment,
parent: node,
children: make(map[string]*trieNode),
handlers: make(map[string]http.Handler),
isParam: isParam,
paramName: func() string {
if isParam {
return segment[1 : len(segment)-1] // Extract param name (e.g., userId from {userId})
}
return ""
}(),
}
}
node = node.children[key]
}
// Store the handler at the final node for the given method (e.g., GET)
node.handlers[method] = handler
if handler, ok := handler.(Handler); ok {
// create a relationship between the parent and child
if r.h.HasOutlet() {
handler.setParent(r.h)
}
// "merge-up" the radix sub-trie from the child router. when this handler's internal
// router is ever executed it will need to know about its children during Router.Match.
if handler.getRouter() != nil {
var childRouter = handler.getRouter().root
for key, child := range childRouter.children {
node.children[key] = child
}
if len(childRouter.handlers) > 0 {
node.handlers[method] = childRouter.handlers[method]
}
}
}
}
// Match finds a handler based on the method and path
func (r *router) Match(method, path string) (http.Handler, PathParams, bool) {
params := make(map[string]string)
segments := strings.Split(path, "/")
// Traverse the radix trie to find the matching handler
node := r.root
for _, segment := range segments {
if segment == "" {
continue
}
if child, exists := node.children[segment]; exists {
node = child
} else if paramChild, exists := node.children["{}"]; exists {
node = paramChild
params[node.paramName] = segment
} else if wildcardChild, exists := node.children["*"]; exists {
node = wildcardChild
break
} else {
return nil, nil, false
}
}
// Return the handler if it exists for the given method or wildcard.
var handler http.Handler
if h, ok := node.handlers[method]; ok {
handler = h
} else if h, ok := node.handlers["*"]; ok {
handler = h
}
if handler != nil {
return handler, params, true
} else {
return nil, nil, false
}
}
func (r *router) HandleFileSystem(pattern string, fs fs.FS) {
pattern = strings.TrimSuffix(pattern, "/*")
if r.h.GetMode() == ModeDevelopment {
logFileSystem(fs)
}
r.handleMethod("GET", pattern+"/*", NoOutlet(http.StripPrefix(pattern, http.FileServer(http.FS(fs)))))
}
func logFileSystem(fsys fs.FS) {
var walkFn func(path string, d fs.DirEntry, err error) error
walkFn = func(path string, d fs.DirEntry, err error) error {
if err != nil {
return err
} else if d.IsDir() {
log.Printf("Dir: %s", path)
} else {
log.Printf("File: %s", path)
}
return nil
}
err := fs.WalkDir(fsys, ".", walkFn)
if err != nil {
panic(err)
}
}
type noWrapHandler func(http.ResponseWriter, *http.Request)
func (h noWrapHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
h(w, req)
}
// NoOutlet indicates to the Router that the given http.Handler should not be wrapped when
// adding it via Handle. This is useful when you want to pass a vanilla http.Handler to
// a Router that shouldn't be wrapped by its parent's output.
func NoOutlet(h http.Handler) http.Handler {
return noWrapHandler(func(w http.ResponseWriter, req *http.Request) {
h.ServeHTTP(w, req)
})
}
func (r *router) Redirect(pattern string, url string, status int) {
r.Handle(pattern, NoOutlet(http.RedirectHandler(url, status)))
}