-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathHttpHelper.java
More file actions
409 lines (336 loc) · 14.7 KB
/
HttpHelper.java
File metadata and controls
409 lines (336 loc) · 14.7 KB
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.aad.msal4j;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.net.ConnectException;
import java.net.SocketTimeoutException;
import java.util.*;
import static com.microsoft.aad.msal4j.Constants.POINT_DELIMITER;
/**
* Helper class for handling HTTP requests and responses with retry and throttling logic.
*/
class HttpHelper implements IHttpHelper {
private static final Logger log = LoggerFactory.getLogger(HttpHelper.class);
/**
* Header name for specifying retry-after duration.
*/
public static final String RETRY_AFTER_HEADER = "Retry-After";
/**
* Set of exception types that are considered acceptable for retry.
*/
private static final HashSet<Class<? extends Exception>> ACCEPTABLE_EXCEPTIONS = new HashSet<>();
/**
* Number of retry attempts for HTTP requests.
*/
private static final int RETRY_NUM = 2;
/**
* Delay in milliseconds between retry attempts.
*/
private static final int RETRY_DELAY_MS = 1000;
static {
ACCEPTABLE_EXCEPTIONS.add(ConnectException.class);
ACCEPTABLE_EXCEPTIONS.add(SocketTimeoutException.class);
ACCEPTABLE_EXCEPTIONS.add(IOException.class);
}
/**
* RetryableCall instance for executing HTTP requests with retry logic.
*/
private static final RetryableCall<IHttpResponse> RETRYABLE_CALL =
new RetryableCall<>(ACCEPTABLE_EXCEPTIONS, RETRY_NUM, RETRY_DELAY_MS);
/**
* HTTP status code for OK.
*/
public static final int HTTP_STATUS_200 = 200;
/**
* HTTP status code for Bad Request.
*/
public static final int HTTP_STATUS_400 = 400;
/**
* HTTP status code for Too Many Requests.
*/
public static final int HTTP_STATUS_429 = 429;
/**
* HTTP status code for Internal Server Error.
*/
public static final int HTTP_STATUS_500 = 500;
private IHttpClient httpClient;
/**
* Constructs an instance of HttpHelper with the specified HTTP client.
*
* @param httpClient The HTTP client to use for sending requests.
*/
HttpHelper(IHttpClient httpClient) {
this.httpClient = httpClient;
}
/**
* Executes an HTTP request with retry and telemetry logic.
*
* @param httpRequest The HTTP request to execute.
* @param requestContext The context of the request, including telemetry and client information.
* @param serviceBundle The service bundle containing application-level configurations.
* @return The HTTP response received from the server.
*/
public IHttpResponse executeHttpRequest(HttpRequest httpRequest,
RequestContext requestContext,
ServiceBundle serviceBundle) {
checkForThrottling(requestContext);
HttpEvent httpEvent = new HttpEvent(); // for tracking HTTP telemetry
IHttpResponse httpResponse;
try (TelemetryHelper telemetryHelper = serviceBundle.getTelemetryManager().createTelemetryHelper(
requestContext.telemetryRequestId(),
requestContext.clientId(),
httpEvent,
false)) {
addRequestInfoToTelemetry(httpRequest, httpEvent);
try {
httpResponse = executeHttpRequestWithRetries(httpRequest, httpClient);
} catch (Exception e) {
httpEvent.setOauthErrorCode(AuthenticationErrorCode.UNKNOWN);
throw new MsalClientException(e);
}
addResponseInfoToTelemetry(httpResponse, httpEvent);
if (httpResponse.headers() != null) {
HttpHelper.verifyReturnedCorrelationId(httpRequest, httpResponse);
}
}
processThrottlingInstructions(httpResponse, requestContext);
return httpResponse;
}
/**
* Overloaded version of the HTTP executor that does not use ServiceBundle.
*
* @param httpRequest The HTTP request to execute.
* @param requestContext The context of the request, including telemetry and client information.
* @param telemetryManager The telemetry manager for tracking request telemetry.
* @param httpClient The HTTP client to use for sending requests.
* @return The HTTP response received from the server.
*/
IHttpResponse executeHttpRequest(HttpRequest httpRequest,
RequestContext requestContext,
TelemetryManager telemetryManager,
IHttpClient httpClient) {
checkForThrottling(requestContext);
HttpEvent httpEvent = new HttpEvent(); // for tracking HTTP telemetry
IHttpResponse httpResponse;
try (TelemetryHelper telemetryHelper = telemetryManager.createTelemetryHelper(
requestContext.telemetryRequestId(),
requestContext.clientId(),
httpEvent,
false)) {
addRequestInfoToTelemetry(httpRequest, httpEvent);
try {
httpResponse = executeHttpRequestWithRetries(httpRequest, httpClient);
} catch (Exception e) {
httpEvent.setOauthErrorCode(AuthenticationErrorCode.UNKNOWN);
throw new MsalClientException(e);
}
addResponseInfoToTelemetry(httpResponse, httpEvent);
if (httpResponse.headers() != null) {
HttpHelper.verifyReturnedCorrelationId(httpRequest, httpResponse);
}
}
processThrottlingInstructions(httpResponse, requestContext);
return httpResponse;
}
/**
* Executes an HTTP request without additional context or telemetry.
*
* @param httpRequest The HTTP request to execute.
* @return The HTTP response received from the server.
*/
IHttpResponse executeHttpRequest(HttpRequest httpRequest) {
IHttpResponse httpResponse;
try {
httpResponse = executeHttpRequestWithRetries(httpRequest, httpClient);
} catch (Exception e) {
throw new MsalClientException(e);
}
if (httpResponse.headers() != null) {
HttpHelper.verifyReturnedCorrelationId(httpRequest, httpResponse);
}
return httpResponse;
}
/**
* Generates a unique request thumbprint for throttling purposes.
*
* @param requestContext The context of the request.
* @return A SHA-256 hash representing the request thumbprint.
*/
private String getRequestThumbprint(RequestContext requestContext) {
StringBuilder sb = new StringBuilder();
sb.append(requestContext.clientId() + POINT_DELIMITER);
sb.append(requestContext.authority() + POINT_DELIMITER);
IAcquireTokenParameters apiParameters = requestContext.apiParameters();
if (apiParameters instanceof SilentParameters) {
IAccount account = ((SilentParameters) apiParameters).account();
if (account != null) {
sb.append(account.homeAccountId() + POINT_DELIMITER);
}
}
Set<String> sortedScopes = new TreeSet<>(apiParameters.scopes());
sb.append(String.join(" ", sortedScopes));
return StringHelper.createSha256Hash(sb.toString());
}
/**
* Determines if the HTTP response is retryable based on its status code.
*
* @param httpResponse The HTTP response to evaluate.
* @return True if the response is retryable, false otherwise.
*/
boolean isRetryable(IHttpResponse httpResponse) {
return httpResponse.statusCode() >= HTTP_STATUS_500 &&
getRetryAfterHeader(httpResponse) == null;
}
/**
* Executes an HTTP request with retry logic.
*
* @param httpRequest The HTTP request to execute.
* @param httpClient The HTTP client to use for sending requests.
* @return The HTTP response received from the server.
* @throws Exception If the request fails after all retry attempts.
*/
IHttpResponse executeHttpRequestWithRetries(HttpRequest httpRequest, IHttpClient httpClient)
throws Exception {
IHttpResponse httpResponse = null;
for (int i = 0; i < RETRY_NUM; i++) {
httpResponse = RETRYABLE_CALL.callWithRetry(() -> httpClient.send(httpRequest));
if (!isRetryable(httpResponse)) {
break;
}
Thread.sleep(RETRY_DELAY_MS);
}
return httpResponse;
}
/**
* Checks if the request is throttled and throws an exception if necessary.
*
* @param requestContext The context of the request.
*/
private void checkForThrottling(RequestContext requestContext) {
if (requestContext.clientApplication() instanceof PublicClientApplication &&
requestContext.apiParameters() != null) {
String requestThumbprint = getRequestThumbprint(requestContext);
long retryInMs = ThrottlingCache.retryInMs(requestThumbprint);
if (retryInMs > 0) {
throw new MsalThrottlingException(retryInMs);
}
}
}
/**
* Processes throttling instructions based on the HTTP response.
*
* @param httpResponse The HTTP response received.
* @param requestContext The context of the request.
*/
private void processThrottlingInstructions(IHttpResponse httpResponse, RequestContext requestContext) {
if (requestContext.clientApplication() instanceof PublicClientApplication) {
Long expirationTimestamp = null;
Integer retryAfterHeaderVal = getRetryAfterHeader(httpResponse);
if (retryAfterHeaderVal != null) {
expirationTimestamp = System.currentTimeMillis() + retryAfterHeaderVal * 1000;
} else if (httpResponse.statusCode() == HTTP_STATUS_429 ||
(httpResponse.statusCode() >= HTTP_STATUS_500)) {
expirationTimestamp = System.currentTimeMillis() + ThrottlingCache.DEFAULT_THROTTLING_TIME_SEC * 1000;
}
if (expirationTimestamp != null) {
ThrottlingCache.set(getRequestThumbprint(requestContext), expirationTimestamp);
}
}
}
/**
* Retrieves the Retry-After header value from the HTTP response.
*
* @param httpResponse The HTTP response to evaluate.
* @return The Retry-After value in seconds, or null if not present or invalid.
*/
private Integer getRetryAfterHeader(IHttpResponse httpResponse) {
if (httpResponse.headers() != null) {
TreeMap<String, List<String>> headers = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
headers.putAll(httpResponse.headers());
if (headers.containsKey(RETRY_AFTER_HEADER) && headers.get(RETRY_AFTER_HEADER).size() == 1) {
try {
int headerValue = Integer.parseInt(headers.get(RETRY_AFTER_HEADER).get(0));
if (headerValue > 0 && headerValue <= ThrottlingCache.MAX_THROTTLING_TIME_SEC) {
return headerValue;
}
} catch (NumberFormatException ex) {
log.warn("Failed to parse value of Retry-After header - NumberFormatException");
}
}
}
return null;
}
/**
* Adds request information to the telemetry event.
*
* @param httpRequest The HTTP request being executed.
* @param httpEvent The telemetry event to update.
*/
private void addRequestInfoToTelemetry(final HttpRequest httpRequest, HttpEvent httpEvent) {
try {
httpEvent.setHttpPath(httpRequest.url().toURI());
httpEvent.setHttpMethod(httpRequest.httpMethod().toString());
if (!StringHelper.isBlank(httpRequest.url().getQuery())) {
httpEvent.setQueryParameters(httpRequest.url().getQuery());
}
} catch (Exception ex) {
String correlationId = httpRequest.headerValue(
HttpHeaders.CORRELATION_ID_HEADER_NAME);
log.warn(LogHelper.createMessage("Setting URL telemetry fields failed: " +
LogHelper.getPiiScrubbedDetails(ex),
correlationId != null ? correlationId : ""));
}
}
/**
* Adds response information to the telemetry event.
*
* @param httpResponse The HTTP response received.
* @param httpEvent The telemetry event to update.
*/
private void addResponseInfoToTelemetry(IHttpResponse httpResponse, HttpEvent httpEvent) {
httpEvent.setHttpResponseStatus(httpResponse.statusCode());
Map<String, List<String>> headers = httpResponse.headers();
String userAgent = HttpUtils.headerValue(headers, "User-Agent");
if (!StringHelper.isBlank(userAgent)) {
httpEvent.setUserAgent(userAgent);
}
String xMsRequestId = HttpUtils.headerValue(headers, "x-ms-request-id");
if (!StringHelper.isBlank(xMsRequestId)) {
httpEvent.setRequestIdHeader(xMsRequestId);
}
String xMsClientTelemetry = HttpUtils.headerValue(headers, "x-ms-clitelem");
if (xMsClientTelemetry != null) {
XmsClientTelemetryInfo xmsClientTelemetryInfo =
XmsClientTelemetryInfo.parseXmsTelemetryInfo(xMsClientTelemetry);
if (xmsClientTelemetryInfo != null) {
httpEvent.setXmsClientTelemetryInfo(xmsClientTelemetryInfo);
}
}
}
/**
* Verifies that the correlation ID returned in the HTTP response matches the one sent in the request.
*
* @param httpRequest The HTTP request sent.
* @param httpResponse The HTTP response received.
*/
private static void verifyReturnedCorrelationId(final HttpRequest httpRequest,
IHttpResponse httpResponse) {
String sentCorrelationId = httpRequest.headerValue(
HttpHeaders.CORRELATION_ID_HEADER_NAME);
String returnedCorrelationId = HttpUtils.headerValue(
httpResponse.headers(),
HttpHeaders.CORRELATION_ID_HEADER_NAME);
if (StringHelper.isBlank(returnedCorrelationId) ||
!returnedCorrelationId.equals(sentCorrelationId)) {
String msg = LogHelper.createMessage(
String.format(
"Sent (%s) Correlation Id is not same as received (%s).",
sentCorrelationId,
returnedCorrelationId),
sentCorrelationId);
log.info(msg);
}
}
}