-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathmiddleware.go
156 lines (141 loc) · 4.08 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
// Package cherryGin from https://github.com/gin-contrib/zap/
package cherryGin
import (
csync "github.com/cherry-game/cherry/extend/sync"
clog "github.com/cherry-game/cherry/logger"
"net"
"net/http"
"net/http/httputil"
"os"
"runtime/debug"
"strings"
"time"
)
func GinDefaultZap() GinHandlerFunc {
return GinZap(time.RFC3339, true)
}
// GinZap returns a gin.HandlerFunc (middleware) that logs requests using uber-go/zap.
//
// Requests with errors are logged using zap.Error().
// Requests without errors are logged using zap.Info().
//
// It receives:
// 1. A time package format string (e.g. time.RFC3339).
// 2. A boolean stating whether to use UTC time zone or local.
func GinZap(timeFormat string, utc bool) GinHandlerFunc {
return func(c *Context) {
start := time.Now()
// some evil middlewares modify this values
path := c.Request.URL.Path
query := c.Request.URL.RawQuery
c.Next()
end := time.Now()
latency := end.Sub(start)
if utc {
end = end.UTC()
}
if len(c.Errors) > 0 {
// Append error field if this is an erroneous request.
for _, e := range c.Errors.Errors() {
clog.Error(e)
}
} else {
clog.Debugw(c.FullPath(),
"status", c.Writer.Status(),
"method", c.Request.Method,
"path", path,
"query", query,
"ip", c.ClientIP(),
"user-agent", c.Request.UserAgent(),
"time", end.Format(timeFormat),
"latency", latency,
)
}
}
}
// RecoveryWithZap returns a gin.HandlerFunc (middleware)
// that recovers from any panics and logs requests using uber-go/zap.
// All errors are logged using zap.Error().
// stack means whether output the stack info.
// The stack info is easy to find where the error occurs but the stack info is too large.
func RecoveryWithZap(stack bool) GinHandlerFunc {
return func(c *Context) {
defer func() {
if err := recover(); err != nil {
// Check for a broken connection, as it is not really a
// condition that warrants a panic stack trace.
var brokenPipe bool
if ne, ok := err.(*net.OpError); ok {
if se, ok := ne.Err.(*os.SyscallError); ok {
if strings.Contains(strings.ToLower(se.Error()), "broken pipe") ||
strings.Contains(strings.ToLower(se.Error()), "connection reset by peer") {
brokenPipe = true
}
}
}
httpRequest, _ := httputil.DumpRequest(c.Request, false)
if brokenPipe {
clog.Warnw(c.Request.URL.Path,
"error", err,
"request", string(httpRequest),
)
// If the connection is dead, we can't write a status to it.
c.Error(err.(error)) // nolint: errcheck
c.Abort()
return
}
if stack {
clog.Warnw("[Recovery from panic]",
"time", time.Now(),
"error", err,
"request", string(httpRequest),
"stack", string(debug.Stack()),
)
} else {
clog.Warnw("[Recovery from panic]",
"time", time.Now(),
"error", err,
"request", string(httpRequest),
)
}
c.AbortWithStatus(http.StatusInternalServerError)
}
}()
c.Next()
}
}
func Cors(domain ...string) GinHandlerFunc {
return func(c *Context) {
method := c.Request.Method
if len(domain) > 0 {
c.Header("Access-Control-Allow-Origin", domain[0])
} else {
c.Header("Access-Control-Allow-Origin", "*")
}
c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE, UPDATE")
c.Header("Access-Control-Allow-Headers", "Content-Type,AccessToken,X-CSRF-Token, Authorization, Token")
c.Header("Access-Control-Expose-Headers", "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers, Content-Type")
c.Header("Access-Control-Allow-Credentials", "true")
if method == "OPTIONS" {
c.AbortWithStatus(http.StatusNoContent)
}
c.Next()
}
}
// MaxConnect limit max connect
func MaxConnect(n int) GinHandlerFunc {
latch := csync.NewLimit(n)
return func(c *Context) {
if latch.TryBorrow() {
defer func() {
if err := latch.Return(); err != nil {
clog.Warn(err)
}
}()
c.Next()
} else {
clog.Warnf("limit = %d, service unavailable. url = %s", n, c.Request.RequestURI)
c.AbortWithStatus(http.StatusServiceUnavailable)
}
}
}