com.kucoin.sdk.rest.impl.retrofit.AbstractRetrofitAPIImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
/**
* Copyright 2019 Mek Global Limited.
*/
package com.kucoin.sdk.rest.impl.retrofit;
import com.kucoin.sdk.KucoinObjectMapper;
import com.kucoin.sdk.exception.KucoinApiException;
import com.kucoin.sdk.rest.response.KucoinResponse;
import okhttp3.ResponseBody;
import retrofit2.Call;
import retrofit2.Converter;
import retrofit2.Response;
import retrofit2.converter.jackson.JacksonConverterFactory;
import java.io.IOException;
import java.lang.annotation.Annotation;
/**
* Created by chenshiwei on 2019/1/10.
*/
public abstract class AbstractRetrofitAPIImpl {
private static final Converter.Factory jacksonConverterFactory = JacksonConverterFactory.create(KucoinObjectMapper.INSTANCE);
@SuppressWarnings("unchecked")
private static final Converter> errorBodyConverter =
(Converter>) jacksonConverterFactory.responseBodyConverter(
KucoinResponse.class, new Annotation[0], null);
protected String baseUrl;
protected String apiKey;
protected String secret;
protected String passPhrase;
public abstract T getAPIImpl();
/**
* Execute a REST call and block until the response is received.
* @throws IOException On socket related errors.
*/
public R executeSync(Call> call) throws IOException {
Response> response = call.execute();
if (response.isSuccessful() && response.body().isSuccessful()) {
return response.body().getData();
} else {
KucoinResponse> errorResponse;
if (response.isSuccessful()) {
errorResponse = response.body();
} else {
errorResponse = getErrorResponse(response);
}
throw new KucoinApiException(errorResponse.getCode(), errorResponse.getMsg());
}
}
/**
* Extracts and converts the response error body into an object.
*/
public KucoinResponse> getErrorResponse(Response> response) throws IOException, KucoinApiException {
return errorBodyConverter.convert(response.errorBody());
}
public String getBaseUrl() {
return baseUrl;
}
public void setBaseUrl(String baseUrl) {
this.baseUrl = baseUrl;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public String getPassPhrase() {
return passPhrase;
}
public void setPassPhrase(String passPhrase) {
this.passPhrase = passPhrase;
}
}