6 changed files with 331 additions and 3 deletions
@ -0,0 +1,73 @@
@@ -0,0 +1,73 @@
|
||||
/* |
||||
* Copyright 2002-present 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 |
||||
* |
||||
* https://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.web.accept; |
||||
|
||||
import java.util.Enumeration; |
||||
|
||||
import jakarta.servlet.http.HttpServletRequest; |
||||
import org.jspecify.annotations.Nullable; |
||||
|
||||
import org.springframework.http.HttpHeaders; |
||||
import org.springframework.http.MediaType; |
||||
|
||||
/** |
||||
* {@link ApiVersionResolver} that extracts the version from a media type |
||||
* parameter found in the Accept or Content-Type headers. |
||||
* |
||||
* @author Rossen Stoyanchev |
||||
* @since 7.0 |
||||
*/ |
||||
public class MediaTypeParamApiVersionResolver implements ApiVersionResolver { |
||||
|
||||
private final MediaType compatibleMediaType; |
||||
|
||||
private final String parameterName; |
||||
|
||||
|
||||
/** |
||||
* Create an instance. |
||||
* @param compatibleMediaType the media type to extract the parameter from with |
||||
* the match established via {@link MediaType#isCompatibleWith(MediaType)} |
||||
* @param paramName the name of the parameter |
||||
*/ |
||||
public MediaTypeParamApiVersionResolver(MediaType compatibleMediaType, String paramName) { |
||||
this.compatibleMediaType = compatibleMediaType; |
||||
this.parameterName = paramName; |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public @Nullable String resolveVersion(HttpServletRequest request) { |
||||
Enumeration<String> headers = request.getHeaders(HttpHeaders.ACCEPT); |
||||
while (headers.hasMoreElements()) { |
||||
String header = headers.nextElement(); |
||||
for (MediaType mediaType : MediaType.parseMediaTypes(header)) { |
||||
if (this.compatibleMediaType.isCompatibleWith(mediaType)) { |
||||
return mediaType.getParameter(this.parameterName); |
||||
} |
||||
} |
||||
} |
||||
String header = request.getHeader(HttpHeaders.CONTENT_TYPE); |
||||
for (MediaType mediaType : MediaType.parseMediaTypes(header)) { |
||||
if (this.compatibleMediaType.isCompatibleWith(mediaType)) { |
||||
return mediaType.getParameter(this.parameterName); |
||||
} |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,81 @@
@@ -0,0 +1,81 @@
|
||||
/* |
||||
* Copyright 2002-present 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 |
||||
* |
||||
* https://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.web.accept; |
||||
|
||||
import java.util.Map; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.http.MediaType; |
||||
import org.springframework.web.testfixture.servlet.MockHttpServletRequest; |
||||
import org.springframework.web.util.ServletRequestPathUtils; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Unit tests for {@link MediaTypeParamApiVersionResolver}. |
||||
* @author Rossen Stoyanchev |
||||
*/ |
||||
public class MediaTypeParamApiVersionResolverTests { |
||||
|
||||
private final MediaType mediaType = MediaType.parseMediaType("application/x.abc+json"); |
||||
|
||||
private final ApiVersionResolver resolver = new MediaTypeParamApiVersionResolver(mediaType, "version"); |
||||
|
||||
private final MockHttpServletRequest request = new MockHttpServletRequest("GET", "/path"); |
||||
|
||||
|
||||
@Test |
||||
void resolveFromAccept() { |
||||
String version = "3"; |
||||
this.request.addHeader("Accept", getMediaType(version)); |
||||
testResolve(this.resolver, this.request, version); |
||||
} |
||||
|
||||
@Test |
||||
void resolveFromContentType() { |
||||
String version = "3"; |
||||
this.request.setContentType(getMediaType(version).toString()); |
||||
testResolve(this.resolver, this.request, version); |
||||
} |
||||
|
||||
@Test |
||||
void wildcard() { |
||||
MediaType compatibleMediaType = MediaType.parseMediaType("application/*+json"); |
||||
ApiVersionResolver resolver = new MediaTypeParamApiVersionResolver(compatibleMediaType, "version"); |
||||
|
||||
String version = "3"; |
||||
this.request.addHeader("Accept", getMediaType(version)); |
||||
testResolve(resolver, this.request, version); |
||||
} |
||||
|
||||
private MediaType getMediaType(String version) { |
||||
return new MediaType(this.mediaType, Map.of("version", version)); |
||||
} |
||||
|
||||
private void testResolve(ApiVersionResolver resolver, MockHttpServletRequest request, String expected) { |
||||
try { |
||||
ServletRequestPathUtils.parseAndCache(request); |
||||
String actual = resolver.resolveVersion(request); |
||||
assertThat(actual).isEqualTo(expected); |
||||
} |
||||
finally { |
||||
ServletRequestPathUtils.clearParsedRequestPath(request); |
||||
} |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,66 @@
@@ -0,0 +1,66 @@
|
||||
/* |
||||
* Copyright 2002-present 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 |
||||
* |
||||
* https://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.web.reactive.accept; |
||||
|
||||
import org.jspecify.annotations.Nullable; |
||||
|
||||
import org.springframework.http.HttpHeaders; |
||||
import org.springframework.http.MediaType; |
||||
import org.springframework.web.server.ServerWebExchange; |
||||
|
||||
/** |
||||
* {@link org.springframework.web.accept.ApiVersionResolver} that extracts the version from a media type |
||||
* parameter found in the Accept or Content-Type headers. |
||||
* |
||||
* @author Rossen Stoyanchev |
||||
* @since 7.0 |
||||
*/ |
||||
public class MediaTypeParamApiVersionResolver implements ApiVersionResolver { |
||||
|
||||
private final MediaType compatibleMediaType; |
||||
|
||||
private final String parameterName; |
||||
|
||||
|
||||
/** |
||||
* Create an instance. |
||||
* @param compatibleMediaType the media type to extract the parameter from with |
||||
* the match established via {@link MediaType#isCompatibleWith(MediaType)} |
||||
* @param paramName the name of the parameter |
||||
*/ |
||||
public MediaTypeParamApiVersionResolver(MediaType compatibleMediaType, String paramName) { |
||||
this.compatibleMediaType = compatibleMediaType; |
||||
this.parameterName = paramName; |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public @Nullable String resolveVersion(ServerWebExchange exchange) { |
||||
HttpHeaders headers = exchange.getRequest().getHeaders(); |
||||
for (MediaType mediaType : headers.getAccept()) { |
||||
if (this.compatibleMediaType.isCompatibleWith(mediaType)) { |
||||
return mediaType.getParameter(this.parameterName); |
||||
} |
||||
} |
||||
MediaType mediaType = headers.getContentType(); |
||||
if (mediaType != null && this.compatibleMediaType.isCompatibleWith(mediaType)) { |
||||
return mediaType.getParameter(this.parameterName); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,80 @@
@@ -0,0 +1,80 @@
|
||||
/* |
||||
* Copyright 2002-present 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 |
||||
* |
||||
* https://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.web.reactive.accept; |
||||
|
||||
import java.util.Map; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.http.HttpHeaders; |
||||
import org.springframework.http.MediaType; |
||||
import org.springframework.web.server.ServerWebExchange; |
||||
import org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest; |
||||
import org.springframework.web.testfixture.server.MockServerWebExchange; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Unit tests for {@link MediaTypeParamApiVersionResolver}. |
||||
* @author Rossen Stoyanchev |
||||
*/ |
||||
public class MediaTypeParamApiVersionResolverTests { |
||||
|
||||
private final MediaType mediaType = MediaType.parseMediaType("application/x.abc+json"); |
||||
|
||||
private final ApiVersionResolver resolver = new MediaTypeParamApiVersionResolver(mediaType, "version"); |
||||
|
||||
private final MockServerHttpRequest.BaseBuilder<?> request = MockServerHttpRequest.get("/path"); |
||||
|
||||
|
||||
@Test |
||||
void resolveFromAccept() { |
||||
String version = "3"; |
||||
this.request.accept(getMediaType(version)); |
||||
testResolve(this.resolver, this.request, version); |
||||
} |
||||
|
||||
@Test |
||||
void resolveFromContentType() { |
||||
String version = "3"; |
||||
this.request.header(HttpHeaders.CONTENT_TYPE, getMediaType(version).toString()); |
||||
testResolve(this.resolver, this.request, version); |
||||
} |
||||
|
||||
@Test |
||||
void wildcard() { |
||||
MediaType compatibleMediaType = MediaType.parseMediaType("application/*+json"); |
||||
ApiVersionResolver resolver = new MediaTypeParamApiVersionResolver(compatibleMediaType, "version"); |
||||
|
||||
String version = "3"; |
||||
this.request.accept(getMediaType(version)); |
||||
testResolve(resolver, this.request, version); |
||||
} |
||||
|
||||
private MediaType getMediaType(String version) { |
||||
return new MediaType(this.mediaType, Map.of("version", version)); |
||||
} |
||||
|
||||
private static void testResolve( |
||||
ApiVersionResolver resolver, MockServerHttpRequest.BaseBuilder<?> request, String expected) { |
||||
|
||||
ServerWebExchange exchange = MockServerWebExchange.from(request); |
||||
String actual = resolver.resolveVersion(exchange); |
||||
assertThat(actual).isEqualTo(expected); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue