-
Notifications
You must be signed in to change notification settings - Fork 14
/
corerequestcontext.go
158 lines (126 loc) · 4.52 KB
/
corerequestcontext.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
package common
import (
"context"
"net/http"
"github.com/anz-bank/sysl-go/common/internal"
"github.com/anz-bank/sysl-go/log"
"github.com/sirupsen/logrus"
)
// Deprecated: Use log.GetLogger.
func GetLogEntryFromContext(ctx context.Context) *logrus.Entry {
return log.GetLogrusLogEntryFromContext(ctx)
}
// Deprecated: Use log.GetLogger.
func GetLoggerFromContext(ctx context.Context) *logrus.Logger {
return log.GetLogrusLoggerFromContext(ctx)
}
func NewLoggingRoundTripper(name string, base http.RoundTripper) http.RoundTripper {
// temporary pass-through to get the real round tripper from the request context
return &tempRoundtripper{name, base}
}
type reqHeaderContext struct {
header http.Header
}
type respHeaderAndStatusContext struct {
header http.Header
status int
}
type RestResult struct {
StatusCode int
Headers map[string][]string
Body []byte
}
// Deprecated: Use log.GetLogger.
func LoggerToContext(ctx context.Context, logger *logrus.Logger, entry *logrus.Entry) context.Context {
return log.LogrusLoggerToContext(ctx, logger, entry)
}
// RequestHeaderToContext creates a new context containing the request header.
func RequestHeaderToContext(ctx context.Context, header http.Header) context.Context {
return context.WithValue(ctx, reqHeaderContextKey{}, &reqHeaderContext{header})
}
// RequestHeaderFromContext retrieves the request header from the context.
func RequestHeaderFromContext(ctx context.Context) http.Header {
reqHeader := getReqHeaderContext(ctx)
if reqHeader == nil {
return nil
}
return reqHeader.header
}
// RespHeaderAndStatusToContext creates a new context containing the response header and status.
func RespHeaderAndStatusToContext(ctx context.Context, header http.Header, status int) context.Context {
return context.WithValue(ctx, respHeaderAndStatusContextKey{}, &respHeaderAndStatusContext{header, status})
}
// RespHeaderAndStatusFromContext retrieves response header and status from the context.
func RespHeaderAndStatusFromContext(ctx context.Context) (header http.Header, status int) {
respHeaderAndStatus := getRespHeaderAndStatusContext(ctx)
if respHeaderAndStatus == nil {
return nil, http.StatusOK
}
header = respHeaderAndStatus.header
status = respHeaderAndStatus.status
return
}
func UpdateResponseStatus(ctx context.Context, status int) error {
respHeaderAndStatus := getRespHeaderAndStatusContext(ctx)
if respHeaderAndStatus == nil {
return CreateError(ctx, InternalError, "response status not in context", nil)
}
respHeaderAndStatus.status = status
return nil
}
func CoreRequestContextMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
ctx = log.WithStr(ctx, traceIDLogField, GetTraceIDFromContext(ctx).String())
ctx = internal.AddResponseBodyMonitorToContext(ctx)
defer internal.CheckForUnclosedResponses(ctx)
reqLogger, entry := internal.NewRequestLogger(ctx, r)
w = reqLogger.ResponseWriter(w)
defer reqLogger.FlushLog()
r = r.WithContext(ctx)
tl := internal.NewRequestTimer(w, r)
w = tl.RespWrapper
defer tl.Log(entry)
next.ServeHTTP(w, r)
})
}
type reqHeaderContextKey struct{}
type respHeaderAndStatusContextKey struct{}
func getReqHeaderContext(ctx context.Context) *reqHeaderContext {
reqHeaderCtx := ctx.Value(reqHeaderContextKey{})
if reqHeaderCtx == nil {
return nil
}
return reqHeaderCtx.(*reqHeaderContext)
}
func getRespHeaderAndStatusContext(ctx context.Context) *respHeaderAndStatusContext {
respHeaderAndStatusCtx := ctx.Value(respHeaderAndStatusContextKey{})
if respHeaderAndStatusCtx == nil {
return nil
}
return respHeaderAndStatusCtx.(*respHeaderAndStatusContext)
}
type tempRoundtripper struct {
name string
base http.RoundTripper
}
func (t *tempRoundtripper) RoundTrip(r *http.Request) (*http.Response, error) {
ctx := log.WithStr(r.Context(), "Downstream", t.name)
return internal.NewLoggingRoundTripper(ctx, t.base).RoundTrip(r)
}
type RestResultContextKey struct{}
// ProvisionRestResult provisions within the context the ability to retrieve the
// result of a rest request.
func ProvisionRestResult(ctx context.Context) context.Context {
return context.WithValue(ctx, RestResultContextKey{}, &RestResult{})
}
// GetRestResult gets the result of the most recent rest request. The context
// must be provisioned prior to the request taking place with a call to
// ProvisionRestResult.
func GetRestResult(ctx context.Context) *RestResult {
raw := ctx.Value(RestResultContextKey{})
if raw == nil {
return nil
}
return raw.(*RestResult)
}