|
7 | 7 | package org.opensearch.jdbc.transport.http.auth.aws;
|
8 | 8 |
|
9 | 9 | import com.amazonaws.DefaultRequest;
|
10 |
| -import com.amazonaws.auth.AWSCredentials; |
11 | 10 | import com.amazonaws.auth.AWSCredentialsProvider;
|
12 | 11 | import com.amazonaws.auth.Signer;
|
13 | 12 | import com.amazonaws.http.HttpMethodName;
|
|
23 | 22 | import org.apache.http.message.BasicHeader;
|
24 | 23 | import org.apache.http.protocol.HttpContext;
|
25 | 24 |
|
26 |
| -import java.io.IOException; |
| 25 | +import java.io.*; |
27 | 26 | import java.net.URI;
|
28 | 27 | import java.net.URISyntaxException;
|
29 |
| -import java.util.ArrayList; |
30 |
| -import java.util.List; |
31 |
| -import java.util.Map; |
32 |
| -import java.util.TreeMap; |
| 28 | +import java.util.*; |
33 | 29 |
|
34 | 30 | import static org.apache.http.protocol.HttpCoreContext.HTTP_TARGET_HOST;
|
35 | 31 |
|
@@ -113,18 +109,31 @@ public void process(final HttpRequest request, final HttpContext context)
|
113 | 109 | if (request instanceof HttpEntityEnclosingRequest) {
|
114 | 110 | HttpEntityEnclosingRequest httpEntityEnclosingRequest =
|
115 | 111 | (HttpEntityEnclosingRequest) request;
|
116 |
| - if (httpEntityEnclosingRequest.getEntity() != null) { |
| 112 | + |
| 113 | + if (httpEntityEnclosingRequest.getEntity() == null) { |
| 114 | + signableRequest.setContent(new ByteArrayInputStream(new byte[0])); |
| 115 | + } else { |
117 | 116 | signableRequest.setContent(httpEntityEnclosingRequest.getEntity().getContent());
|
118 | 117 | }
|
119 | 118 | }
|
| 119 | + |
120 | 120 | signableRequest.setParameters(nvpToMapParams(uriBuilder.getQueryParams()));
|
121 |
| - signableRequest.setHeaders(headerArrayToMap(request.getAllHeaders())); |
| 121 | + |
| 122 | + Map<String, String> cleanedHeadersBeforeSign = headerArrayToMap(request.getAllHeaders()); |
| 123 | + signableRequest.setHeaders(cleanedHeadersBeforeSign); |
122 | 124 |
|
123 | 125 | // Sign it
|
124 | 126 | signer.sign(signableRequest, awsCredentialsProvider.getCredentials());
|
125 | 127 |
|
126 | 128 | // Now copy everything back
|
| 129 | + Header[] headers = request.getHeaders("content-length"); |
127 | 130 | request.setHeaders(mapToHeaderArray(signableRequest.getHeaders()));
|
| 131 | + if (headers != null) { |
| 132 | + Arrays.stream(headers) |
| 133 | + .filter(h -> !"0".equals(h.getValue())) |
| 134 | + .forEach(h -> request.addHeader(h)); |
| 135 | + } |
| 136 | + |
128 | 137 | if (request instanceof HttpEntityEnclosingRequest) {
|
129 | 138 | HttpEntityEnclosingRequest httpEntityEnclosingRequest =
|
130 | 139 | (HttpEntityEnclosingRequest) request;
|
@@ -172,8 +181,7 @@ private static Map<String, String> headerArrayToMap(final Header[] headers) {
|
172 | 181 | */
|
173 | 182 | private static boolean skipHeader(final Header header) {
|
174 | 183 | return ("content-length".equalsIgnoreCase(header.getName())
|
175 |
| - && "0".equals(header.getValue())) // Strip Content-Length: 0 |
176 |
| - || "host".equalsIgnoreCase(header.getName()); // Host comes from endpoint |
| 184 | + || "host".equalsIgnoreCase(header.getName())); // Host comes from endpoint |
177 | 185 | }
|
178 | 186 |
|
179 | 187 | /**
|
|
0 commit comments