Skip to content
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

fix: parameters encoding doesn't work for ALB when using Spring Cloud #1386

Merged
merged 1 commit into from
Mar 27, 2025

Conversation

mbfreder
Copy link
Contributor

Issue #, if available: #1279

Description of changes:

Added parameter decoding for ALB when using Spring Cloud.

Context:

When an ALB receives a request with URL-encoded query parameters, it passes those parameters to the Lambda function exactly as they were received, with the encoding intact. For example:

• Original URL: https://example.com/path?time=1970-01-01T00%3A00%3A00.004Z
• In the ALB event sent to Lambda: "time": "1970-01-01T00%3A00%3A00.004Z"

The %3A (representing :) remains encoded in the query parameter value.
This behavior differs from API Gateway, which automatically decodes URL-encoded query parameters before including them in the event object sent to Lambda functions.

Currently when we use the classic way of mapping request events to servlet requests, things work fine as the decoding of queryStringParameters is properly handled for ALB. However, when using the new Spring Cloud (AwsSpringHttpProcessingUtils), the parameters are not decoded. This PR fixes the issue.

Note: Ideally, this decoding logic should reside inside the ServerlessHttpServletRequest the same way it's done in AwsProxyHttpServletRequest

By submitting this pull request

  • I confirm that my contribution is made under the terms of the Apache 2.0 license.
  • I confirm that I've made a best effort attempt to update all relevant documentation.

@mbfreder mbfreder requested a review from deki March 21, 2025 11:39
if (!CollectionUtils.isEmpty(requestParameters)) {
// decode all keys and values in map
for (Entry<String, String> entry : requestParameters.entrySet()) {
String k = v1Request.getRequestSource() == RequestSource.ALB ? decodeValueIfEncoded(entry.getKey()) : entry.getKey();
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any particular reason to use 2 inline condition instead of a regular if (v1Request.getRequestSource() == RequestSource.ALB) statement?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just think it's more readable/concise if we avoid the if else statement. Otherwise, we'll have to do something like:

String k;
String v;
if (v1Request.getRequestSource() == RequestSource.ALB) {
    k = decodeValueIfEncoded(entry.getKey());
    v = decodeValueIfEncoded(entry.getValue());
} else {
    k = entry.getKey();
    v = entry.getValue();
}
httpRequest.setParameter(k, v);

@mbfreder mbfreder requested a review from olegz March 24, 2025 23:16
@mbfreder mbfreder merged commit c1c650f into aws:main Mar 27, 2025
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants