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.health.HealthConsulClient Maven / Gradle / Ivy
package com.ecwid.consul.v1.health;
import java.util.List;
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.QueryParams;
import com.ecwid.consul.v1.Response;
import com.ecwid.consul.v1.health.model.Check;
import com.ecwid.consul.v1.health.model.HealthService;
import com.google.gson.reflect.TypeToken;
/**
* @author Vasily Vasilkov ([email protected] )
*/
public final class HealthConsulClient implements HealthClient {
private final ConsulRawClient rawClient;
public HealthConsulClient(ConsulRawClient rawClient) {
this.rawClient = rawClient;
}
public HealthConsulClient() {
this(new ConsulRawClient());
}
public HealthConsulClient(TLSConfig tlsConfig) {
this(new ConsulRawClient(tlsConfig));
}
public HealthConsulClient(String agentHost) {
this(new ConsulRawClient(agentHost));
}
public HealthConsulClient(String agentHost, TLSConfig tlsConfig) {
this(new ConsulRawClient(agentHost, tlsConfig));
}
public HealthConsulClient(String agentHost, int agentPort) {
this(new ConsulRawClient(agentHost, agentPort));
}
public HealthConsulClient(String agentHost, int agentPort, TLSConfig tlsConfig) {
this(new ConsulRawClient(agentHost, agentPort, tlsConfig));
}
@Override
public Response> getHealthChecksForNode(String nodeName, QueryParams queryParams) {
HttpResponse httpResponse = rawClient.makeGetRequest("/v1/health/node/" + nodeName, queryParams);
if (httpResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(httpResponse.getContent(), new TypeToken>() {
}.getType());
return new Response>(value, httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response> getHealthChecksForService(String serviceName, QueryParams queryParams) {
HealthChecksForServiceRequest request = HealthChecksForServiceRequest.newBuilder()
.setQueryParams(queryParams)
.build();
return getHealthChecksForService(serviceName, request);
}
@Override
public Response> getHealthChecksForService(String serviceName, HealthChecksForServiceRequest healthChecksForServiceRequest) {
HttpResponse httpResponse = rawClient.makeGetRequest("/v1/health/checks/" + serviceName, healthChecksForServiceRequest.asUrlParameters());
if (httpResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(httpResponse.getContent(), new TypeToken>() {
}.getType());
return new Response>(value, httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response> getHealthServices(String serviceName, boolean onlyPassing, QueryParams queryParams) {
return getHealthServices(serviceName, (String) null, onlyPassing, queryParams, null);
}
@Override
public Response> getHealthServices(String serviceName, boolean onlyPassing, QueryParams queryParams, String token) {
return getHealthServices(serviceName, (String) null, onlyPassing, queryParams, token);
}
@Override
public Response> getHealthServices(String serviceName, String tag, boolean onlyPassing, QueryParams queryParams) {
return getHealthServices(serviceName, tag, onlyPassing, queryParams, null);
}
@Override
public Response> getHealthServices(String serviceName, String tag, boolean onlyPassing, QueryParams queryParams, String token) {
return getHealthServices(serviceName, new String[]{tag}, onlyPassing, queryParams, token);
}
@Override
public Response> getHealthServices(String serviceName, String[] tags, boolean onlyPassing, QueryParams queryParams, String token) {
HealthServicesRequest request = HealthServicesRequest.newBuilder()
.setTags(tags)
.setPassing(onlyPassing)
.setQueryParams(queryParams)
.setToken(token)
.build();
return getHealthServices(serviceName, request);
}
@Override
public Response> getHealthServices(String serviceName, HealthServicesRequest healthServicesRequest) {
HttpResponse httpResponse = rawClient.makeGetRequest("/v1/health/service/" + serviceName, healthServicesRequest.asUrlParameters());
if (httpResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(httpResponse.getContent(),
new TypeToken>() {
}.getType());
return new Response>(value, httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
@Override
public Response> getHealthChecksState(QueryParams queryParams) {
return getHealthChecksState(null, queryParams);
}
@Override
public Response> getHealthChecksState(Check.CheckStatus checkStatus, QueryParams queryParams) {
String status = checkStatus == null ? "any" : checkStatus.name().toLowerCase();
HttpResponse httpResponse = rawClient.makeGetRequest("/v1/health/state/" + status, queryParams);
if (httpResponse.getStatusCode() == 200) {
List value = GsonFactory.getGson().fromJson(httpResponse.getContent(), new TypeToken>() {
}.getType());
return new Response>(value, httpResponse);
} else {
throw new OperationException(httpResponse);
}
}
}