middleware.go
1.22 KB
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
package webutility
import (
"net/http"
"time"
"git.to-net.rs/marko.tikvic/gologger"
)
func SetHeaders(h http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
SetDefaultHeaders(w)
if req.Method == http.MethodOptions {
return
}
h(w, req)
}
}
func ParseForm(h http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
err := req.ParseForm()
if err != nil {
BadRequest(w, req, err.Error())
return
}
h(w, req)
}
}
var trafficLogger *gologger.Logger
func EnableLogging(log string) error {
var err error
trafficLogger, err = gologger.New(log, gologger.MaxLogSize5MB)
return err
}
func Log(h http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
in := trafficLogger.RequestLog(req, "")
w2 := WrapWithStatusRecorder(w)
t1 := time.Now()
h(w2, req)
t2 := time.Now()
out := trafficLogger.ResponseLog(w2.Status(), t2.Sub(t1))
trafficLogger.LogHTTPTraffic(in, out)
}
}
func Auth(roles string, h http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
if _, ok := AuthCheck(req, roles); !ok {
Unauthorized(w, req, "")
return
}
h(w, req)
}
}