forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware_rate_limiting.go
102 lines (82 loc) · 3.27 KB
/
middleware_rate_limiting.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
package main
import "net/http"
import (
"errors"
"github.com/Sirupsen/logrus"
"github.com/gorilla/context"
)
var sessionLimiter = SessionLimiter{}
var sessionMonitor = Monitor{}
// RateLimitAndQuotaCheck will check the incomming request and key whether it is within it's quota and
// within it's rate limit, it makes use of the SessionLimiter object to do this
type RateLimitAndQuotaCheck struct {
*TykMiddleware
}
// New lets you do any initialisations for the object can be done here
func (k *RateLimitAndQuotaCheck) New() {}
// GetConfig retrieves the configuration from the API config - we user mapstructure for this for simplicity
func (k *RateLimitAndQuotaCheck) GetConfig() (interface{}, error) {
return nil, nil
}
// ProcessRequest will run any checks on the request on the way through the system, return an error to have the chain fail
func (k *RateLimitAndQuotaCheck) ProcessRequest(w http.ResponseWriter, r *http.Request, configuration interface{}) (error, int) {
thisSessionState := context.Get(r, SessionData).(SessionState)
authHeaderValue := context.Get(r, AuthHeaderValue).(string)
storeRef := k.Spec.SessionManager.GetStore()
forwardMessage, reason := sessionLimiter.ForwardMessage(&thisSessionState, authHeaderValue, storeRef)
// Ensure quota and rate data for this session are recorded
if !config.UseAsyncSessionWrite {
k.Spec.SessionManager.UpdateSession(authHeaderValue, thisSessionState, 0)
context.Set(r, SessionData, thisSessionState)
} else {
go k.Spec.SessionManager.UpdateSession(authHeaderValue, thisSessionState, 0)
go context.Set(r, SessionData, thisSessionState)
}
log.Debug("SessionState: ", thisSessionState)
if !forwardMessage {
// TODO Use an Enum!
if reason == 1 {
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": r.RemoteAddr,
"key": authHeaderValue,
}).Info("Key rate limit exceeded.")
// Fire a rate limit exceeded event
go k.TykMiddleware.FireEvent(EVENT_RateLimitExceeded,
EVENT_RateLimitExceededMeta{
EventMetaDefault: EventMetaDefault{Message: "Key Rate Limit Exceeded", OriginatingRequest: EncodeRequestToEvent(r)},
Path: r.URL.Path,
Origin: r.RemoteAddr,
Key: authHeaderValue,
})
// Report in health check
ReportHealthCheckValue(k.Spec.Health, Throttle, "-1")
return errors.New("Rate limit exceeded"), 429
} else if reason == 2 {
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": r.RemoteAddr,
"key": authHeaderValue,
}).Info("Key quota limit exceeded.")
// Fire a quota exceeded event
go k.TykMiddleware.FireEvent(EVENT_QuotaExceeded,
EVENT_QuotaExceededMeta{
EventMetaDefault: EventMetaDefault{Message: "Key Quota Limit Exceeded", OriginatingRequest: EncodeRequestToEvent(r)},
Path: r.URL.Path,
Origin: r.RemoteAddr,
Key: authHeaderValue,
})
// Report in health check
ReportHealthCheckValue(k.Spec.Health, QuotaViolation, "-1")
return errors.New("Quota exceeded"), 403
}
// Other reason? Still not allowed
return errors.New("Access denied"), 403
}
// Run the trigger monitor
if config.Monitor.MonitorUserKeys {
sessionMonitor.Check(&thisSessionState, authHeaderValue)
}
// Request is valid, carry on
return nil, 200
}