com.scvngr.levelup.core.net.LevelUpResponse.java Source code

Java tutorial

Introduction

Here is the source code for com.scvngr.levelup.core.net.LevelUpResponse.java

Source

/*
 * Copyright (C) 2014 SCVNGR, Inc. d/b/a LevelUp
 *
 * 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 com.scvngr.levelup.core.net;

import android.annotation.TargetApi;
import android.os.Build;
import android.os.Parcel;
import android.os.Parcelable;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.text.TextUtils;

import com.scvngr.levelup.core.annotation.LevelUpApi;
import com.scvngr.levelup.core.annotation.LevelUpApi.Contract;
import com.scvngr.levelup.core.annotation.VisibleForTesting;
import com.scvngr.levelup.core.annotation.VisibleForTesting.Visibility;
import com.scvngr.levelup.core.model.Error;
import com.scvngr.levelup.core.model.factory.json.ErrorJsonFactory;
import com.scvngr.levelup.core.net.AbstractRequest.BadRequestException;
import com.scvngr.levelup.core.net.error.ErrorCode;
import com.scvngr.levelup.core.net.error.ErrorObject;
import com.scvngr.levelup.core.util.EnvironmentUtil;
import com.scvngr.levelup.core.util.LogManager;
import com.scvngr.levelup.core.util.PreconditionUtil;

import net.jcip.annotations.Immutable;
import net.jcip.annotations.ThreadSafe;

import org.json.JSONArray;
import org.json.JSONException;

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Map;

/**
 * Class to encompass a response from the LevelUp Web Service.
 */
@ThreadSafe
@Immutable
@LevelUpApi(contract = Contract.PUBLIC)
public final class LevelUpResponse extends BufferedResponse implements Parcelable {
    /**
     * The name of the Server HTTP header.
     */
    @NonNull
    private static final String HTTP_HEADER_SERVER = "Server";

    /**
     * The expected value for the Server header for us to know it's coming from LevelUp Platform
     * (and not a reverse-proxy or failover server).
     */
    @NonNull
    private static final String HTTP_HEADER_VALUE_SERVER = "LevelUp";

    @NonNull
    private static final String INVALID_ERROR_RESPONSE_MESSAGE = "The response cannot be parsed as Error objects.";

    @NonNull
    private final List<Error> mServerErrors;

    @Nullable
    private final Exception mServerErrorReadError;

    @Nullable
    private final LevelUpResponse mOriginalResponse;

    /**
     * Creator for parceling.
     */
    public static final Creator<LevelUpResponse> CREATOR = new Creator<LevelUpResponse>() {

        @Override
        public LevelUpResponse[] newArray(final int size) {
            return new LevelUpResponse[size];
        }

        @Override
        public LevelUpResponse createFromParcel(final Parcel in) {
            return new LevelUpResponse(in);
        }
    };

    /**
     * Status of the response.
     */
    @NonNull
    private final LevelUpStatus mStatus;

    /**
     * @param data the string data (typically JSON) from the response from the server.
     * @param status the status of the response. See {@link LevelUpStatus}.
     */
    public LevelUpResponse(@Nullable final String data, @NonNull final LevelUpStatus status) {
        super(data);
        mStatus = status;

        Exception serverErrorReadError = null;
        List<Error> serverErrors = Collections.emptyList();

        try {
            serverErrors = parseServerError();
        } catch (final IOException e) {
            serverErrorReadError = e;
        }

        mServerErrorReadError = serverErrorReadError;
        mServerErrors = serverErrors;
        mOriginalResponse = null;
    }

    /**
     * @param status the status of the response. See {@link LevelUpStatus}.
     * @param originalResponse the original response the server gave
     */
    public LevelUpResponse(@NonNull final LevelUpStatus status, @Nullable final LevelUpResponse originalResponse) {
        super((String) null);
        mStatus = status;

        Exception serverErrorReadError = null;
        List<Error> serverErrors = Collections.emptyList();

        try {
            serverErrors = parseServerError();
        } catch (final IOException e) {
            serverErrorReadError = e;
        }

        mServerErrorReadError = serverErrorReadError;
        mServerErrors = serverErrors;
        mOriginalResponse = originalResponse;
    }

    private List<Error> parseServerError() throws IOException {
        List<Error> serverErrors = Collections.emptyList();
        if (LevelUpStatus.OK != mStatus && null != getData()) {
            try {
                serverErrors = Collections
                        .unmodifiableList(new ErrorJsonFactory().fromList(new JSONArray(getData())));
            } catch (final JSONException e) {
                // No error could be parsed; log the issue.
                LogManager.e("Error parsing error JSON response: " + getData(), e);
                throw getInvalidErrorResponseIOException(e);
            }
        }

        return serverErrors;
    }

    @NonNull
    @TargetApi(Build.VERSION_CODES.GINGERBREAD)
    private IOException getInvalidErrorResponseIOException(@NonNull final JSONException e) {
        final IOException wrappingException;

        if (EnvironmentUtil.isSdk9OrGreater()) {
            wrappingException = new IOException(INVALID_ERROR_RESPONSE_MESSAGE, e);
        } else {
            wrappingException = new IOException(INVALID_ERROR_RESPONSE_MESSAGE);
            wrappingException.initCause(e);
        }

        return wrappingException;
    }

    /**
     * Constructor for parceling.
     *
     * @param in the parcel to read from.
     */
    public LevelUpResponse(@NonNull final Parcel in) {
        super(in);
        mStatus = LevelUpStatus.valueOf(in.readString());

        mServerErrors = new ArrayList<>();
        in.readTypedList(mServerErrors, Error.CREATOR);
        mServerErrorReadError = (Exception) in.readSerializable();
        mOriginalResponse = in.readParcelable(LevelUpResponse.class.getClassLoader());

        checkRep();
    }

    /**
     * Constructor for testing purposes.
     *
     * @param data the string content of the response.
     * @param status HTTP status code.
     * @param headers HTTP headers.
     * @param error error from response or null if there was none.
     */
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */ LevelUpResponse(@NonNull final String data, @NonNull final LevelUpStatus status,
            @Nullable final Map<String, List<String>> headers, @Nullable final Exception error) {
        super(data, HTTP_STATUS_CODE_UNUSED, headers, error);
        mStatus = status;

        Exception serverErrorReadError = null;
        List<Error> serverErrors = Collections.emptyList();

        try {
            serverErrors = parseServerError();
        } catch (final IOException e) {
            serverErrorReadError = e;
        }

        mServerErrorReadError = serverErrorReadError;
        mServerErrors = serverErrors;
        mOriginalResponse = null;
    }

    /**
     * Constructor for testing purposes.
     *
     * @param data the string content of the response.
     * @param statusCode HTTP status code.
     * @param headers HTTP headers.
     * @param error error from response or null if there was none.
     */
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */ LevelUpResponse(@NonNull final String data, final int statusCode,
            @Nullable final Map<String, List<String>> headers, @Nullable final Exception error) {
        super(data, statusCode, headers, error);

        String serverHeader = null;

        if (null != headers) {
            final List<String> serverHeaders = headers.get(HTTP_HEADER_SERVER);

            if (null != serverHeaders && serverHeaders.size() > 0) {
                serverHeader = serverHeaders.get(0);
            }
        }

        mStatus = mapStatus(statusCode, serverHeader);

        Exception serverErrorReadError = null;
        List<Error> serverErrors = Collections.emptyList();

        try {
            serverErrors = parseServerError();
        } catch (final IOException e) {
            serverErrorReadError = e;
        }

        mServerErrorReadError = serverErrorReadError;
        mServerErrors = serverErrors;
        mOriginalResponse = null;
    }

    /**
     * @param data the input stream from the response
     * @param status the status of the response. See {@link LevelUpStatus}.
     */
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */ LevelUpResponse(@NonNull final InputStream data, @NonNull final LevelUpStatus status) {
        super(data);
        mStatus = mapStatus(null, getError());

        Exception serverErrorReadError = null;
        List<Error> serverErrors = Collections.emptyList();

        try {
            serverErrors = parseServerError();
        } catch (final IOException e) {
            serverErrorReadError = e;
        }

        mServerErrorReadError = serverErrorReadError;
        mServerErrors = serverErrors;
        mOriginalResponse = null;

        checkRep();
    }

    /**
     * Constructor to use to build the LevelUpResponse from a {@link StreamingResponse}. Reads the
     * data from the response and calls {@link StreamingResponse#close} after.
     *
     * @param response the {@link StreamingResponse} to convert to an LevelUpResponse.
     */
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */ LevelUpResponse(@NonNull final StreamingResponse response) {
        super(response);
        mStatus = mapStatus(response, getError());

        Exception serverErrorReadError = null;
        List<Error> serverErrors = Collections.emptyList();

        try {
            serverErrors = parseServerError();
        } catch (final IOException e) {
            serverErrorReadError = e;
        }

        mServerErrorReadError = serverErrorReadError;
        mServerErrors = serverErrors;
        mOriginalResponse = null;

        checkRep();
    }

    /**
     * Asserts representation invariants of this class.
     */
    private void checkRep() {
        PreconditionUtil.assertNotNull(mStatus, "status");
    }

    /**
     * Maps the data in the response (status code and error) or the error thrown when reading the
     * input stream from the response to a more friendly status code.
     *
     * @param response the response from the server
     * @param streamError the error that occurred during the reading of the stream from the response
     * @return the {@link LevelUpStatus} best representing the contents of the response/stream error
     */
    @NonNull
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */static LevelUpStatus mapStatus(@Nullable final StreamingResponse response,
            @Nullable final Exception streamError) {
        LevelUpStatus status = LevelUpStatus.ERROR_UNKNOWN;

        if (null != response) {
            status = mapStatus(response);
        }

        if (null != streamError) {
            status = mapStatus(streamError);
        }

        return status;
    }

    /**
     * Maps status from a response object.
     *
     * @param response the response that was received from the server.
     * @return {@link LevelUpStatus} describing the state of the response.
     */
    @NonNull
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */static LevelUpStatus mapStatus(@NonNull final StreamingResponse response) {
        LevelUpStatus status = LevelUpStatus.ERROR_UNKNOWN;

        if (AbstractResponse.HTTP_STATUS_CODE_UNUSED != response.getHttpStatusCode()) {
            status = mapStatus(response.getHttpStatusCode(), response.getHttpHeader(HTTP_HEADER_SERVER));
        }

        if (null != response.getError()) {
            status = mapStatus(response.getError());
        }

        return status;
    }

    /**
     * Maps an {@link LevelUpStatus} to an HTTP status code from the response.
     *
     * @param statusCode the HTTP status code from the response.
     * @param serverHeader the value of the Server HTTP header; this is used to validate whether the
     *        response is coming from the LevelUp Platform server or a backup/reverse-proxy.
     * @return {@link LevelUpStatus} describing the status code.
     */
    @NonNull
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */static LevelUpStatus mapStatus(final int statusCode, @Nullable final String serverHeader) {
        final boolean fromLevelUpPlatform = HTTP_HEADER_VALUE_SERVER.equals(serverHeader);
        final LevelUpStatus status;

        if (statusCode >= AbstractResponse.STATUS_CODE_SUCCESS_MIN_INCLUSIVE
                && statusCode < AbstractResponse.STATUS_CODE_SUCCESS_MAX_EXCLUSIVE) {
            // A 2xx status code is OK.
            status = LevelUpStatus.OK;
        } else if (HttpURLConnection.HTTP_NOT_IMPLEMENTED == statusCode && fromLevelUpPlatform) {
            /*
             * The API treats a 501 response as a requirement for the client to be upgraded.
             * However, in failover etc. this response should be ignored since it may have a
             * different meaning coming from other servers.
             */
            status = LevelUpStatus.UPGRADE;
        } else if (HttpURLConnection.HTTP_UNAUTHORIZED == statusCode && fromLevelUpPlatform) {
            /*
             * The API treats a 401 response as a notice that the user needs a new access token, and
             * should be logged out. However, if a reverse-proxy or backup server is sending the
             * response, this should be ignored since it may have a different meaning coming from
             * other servers.
             */
            status = LevelUpStatus.LOGIN_REQUIRED;
        } else if (HttpURLConnection.HTTP_NOT_FOUND == statusCode && fromLevelUpPlatform) {
            /*
             * Some endpoints (like PaymentToken) have special meanings for 404s, but in failover
             * they may just indicate a partially-functioning service and should be treated as
             * generic network errors.
             */
            status = LevelUpStatus.ERROR_NOT_FOUND;
        } else if (HttpURLConnection.HTTP_UNAVAILABLE == statusCode) {
            // LevelUp is down for maintenance (applicable even if the Server header differs).
            status = LevelUpStatus.ERROR_MAINTENANCE;
        } else {
            // All other response codes are server errors.
            status = LevelUpStatus.ERROR_SERVER;
        }

        return status;
    }

    /**
     * Maps status from an {@link Exception}.
     *
     * @param error the error that was thrown.
     * @return {@link LevelUpStatus} describing the state of the response.
     */
    @NonNull
    @VisibleForTesting(visibility = Visibility.PRIVATE)
    /* package */static LevelUpStatus mapStatus(final Exception error) {
        LevelUpStatus status = LevelUpStatus.ERROR_UNKNOWN;

        if (error instanceof ResponseTooLargeException) {
            status = LevelUpStatus.ERROR_RESPONSE_TOO_LARGE;
        } else if (error instanceof BadRequestException) {
            status = LevelUpStatus.ERROR_BAD_REQUEST;
        } else {
            // All other errors can be categorized as network errors.
            status = LevelUpStatus.ERROR_NETWORK;
        }

        return status;
    }

    /**
     * @return the {@link LevelUpStatus} for this LevelUpResponse.
     */
    @NonNull
    public LevelUpStatus getStatus() {
        return mStatus;
    }

    /**
     * @return the original response from the server when the current response represents a
     * client error.
     */
    @Nullable
    LevelUpResponse getOriginalResponse() {
        return mOriginalResponse;
    }

    /**
     * @return A list of {@link Error}s on this server response. Will attempt to parse the
     *         {@link Error}s from the {@link #getData()} if the errors are not already populated.
     */
    @NonNull
    public List<Error> getServerErrors() {
        return mServerErrors;
    }

    /**
     * @return True if there are any server errors that was parsed on this response.
     */
    public boolean hasServerErrors() {
        return 0 < mServerErrors.size();
    }

    /**
     * Get a specific {@link Error} from the {@link LevelUpResponse} which contains specific values
     * for {@link Error#getObject} and {@link Error#getCode}.
     *
     * @param object the {@link ErrorObject} of the desired error. This object is scoped to the
     * context of the web service.
     * @param code the {@link ErrorCode} of the desired error.
     * @return the {@link Error} or null if the error is not found.
     */
    @Nullable
    public Error getServerError(@NonNull final ErrorObject object, @NonNull final ErrorCode code) {
        Error filteredError = null;

        for (final Error error : mServerErrors) {
            if (TextUtils.equals(object.toString(), error.getObject())) {
                if (TextUtils.equals(code.toString(), error.getCode())) {
                    filteredError = error;
                    break;
                }
            }
        }

        return filteredError;
    }

    @Nullable
    @Override
    public Exception getError() {
        Exception error = mServerErrorReadError;
        if (null == error) {
            error = super.getError();
        }

        return error;
    }

    @SuppressWarnings("null") // Generated code.
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((mStatus == null) ? 0 : mStatus.hashCode());
        result = prime * result + ((getData() == null) ? 0 : getData().hashCode());
        result = prime * result + ((mServerErrors == null) ? 0 : mServerErrors.hashCode());
        result = prime * result + ((mOriginalResponse == null) ? 0 : mOriginalResponse.hashCode());
        return result;
    }

    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }

        if (null == obj) {
            return false;
        }

        if (!(obj instanceof LevelUpResponse)) {
            return false;
        }

        final LevelUpResponse other = (LevelUpResponse) obj;

        if (null == getData()) {
            if (null != other.getData()) {
                return false;
            }
        } else {
            if (!getData().equals(other.getData())) {
                return false;
            }
        }

        if (mStatus != other.mStatus) {
            return false;
        }

        if (!mServerErrors.equals(other.mServerErrors)) {
            return false;
        }

        if (null == mOriginalResponse) {
            if (null != other.mOriginalResponse) {
                return false;
            }
        } else {
            if (!mOriginalResponse.equals(other.mOriginalResponse)) {
                return false;
            }
        }

        return true;
    }

    @Override
    public String toString() {
        return String.format(Locale.US, "LevelUpResponse [mBufferedResponse=%s, mStatus=%s]", super.toString(),
                mStatus);
    }

    @Override
    public void writeToParcel(final Parcel dest, final int flags) {
        super.writeToParcel(dest, flags);
        dest.writeString(mStatus.name());
        dest.writeTypedList(mServerErrors);
        dest.writeSerializable(mServerErrorReadError);
        dest.writeParcelable(mOriginalResponse, flags);
    }
}