Skip to content

Commit

Permalink
Add CookieProcessingTargetAuthenticationStrategy.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Noordermeer committed Feb 25, 2015
1 parent 03db6b8 commit c6f54bb
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/**************************************************************************
Exchange Web Services Java API
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
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 microsoft.exchange.webservices.data;

import org.apache.http.*;
import org.apache.http.auth.AuthScheme;
import org.apache.http.auth.MalformedChallengeException;
import org.apache.http.client.protocol.HttpClientContext;
import org.apache.http.client.protocol.RequestAddCookies;
import org.apache.http.client.protocol.ResponseProcessCookies;
import org.apache.http.impl.client.TargetAuthenticationStrategy;
import org.apache.http.protocol.HttpContext;

import java.io.IOException;
import java.util.Map;

/**
* TargetAuthenticationStrategy that also processes the cookies in HTTP 401 responses. While not fully
* according to the RFC's, this is often necessary to ensure good load balancing behaviour (e.g., TMG server
* requires it for authentication, where it sends a HTTP 401 with a new Cookie after 5 minutes of inactivity)
*/
public class CookieProcessingTargetAuthenticationStrategy extends TargetAuthenticationStrategy {
ResponseProcessCookies responseProcessCookies = new ResponseProcessCookies();
RequestAddCookies requestAddCookies = new RequestAddCookies();

@Override
public Map<String, Header> getChallenges(HttpHost authhost, HttpResponse response, HttpContext context)
throws MalformedChallengeException {
try {
// Get the request from the context
HttpClientContext clientContext = HttpClientContext.adapt(context);
HttpRequest request = clientContext.getRequest();

// Save new cookies in the context
responseProcessCookies.process(response, context);

// Remove existing cookies and set the new cookies in the request
request.removeHeaders("Cookie");
requestAddCookies.process(request, context);
} catch (HttpException e) {
throw new RuntimeException(e); // Looking at the source of responseProcessCookies this never happens
} catch (IOException e) {
throw new RuntimeException(e); // Looking at the source of responseProcessCookies this never happens
}

return super.getChallenges(authhost, response, context);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ private void initializeHttpClient() {
.build();

HttpClientConnectionManager httpConnectionManager = new BasicHttpClientConnectionManager(registry);
HttpClientBuilder httpClientBuilder = HttpClients.custom().setConnectionManager(httpConnectionManager);
HttpClientBuilder httpClientBuilder = HttpClients.custom().setConnectionManager(httpConnectionManager)
.setTargetAuthenticationStrategy(new CookieProcessingTargetAuthenticationStrategy());
httpClient = httpClientBuilder.build();
}

Expand Down

0 comments on commit c6f54bb

Please sign in to comment.