forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_error.go
257 lines (212 loc) · 6.39 KB
/
handler_error.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
package main
import (
"bytes"
b64 "encoding/base64"
"fmt"
"github.com/TykTechnologies/logrus"
"github.com/gorilla/context"
"html/template"
"net"
"net/http"
"runtime/pprof"
"strconv"
"strings"
"time"
)
const (
defaultTemplateName = "error"
defaultTemplateFormat = "json"
defaultContentType = "application/json"
)
// APIError is generic error object returned if there is something wrong with the request
type APIError struct {
Message string
}
// ErrorHandler is invoked whenever there is an issue with a proxied request, most middleware will invoke
// the ErrorHandler if something is wrong with the request and halt the request processing through the chain
type ErrorHandler struct {
*TykMiddleware
}
// HandleError is the actual error handler and will store the error details in analytics if analytics processing is enabled.
func (e ErrorHandler) HandleError(w http.ResponseWriter, r *http.Request, err string, errCode int) {
if e.Spec.DoNotTrack {
var templateExtension string
var thisContentType string
switch r.Header.Get("Content-Type") {
case "application/xml":
templateExtension = "xml"
thisContentType = "application/xml"
default:
templateExtension = "json"
thisContentType = "application/json"
}
w.Header().Set("Content-Type", thisContentType)
var thisTemplate *template.Template
var templateName string = fmt.Sprintf("error_%s.%s", strconv.Itoa(errCode), templateExtension)
// templateError := templates.ExecuteTemplate(w, templateName, &thisError)
// Try to use an error template that matches the HTTP error code and the content type: 500.json, 400.xml, etc.
thisTemplate = templates.Lookup(templateName)
// Fallback to a generic error template, but match the content type: error.json, error.xml, etc.
if thisTemplate == nil {
templateName = fmt.Sprintf("%s.%s", defaultTemplateName, templateExtension)
thisTemplate = templates.Lookup(templateName)
}
// If no template is available for this content type, fallback to "error.json".
if thisTemplate == nil {
templateName = fmt.Sprintf("%s.%s", defaultTemplateName, defaultTemplateFormat)
thisTemplate = templates.Lookup(templateName)
w.Header().Set("Content-Type", defaultContentType)
}
// Need to return the correct error code!
w.WriteHeader(errCode)
thisError := APIError{fmt.Sprintf("%s", err)}
thisTemplate.Execute(w, &thisError)
if doMemoryProfile {
pprof.WriteHeapProfile(profileFile)
}
// Clean up
context.Clear(r)
return
}
keyName := ""
// Track the key ID if it exists
authHeaderValue := context.Get(r, AuthHeaderValue)
var alias string
if config.StoreAnalytics(r) {
t := time.Now()
if authHeaderValue != nil {
keyName = authHeaderValue.(string)
}
version := e.Spec.getVersionFromRequest(r)
if version == "" {
version = "Non Versioned"
}
if e.TykMiddleware.Spec.APIDefinition.Proxy.StripListenPath {
r.URL.Path = strings.Replace(r.URL.Path, e.TykMiddleware.Spec.Proxy.ListenPath, "", 1)
}
// This is an odd bugfix, will need further testing
r.URL.Path = "/" + r.URL.Path
if strings.HasPrefix(r.URL.Path, "//") {
r.URL.Path = strings.TrimPrefix(r.URL.Path, "/")
}
OauthClientID := ""
tags := make([]string, 0)
thisSessionState := context.Get(r, SessionData)
if thisSessionState != nil {
OauthClientID = thisSessionState.(SessionState).OauthClientID
alias = thisSessionState.(SessionState).Alias
tags = thisSessionState.(SessionState).Tags
}
var requestCopy *http.Request
if RecordDetail(r) {
requestCopy = CopyHttpRequest(r)
}
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())
}
}
trackThisEndpoint, ok := context.GetOk(r, TrackThisEndpoint)
trackedPath := r.URL.Path
trackEP := false
if ok {
trackEP = true
trackedPath = trackThisEndpoint.(string)
}
_, dnOk := context.GetOk(r, DoNotTrackThisEndpoint)
if dnOk {
trackEP = false
trackedPath = r.URL.Path
}
thisRecord := AnalyticsRecord{
r.Method,
trackedPath,
r.URL.Path,
r.ContentLength,
r.Header.Get("User-Agent"),
t.Day(),
t.Month(),
t.Year(),
t.Hour(),
errCode,
keyName,
t,
version,
e.Spec.APIDefinition.Name,
e.Spec.APIDefinition.APIID,
e.Spec.APIDefinition.OrgID,
OauthClientID,
0,
rawRequest,
rawResponse,
GetIPFromRequest(r),
GeoData{},
tags,
alias,
trackEP,
time.Now(),
}
thisRecord.GetGeo(GetIPFromRequest(r))
expiresAfter := e.Spec.ExpireAnalyticsAfter
if config.EnforceOrgDataAge {
thisOrg := e.Spec.OrgID
orgExpireDataTime := e.GetOrgSessionExpiry(thisOrg)
if orgExpireDataTime > 0 {
expiresAfter = orgExpireDataTime
}
}
thisRecord.SetExpiry(expiresAfter)
if config.AnalyticsConfig.NormaliseUrls.Enabled {
thisRecord.NormalisePath()
}
go analytics.RecordHit(thisRecord)
}
// Report in health check
ReportHealthCheckValue(e.Spec.Health, BlockedRequestLog, "-1")
w.Header().Add("Content-Type", "application/json")
//If the config option is not set or is false, add the header
if !config.HideGeneratorHeader {
w.Header().Add("X-Generator", "tyk.io")
}
// Close connections
if config.CloseConnections {
w.Header().Add("Connection", "close")
}
var obfuscated string
if len(keyName) > 4 {
obfuscated = "****" + keyName[len(keyName)-4:]
}
var thisIP string
if clientIP, _, derr := net.SplitHostPort(r.RemoteAddr); derr == nil {
// If we aren't the first proxy retain prior
// X-Forwarded-For information as a comma+space
// separated list and fold multiple headers into one.
if prior, ok := r.Header["X-Forwarded-For"]; ok {
clientIP = strings.Join(prior, ", ") + ", " + clientIP
}
thisIP = clientIP
}
log.WithFields(logrus.Fields{
"prefix": "gateway",
"user_ip": thisIP,
"server_name": e.Spec.APIDefinition.Proxy.TargetURL,
"user_id": obfuscated,
"org_id": e.Spec.APIDefinition.OrgID,
"api_id": e.Spec.APIDefinition.APIID,
"path": r.URL.Path,
}).Error("request error: ", err)
log.Debug("Returning error header")
w.WriteHeader(errCode)
thisError := APIError{fmt.Sprintf("%s", err)}
templates.ExecuteTemplate(w, "error.json", &thisError)
if doMemoryProfile {
pprof.WriteHeapProfile(profileFile)
}
// Clean up
context.Clear(r)
}