Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2014 AsyncHttpClient Project. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the Apache License Version 2.0 is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
*/
package com.ning.http.client.providers.netty.handler;
import static com.ning.http.client.providers.netty.util.HttpUtils.HTTP;
import static com.ning.http.client.providers.netty.util.HttpUtils.WEBSOCKET;
import static com.ning.http.util.AsyncHttpProviderUtils.followRedirect;
import static org.jboss.netty.handler.codec.http.HttpResponseStatus.FOUND;
import static org.jboss.netty.handler.codec.http.HttpResponseStatus.MOVED_PERMANENTLY;
import static org.jboss.netty.handler.codec.http.HttpResponseStatus.SEE_OTHER;
import static org.jboss.netty.handler.codec.http.HttpResponseStatus.TEMPORARY_REDIRECT;
import static org.jboss.netty.handler.codec.http.HttpHeaders.Names.*;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.handler.codec.http.HttpHeaders;
import org.jboss.netty.handler.codec.http.HttpResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.ning.http.client.AsyncHandler;
import com.ning.http.client.AsyncHttpClientConfig;
import com.ning.http.client.FluentCaseInsensitiveStringsMap;
import com.ning.http.client.HttpResponseHeaders;
import com.ning.http.client.HttpResponseStatus;
import com.ning.http.client.MaxRedirectException;
import com.ning.http.client.Request;
import com.ning.http.client.RequestBuilder;
import com.ning.http.client.cookie.Cookie;
import com.ning.http.client.cookie.CookieDecoder;
import com.ning.http.client.filter.FilterContext;
import com.ning.http.client.filter.FilterException;
import com.ning.http.client.filter.ResponseFilter;
import com.ning.http.client.providers.netty.NettyAsyncHttpProviderConfig;
import com.ning.http.client.providers.netty.channel.ChannelManager;
import com.ning.http.client.providers.netty.future.NettyResponseFuture;
import com.ning.http.client.providers.netty.request.NettyRequestSender;
import com.ning.http.client.uri.Uri;
import java.io.IOException;
import java.util.HashSet;
import java.util.Set;
public abstract class Protocol {
protected final Logger logger = LoggerFactory.getLogger(getClass());
protected final ChannelManager channelManager;
protected final AsyncHttpClientConfig config;
protected final NettyAsyncHttpProviderConfig nettyConfig;
protected final NettyRequestSender requestSender;
private final boolean hasResponseFilters;
protected final boolean hasIOExceptionFilters;
private final MaxRedirectException maxRedirectException;
public static final Set REDIRECT_STATUSES = new HashSet<>();
static {
REDIRECT_STATUSES.add(MOVED_PERMANENTLY.getCode());
REDIRECT_STATUSES.add(FOUND.getCode());
REDIRECT_STATUSES.add(SEE_OTHER.getCode());
REDIRECT_STATUSES.add(TEMPORARY_REDIRECT.getCode());
}
public Protocol(ChannelManager channelManager, AsyncHttpClientConfig config, NettyAsyncHttpProviderConfig nettyConfig,
NettyRequestSender requestSender) {
this.channelManager = channelManager;
this.config = config;
this.nettyConfig = nettyConfig;
this.requestSender = requestSender;
hasResponseFilters = !config.getResponseFilters().isEmpty();
hasIOExceptionFilters = !config.getIOExceptionFilters().isEmpty();
maxRedirectException = new MaxRedirectException("Maximum redirect reached: " + config.getMaxRedirects());
maxRedirectException.setStackTrace(new StackTraceElement[] {});
}
public abstract void handle(Channel channel, NettyResponseFuture> future, Object message) throws Exception;
public abstract void onError(NettyResponseFuture> future, Throwable e);
public abstract void onClose(NettyResponseFuture> future);
private FluentCaseInsensitiveStringsMap propagatedHeaders(Request request, boolean switchToGet) {
FluentCaseInsensitiveStringsMap originalHeaders = request.getHeaders();
originalHeaders.remove(HOST);
originalHeaders.remove(CONTENT_LENGTH);
if (switchToGet)
originalHeaders.remove(CONTENT_TYPE);
return originalHeaders;
}
protected boolean exitAfterHandlingRedirect(//
final Channel channel,//
final NettyResponseFuture> future,//
HttpResponse response,//
Request request,//
int statusCode) throws Exception {
if (followRedirect(config, request) && REDIRECT_STATUSES.contains(statusCode)) {
if (future.incrementAndGetCurrentRedirectCount() >= config.getMaxRedirects()) {
throw maxRedirectException;
} else {
// We must allow 401 handling again.
future.getAndSetAuth(false);
HttpHeaders responseHeaders = response.headers();
String location = responseHeaders.get(HttpHeaders.Names.LOCATION);
Uri uri = Uri.create(future.getUri(), location);
if (!uri.equals(future.getUri())) {
final RequestBuilder requestBuilder = new RequestBuilder(future.getRequest());
// if we are to strictly handle 302, we should keep the original method (which browsers don't)
// 303 must force GET
boolean switchToGet = !request.getMethod().equals("GET") && (statusCode == 303 || (statusCode == 302 && !config.isStrict302Handling()));
if (switchToGet)
requestBuilder.setMethod("GET");
// in case of a redirect from HTTP to HTTPS, future attributes might change
final boolean initialConnectionKeepAlive = future.isKeepAlive();
final String initialPartition = future.getPartition();
future.setUri(uri);
String newUrl = uri.toUrl();
if (request.getUri().getScheme().startsWith(WEBSOCKET)) {
newUrl = newUrl.replaceFirst(HTTP, WEBSOCKET);
}
logger.debug("Redirecting to {}", newUrl);
for (String cookieStr : responseHeaders.getAll(HttpHeaders.Names.SET_COOKIE)) {
Cookie c = CookieDecoder.decode(cookieStr);
if (c != null)
requestBuilder.addOrReplaceCookie(c);
}
requestBuilder.setHeaders(propagatedHeaders(future.getRequest(), switchToGet));
final Request nextRequest = requestBuilder.setUrl(newUrl).build();
logger.debug("Sending redirect to {}", request.getUri());
if (future.isKeepAlive() && !HttpHeaders.isTransferEncodingChunked(response) && !response.isChunked()) {
boolean redirectToSameHost = request.getUri().getScheme().equals(nextRequest.getUri().getScheme())
&& request.getUri().getHost().equals(nextRequest.getUri().getHost())
&& request.getUri().getPort() == nextRequest.getUri().getPort();
if (redirectToSameHost) {
future.setReuseChannel(true);
} else {
channelManager.drainChannelAndOffer(channel, future, initialConnectionKeepAlive, initialPartition);
}
} else {
// redirect + chunking = WAT
channelManager.closeChannel(channel);
}
requestSender.sendNextRequest(nextRequest, future);
return true;
}
}
}
return false;
}
@SuppressWarnings({ "rawtypes", "unchecked" })
protected boolean exitAfterProcessingFilters(//
Channel channel,//
NettyResponseFuture> future,//
AsyncHandler> handler, //
HttpResponseStatus status,//
HttpResponseHeaders responseHeaders) throws IOException {
if (hasResponseFilters) {
FilterContext fc = new FilterContext.FilterContextBuilder().asyncHandler(handler).request(future.getRequest())
.responseStatus(status).responseHeaders(responseHeaders).build();
for (ResponseFilter asyncFilter : config.getResponseFilters()) {
try {
fc = asyncFilter.filter(fc);
// FIXME Is it worth protecting against this?
if (fc == null) {
throw new NullPointerException("FilterContext is null");
}
} catch (FilterException efe) {
requestSender.abort(channel, future, efe);
}
}
// The handler may have been wrapped.
future.setAsyncHandler(fc.getAsyncHandler());
// The request has changed
if (fc.replayRequest()) {
requestSender.replayRequest(future, fc, channel);
return true;
}
}
return false;
}
}