forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mw_context_vars.go
60 lines (42 loc) · 1.41 KB
/
mw_context_vars.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
package main
import (
"net/http"
"strings"
"github.com/satori/go.uuid"
)
type MiddlewareContextVars struct {
*BaseMiddleware
}
func (m *MiddlewareContextVars) GetName() string {
return "MiddlewareContextVars"
}
func (m *MiddlewareContextVars) IsEnabledForSpec() bool {
return m.Spec.EnableContextVars
}
// ProcessRequest will run any checks on the request on the way through the system, return an error to have the chain fail
func (m *MiddlewareContextVars) ProcessRequest(w http.ResponseWriter, r *http.Request, _ interface{}) (error, int) {
if !m.Spec.EnableContextVars {
return nil, 200
}
copiedRequest := CopyHttpRequest(r)
contextDataObject := make(map[string]interface{})
copiedRequest.ParseForm()
// Form params (map[string][]string)
contextDataObject["request_data"] = copiedRequest.Form
contextDataObject["headers"] = map[string][]string(copiedRequest.Header)
for hname, vals := range copiedRequest.Header {
n := "headers_" + strings.Replace(hname, "-", "_", -1)
contextDataObject[n] = vals[0]
}
// Path parts
segmentedPathArray := strings.Split(copiedRequest.URL.Path, "/")
contextDataObject["path_parts"] = segmentedPathArray
// path data
contextDataObject["path"] = copiedRequest.URL.Path
// IP:Port
contextDataObject["remote_addr"] = copiedRequest.RemoteAddr
//Correlation ID
contextDataObject["request_id"] = uuid.NewV4().String()
ctxSetData(r, contextDataObject)
return nil, 200
}