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

io.continual.jsonHttpClient.impl.ok.OkResponse Maven / Gradle / Ivy

There is a newer version: 0.3.16
Show newest version
package io.continual.jsonHttpClient.impl.ok;

import java.io.InputStream;

import org.json.JSONException;
import org.json.JSONObject;

import io.continual.jsonHttpClient.JsonOverHttpClient.BodyFactory;
import io.continual.jsonHttpClient.JsonOverHttpClient.BodyFormatException;
import io.continual.jsonHttpClient.JsonOverHttpClient.HttpResponse;
import io.continual.util.data.json.CommentedJsonTokener;
import okhttp3.MediaType;
import okhttp3.Response;

class OkResponse implements HttpResponse
{
	public OkResponse ( int status, Response resp )
	{
		fStatus = status;
		fResponse = resp;
	}

	@Override
	public void close ()
	{
		if ( fResponse != null )
		{
			fResponse.close ();
		}
	}

	@Override
	public int getCode () { return fStatus; }

	@Override
	public String getMessage () { return fResponse.message (); }

	@Override
	public JSONObject getBody () throws BodyFormatException
	{
		return getBody ( new BodyFactory ()
		{
			@Override
			public JSONObject getBody ( long length, String contentType, InputStream byteStream )
			{
				if ( length == 0 ) return new JSONObject ();
				try
				{
					return new JSONObject ( new CommentedJsonTokener ( byteStream ) );
				}
				catch ( JSONException e )
				{
					return new JSONObject ()
						.put ( "error", "couldn't read body from server" )
						.put ( "message", e.getMessage () )
					;
				}
			}
		} );
	}

	@Override
	public  T getBody ( BodyFactory bf ) throws BodyFormatException
	{
		if ( fResponse == null ) return null;
		try
		{
			final long length = fResponse.body ().contentLength ();
			final MediaType mimeType = fResponse.body ().contentType ();
			return bf.getBody ( length, mimeType.toString (), fResponse.body ().byteStream () );
		}
		finally
		{
			fResponse.close ();
		}
	}

	@Override
	public boolean isSuccess ()
	{
		final int code = getCode();
		return code >= 200 && code < 300;
	}

	private final int fStatus;
	private final Response fResponse;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy