forked from uptrace/bunrouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
request.go
249 lines (200 loc) · 5.1 KB
/
request.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
package bunrouter
import (
"context"
"encoding/json"
"net/http"
"strconv"
"strings"
)
type routeCtxKey struct{}
func ParamsFromContext(ctx context.Context) Params {
route, _ := ctx.Value(routeCtxKey{}).(Params)
return route
}
func contextWithParams(ctx context.Context, params Params) context.Context {
return context.WithValue(ctx, routeCtxKey{}, params)
}
//------------------------------------------------------------------------------
// HTTPHandler converts http.Handler to bunrouter.HandlerFunc.
func HTTPHandler(handler http.Handler) HandlerFunc {
return HTTPHandlerFunc(handler.ServeHTTP)
}
// HTTPHandlerFunc converts http.HandlerFunc to bunrouter.HandlerFunc.
func HTTPHandlerFunc(handler http.HandlerFunc) HandlerFunc {
return func(w http.ResponseWriter, req Request) (err error) {
ctx := contextWithParams(req.Context(), req.params)
defer func() {
if v := recover(); v != nil {
var ok bool
err, ok = v.(error)
if !ok {
panic(v)
}
}
}()
handler.ServeHTTP(w, req.Request.WithContext(ctx))
return err
}
}
type HandlerFunc func(w http.ResponseWriter, req Request) error
var _ http.Handler = (*HandlerFunc)(nil)
func (h HandlerFunc) ServeHTTP(w http.ResponseWriter, req *http.Request) {
if err := h(w, NewRequest(req)); err != nil {
panic(err)
}
}
type MiddlewareFunc func(next HandlerFunc) HandlerFunc
//------------------------------------------------------------------------------
type Request struct {
*http.Request
params Params
}
func NewRequest(req *http.Request) Request {
return Request{
Request: req,
params: ParamsFromContext(req.Context()),
}
}
func newRequestParams(req *http.Request, params Params) Request {
return Request{
Request: req,
params: params,
}
}
func (req Request) WithContext(ctx context.Context) Request {
return Request{
Request: req.Request.WithContext(ctx),
params: req.params,
}
}
func (req Request) Params() Params {
return req.params
}
func (req Request) Param(key string) string {
return req.Params().ByName(key)
}
func (req Request) Route() string {
return req.Params().Route()
}
//------------------------------------------------------------------------------
type Params struct {
path string
node *node
wildcardLen uint16
}
func (ps Params) IsZero() bool {
return ps.node == nil
}
func (ps Params) Route() string {
if ps.node != nil {
return ps.node.route
}
return ""
}
func (ps Params) Get(name string) (string, bool) {
if ps.node == nil {
return "", false
}
if i, ok := ps.node.params[name]; ok {
return ps.findParam(i)
}
return "", false
}
func (ps *Params) findParam(paramIndex int) (string, bool) {
path := ps.path
pathLen := len(path)
currNode := ps.node
currParamIndex := len(ps.node.params) - 1
// Wildcard can be only in the final node.
if ps.node.isWC {
if currParamIndex == paramIndex {
pathLen -= int(ps.wildcardLen)
return path[pathLen:], true
}
currParamIndex--
pathLen -= int(ps.wildcardLen)
path = path[:pathLen]
}
for currNode != nil {
if currNode.part[0] != ':' { // static node
pathLen -= len(currNode.part)
path = path[:pathLen]
currNode = currNode.parent
continue
}
i := strings.LastIndexByte(path, '/')
if i == -1 {
return "", false
}
pathLen = i + 1
if currParamIndex == paramIndex {
return path[pathLen:], true
}
currParamIndex--
path = path[:pathLen]
currNode = currNode.parent
}
return "", false
}
func (ps Params) ByName(name string) string {
s, _ := ps.Get(name)
return s
}
func (ps Params) Uint32(name string) (uint32, error) {
n, err := strconv.ParseUint(ps.ByName(name), 10, 32)
return uint32(n), err
}
func (ps Params) Uint64(name string) (uint64, error) {
return strconv.ParseUint(ps.ByName(name), 10, 64)
}
func (ps Params) Int32(name string) (int32, error) {
n, err := strconv.ParseInt(ps.ByName(name), 10, 32)
return int32(n), err
}
func (ps Params) Int64(name string) (int64, error) {
return strconv.ParseInt(ps.ByName(name), 10, 64)
}
func (ps Params) Map() map[string]string {
if ps.node == nil || len(ps.node.params) == 0 {
return nil
}
m := make(map[string]string, len(ps.node.params))
for param, index := range ps.node.params {
if value, ok := ps.findParam(index); ok {
m[param] = value
}
}
return m
}
type Param struct {
Key string
Value string
}
func (ps Params) Slice() []Param {
if ps.node == nil || len(ps.node.params) == 0 {
return nil
}
slice := make([]Param, len(ps.node.params))
for param, index := range ps.node.params {
if value, ok := ps.findParam(index); ok {
slice[index] = Param{Key: param, Value: value}
}
}
return slice
}
//------------------------------------------------------------------------------
type H map[string]interface{}
// JSON marshals the value as JSON and writes it to the response writer.
//
// Don't hesitate to copy-paste this function to your project and customize it as necessary.
func JSON(w http.ResponseWriter, value interface{}) error {
if value == nil {
return nil
}
w.Header().Set("Content-Type", "application/json")
enc := json.NewEncoder(w)
if err := enc.Encode(value); err != nil {
return err
}
return nil
}