|
82 | 82 | import static java.lang.String.format;
|
83 | 83 | import static java.nio.charset.StandardCharsets.US_ASCII;
|
84 | 84 | import static java.util.stream.Collectors.joining;
|
| 85 | +import static java.net.Authenticator.RequestorType.PROXY; |
| 86 | +import static java.net.Authenticator.RequestorType.SERVER; |
85 | 87 |
|
86 | 88 | /**
|
87 | 89 | * Miscellaneous utilities
|
@@ -210,24 +212,10 @@ private static Set<String> getDisallowedHeaders() {
|
210 | 212 | return true;
|
211 | 213 | };
|
212 | 214 |
|
213 |
| - // Headers that are not generally restricted, and can therefore be set by users, |
214 |
| - // but can in some contexts be overridden by the implementation. |
215 |
| - // Currently, only contains "Authorization" which will |
216 |
| - // be overridden, when an Authenticator is set on the HttpClient. |
217 |
| - // Needs to be BiPred<String,String> to fit with general form of predicates |
218 |
| - // used by caller. |
219 |
| - |
220 |
| - public static final BiPredicate<String, String> CONTEXT_RESTRICTED(HttpClient client) { |
221 |
| - return (k, v) -> client.authenticator().isEmpty() || |
222 |
| - (!k.equalsIgnoreCase("Authorization") |
223 |
| - && !k.equalsIgnoreCase("Proxy-Authorization")); |
224 |
| - } |
225 |
| - |
226 | 215 | public record ProxyHeaders(HttpHeaders userHeaders, HttpHeaders systemHeaders) {}
|
227 | 216 |
|
228 |
| - private static final BiPredicate<String, String> HOST_RESTRICTED = (k,v) -> !"host".equalsIgnoreCase(k); |
229 |
| - public static final BiPredicate<String, String> PROXY_TUNNEL_RESTRICTED(HttpClient client) { |
230 |
| - return CONTEXT_RESTRICTED(client).and(HOST_RESTRICTED); |
| 217 | + public static final BiPredicate<String, String> PROXY_TUNNEL_RESTRICTED() { |
| 218 | + return (k,v) -> !"host".equalsIgnoreCase(k); |
231 | 219 | }
|
232 | 220 |
|
233 | 221 | private static final Predicate<String> IS_HOST = "host"::equalsIgnoreCase;
|
@@ -310,6 +298,19 @@ private static final boolean isAllowedForProxy(String name,
|
310 | 298 | public static final BiPredicate<String, String> NO_PROXY_HEADERS_FILTER =
|
311 | 299 | (n,v) -> Utils.NO_PROXY_HEADER.test(n);
|
312 | 300 |
|
| 301 | + /** |
| 302 | + * Check the user headers to see if the Authorization or ProxyAuthorization |
| 303 | + * were set. We need to set special flags in the request if so. Otherwise |
| 304 | + * we can't distinguish user set from Authenticator set headers |
| 305 | + */ |
| 306 | + public static void setUserAuthFlags(HttpRequestImpl request, HttpHeaders userHeaders) { |
| 307 | + if (userHeaders.firstValue("Authorization").isPresent()) { |
| 308 | + request.setUserSetAuthFlag(SERVER, true); |
| 309 | + } |
| 310 | + if (userHeaders.firstValue("Proxy-Authorization").isPresent()) { |
| 311 | + request.setUserSetAuthFlag(PROXY, true); |
| 312 | + } |
| 313 | + } |
313 | 314 |
|
314 | 315 | public static boolean proxyHasDisabledSchemes(boolean tunnel) {
|
315 | 316 | return tunnel ? ! PROXY_AUTH_TUNNEL_DISABLED_SCHEMES.isEmpty()
|
|
0 commit comments