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.
io.fabric8.maven.docker.access.hc.ApacheHttpClientDelegate Maven / Gradle / Ivy
package io.fabric8.maven.docker.access.hc;
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.http.HttpHeaders;
import org.apache.http.HttpResponse;
import org.apache.http.StatusLine;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.entity.FileEntity;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.util.EntityUtils;
import io.fabric8.maven.docker.access.hc.http.HttpRequestException;
import io.fabric8.maven.docker.access.hc.util.ClientBuilder;
public class ApacheHttpClientDelegate {
private final ClientBuilder clientBuilder;
private final CloseableHttpClient httpClient;
public ApacheHttpClientDelegate(ClientBuilder clientBuilder, boolean pooled) throws IOException {
this.clientBuilder = clientBuilder;
this.httpClient = pooled ? clientBuilder.buildPooledClient() : clientBuilder.buildBasicClient();
}
public CloseableHttpClient createBasicClient() {
try {
return clientBuilder.buildBasicClient();
} catch (IOException exp) {
throw new IllegalStateException("Cannot create single HTTP client: " + exp,exp);
}
}
public CloseableHttpClient getHttpClient() {
return httpClient;
}
public void close() throws IOException {
httpClient.close();
}
public int delete(String url, int... statusCodes) throws IOException {
return delete(url, new StatusCodeResponseHandler(), statusCodes);
}
public static class StatusCodeResponseHandler implements ResponseHandler {
@Override
public Integer handleResponse(HttpResponse response)
throws IOException {
return response.getStatusLine().getStatusCode();
}
}
public T delete(String url, ResponseHandler responseHandler, int... statusCodes)
throws IOException {
return httpClient.execute(newDelete(url),
new StatusCodeCheckerResponseHandler<>(responseHandler,
statusCodes));
}
public String get(String url, int... statusCodes) throws IOException {
return httpClient.execute(newGet(url), new StatusCodeCheckerResponseHandler<>(
new BodyResponseHandler(), statusCodes));
}
public T get(String url, ResponseHandler responseHandler, int... statusCodes)
throws IOException {
return httpClient
.execute(newGet(url), new StatusCodeCheckerResponseHandler<>(responseHandler, statusCodes));
}
public static class BodyResponseHandler implements ResponseHandler {
@Override
public String handleResponse(HttpResponse response)
throws IOException {
return getResponseMessage(response);
}
}
private static String getResponseMessage(HttpResponse response) throws IOException {
return (response.getEntity() == null) ? null
: EntityUtils.toString(response.getEntity()).trim();
}
public T post(String url, Object body, Map headers,
ResponseHandler responseHandler, int... statusCodes) throws IOException {
HttpUriRequest request = newPost(url, body);
for (Entry entry : headers.entrySet()) {
request.addHeader(entry.getKey(), entry.getValue());
}
return httpClient.execute(request, new StatusCodeCheckerResponseHandler<>(responseHandler, statusCodes));
}
public T post(String url, Object body, ResponseHandler responseHandler,
int... statusCodes) throws IOException {
return httpClient.execute(newPost(url, body),
new StatusCodeCheckerResponseHandler<>(responseHandler,
statusCodes));
}
public int post(String url, int... statusCodes) throws IOException {
return post(url, null, new StatusCodeResponseHandler(), statusCodes);
}
public int put(String url, Object body, int... statusCodes) throws IOException {
return httpClient.execute(newPut(url, body),
new StatusCodeCheckerResponseHandler<>(new StatusCodeResponseHandler(), statusCodes));
}
// =========================================================================================
private HttpUriRequest addDefaultHeaders(HttpUriRequest req) {
req.addHeader(HttpHeaders.ACCEPT, "*/*");
req.addHeader(HttpHeaders.CONTENT_TYPE, "application/json");
return req;
}
private HttpUriRequest newDelete(String url) {
return addDefaultHeaders(new HttpDelete(url));
}
private HttpUriRequest newGet(String url) {
return addDefaultHeaders(new HttpGet(url));
}
private HttpUriRequest newPut(String url, Object body) {
HttpPut put = new HttpPut(url);
setEntityIfGiven(put, body);
return addDefaultHeaders(put);
}
private HttpUriRequest newPost(String url, Object body) {
HttpPost post = new HttpPost(url);
setEntityIfGiven(post, body);
return addDefaultHeaders(post);
}
private void setEntityIfGiven(HttpEntityEnclosingRequestBase request, Object entity) {
if (entity != null) {
if (entity instanceof File) {
request.setEntity(new FileEntity((File) entity));
} else {
request.setEntity(new StringEntity((String) entity, Charset.defaultCharset()));
}
}
}
private static class StatusCodeCheckerResponseHandler implements ResponseHandler {
private int[] statusCodes;
private ResponseHandler delegate;
StatusCodeCheckerResponseHandler(ResponseHandler delegate, int... statusCodes) {
this.statusCodes = statusCodes;
this.delegate = delegate;
}
@Override
public T handleResponse(HttpResponse response) throws IOException {
StatusLine statusLine = response.getStatusLine();
int statusCode = statusLine.getStatusCode();
for (int code : statusCodes) {
if (statusCode == code) {
return delegate.handleResponse(response);
}
}
String reason = statusLine.getReasonPhrase().trim();
throw new HttpRequestException(String.format("%s (%s: %d)", getResponseMessage(response),
reason, statusCode));
}
}
public static class BodyAndStatusResponseHandler implements ResponseHandler {
@Override
public HttpBodyAndStatus handleResponse(HttpResponse response)
throws IOException {
return new HttpBodyAndStatus(response.getStatusLine().getStatusCode(),
getResponseMessage(response));
}
}
public static class HttpBodyAndStatus {
private final int statusCode;
private final String body;
public HttpBodyAndStatus(int statusCode, String body) {
this.statusCode = statusCode;
this.body = body;
}
public int getStatusCode() {
return statusCode;
}
public String getBody() {
return body;
}
}
}