forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_success.go
332 lines (276 loc) · 9.7 KB
/
handler_success.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
package main
import (
"bytes"
b64 "encoding/base64"
"github.com/gorilla/context"
"github.com/pmylund/go-cache"
"io"
"net/http"
"runtime/pprof"
"strconv"
"strings"
"time"
)
// ContextKey is a key type to avoid collisions
type ContextKey int
// Enums for keys to be stored in a session context - this is how gorilla expects
// these to be implemented and is lifted pretty much from docs
const (
SessionData = 0
AuthHeaderValue = 1
VersionData = 2
VersionKeyContext = 3
OrgSessionContext = 4
)
var SessionCache *cache.Cache = cache.New(10*time.Second, 5*time.Second)
type ReturningHttpHandler interface {
ServeHTTP(http.ResponseWriter, *http.Request) *http.Response
ServeHTTPForCache(http.ResponseWriter, *http.Request) *http.Response
CopyResponse(io.Writer, io.Reader)
New(interface{}, *APISpec) (TykResponseHandler, error)
}
// TykMiddleware wraps up the ApiSpec and Proxy objects to be included in a
// middleware handler, this can probably be handled better.
type TykMiddleware struct {
Spec *APISpec
Proxy ReturningHttpHandler
}
func SetUpSessionCache() *cache.Cache {
sessionLength := 10
evictionTime := 5
if config.LocalSessionCache.CachedSessionTimeout > 0 {
sessionLength = config.LocalSessionCache.CachedSessionTimeout
}
if config.LocalSessionCache.CacheSessionEviction > 0 {
evictionTime = config.LocalSessionCache.CacheSessionEviction
}
return cache.New(time.Duration(sessionLength)*time.Second, time.Duration(evictionTime)*time.Second)
}
func (t TykMiddleware) GetOrgSession(key string) (SessionState, bool) {
// Try and get the session from the session store
var thisSession SessionState
var found bool
thisSession, found = t.Spec.OrgSessionManager.GetSessionDetail(key)
if found {
// If exists, assume it has been authorized and pass on
return thisSession, true
}
return thisSession, found
}
// ApplyPolicyIfExists will check if a policy is loaded, if it is, it will overwrite the session state to use the policy values
func (t TykMiddleware) ApplyPolicyIfExists(key string, thisSession *SessionState) {
if thisSession.ApplyPolicyID != "" {
log.Debug("Session has policy, checking")
policy, ok := Policies[thisSession.ApplyPolicyID]
if ok {
// Check ownership, policy org owner must be the same as API,
// otherwise youcould overwrite a session key with a policy from a different org!
if policy.OrgID != t.Spec.APIDefinition.OrgID {
log.Error("Attempting to apply policy from different organisation to key, skipping")
return
}
log.Debug("Found policy, applying")
thisSession.Allowance = policy.Rate // This is a legacy thing, merely to make sure output is consistent. Needs to be purged
thisSession.Rate = policy.Rate
thisSession.Per = policy.Per
thisSession.QuotaMax = policy.QuotaMax
thisSession.QuotaRenewalRate = policy.QuotaRenewalRate
thisSession.AccessRights = policy.AccessRights
thisSession.HMACEnabled = policy.HMACEnabled
thisSession.IsInactive = policy.IsInactive
thisSession.Tags = policy.Tags
log.Debug("Policy Applied, Access rights are: ", thisSession.AccessRights)
log.Debug("Policy Applied, Access rights were: ", policy.AccessRights)
// Update the session in the session manager in case it gets called again
t.Spec.SessionManager.UpdateSession(key, *thisSession, t.Spec.APIDefinition.SessionLifetime)
log.Debug("Policy applied to key")
}
}
}
// CheckSessionAndIdentityForValidKey will check first the Session store for a valid key, if not found, it will try
// the Auth Handler, if not found it will fail
func (t TykMiddleware) CheckSessionAndIdentityForValidKey(key string) (SessionState, bool) {
// Try and get the session from the session store
var thisSession SessionState
var found bool
// Check in-memory cache
if !config.LocalSessionCache.DisableCacheSessionState {
cachedVal, found := SessionCache.Get(key)
if found {
log.Debug("Key found in local cache")
thisSession = cachedVal.(SessionState)
t.ApplyPolicyIfExists(key, &thisSession)
return thisSession, true
}
}
// Check session store
thisSession, found = t.Spec.SessionManager.GetSessionDetail(key)
if found {
// If exists, assume it has been authorized and pass on
// cache it
go SessionCache.Set(key, thisSession, cache.DefaultExpiration)
// Check for a policy, if there is a policy, pull it and overwrite the session values
t.ApplyPolicyIfExists(key, &thisSession)
return thisSession, true
}
// 2. If not there, get it from the AuthorizationHandler
thisSession, found = t.Spec.AuthManager.IsKeyAuthorised(key)
if found {
// If not in Session, and got it from AuthHandler, create a session with a new TTL
log.Info("Recreating session for key: ", key)
// cache it
go SessionCache.Set(key, thisSession, cache.DefaultExpiration)
// Check for a policy, if there is a policy, pull it and overwrite the session values
t.ApplyPolicyIfExists(key, &thisSession)
t.Spec.SessionManager.UpdateSession(key, thisSession, t.Spec.APIDefinition.SessionLifetime)
}
return thisSession, found
}
// SuccessHandler represents the final ServeHTTP() request for a proxied API request
type SuccessHandler struct {
*TykMiddleware
}
func (s SuccessHandler) RecordHit(w http.ResponseWriter, r *http.Request, timing int64, code int, requestCopy *http.Request, responseCopy *http.Response) {
if s.Spec.DoNotTrack {
return
}
if config.StoreAnalytics(r) {
t := time.Now()
// Track the key ID if it exists
authHeaderValue := context.Get(r, AuthHeaderValue)
keyName := ""
if authHeaderValue != nil {
keyName = authHeaderValue.(string)
}
// Track version data
version := s.Spec.getVersionFromRequest(r)
if version == "" {
version = "Non Versioned"
}
// If OAuth, we need to grab it from the session, which may or may not exist
OauthClientID := ""
tags := make([]string, 0)
var alias string
thisSessionState := context.Get(r, SessionData)
if thisSessionState != nil {
OauthClientID = thisSessionState.(SessionState).OauthClientID
tags = thisSessionState.(SessionState).Tags
alias = thisSessionState.(SessionState).Alias
}
rawRequest := ""
rawResponse := ""
if RecordDetail(r) {
if requestCopy != nil {
// Get the wire format representation
var wireFormatReq bytes.Buffer
requestCopy.Write(&wireFormatReq)
rawRequest = b64.StdEncoding.EncodeToString(wireFormatReq.Bytes())
}
if responseCopy != nil {
// Get the wire format representation
var wireFormatRes bytes.Buffer
responseCopy.Write(&wireFormatRes)
rawResponse = b64.StdEncoding.EncodeToString(wireFormatRes.Bytes())
}
}
thisRecord := AnalyticsRecord{
r.Method,
r.URL.Path,
r.ContentLength,
r.Header.Get("User-Agent"),
t.Day(),
t.Month(),
t.Year(),
t.Hour(),
code,
keyName,
t,
version,
s.Spec.APIDefinition.Name,
s.Spec.APIDefinition.APIID,
s.Spec.APIDefinition.OrgID,
OauthClientID,
timing,
rawRequest,
rawResponse,
GetIPFromRequest(r),
GeoData{},
tags,
alias,
time.Now(),
}
thisRecord.GetGeo(GetIPFromRequest(r))
expiresAfter := s.Spec.ExpireAnalyticsAfter
if config.EnforceOrgDataAge {
thisOrg := s.Spec.OrgID
orgSessionState, found := s.GetOrgSession(thisOrg)
if found {
if orgSessionState.DataExpires > 0 {
expiresAfter = orgSessionState.DataExpires
}
}
}
thisRecord.SetExpiry(expiresAfter)
go analytics.RecordHit(thisRecord)
}
// Report in health check
ReportHealthCheckValue(s.Spec.Health, RequestLog, strconv.FormatInt(int64(timing), 10))
if doMemoryProfile {
pprof.WriteHeapProfile(profileFile)
}
context.Clear(r)
}
// ServeHTTP will store the request details in the analytics store if necessary and proxy the request to it's
// final destination, this is invoked by the ProxyHandler or right at the start of a request chain if the URL
// Spec states the path is Ignored
func (s SuccessHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) *http.Response {
// Make sure we get the correct target URL
if s.Spec.APIDefinition.Proxy.StripListenPath {
log.Debug("Stripping: ", s.Spec.Proxy.ListenPath)
r.URL.Path = strings.Replace(r.URL.Path, s.Spec.Proxy.ListenPath, "", 1)
log.Debug("Upstream Path is: ", r.URL.Path)
}
var copiedRequest *http.Request
if RecordDetail(r) {
copiedRequest = CopyHttpRequest(r)
}
t1 := time.Now()
resp := s.Proxy.ServeHTTP(w, r)
t2 := time.Now()
var copiedResponse *http.Response
if RecordDetail(r) {
copiedResponse = CopyHttpResponse(resp)
}
millisec := float64(t2.UnixNano()-t1.UnixNano()) * 0.000001
log.Debug("Upstream request took (ms): ", millisec)
if resp != nil {
s.RecordHit(w, r, int64(millisec), resp.StatusCode, copiedRequest, copiedResponse)
}
return nil
}
// ServeHTTPWithCache will store the request details in the analytics store if necessary and proxy the request to it's
// final destination, this is invoked by the ProxyHandler or right at the start of a request chain if the URL
// Spec states the path is Ignored Itwill also return a response object for the cache
func (s SuccessHandler) ServeHTTPWithCache(w http.ResponseWriter, r *http.Request) *http.Response {
// Make sure we get the correct target URL
if s.Spec.APIDefinition.Proxy.StripListenPath {
r.URL.Path = strings.Replace(r.URL.Path, s.Spec.Proxy.ListenPath, "", 1)
}
var copiedRequest *http.Request
if RecordDetail(r) {
copiedRequest = CopyHttpRequest(r)
}
t1 := time.Now()
inRes := s.Proxy.ServeHTTPForCache(w, r)
t2 := time.Now()
var copiedResponse *http.Response
if RecordDetail(r) {
copiedResponse = CopyHttpResponse(inRes)
}
millisec := float64(t2.UnixNano()-t1.UnixNano()) * 0.000001
log.Debug("Upstream request took (ms): ", millisec)
if inRes != nil {
s.RecordHit(w, r, int64(millisec), inRes.StatusCode, copiedRequest, copiedResponse)
}
return inRes
}