forked from influxdata/influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.go
167 lines (141 loc) · 4.3 KB
/
middleware.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
package http
import (
"bytes"
"errors"
"io"
"net/http"
"path"
"strings"
"time"
kithttp "github.com/influxdata/influxdb/v2/kit/transport/http"
"go.uber.org/zap"
)
// LoggingMW middleware for logging inflight http requests.
func LoggingMW(log *zap.Logger) kithttp.Middleware {
return func(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
srw := kithttp.NewStatusResponseWriter(w)
var buf bytes.Buffer
r.Body = &bodyEchoer{
rc: r.Body,
teedR: io.TeeReader(r.Body, &buf),
}
defer func(start time.Time) {
errField := zap.Skip()
if errStr := w.Header().Get(kithttp.PlatformErrorCodeHeader); errStr != "" {
errField = zap.Error(errors.New(errStr))
}
errReferenceField := zap.Skip()
if errReference := w.Header().Get(kithttp.PlatformErrorCodeHeader); errReference != "" {
errReferenceField = zap.String("error_code", errReference)
}
fields := []zap.Field{
zap.String("method", r.Method),
zap.String("host", r.Host),
zap.String("path", r.URL.Path),
zap.String("query", r.URL.Query().Encode()),
zap.String("proto", r.Proto),
zap.Int("status_code", srw.Code()),
zap.Int("response_size", srw.ResponseBytes()),
zap.Int64("content_length", r.ContentLength),
zap.String("referrer", r.Referer()),
zap.String("remote", r.RemoteAddr),
zap.String("user_agent", kithttp.UserAgent(r)),
zap.Duration("took", time.Since(start)),
errField,
errReferenceField,
}
invalidMethodFn, ok := mapURLPath(r.URL.Path)
if !ok || !invalidMethodFn(r.Method) {
fields = append(fields, zap.ByteString("body", buf.Bytes()))
}
log.Debug("Request", fields...)
}(time.Now())
next.ServeHTTP(srw, r)
}
return http.HandlerFunc(fn)
}
}
type isValidMethodFn func(method string) bool
func mapURLPath(rawPath string) (isValidMethodFn, bool) {
if fn, ok := blacklistEndpoints[rawPath]; ok {
return fn, true
}
shiftPath := func(p string) (head, tail string) {
p = path.Clean("/" + p)
i := strings.Index(p[1:], "/") + 1
if i <= 0 {
return p[1:], "/"
}
return p[1:i], p[i:]
}
// ugh, should probably make this whole operation use a trie
partsMatch := func(raw, source string) bool {
return raw == source || (strings.HasPrefix(source, ":") && raw != "")
}
compareRawSourceURLs := func(raw, source string) bool {
sourceHead, sourceTail := shiftPath(source)
for rawHead, rawTail := shiftPath(rawPath); rawHead != ""; {
if !partsMatch(rawHead, sourceHead) {
return false
}
rawHead, rawTail = shiftPath(rawTail)
sourceHead, sourceTail = shiftPath(sourceTail)
}
return sourceHead == ""
}
for sourcePath, fn := range blacklistEndpoints {
match := compareRawSourceURLs(rawPath, sourcePath)
if match {
return fn, true
}
}
return nil, false
}
func ignoreMethod(ignoredMethods ...string) isValidMethodFn {
if len(ignoredMethods) == 0 {
return func(string) bool { return true }
}
ignoreMap := make(map[string]bool)
for _, method := range ignoredMethods {
ignoreMap[method] = true
}
return func(method string) bool {
return ignoreMap[method]
}
}
// TODO(@jsteenb2): make this a stronger type that handlers can register routes that should not be logged.
var blacklistEndpoints = map[string]isValidMethodFn{
prefixSignIn: ignoreMethod(),
prefixSignOut: ignoreMethod(),
prefixMe: ignoreMethod(),
mePasswordPath: ignoreMethod(),
usersPasswordPath: ignoreMethod(),
"/api/v2/packages/apply": ignoreMethod(),
prefixWrite: ignoreMethod("POST"),
organizationsIDSecretsPath: ignoreMethod("PATCH"),
organizationsIDSecretsDeletePath: ignoreMethod("POST"),
prefixSetup: ignoreMethod("POST"),
prefixNotificationEndpoints: ignoreMethod("POST"),
notificationEndpointsIDPath: ignoreMethod("PUT"),
}
type bodyEchoer struct {
rc io.ReadCloser
teedR io.Reader
}
func (b *bodyEchoer) Read(p []byte) (int, error) {
return b.teedR.Read(p)
}
func (b *bodyEchoer) Close() error {
return b.rc.Close()
}
func applyMW(h http.Handler, m ...kithttp.Middleware) http.Handler {
if len(m) < 1 {
return h
}
wrapped := h
for i := len(m) - 1; i >= 0; i-- {
wrapped = m[i](wrapped)
}
return wrapped
}