This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update OkHttpClientHttpRequestFactory to support interceptors
Resolves #24
- Loading branch information
1 parent
959b72a
commit 51721c7
Showing
5 changed files
with
287 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 114 additions & 0 deletions
114
...-rest-template/src/main/java/org/springframework/http/client/OkHttpClientHttpRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
/* | ||
* Copyright 2002-2015 the original author or authors. | ||
* | ||
* 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 org.springframework.http.client; | ||
|
||
import java.io.IOException; | ||
import java.net.ProtocolException; | ||
import java.net.URI; | ||
import java.net.URL; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import com.squareup.okhttp.MediaType; | ||
import com.squareup.okhttp.OkHttpClient; | ||
import com.squareup.okhttp.Request; | ||
import com.squareup.okhttp.RequestBody; | ||
import com.squareup.okhttp.Response; | ||
|
||
import org.springframework.http.HttpHeaders; | ||
import org.springframework.http.HttpMethod; | ||
import org.springframework.http.HttpStatus; | ||
import org.springframework.util.StringUtils; | ||
import org.springframework.web.client.HttpClientErrorException; | ||
|
||
/** | ||
* {@link ClientHttpRequest} implementation that uses OkHttp to execute requests. | ||
* | ||
* <p>Created via the {@link OkHttpClientHttpRequestFactory}. | ||
* | ||
* @author Luciano Leggieri | ||
* @author Arjen Poutsma | ||
* @author Roy Clarkson | ||
* @since 2.0 | ||
*/ | ||
class OkHttpClientHttpRequest extends AbstractBufferingClientHttpRequest | ||
implements ClientHttpRequest { | ||
|
||
private static final String PROXY_AUTH_ERROR = "Received HTTP_PROXY_AUTH (407) code while not using proxy"; | ||
|
||
private final OkHttpClient client; | ||
|
||
private final URI uri; | ||
|
||
private final HttpMethod method; | ||
|
||
|
||
public OkHttpClientHttpRequest(OkHttpClient client, URI uri, HttpMethod method) { | ||
this.client = client; | ||
this.uri = uri; | ||
this.method = method; | ||
} | ||
|
||
|
||
@Override | ||
public HttpMethod getMethod() { | ||
return this.method; | ||
} | ||
|
||
@Override | ||
public URI getURI() { | ||
return this.uri; | ||
} | ||
|
||
@Override | ||
protected ClientHttpResponse executeInternal(HttpHeaders headers, byte[] content) throws IOException { | ||
|
||
MediaType contentType = getContentType(headers); | ||
RequestBody body = (content.length > 0 ? RequestBody.create(contentType, content) : null); | ||
|
||
URL url = this.uri.toURL(); | ||
String methodName = this.method.name(); | ||
Request.Builder builder = new Request.Builder().url(url).method(methodName, body); | ||
|
||
for (Map.Entry<String, List<String>> entry : headers.entrySet()) { | ||
String headerName = entry.getKey(); | ||
for (String headerValue : entry.getValue()) { | ||
builder.addHeader(headerName, headerValue); | ||
} | ||
} | ||
Request request = builder.build(); | ||
Response response = null; | ||
try { | ||
response = client.newCall(request).execute(); | ||
} | ||
catch (ProtocolException e) { | ||
if (PROXY_AUTH_ERROR.equals(e.getMessage())) { | ||
throw new HttpClientErrorException(HttpStatus.PROXY_AUTHENTICATION_REQUIRED, | ||
HttpStatus.PROXY_AUTHENTICATION_REQUIRED.getReasonPhrase()); | ||
} else { | ||
throw e; | ||
} | ||
} | ||
return new OkHttpClientHttpResponse(response); | ||
} | ||
|
||
private MediaType getContentType(HttpHeaders headers) { | ||
String rawContentType = headers.getFirst("Content-Type"); | ||
return (StringUtils.hasText(rawContentType) ? MediaType.parse(rawContentType) : null); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
...rest-template/src/main/java/org/springframework/http/client/OkHttpClientHttpResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* Copyright 2002-2015 the original author or authors. | ||
* | ||
* 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 org.springframework.http.client; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
|
||
import com.squareup.okhttp.Response; | ||
|
||
import org.springframework.http.HttpHeaders; | ||
import org.springframework.util.Assert; | ||
|
||
/** | ||
* {@link org.springframework.http.client.ClientHttpResponse} implementation that uses | ||
* OkHttp. | ||
* | ||
* @author Luciano Leggieri | ||
* @author Arjen Poutsma | ||
* @author Roy Clarkson | ||
* @since 2.0 | ||
*/ | ||
class OkHttpClientHttpResponse extends AbstractClientHttpResponse { | ||
|
||
private final Response response; | ||
|
||
private HttpHeaders headers; | ||
|
||
|
||
public OkHttpClientHttpResponse(Response response) { | ||
Assert.notNull(response, "'response' must not be null"); | ||
this.response = response; | ||
} | ||
|
||
|
||
@Override | ||
public int getRawStatusCode() { | ||
return this.response.code(); | ||
} | ||
|
||
@Override | ||
public String getStatusText() { | ||
return this.response.message(); | ||
} | ||
|
||
@Override | ||
public InputStream getBodyInternal() throws IOException { | ||
return this.response.body().byteStream(); | ||
} | ||
|
||
@Override | ||
public HttpHeaders getHeaders() { | ||
if (this.headers == null) { | ||
HttpHeaders headers = new HttpHeaders(); | ||
for (String headerName : this.response.headers().names()) { | ||
for (String headerValue : this.response.headers(headerName)) { | ||
headers.add(headerName, headerValue); | ||
} | ||
} | ||
this.headers = headers; | ||
} | ||
return this.headers; | ||
} | ||
|
||
@Override | ||
public void closeInternal() { | ||
try { | ||
this.response.body().close(); | ||
} | ||
catch (IOException ex) { | ||
// Ignore | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters