-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keep encoded plus signs in query parameters intact #3448
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,14 +84,12 @@ private void init() { | |
@Override | ||
public ServerResponse handle(ServerRequest serverRequest) { | ||
URI uri = uriResolver.apply(serverRequest); | ||
boolean encoded = containsEncodedQuery(serverRequest.uri(), serverRequest.params()); | ||
// @formatter:off | ||
URI url = UriComponentsBuilder.fromUri(serverRequest.uri()) | ||
.scheme(uri.getScheme()) | ||
.host(uri.getHost()) | ||
.port(uri.getPort()) | ||
.replaceQueryParams(serverRequest.params()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if you add/change some query params in pre filters they will not be added to request I guess There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch, I assumed query params were already included in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've been trying to fix this issue in our project aswell, and what I find to be working best is this URI url = UriComponentsBuilder.fromUri(serverRequest.uri())
.scheme(uri.getScheme())
.host(uri.getHost())
.port(uri.getPort())
.replaceQueryParams(serverRequest.params())
.encode()
.build()
.toUri(); It solves all cases we have found so far. |
||
.build(encoded) | ||
.build(true) | ||
.toUri(); | ||
// @formatter:on | ||
|
||
|
@@ -131,29 +129,6 @@ private <REQUEST_OR_RESPONSE> HttpHeaders filterHeaders(List<?> filters, HttpHea | |
return filtered; | ||
} | ||
|
||
private static boolean containsEncodedQuery(URI uri, MultiValueMap<String, String> params) { | ||
String rawQuery = uri.getRawQuery(); | ||
boolean encoded = (rawQuery != null && rawQuery.contains("%")) | ||
|| (uri.getRawPath() != null && uri.getRawPath().contains("%")); | ||
|
||
// Verify if it is really fully encoded. Treat partial encoded as unencoded. | ||
if (encoded) { | ||
try { | ||
UriComponentsBuilder.fromUri(uri).replaceQueryParams(params).build(true); | ||
return true; | ||
} | ||
catch (IllegalArgumentException ignored) { | ||
if (log.isTraceEnabled()) { | ||
log.trace("Error in containsEncodedParts", ignored); | ||
} | ||
} | ||
|
||
return false; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
public interface URIResolver extends Function<ServerRequest, URI> { | ||
|
||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this check being removed? Can we assume URI is always encoded?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure why this check was added in the first place. In my opinion, spring-cloud-gateway should not encode or decode parameters or URI parts, but leave them untouched. A similar change is also proposed in https://github.com/spring-cloud/spring-cloud-gateway/pull/3437/files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the intent may be if the incoming URI is already encoded, keep the encoding...otherwise don't. Not working that way though, I'm seeing the request is decoded by the time it reaches the backend.
The key is handling replaceQueryParms piece below, may be we need to encode the request parms if the request is already encoded ?
something like