-
Notifications
You must be signed in to change notification settings - Fork 12
/
gin_rate_limit.go
66 lines (61 loc) · 1.69 KB
/
gin_rate_limit.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
package ratelimit
import (
"fmt"
"github.com/gin-gonic/gin"
"time"
)
type Info struct {
Limit uint
RateLimited bool
ResetTime time.Time
RemainingHits uint
}
type Store interface {
// Limit takes in a key and *gin.Context and should return whether that key is allowed to make another request
Limit(key string, c *gin.Context) Info
}
type Options struct {
ErrorHandler func(*gin.Context, Info)
KeyFunc func(*gin.Context) string
// a function that lets you check the rate limiting info and modify the response
BeforeResponse func(c *gin.Context, info Info)
}
// RateLimiter is a function to get gin.HandlerFunc
func RateLimiter(s Store, options *Options) gin.HandlerFunc {
if options == nil {
options = &Options{}
}
if options.ErrorHandler == nil {
options.ErrorHandler = func(c *gin.Context, info Info) {
c.Header("X-Rate-Limit-Limit", fmt.Sprintf("%d", info.Limit))
c.Header("X-Rate-Limit-Reset", fmt.Sprintf("%d", info.ResetTime.Unix()))
c.String(429, "Too many requests")
}
}
if options.BeforeResponse == nil {
options.BeforeResponse = func(c *gin.Context, info Info) {
c.Header("X-Rate-Limit-Limit", fmt.Sprintf("%d", info.Limit))
c.Header("X-Rate-Limit-Remaining", fmt.Sprintf("%v", info.RemainingHits))
c.Header("X-Rate-Limit-Reset", fmt.Sprintf("%d", info.ResetTime.Unix()))
}
}
if options.KeyFunc == nil {
options.KeyFunc = func(c *gin.Context) string {
return c.ClientIP() + c.FullPath()
}
}
return func(c *gin.Context) {
key := options.KeyFunc(c)
info := s.Limit(key, c)
options.BeforeResponse(c, info)
if c.IsAborted() {
return
}
if info.RateLimited {
options.ErrorHandler(c, info)
c.Abort()
} else {
c.Next()
}
}
}