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 package org.apache.http.client.protocol;
29
30 import java.io.IOException;
31
32 import org.apache.commons.logging.Log;
33 import org.apache.commons.logging.LogFactory;
34 import org.apache.http.HttpException;
35 import org.apache.http.HttpHost;
36 import org.apache.http.HttpRequest;
37 import org.apache.http.HttpRequestInterceptor;
38 import org.apache.http.annotation.Contract;
39 import org.apache.http.annotation.ThreadingBehavior;
40 import org.apache.http.auth.AuthProtocolState;
41 import org.apache.http.auth.AuthScheme;
42 import org.apache.http.auth.AuthScope;
43 import org.apache.http.auth.AuthState;
44 import org.apache.http.auth.Credentials;
45 import org.apache.http.client.AuthCache;
46 import org.apache.http.client.CredentialsProvider;
47 import org.apache.http.conn.routing.RouteInfo;
48 import org.apache.http.protocol.HttpContext;
49 import org.apache.http.util.Args;
50
51
52
53
54
55
56
57
58 @Contract(threading = ThreadingBehavior.IMMUTABLE)
59 public class RequestAuthCache implements HttpRequestInterceptor {
60
61 private final Log log = LogFactory.getLog(getClass());
62
63 public RequestAuthCache() {
64 super();
65 }
66
67 @Override
68 public void process(final HttpRequest request, final HttpContext context)
69 throws HttpException, IOException {
70 Args.notNull(request, "HTTP request");
71 Args.notNull(context, "HTTP context");
72
73 final HttpClientContext clientContext = HttpClientContext.adapt(context);
74
75 final AuthCache authCache = clientContext.getAuthCache();
76 if (authCache == null) {
77 this.log.debug("Auth cache not set in the context");
78 return;
79 }
80
81 final CredentialsProvider credsProvider = clientContext.getCredentialsProvider();
82 if (credsProvider == null) {
83 this.log.debug("Credentials provider not set in the context");
84 return;
85 }
86
87 final RouteInfo route = clientContext.getHttpRoute();
88 if (route == null) {
89 this.log.debug("Route info not set in the context");
90 return;
91 }
92
93 HttpHost target = clientContext.getTargetHost();
94 if (target == null) {
95 this.log.debug("Target host not set in the context");
96 return;
97 }
98
99 if (target.getPort() < 0) {
100 target = new HttpHost(
101 target.getHostName(),
102 route.getTargetHost().getPort(),
103 target.getSchemeName());
104 }
105
106 final AuthState targetState = clientContext.getTargetAuthState();
107 if (targetState != null && targetState.getState() == AuthProtocolState.UNCHALLENGED) {
108 final AuthScheme authScheme = authCache.get(target);
109 if (authScheme != null) {
110 doPreemptiveAuth(target, authScheme, targetState, credsProvider);
111 }
112 }
113
114 final HttpHost proxy = route.getProxyHost();
115 final AuthState proxyState = clientContext.getProxyAuthState();
116 if (proxy != null && proxyState != null && proxyState.getState() == AuthProtocolState.UNCHALLENGED) {
117 final AuthScheme authScheme = authCache.get(proxy);
118 if (authScheme != null) {
119 doPreemptiveAuth(proxy, authScheme, proxyState, credsProvider);
120 }
121 }
122 }
123
124 private void doPreemptiveAuth(
125 final HttpHost host,
126 final AuthScheme authScheme,
127 final AuthState authState,
128 final CredentialsProvider credsProvider) {
129 final String schemeName = authScheme.getSchemeName();
130 if (this.log.isDebugEnabled()) {
131 this.log.debug("Re-using cached '" + schemeName + "' auth scheme for " + host);
132 }
133
134 final AuthScopehtml#AuthScope">AuthScope authScope = new AuthScope(host, AuthScope.ANY_REALM, schemeName);
135 final Credentials creds = credsProvider.getCredentials(authScope);
136
137 if (creds != null) {
138 authState.update(authScheme, creds);
139 } else {
140 this.log.debug("No credentials for preemptive authentication");
141 }
142 }
143
144 }