feign.okhttp.OkHttpClient Maven / Gradle / Ivy
/*
* Copyright 2015 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package feign.okhttp;
import com.squareup.okhttp.Headers;
import com.squareup.okhttp.MediaType;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.RequestBody;
import com.squareup.okhttp.Response;
import com.squareup.okhttp.ResponseBody;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.util.Arrays;
import java.util.Collection;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import feign.Client;
/**
* This module directs Feign's http requests to OkHttp,
* which enables SPDY and better network control. Ex.
*
* GitHub github = Feign.builder().client(new OkHttpClient()).target(GitHub.class,
* "https://api.github.com");
*/
public final class OkHttpClient implements Client {
private final com.squareup.okhttp.OkHttpClient delegate;
public OkHttpClient() {
this(new com.squareup.okhttp.OkHttpClient());
}
public OkHttpClient(com.squareup.okhttp.OkHttpClient delegate) {
this.delegate = delegate;
}
static Request toOkHttpRequest(feign.Request input) {
Request.Builder requestBuilder = new Request.Builder();
requestBuilder.url(input.url());
MediaType mediaType = null;
boolean hasAcceptHeader = false;
for (String field : input.headers().keySet()) {
if (field.equalsIgnoreCase("Accept")) {
hasAcceptHeader = true;
}
for (String value : input.headers().get(field)) {
if (field.equalsIgnoreCase("Content-Type")) {
mediaType = MediaType.parse(value);
if (input.charset() != null) {
mediaType.charset(input.charset());
}
} else {
requestBuilder.addHeader(field, value);
}
}
}
// Some servers choke on the default accept string.
if (!hasAcceptHeader) {
requestBuilder.addHeader("Accept", "*/*");
}
byte[] inputBody = input.body();
boolean isMethodWithBody = "POST".equals(input.method()) || "PUT".equals(input.method());
if (isMethodWithBody && inputBody == null) {
// write an empty BODY to conform with okhttp 2.4.0+
// http://johnfeng.github.io/blog/2015/06/30/okhttp-updates-post-wouldnt-be-allowed-to-have-null-body/
inputBody = new byte[0];
}
RequestBody body = inputBody != null ? RequestBody.create(mediaType, inputBody) : null;
requestBuilder.method(input.method(), body);
return requestBuilder.build();
}
private static feign.Response toFeignResponse(Response input) throws IOException {
return feign.Response
.create(input.code(), input.message(), toMap(input.headers()), toBody(input.body()));
}
private static Map> toMap(Headers headers) {
return (Map) headers.toMultimap();
}
private static feign.Response.Body toBody(final ResponseBody input) throws IOException {
if (input == null || input.contentLength() == 0) {
return null;
}
if (input.contentLength() > Integer.MAX_VALUE) {
throw new UnsupportedOperationException("Length too long " + input.contentLength());
}
final Integer length = input.contentLength() != -1 ? (int) input.contentLength() : null;
return new feign.Response.Body() {
@Override
public void close() throws IOException {
input.close();
}
@Override
public Integer length() {
return length;
}
@Override
public boolean isRepeatable() {
return false;
}
@Override
public InputStream asInputStream() throws IOException {
return input.byteStream();
}
@Override
public Reader asReader() throws IOException {
return input.charStream();
}
};
}
@Override
public feign.Response execute(feign.Request input, feign.Request.Options options)
throws IOException {
com.squareup.okhttp.OkHttpClient requestScoped;
if (delegate.getConnectTimeout() != options.connectTimeoutMillis()
|| delegate.getReadTimeout() != options.readTimeoutMillis()) {
requestScoped = delegate.clone();
requestScoped.setConnectTimeout(options.connectTimeoutMillis(), TimeUnit.MILLISECONDS);
requestScoped.setReadTimeout(options.readTimeoutMillis(), TimeUnit.MILLISECONDS);
} else {
requestScoped = delegate;
}
Request request = toOkHttpRequest(input);
Response response = requestScoped.newCall(request).execute();
return toFeignResponse(response);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy