-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathHttpHelper.java
More file actions
304 lines (235 loc) · 11.7 KB
/
HttpHelper.java
File metadata and controls
304 lines (235 loc) · 11.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
// 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.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
import static com.microsoft.aad.msal4j.Constants.POINT_DELIMITER;
class HttpHelper implements IHttpHelper {
private static final Logger LOG = LoggerFactory.getLogger(HttpHelper.class);
public static final String RETRY_AFTER_HEADER = "Retry-After";
private IHttpClient httpClient;
private IRetryPolicy retryPolicy;
private boolean retryDisabled;
HttpHelper(IHttpClient httpClient, IRetryPolicy retryPolicy) {
this.httpClient = httpClient;
this.retryPolicy = retryPolicy != null ? retryPolicy : new DefaultRetryPolicy();
}
HttpHelper(AbstractApplicationBase application, IRetryPolicy retryPolicy) {
this.httpClient = application.httpClient();
this.retryDisabled = application.isRetryDisabled();
this.retryPolicy = retryPolicy != null ? retryPolicy : new DefaultRetryPolicy();
}
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);
String message = LogHelper.createMessage(
"HTTP request execution failed: " + e.getMessage(),
requestContext.correlationId());
LOG.error(message);
throw new MsalClientException(e);
}
addResponseInfoToTelemetry(httpResponse, httpEvent);
if (httpResponse.headers() != null) {
HttpHelper.verifyReturnedCorrelationId(httpRequest, httpResponse);
}
}
processThrottlingInstructions(httpResponse, requestContext);
return httpResponse;
}
//Overloaded version of the more commonly used HTTP executor. It does not use ServiceBundle, allowing an HTTP call to be
// made only with more bespoke request-level parameters rather than those from the app-level ServiceBundle
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);
String message = LogHelper.createMessage(
"HTTP request execution failed: " + e.getMessage(),
requestContext.correlationId());
LOG.error(message);
throw new MsalClientException(e);
}
addResponseInfoToTelemetry(httpResponse, httpEvent);
if (httpResponse.headers() != null) {
HttpHelper.verifyReturnedCorrelationId(httpRequest, httpResponse);
}
}
processThrottlingInstructions(httpResponse, requestContext);
return httpResponse;
}
IHttpResponse executeHttpRequest(HttpRequest httpRequest) {
IHttpResponse httpResponse;
try {
httpResponse = executeHttpRequestWithRetries(httpRequest, httpClient);
} catch (Exception e) {
LOG.error("HTTP request execution failed: " + e.getMessage());
throw new MsalClientException(e);
}
if (httpResponse.headers() != null) {
HttpHelper.verifyReturnedCorrelationId(httpRequest, httpResponse);
}
return httpResponse;
}
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());
}
IHttpResponse executeHttpRequestWithRetries(HttpRequest httpRequest, IHttpClient httpClient)
throws Exception {
IHttpResponse httpResponse = httpClient.send(httpRequest);
if (retryDisabled) {
return httpResponse;
}
int retryCount = 0;
int maxRetries = retryPolicy.getMaxRetryCount(httpResponse);
while (retryPolicy.isRetryable(httpResponse) && retryCount < maxRetries) {
Thread.sleep(retryPolicy.getRetryDelayMs(httpResponse));
retryCount++;
httpResponse = httpClient.send(httpRequest);
}
return httpResponse;
}
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) {
String message = LogHelper.createMessage(
"Request throttled, retry after " + retryInMs + " ms",
requestContext.correlationId());
LOG.warn(message);
throw new MsalThrottlingException(retryInMs, requestContext.correlationId());
}
}
}
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() == HttpStatus.HTTP_TOO_MANY_REQUESTS ||
(httpResponse.statusCode() >= HttpStatus.HTTP_INTERNAL_ERROR)) {
expirationTimestamp = System.currentTimeMillis() + ThrottlingCache.DEFAULT_THROTTLING_TIME_SEC * 1000;
}
if (expirationTimestamp != null) {
ThrottlingCache.set(getRequestThumbprint(requestContext), expirationTimestamp);
}
}
}
static 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;
}
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 : ""));
}
}
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);
}
}
}
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);
}
}
void setRetryPolicy(IRetryPolicy retryPolicy) {
this.retryPolicy = retryPolicy;
}
}