All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dmfs.httpclient.responsehandlers.FailResponseHandler Maven / Gradle / Ivy

There is a newer version: 1.22.1
Show newest version
/*
 * Copyright (C) 2016 Marten Gajda 
 *
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.dmfs.httpclient.responsehandlers;

import java.io.IOException;

import org.dmfs.httpclient.HttpResponse;
import org.dmfs.httpclient.HttpResponseHandler;
import org.dmfs.httpclient.HttpStatus;
import org.dmfs.httpclient.exceptions.ClientErrorException;
import org.dmfs.httpclient.exceptions.NotFoundException;
import org.dmfs.httpclient.exceptions.ProtocolError;
import org.dmfs.httpclient.exceptions.ProtocolException;
import org.dmfs.httpclient.exceptions.ServerErrorException;
import org.dmfs.httpclient.exceptions.UnauthorizedException;
import org.dmfs.httpclient.exceptions.UnexpectedStatusException;


/**
 * An default response handler that doesn't handle the response but throws the most appropriate Exception, based on the response status code. Use
 * {@link #getInstance()} to get an instance.
 * 
 * @author Marten Gajda 
 * 
 * @param 
 *            The type of the expected response.
 */
public final class FailResponseHandler implements HttpResponseHandler
{

	private final static HttpResponseHandler INSTANCE = new FailResponseHandler();


	@SuppressWarnings("unchecked")
	public static  HttpResponseHandler getInstance()
	{
		// this HttpResponseHandler will always throw an Exception, so the actual response type doesn't matter at all.
		return (HttpResponseHandler) INSTANCE;
	}


	@Override
	public T handleResponse(final HttpResponse response) throws IOException, ProtocolError, ProtocolException
	{
		try
		{
			HttpStatus status = response.status();
			if (status.isClientError())
			{
				if (HttpStatus.NOT_FOUND.equals(status))
				{
					throw new NotFoundException(response.responseUri(), String.format("Resource at '%s' not found.", response.responseUri().toASCIIString()));
				}

				if (HttpStatus.UNAUTHORIZED.equals(status))
				{
					throw new UnauthorizedException(String.format("Authentication at '%s' failed.", response.responseUri().toASCIIString()));
				}

				throw new ClientErrorException(status, String.format("'%s' returned a client error: '%d %s'", response.responseUri().toASCIIString(),
					status.statusCode(), status.reason(), response));
			}

			if (status.isServerError())
			{
				throw new ServerErrorException(status, String.format("'%s' returned a server error: '%d %s'", response.responseUri().toASCIIString(),
					status.statusCode(), status.reason()));
			}

			throw new UnexpectedStatusException(status, String.format("Unexpected status code '%d %s' returned from '%s'", status.statusCode(),
				status.reason(), response.responseUri().toASCIIString()));
		}
		finally
		{
			response.responseEntity().contentStream().close();
		}
	}
}