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

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

There is a newer version: 1.22.1
Show newest version
/*
 * Copyright 2017 dmfs GmbH
 *
 *
 * 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.httpessentials.responsehandlers;

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

import java.io.IOException;


/**
 * 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.
 *
 * @param 
 *         The type of the expected response.
 *
 * @author Marten Gajda
 */
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();
        }
    }
}