forked from go-playground/lars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
159 lines (117 loc) · 3.16 KB
/
util.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
package lars
import (
"mime"
"net/http"
"path/filepath"
"reflect"
"runtime"
)
// NativeChainHandler is used in native handler chain middleware
// example using nosurf crsf middleware nosurf.NewPure(lars.NativeChainHandler)
var NativeChainHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
c := GetContext(w)
b := c.BaseContext()
b.request = r
if b.index+1 < len(b.handlers) {
c.Next()
}
})
// GetContext is a helper method for retrieving the Context object from
// the ResponseWriter when using native go hanlders.
// NOTE: this will panic if fed an http.ResponseWriter not provided by lars's
// chaining.
func GetContext(w http.ResponseWriter) Context {
return w.(*Response).context
}
func detectContentType(filename string) (t string) {
if t = mime.TypeByExtension(filepath.Ext(filename)); t == "" {
t = OctetStream
}
return
}
// wrapHandler wraps Handler type
func (l *LARS) wrapHandler(h Handler) HandlerFunc {
switch h := h.(type) {
case HandlerFunc:
return h
case func(Context):
return h
case http.Handler, http.HandlerFunc:
return func(c Context) {
ctx := c.BaseContext()
if h.(http.Handler).ServeHTTP(ctx.response, ctx.request); ctx.response.status != http.StatusOK || ctx.response.committed {
return
}
if ctx.index+1 < len(ctx.handlers) {
c.Next()
}
}
case func(http.ResponseWriter, *http.Request):
return func(c Context) {
ctx := c.BaseContext()
if h(ctx.response, ctx.request); ctx.response.status != http.StatusOK || ctx.response.committed {
return
}
if ctx.index+1 < len(ctx.handlers) {
c.Next()
}
}
case func(http.ResponseWriter, *http.Request, http.Handler):
return func(c Context) {
ctx := c.BaseContext()
h(ctx.response, ctx.request, NativeChainHandler)
}
case func(http.Handler) http.Handler:
hf := h(NativeChainHandler)
return func(c Context) {
ctx := c.BaseContext()
hf.ServeHTTP(ctx.response, ctx.request)
}
default:
if fn, ok := l.customHandlersFuncs[reflect.TypeOf(h)]; ok {
return func(c Context) {
fn(c, h)
}
}
panic("unknown handler")
}
}
// wrapHandlerWithName wraps Handler type and returns it including it's name before wrapping
func (l *LARS) wrapHandlerWithName(h Handler) (chain HandlerFunc, handlerName string) {
chain = l.wrapHandler(h)
handlerName = runtime.FuncForPC(reflect.ValueOf(h).Pointer()).Name()
return
}
func (l *LARS) redirect(method string, to string) (handlers HandlersChain) {
code := http.StatusMovedPermanently
if method != GET {
code = http.StatusPermanentRedirect
}
fn := func(c Context) {
inCtx := c.BaseContext()
http.Redirect(inCtx.response, inCtx.request, to, code)
}
hndlrs := make(HandlersChain, len(l.routeGroup.middleware)+1)
copy(hndlrs, l.routeGroup.middleware)
hndlrs[len(l.routeGroup.middleware)] = fn
handlers = hndlrs
return
}
func min(a, b int) int {
if a <= b {
return a
}
return b
}
func countParams(path string) uint8 {
var n uint // add one just as a buffer
for i := 0; i < len(path); i++ {
if path[i] == paramByte || path[i] == wildByte {
n++
}
}
if n >= 255 {
panic("too many parameters defined in path, max is 255")
}
return uint8(n)
}