com.softlayer.api.RestApiClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
The newest version!
package com.softlayer.api;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.net.URLEncoder;
import java.util.*;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import com.softlayer.api.annotation.ApiMethod;
import com.softlayer.api.annotation.ApiService;
import com.softlayer.api.http.HttpCredentials;
import com.softlayer.api.http.HttpBasicAuthCredentials;
import com.softlayer.api.http.HttpBearerCredentials;
import com.softlayer.api.http.HttpClient;
import com.softlayer.api.http.HttpClientFactory;
import com.softlayer.api.http.HttpResponse;
import com.softlayer.api.json.JsonMarshallerFactory;
import com.softlayer.api.service.Entity;
/**
* Implementation of API client for http://sldn.softlayer.com/article/REST
*/
public class RestApiClient implements ApiClient {
/**
* The publically available API URL.
*/
public static final String BASE_URL = "https://api.softlayer.com/rest/v3.1/";
/**
* The API URL that should be used when connecting via the softlayer/classic infrastructure private network.
*/
public static final String BASE_SERVICE_URL = "https://api.service.softlayer.com/rest/v3.1/";
static final String BASE_PKG = Entity.class.getPackage().getName();
static final Map> HEADERS;
static {
HEADERS = Collections.singletonMap("SoftLayer-Include-Types", Collections.singletonList("true"));
}
/**
* A list of service methods that do not have to be added to the REST URL.
* createObjects is supposed to work, but does not.
*/
private static final List IMPLICIT_SERVICE_METHODS = Arrays.asList(
"getObject",
"deleteObject",
"createObject",
"editObject",
"editObjects"
);
private final String baseUrl;
private HttpClientFactory httpClientFactory;
private JsonMarshallerFactory jsonMarshallerFactory;
private boolean loggingEnabled = false;
private HttpCredentials credentials;
/**
* Create a Rest client that uses the publically available API.
*/
public RestApiClient() {
this(BASE_URL);
}
/**
* Create a Rest client with a custom URL.
*
* @param baseUrl The custom URL the REST client will use.
*/
public RestApiClient(String baseUrl) {
// Add trailing slash if not present
if (!baseUrl.endsWith("/")) {
baseUrl += '/';
}
this.baseUrl = baseUrl;
}
public String getBaseUrl() {
return baseUrl;
}
public HttpClientFactory getHttpClientFactory() {
if (httpClientFactory == null) {
httpClientFactory = HttpClientFactory.getDefault();
}
return httpClientFactory;
}
public void setHttpClientFactory(HttpClientFactory httpClientFactory) {
this.httpClientFactory = httpClientFactory;
}
public RestApiClient withHttpClientFactory(HttpClientFactory httpClientFactory) {
setHttpClientFactory(httpClientFactory);
return this;
}
public boolean isLoggingEnabled() {
return loggingEnabled;
}
public void setLoggingEnabled(boolean loggingEnabled) {
this.loggingEnabled = loggingEnabled;
}
@Override
public RestApiClient withLoggingEnabled() {
this.loggingEnabled = true;
return this;
}
public JsonMarshallerFactory getJsonMarshallerFactory() {
if (jsonMarshallerFactory == null) {
jsonMarshallerFactory = JsonMarshallerFactory.getDefault();
}
return jsonMarshallerFactory;
}
public void setJsonMarshallerFactory(JsonMarshallerFactory jsonMarshallerFactory) {
this.jsonMarshallerFactory = jsonMarshallerFactory;
}
public RestApiClient withJsonMarshallerFactory(JsonMarshallerFactory jsonMarshallerFactory) {
setJsonMarshallerFactory(jsonMarshallerFactory);
return this;
}
@Override
public RestApiClient withCredentials(String username, String apiKey) {
credentials = new HttpBasicAuthCredentials(username, apiKey);
return this;
}
@Override
public RestApiClient withBearerToken(String token) {
credentials = new HttpBearerCredentials(token);
return this;
}
@Override
public HttpCredentials getCredentials() {
return credentials;
}
protected void writeParameterHttpBody(Object[] params, OutputStream out) {
getJsonMarshallerFactory().getJsonMarshaller().toJson(
Collections.singletonMap("parameters", params), out);
}
protected String getHttpMethodFromMethodName(String methodName) {
switch (methodName) {
case "deleteObject":
return "DELETE";
case "createObject":
case "createObjects":
return "POST";
case "editObject":
case "editObjects":
return "PUT";
default:
return "GET";
}
}
/**
* Get the full REST URL required to make a request.
*
* @param serviceName The name of the API service.
* @param methodName The name of the method on the service to call.
* @param id The identifier of the object to make a call to,
* otherwise null if not making a request to a specific object.
* @param resultLimit The number of results to limit the request to.
* @param maskString The mask, in string form, to use on the request.
* @return String
*/
protected String getFullUrl(String serviceName, String methodName, String id,
ResultLimit resultLimit, String maskString) {
StringBuilder url = new StringBuilder(baseUrl + serviceName);
// ID present? add it
if (id != null) {
url.append('/').append(id);
}
// Some method names are not included, others can have the "get" stripped
if (methodName.startsWith("get") && !"getObject".equals(methodName)) {
url.append('/').append(methodName.substring(3));
} else if (!IMPLICIT_SERVICE_METHODS.contains(methodName)) {
url.append('/').append(methodName);
}
url.append(".json");
if (resultLimit != null) {
url.append("?resultLimit=").append(resultLimit.offset).append(',').append(resultLimit.limit);
}
if (maskString != null && !maskString.isEmpty()) {
url.append(resultLimit == null ? '?' : '&');
try {
url.append("objectMask=").append(URLEncoder.encode(maskString, "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
return url.toString();
}
protected void logRequest(String httpMethod, String url, Object[] params) {
// Build JSON
String body = "no body";
if (params != null && params.length > 0) {
ByteArrayOutputStream out = new ByteArrayOutputStream();
getJsonMarshallerFactory().getJsonMarshaller().toJson(
Collections.singletonMap("parameters", params), out);
try {
body = "body: " + out.toString("UTF-8");
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
System.out.format("Running %s on %s with %s\n", httpMethod, url, body);
}
protected void logResponse(String url, int statusCode, String body) {
System.out.format("Got %d on %s with body: %s\n", statusCode, url, body);
}
@Override
@SuppressWarnings("unchecked")
public S createService(Class serviceClass, String id) {
return (S) Proxy.newProxyInstance(getClass().getClassLoader(),
new Class>[] { serviceClass }, new ServiceProxy<>(serviceClass, id));
}
class ServiceProxy implements InvocationHandler {
final Class serviceClass;
final String id;
Mask mask;
String maskString;
ResultLimit resultLimit;
Integer lastResponseTotalItemCount;
public ServiceProxy(Class serviceClass, String id) {
this.serviceClass = serviceClass;
this.id = id;
}
public void logRequestAndWriteBody(HttpClient client, String httpMethod, String url, Object[] args) {
if (loggingEnabled) {
logRequest(httpMethod, url, args);
}
// If there are parameters write em
if (args != null && args.length > 0) {
OutputStream outStream = client.getBodyStream();
try {
writeParameterHttpBody(args, outStream);
} finally {
try { outStream.close(); } catch (Exception e) { }
}
}
}
@SuppressWarnings("resource")
public Object logAndHandleResponse(HttpResponse response, String url,
java.lang.reflect.Type returnType) throws Exception {
InputStream stream = response.getInputStream();
if (loggingEnabled && stream != null) {
InputStream newStream;
Scanner scanner = null;
try {
scanner = new Scanner(stream, "UTF-8").useDelimiter("\\A");
String body = scanner.hasNext() ? scanner.next() : "";
logResponse(url, response.getStatusCode(), body);
newStream = new ByteArrayInputStream(body.getBytes("UTF-8"));
} finally {
try {
if (scanner != null) {
scanner.close();
}
} catch (Exception e) { }
try {
stream.close();
} catch (Exception e) { }
}
stream = newStream;
}
try {
// If it's not a 200, we have a problem
if (response.getStatusCode() < 200 || response.getStatusCode() >= 300) {
if (stream == null) {
throw new ApiException("Unknown error", null, response.getStatusCode());
}
// Extract error and throw
Map map = getJsonMarshallerFactory().getJsonMarshaller().
fromJson(Map.class, stream);
throw ApiException.fromError(map.get("error"), map.get("code"), response.getStatusCode());
}
// Update total items
lastResponseTotalItemCount = null;
Map> headers = response.getHeaders();
if (headers != null) {
List totalItems = headers.get("SoftLayer-Total-Items");
if (totalItems != null && !totalItems.isEmpty()) {
lastResponseTotalItemCount = Integer.valueOf(totalItems.get(0));
}
}
// Just return the serialized response
return getJsonMarshallerFactory().getJsonMarshaller().fromJson(returnType, stream);
} finally {
try {
stream.close();
} catch (Exception e) { }
}
}
public Object invokeService(Method method, final Object[] args) throws Throwable {
ApiMethod methodInfo = method.getAnnotation(ApiMethod.class);
// Must have ID if instance is required
if (methodInfo.instanceRequired() && id == null) {
throw new IllegalStateException("ID is required to invoke " + method);
}
String methodName = methodInfo.value().isEmpty() ? method.getName() : methodInfo.value();
final String httpMethod = getHttpMethodFromMethodName(methodName);
String methodId = methodInfo.instanceRequired() ? this.id : null;
final String url = getFullUrl(serviceClass.getAnnotation(ApiService.class).value(),
methodName, methodId, resultLimit, mask == null ? maskString : mask.getMask());
final HttpClient client = getHttpClientFactory().getHttpClient(credentials, httpMethod, url, HEADERS);
// Invoke with response
HttpResponse response = client.invokeSync(() -> {
logRequestAndWriteBody(client, httpMethod, url, args);
return null;
});
return logAndHandleResponse(response, url, method.getGenericReturnType());
}
@SuppressWarnings("unchecked")
public Object invokeServiceAsync(final Method asyncMethod, final Object[] args) throws Throwable {
// If the last parameter is a callback, it is a different type of invocation
Class>[] parameterTypes = asyncMethod.getParameterTypes();
boolean lastParamCallback = parameterTypes.length > 0 &&
ResponseHandler.class.isAssignableFrom(parameterTypes[parameterTypes.length - 1]);
final Object[] trimmedArgs;
if (lastParamCallback) {
parameterTypes = Arrays.copyOfRange(parameterTypes, 0, parameterTypes.length - 1);
trimmedArgs = Arrays.copyOfRange(args, 0, args.length - 1);
} else {
trimmedArgs = args;
}
final Method method = serviceClass.getMethod(asyncMethod.getName(), parameterTypes);
ApiMethod methodInfo = method.getAnnotation(ApiMethod.class);
// Must have ID if instance is required
if (methodInfo.instanceRequired() && id == null) {
throw new IllegalStateException("ID is required to invoke " + method);
}
String methodName = methodInfo.value().isEmpty() ? method.getName() : methodInfo.value();
final String httpMethod = getHttpMethodFromMethodName(methodName);
String methodId = methodInfo.instanceRequired() ? this.id : null;
final String url = getFullUrl(serviceClass.getAnnotation(ApiService.class).value(),
methodName, methodId, resultLimit, mask == null ? maskString : mask.getMask());
final HttpClient client = getHttpClientFactory().getHttpClient(credentials, httpMethod, url, HEADERS);
Callable setupBody = () -> {
logRequestAndWriteBody(client, httpMethod, url, trimmedArgs);
return null;
};
if (lastParamCallback) {
final ResponseHandler