com.fedapay.net.Create Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fedapay-java Show documentation
Show all versions of fedapay-java Show documentation
Cette librairie permettra de faire les requetes HTTP de Fedapay dans un projet Java.
The newest version!
package com.fedapay.net;
import java.util.Map;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.MapperFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fedapay.exception.ApiError;
import com.fedapay.model.FedaPay;
import com.fedapay.utile.MapToJson;
import com.fedapay.utile.Serializer;
import com.squareup.okhttp.MediaType;
import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.RequestBody;
import com.squareup.okhttp.Response;
public class Create {
public static String lastRequestResponse;
public static T create( T cls, String serviceUrl, Map requestMap) throws Exception {
RequestBody requestBody = RequestBody.create(MediaType.parse("application/json"),
MapToJson.mapToArray(requestMap));
Request request = new Request.Builder().url(UrlMaker.getUrl(serviceUrl))
.addHeader("Authorization", "Bearer " + FedaPay.apiKey)
.addHeader("Content-Type", "application/json")
.addHeader("Accept", "application/json").post(requestBody).build();
OkHttpClient client = new OkHttpClient();
Response response = client.newCall(request).execute();
String responseString = response.body().string();
if (response.isSuccessful()) {
lastRequestResponse = responseString;
return (T) Serializer.allSerializer(cls, responseString);
} else {
if (!responseString.contains("errors")) {
ObjectMapper mapper = new ObjectMapper();
mapper.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true);
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
ApiError error = mapper.readValue(responseString, ApiError.class);
throw new java.lang.Exception("An error occured : " + error.getMessage());
} else {
throw new java.lang.Exception("An error occured : " + responseString);
}
}
}
}