-
Notifications
You must be signed in to change notification settings - Fork 2
/
logmiddlware.go
202 lines (186 loc) · 4.6 KB
/
logmiddlware.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
package frisbii
import (
"bufio"
"errors"
"fmt"
"io"
"net"
"net/http"
"net/url"
"strconv"
"strings"
"time"
)
var _ http.Handler = (*LogMiddleware)(nil)
var _ ErrorLogger = (*LoggingResponseWriter)(nil)
type LogHandler func(
time time.Time,
remoteAddr string,
method string,
url url.URL,
status int,
duration time.Duration,
bytes int,
compressionRatio string,
userAgent string,
msg string,
)
// LogMiddlware is a middleware that logs requests to the given io.Writer.
// it wraps requests in a LoggingResponseWriter that can be used to log
// standardised messages to the writer.
type LogMiddleware struct {
next http.Handler
logWriter io.Writer
logHandler LogHandler
}
// NewLogMiddleware creates a new LogMiddleware to insert into an HTTP call
// chain.
//
// The WithLogWriter option can be used to set the writer to log to.
//
// The WithLogHandler option can be used to set a custom log handler.
func NewLogMiddleware(next http.Handler, httpOptions ...HttpOption) *LogMiddleware {
cfg := toConfig(httpOptions)
return &LogMiddleware{
next: next,
logWriter: cfg.LogWriter,
logHandler: cfg.LogHandler,
}
}
func (lm *LogMiddleware) ServeHTTP(res http.ResponseWriter, req *http.Request) {
if lm.logHandler != nil || lm.logWriter != nil {
lres := NewLoggingResponseWriter(res, req, lm.logWriter, lm.logHandler)
start := time.Now()
defer func() {
lres.Log(lres.status, start, lres.sentBytes, lres.CompressionRatio(), "")
}()
res = lres
}
lm.next.ServeHTTP(res, req)
}
var _ http.ResponseWriter = (*LoggingResponseWriter)(nil)
type LoggingResponseWriter struct {
http.ResponseWriter
logWriter io.Writer
logHandler LogHandler
req *http.Request
status int
wroteBytes int
sentBytes int
wrote bool
}
// NewLoggingResponseWriter creates a new LoggingResponseWriter that is used
// on a per-request basis to log information about the request.
func NewLoggingResponseWriter(
w http.ResponseWriter,
req *http.Request,
logWriter io.Writer,
logHandler LogHandler,
) *LoggingResponseWriter {
return &LoggingResponseWriter{
ResponseWriter: w,
req: req,
logWriter: logWriter,
logHandler: logHandler,
}
}
// WroteBytes can be called by the base writer, on each Write call, to indicate
// how many bytes were written in to the response. If LoggingResponseWriter is
// wrapping a compression writer, this should be the number of bytes written
// to the compression writer, which will be different than the number of bytes
// written to this writer; hence we can calculate the compression ratio.
func (w *LoggingResponseWriter) WroteBytes(n int) {
w.wroteBytes += n
}
func (w *LoggingResponseWriter) CompressionRatio() string {
if w.sentBytes == 0 || w.wroteBytes == 0 || w.wroteBytes == w.sentBytes {
return "-"
}
s := fmt.Sprintf("%.2f", float64(w.wroteBytes)/float64(w.sentBytes))
if s == "0.00" {
return "-"
}
return s
}
func (w *LoggingResponseWriter) Log(
status int,
start time.Time,
bytes int,
CompressionRatio string,
msg string,
) {
if w.wrote {
return
}
duration := time.Since(start)
w.wrote = true
remoteAddr := w.req.RemoteAddr
if ss := strings.Split(remoteAddr, ":"); len(ss) > 0 {
remoteAddr = ss[0]
}
if w.logWriter != nil {
fmt.Fprintf(
w.logWriter,
"%s %s %s \"%s\" %d %d %d %s %s %s\n",
start.Format(time.RFC3339),
remoteAddr,
w.req.Method,
w.req.URL,
status,
duration.Milliseconds(),
bytes,
CompressionRatio,
strconv.Quote(w.req.UserAgent()),
strconv.Quote(msg),
)
}
if w.logHandler != nil {
w.logHandler(
start,
remoteAddr,
w.req.Method,
*w.req.URL,
status,
duration,
bytes,
CompressionRatio,
strconv.Quote(w.req.UserAgent()),
strconv.Quote(msg),
)
}
}
func (w *LoggingResponseWriter) LogError(status int, err error) {
msg := err.Error()
// unwrap error and find the msg at the bottom error
for {
if e := errors.Unwrap(err); e != nil {
msg = e.Error()
err = e
} else {
break
}
}
w.Log(status, time.Now(), 0, "-", msg)
w.status = status
if w.sentBytes == 0 {
http.Error(w.ResponseWriter, strconv.Quote(msg), status)
}
}
func (w *LoggingResponseWriter) WriteHeader(status int) {
w.status = status
w.ResponseWriter.WriteHeader(status)
}
func (w *LoggingResponseWriter) Write(b []byte) (int, error) {
if w.status == 0 {
w.status = http.StatusOK
}
n, err := w.ResponseWriter.Write(b)
w.sentBytes += n
return n, err
}
func (w *LoggingResponseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
if hj, ok := w.ResponseWriter.(http.Hijacker); ok {
return hj.Hijack()
}
return nil, nil, errors.New("http.Hijacker not implemented")
}