-
Notifications
You must be signed in to change notification settings - Fork 67
/
contacts.go
413 lines (371 loc) · 15.1 KB
/
contacts.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
// Code generated by zanzibar
// @generated
// Copyright (c) 2018 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package contactsclient
import (
"context"
"fmt"
"time"
"github.com/afex/hystrix-go/hystrix"
zanzibar "github.com/uber/zanzibar/v2/runtime"
"github.com/uber/zanzibar/v2/runtime/jsonwrapper"
"go.uber.org/zap"
module "github.com/uber/zanzibar/v2/examples/example-gateway/build/clients/contacts/module"
clientsIDlClientsContactsContacts "github.com/uber/zanzibar/v2/examples/example-gateway/build/gen-code/clients-idl/clients/contacts/contacts"
)
// CircuitBreakerConfigKey is key value for qps level to circuit breaker parameters mapping
const CircuitBreakerConfigKey = "circuitbreaking-configurations"
var logFieldErrLocation = zanzibar.LogFieldErrorLocation("client::contacts")
// Client defines contacts client interface.
type Client interface {
HTTPClient() *zanzibar.HTTPClient
SaveContacts(
ctx context.Context,
reqHeaders map[string]string,
args *clientsIDlClientsContactsContacts.Contacts_SaveContacts_Args,
) (context.Context, *clientsIDlClientsContactsContacts.SaveContactsResponse, map[string]string, error)
TestURLURL(
ctx context.Context,
reqHeaders map[string]string,
) (context.Context, string, map[string]string, error)
}
// contactsClient is the http client.
type contactsClient struct {
clientID string
httpClient *zanzibar.HTTPClient
jsonWrapper jsonwrapper.JSONWrapper
circuitBreakerDisabled bool
requestUUIDHeaderKey string
requestProcedureHeaderKey string
}
// NewClient returns a new http client.
func NewClient(deps *module.Dependencies) Client {
ip := deps.Default.Config.MustGetString("clients.contacts.ip")
port := deps.Default.Config.MustGetInt("clients.contacts.port")
baseURL := fmt.Sprintf("http://%s:%d", ip, port)
timeoutVal := int(deps.Default.Config.MustGetInt("clients.contacts.timeout"))
timeout := time.Millisecond * time.Duration(
timeoutVal,
)
defaultHeaders := make(map[string]string)
if deps.Default.Config.ContainsKey("http.defaultHeaders") {
deps.Default.Config.MustGetStruct("http.defaultHeaders", &defaultHeaders)
}
if deps.Default.Config.ContainsKey("clients.contacts.defaultHeaders") {
deps.Default.Config.MustGetStruct("clients.contacts.defaultHeaders", &defaultHeaders)
}
var requestUUIDHeaderKey string
if deps.Default.Config.ContainsKey("http.clients.requestUUIDHeaderKey") {
requestUUIDHeaderKey = deps.Default.Config.MustGetString("http.clients.requestUUIDHeaderKey")
}
var requestProcedureHeaderKey string
if deps.Default.Config.ContainsKey("http.clients.requestProcedureHeaderKey") {
requestProcedureHeaderKey = deps.Default.Config.MustGetString("http.clients.requestProcedureHeaderKey")
}
followRedirect := true
if deps.Default.Config.ContainsKey("clients.contacts.followRedirect") {
followRedirect = deps.Default.Config.MustGetBoolean("clients.contacts.followRedirect")
}
methodNames := map[string]string{
"SaveContacts": "Contacts::saveContacts",
"TestURLURL": "Contacts::testUrlUrl",
}
// circuitBreakerDisabled sets whether circuit-breaker should be disabled
circuitBreakerDisabled := false
if deps.Default.Config.ContainsKey("clients.contacts.circuitBreakerDisabled") {
circuitBreakerDisabled = deps.Default.Config.MustGetBoolean("clients.contacts.circuitBreakerDisabled")
}
//get mapping of client method and it's timeout
//if mapping is not provided, use client's timeout for all methods
clientMethodTimeoutMapping := make(map[string]int64)
if deps.Default.Config.ContainsKey("clients.contacts.methodTimeoutMapping") {
deps.Default.Config.MustGetStruct("clients.contacts.methodTimeoutMapping", &clientMethodTimeoutMapping)
} else {
//override the client overall-timeout with the client's method level timeout
for methodName := range methodNames {
clientMethodTimeoutMapping[methodName] = int64(timeoutVal)
}
}
qpsLevels := map[string]string{
"contacts-SaveContacts": "default",
"contacts-TestURLURL": "default",
}
if !circuitBreakerDisabled {
for methodName, methodTimeout := range clientMethodTimeoutMapping {
circuitBreakerName := "contacts" + "-" + methodName
qpsLevel := "default"
if level, ok := qpsLevels[circuitBreakerName]; ok {
qpsLevel = level
}
configureCircuitBreaker(deps, int(methodTimeout), circuitBreakerName, qpsLevel)
}
}
return &contactsClient{
clientID: "contacts",
httpClient: zanzibar.NewHTTPClientContext(
deps.Default.ContextLogger, deps.Default.ContextMetrics, deps.Default.JSONWrapper,
"contacts",
methodNames,
baseURL,
defaultHeaders,
timeout,
followRedirect,
),
circuitBreakerDisabled: circuitBreakerDisabled,
requestUUIDHeaderKey: requestUUIDHeaderKey,
requestProcedureHeaderKey: requestProcedureHeaderKey,
}
}
// CircuitBreakerConfig is used for storing the circuit breaker parameters for each qps level
type CircuitBreakerConfig struct {
Parameters map[string]map[string]int
}
func configureCircuitBreaker(deps *module.Dependencies, timeoutVal int, circuitBreakerName string, qpsLevel string) {
// sleepWindowInMilliseconds sets the amount of time, after tripping the circuit,
// to reject requests before allowing attempts again to determine if the circuit should again be closed
sleepWindowInMilliseconds := 5000
// maxConcurrentRequests sets how many requests can be run at the same time, beyond which requests are rejected
maxConcurrentRequests := 20
// errorPercentThreshold sets the error percentage at or above which the circuit should trip open
errorPercentThreshold := 20
// requestVolumeThreshold sets a minimum number of requests that will trip the circuit in a rolling window of 10s
// For example, if the value is 20, then if only 19 requests are received in the rolling window of 10 seconds
// the circuit will not trip open even if all 19 failed.
requestVolumeThreshold := 20
// parses circuit breaker configurations
if deps.Default.Config.ContainsKey(CircuitBreakerConfigKey) {
var config CircuitBreakerConfig
deps.Default.Config.MustGetStruct(CircuitBreakerConfigKey, &config)
parameters := config.Parameters
// first checks if level exists in configurations then assigns parameters
// if "default" qps level assigns default parameters from circuit breaker configurations
if settings, ok := parameters[qpsLevel]; ok {
if sleep, ok := settings["sleepWindowInMilliseconds"]; ok {
sleepWindowInMilliseconds = sleep
}
if max, ok := settings["maxConcurrentRequests"]; ok {
maxConcurrentRequests = max
}
if errorPercent, ok := settings["errorPercentThreshold"]; ok {
errorPercentThreshold = errorPercent
}
if reqVolThreshold, ok := settings["requestVolumeThreshold"]; ok {
requestVolumeThreshold = reqVolThreshold
}
}
}
// client settings override parameters
if deps.Default.Config.ContainsKey("clients.contacts.sleepWindowInMilliseconds") {
sleepWindowInMilliseconds = int(deps.Default.Config.MustGetInt("clients.contacts.sleepWindowInMilliseconds"))
}
if deps.Default.Config.ContainsKey("clients.contacts.maxConcurrentRequests") {
maxConcurrentRequests = int(deps.Default.Config.MustGetInt("clients.contacts.maxConcurrentRequests"))
}
if deps.Default.Config.ContainsKey("clients.contacts.errorPercentThreshold") {
errorPercentThreshold = int(deps.Default.Config.MustGetInt("clients.contacts.errorPercentThreshold"))
}
if deps.Default.Config.ContainsKey("clients.contacts.requestVolumeThreshold") {
requestVolumeThreshold = int(deps.Default.Config.MustGetInt("clients.contacts.requestVolumeThreshold"))
}
hystrix.ConfigureCommand(circuitBreakerName, hystrix.CommandConfig{
MaxConcurrentRequests: maxConcurrentRequests,
ErrorPercentThreshold: errorPercentThreshold,
SleepWindow: sleepWindowInMilliseconds,
RequestVolumeThreshold: requestVolumeThreshold,
Timeout: timeoutVal,
})
}
// HTTPClient returns the underlying HTTP client, should only be
// used for internal testing.
func (c *contactsClient) HTTPClient() *zanzibar.HTTPClient {
return c.httpClient
}
// SaveContacts calls "/:userUUID/contacts" endpoint.
func (c *contactsClient) SaveContacts(
ctx context.Context,
headers map[string]string,
r *clientsIDlClientsContactsContacts.Contacts_SaveContacts_Args,
) (context.Context, *clientsIDlClientsContactsContacts.SaveContactsResponse, map[string]string, error) {
reqUUID := zanzibar.RequestUUIDFromCtx(ctx)
if headers == nil {
headers = make(map[string]string)
}
if reqUUID != "" {
headers[c.requestUUIDHeaderKey] = reqUUID
}
if c.requestProcedureHeaderKey != "" {
headers[c.requestProcedureHeaderKey] = "Contacts::saveContacts"
}
var defaultRes *clientsIDlClientsContactsContacts.SaveContactsResponse
req := zanzibar.NewClientHTTPRequest(ctx, c.clientID, "SaveContacts", "Contacts::saveContacts", c.httpClient)
// Generate full URL.
fullURL := c.httpClient.BaseURL + "/" + string(r.SaveContactsRequest.UserUUID) + "/contacts"
err := req.WriteJSON("POST", fullURL, headers, r.SaveContactsRequest)
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.String("error", fmt.Sprintf("error creating http request: %s", err)), logFieldErrLocation)
return ctx, defaultRes, nil, err
}
var res *zanzibar.ClientHTTPResponse
if c.circuitBreakerDisabled {
res, err = req.Do()
} else {
// We want hystrix ckt-breaker to count errors only for system issues
var clientErr error
circuitBreakerName := "contacts" + "-" + "SaveContacts"
err = hystrix.DoC(ctx, circuitBreakerName, func(ctx context.Context) error {
res, clientErr = req.Do()
if res != nil {
// This is not a system error/issue. Downstream responded
return nil
}
return clientErr
}, nil)
if err == nil {
// ckt-breaker was ok, bubble up client error if set
err = clientErr
}
}
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.String("error", fmt.Sprintf("error making http call: %s", err)), logFieldErrLocation)
return ctx, defaultRes, nil, err
}
respHeaders := make(map[string]string)
for k := range res.Header {
respHeaders[k] = res.Header.Get(k)
}
defer func() {
respHeaders[zanzibar.ClientResponseDurationKey] = res.Duration.String()
}()
res.CheckOKResponse([]int{202, 400, 404})
switch res.StatusCode {
case 202:
var responseBody clientsIDlClientsContactsContacts.SaveContactsResponse
rawBody, err := res.ReadAll()
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.Error(err), logFieldErrLocation)
return ctx, defaultRes, respHeaders, err
}
err = res.UnmarshalBody(&responseBody, rawBody)
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.Error(err), logFieldErrLocation)
return ctx, defaultRes, respHeaders, err
}
return ctx, &responseBody, respHeaders, nil
case 400:
return ctx, defaultRes, respHeaders, &clientsIDlClientsContactsContacts.BadRequest{}
case 404:
return ctx, defaultRes, respHeaders, &clientsIDlClientsContactsContacts.NotFound{}
default:
_, err = res.ReadAll()
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.Error(err), logFieldErrLocation)
return ctx, defaultRes, respHeaders, err
}
}
zanzibar.AppendLogFieldsToContext(ctx, zap.String("error", fmt.Sprintf("unexpected http response status code: %d", res.StatusCode)), logFieldErrLocation)
return ctx, defaultRes, respHeaders, &zanzibar.UnexpectedHTTPError{
StatusCode: res.StatusCode,
RawBody: res.GetRawBody(),
}
}
// TestURLURL calls "/contacts/testUrl" endpoint.
func (c *contactsClient) TestURLURL(
ctx context.Context,
headers map[string]string,
) (context.Context, string, map[string]string, error) {
reqUUID := zanzibar.RequestUUIDFromCtx(ctx)
if headers == nil {
headers = make(map[string]string)
}
if reqUUID != "" {
headers[c.requestUUIDHeaderKey] = reqUUID
}
if c.requestProcedureHeaderKey != "" {
headers[c.requestProcedureHeaderKey] = "Contacts::testUrlUrl"
}
var defaultRes string
req := zanzibar.NewClientHTTPRequest(ctx, c.clientID, "TestURLURL", "Contacts::testUrlUrl", c.httpClient)
// Generate full URL.
fullURL := c.httpClient.BaseURL + "/contacts" + "/testUrl"
err := req.WriteJSON("GET", fullURL, headers, nil)
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.String("error", fmt.Sprintf("error creating http request: %s", err)), logFieldErrLocation)
return ctx, defaultRes, nil, err
}
var res *zanzibar.ClientHTTPResponse
if c.circuitBreakerDisabled {
res, err = req.Do()
} else {
// We want hystrix ckt-breaker to count errors only for system issues
var clientErr error
circuitBreakerName := "contacts" + "-" + "TestURLURL"
err = hystrix.DoC(ctx, circuitBreakerName, func(ctx context.Context) error {
res, clientErr = req.Do()
if res != nil {
// This is not a system error/issue. Downstream responded
return nil
}
return clientErr
}, nil)
if err == nil {
// ckt-breaker was ok, bubble up client error if set
err = clientErr
}
}
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.String("error", fmt.Sprintf("error making http call: %s", err)), logFieldErrLocation)
return ctx, defaultRes, nil, err
}
respHeaders := make(map[string]string)
for k := range res.Header {
respHeaders[k] = res.Header.Get(k)
}
defer func() {
respHeaders[zanzibar.ClientResponseDurationKey] = res.Duration.String()
}()
res.CheckOKResponse([]int{200})
switch res.StatusCode {
case 200:
var responseBody string
rawBody, err := res.ReadAll()
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.Error(err), logFieldErrLocation)
return ctx, defaultRes, respHeaders, err
}
err = res.UnmarshalBody(&responseBody, rawBody)
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.Error(err), logFieldErrLocation)
return ctx, defaultRes, respHeaders, err
}
return ctx, responseBody, respHeaders, nil
default:
_, err = res.ReadAll()
if err != nil {
zanzibar.AppendLogFieldsToContext(ctx, zap.Error(err), logFieldErrLocation)
return ctx, defaultRes, respHeaders, err
}
}
zanzibar.AppendLogFieldsToContext(ctx, zap.String("error", fmt.Sprintf("unexpected http response status code: %d", res.StatusCode)), logFieldErrLocation)
return ctx, defaultRes, respHeaders, &zanzibar.UnexpectedHTTPError{
StatusCode: res.StatusCode,
RawBody: res.GetRawBody(),
}
}