All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.ecwid.consul.v1.acl.AclConsulClient Maven / Gradle / Ivy
package com.ecwid.consul.v1.acl;
import java.util.List;
import java.util.Map;
import com.ecwid.consul.ConsulException;
import com.ecwid.consul.SingleUrlParameters;
import com.ecwid.consul.UrlParameters;
import com.ecwid.consul.json.GsonFactory;
import com.ecwid.consul.transport.HttpResponse;
import com.ecwid.consul.transport.TLSConfig;
import com.ecwid.consul.v1.ConsulRawClient;
import com.ecwid.consul.v1.OperationException;
import com.ecwid.consul.v1.Response;
import com.ecwid.consul.v1.acl.model.Acl;
import com.ecwid.consul.v1.acl.model.NewAcl;
import com.ecwid.consul.v1.acl.model.UpdateAcl;
import com.google.gson.reflect.TypeToken;
/**
* @author Vasily Vasilkov ([email protected] )
*/
public final class AclConsulClient implements AclClient {
private final ConsulRawClient rawClient;
public AclConsulClient(ConsulRawClient rawClient) {
this.rawClient = rawClient;
}
public AclConsulClient() {
this(new ConsulRawClient());
}
public AclConsulClient(TLSConfig tlsConfig) {
this(new ConsulRawClient(tlsConfig));
}
public AclConsulClient(String agentHost) {
this(new ConsulRawClient(agentHost));
}
public AclConsulClient(String agentHost, TLSConfig tlsConfig) {
this(new ConsulRawClient(agentHost, tlsConfig));
}
public AclConsulClient(String agentHost, int agentPort) {
this(new ConsulRawClient(agentHost, agentPort));
}
public AclConsulClient(String agentHost, int agentPort, TLSConfig tlsConfig) {
this(new ConsulRawClient(agentHost, agentPort, tlsConfig));
}
@Override
public Response aclCreate(NewAcl newAcl, String token) {
UrlParameters tokenParams = token != null ? new SingleUrlParameters("token", token) : null;
String json = GsonFactory.getGson().toJson(newAcl);
HttpResponse httpResponse = rawClient.makePutRequest("/v1/acl/create", json, tokenParams);
if (httpResponse.getStatusCode() == 200) {
Map value = GsonFactory.getGson().fromJson(httpResponse.getContent(), new TypeToken>() {
}.getType());
return new Response(value.get("ID"), httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response aclUpdate(UpdateAcl updateAcl, String token) {
UrlParameters tokenParams = token != null ? new SingleUrlParameters("token", token) : null;
String json = GsonFactory.getGson().toJson(updateAcl);
HttpResponse httpResponse = rawClient.makePutRequest("/v1/acl/update", json, tokenParams);
if (httpResponse.getStatusCode() == 200) {
return new Response(null, httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response aclDestroy(String aclId, String token) {
UrlParameters tokenParams = token != null ? new SingleUrlParameters("token", token) : null;
HttpResponse httpResponse = rawClient.makePutRequest("/v1/acl/destroy/" + aclId, "", tokenParams);
if (httpResponse.getStatusCode() == 200) {
return new Response(null, httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response getAcl(String id) {
HttpResponse httpResponse = rawClient.makeGetRequest("/v1/acl/info/" + id);
if (httpResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(httpResponse.getContent(), new TypeToken>() {
}.getType());
if (value.isEmpty()) {
return new Response(null, httpResponse);
} else if (value.size() == 1) {
return new Response(value.get(0), httpResponse);
} else {
throw new ConsulException("Strange response (list size=" + value.size() + ")");
}
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response aclClone(String aclId, String token) {
UrlParameters tokenParams = token != null ? new SingleUrlParameters("token", token) : null;
HttpResponse httpResponse = rawClient.makePutRequest("/v1/acl/clone/" + aclId, "", tokenParams);
if (httpResponse.getStatusCode() == 200) {
Map value = GsonFactory.getGson().fromJson(httpResponse.getContent(), new TypeToken>() {
}.getType());
return new Response(value.get("ID"), httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response> getAclList(String token) {
UrlParameters tokenParams = token != null ? new SingleUrlParameters("token", token) : null;
HttpResponse httpResponse = rawClient.makeGetRequest("/v1/acl/list", tokenParams);
if (httpResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(httpResponse.getContent(), new TypeToken>() {
}.getType());
return new Response>(value, httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
}