-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.go
223 lines (200 loc) · 6.04 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
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
package rio
import (
"errors"
"fmt"
"log/slog"
"net/http"
"time"
)
// ------------------------------------------------------------------
//
//
// LogRequest Middleware
//
//
// ------------------------------------------------------------------
// logResponseWriter allows us to capture the response status code.
type logResponseWriter struct {
http.ResponseWriter
status int
}
func (w *logResponseWriter) WriteHeader(status int) {
w.status = status
w.ResponseWriter.WriteHeader(status)
}
// LogRequest is a middleware which logs the http request and response status.
func LogRequest(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
ww := &logResponseWriter{
ResponseWriter: w,
status: http.StatusOK,
}
// Defer the logging call.
defer func(start time.Time) {
LogInfo(
"request",
slog.Int("status", ww.status),
slog.String("method", r.Method),
slog.String("url", r.URL.RequestURI()),
slog.Duration("time", time.Since(start)),
)
}(time.Now())
// Call the next handler
next.ServeHTTP(ww, r)
}
return http.HandlerFunc(fn)
}
// SkipLogger is a middleware which logs the http request and response status
// if the request url does not match the given path.
func SkipLogger(excludePath string) func(http.Handler) http.Handler {
return func(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
// If the url matches the excludePath,
// the request will not be logged.
if r.URL.Path == excludePath {
next.ServeHTTP(w, r)
return
}
// If the url does not match the excludePath,
// the request will be logged.
LogRequest(next).ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
}
// ------------------------------------------------------------------
//
//
// RecoverPanic Middleware
//
//
// ------------------------------------------------------------------
// RecoverPanic is a middleware which recovers from panics and
// logs a HTTP 500 (Internal Server Error) if possible.
func RecoverPanic(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
// The deferred function will always run,
// even in the event of a panic.
defer func() {
if err := recover(); err != nil {
w.Header().Set("Connection", "close")
LogError(err.(error))
Http500(w)
}
}()
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
// ------------------------------------------------------------------
//
//
// SecureHeaders Middleware
//
//
// ------------------------------------------------------------------
// SecureHeaders is a middleware which adds HTTP security headers
// to every response, inline with current OWASP guidance.
func SecureHeaders(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Referrer-Policy", "origin-when-cross-origin")
w.Header().Set("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload")
w.Header().Set("X-Content-Type-Options", "nosniff")
w.Header().Set("X-Frame-Options", "deny")
w.Header().Set("X-XSS-Protection", "0")
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
// ------------------------------------------------------------------
//
//
// CacheControl Middleware
//
//
// ------------------------------------------------------------------
// CacheControl is a middleware which sets the caching policy for assets.
// Defaults to 2 days.
func CacheControl(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=172800")
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
// CacheControlWithAge is a middleware which sets the caching policy for assets.
func CacheControlWithAge(age int) func(http.Handler) http.Handler {
maxAge := fmt.Sprintf("max-age=%d", age)
return func(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", maxAge)
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
}
// ------------------------------------------------------------------
//
//
// NotFound Middleware
//
//
// ------------------------------------------------------------------
// NotFound is a middleware which returns a 404 Not Found error
// if the request path is not "/".
func NotFound(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/" {
Http404(w, http.StatusText(http.StatusNotFound))
return
}
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
// NotFound is a middleware which returns a 404 Not Found json error
// if the request path is not "/".
func NotFoundJson(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/" {
Json404(w, http.StatusText(http.StatusNotFound))
return
}
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
// ------------------------------------------------------------------
//
//
// MakeHandler Middleware
//
//
// ------------------------------------------------------------------
// HandlerFunc is a custom http handler signature which accepts
// an http.ResponseWriter, *http.Request and returns an error.
// HandlerFuncs must be converted into an http.Handler with the MakeHandler middleware.
type HandlerFunc func(http.ResponseWriter, *http.Request) error
// MakeHandler is a middleware which converts a rio.HandlerFunc to an http.Handler.
// It centralizes the error handling with the custom AppError error type.
func MakeHandler(next HandlerFunc) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
// Run the handler and check for errors.
if err := next(w, r); err != nil {
// If the error is an AppError, then write it to the ResponseWriter.
var appErr AppError
if errors.As(err, &appErr) {
if writeErr := appErr.WriteTo(w); writeErr != nil {
LogError(writeErr)
Http500(w)
}
return
}
// If the error is NOT an AppError, then log it
// and return a generic Http 500.
LogError(err)
Http500(w)
}
}
return http.HandlerFunc(fn)
}