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

Modified the way to decode request parameter of flush map #584

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,19 @@

package org.springframework.web.servlet.support;

import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.springframework.util.Assert;
import org.springframework.util.CollectionUtils;
import org.springframework.util.MultiValueMap;
Expand All @@ -35,6 +37,7 @@
import org.springframework.web.servlet.FlashMap;
import org.springframework.web.servlet.FlashMapManager;
import org.springframework.web.util.UrlPathHelper;
import org.springframework.web.util.WebUtils;

/**
* A base class for {@link FlashMapManager} implementations.
Expand Down Expand Up @@ -229,14 +232,44 @@ private String decodeAndNormalizePath(String path, HttpServletRequest request) {

private void decodeParameters(MultiValueMap<String, String> params, HttpServletRequest request) {
for (String name : new ArrayList<String>(params.keySet())) {
String decodedName = decodeParameter(request, name);
for (String value : new ArrayList<String>(params.remove(name))) {
name = getUrlPathHelper().decodeRequestString(request, name);
value = getUrlPathHelper().decodeRequestString(request, value);
params.add(name, value);
params.add(decodedName, decodeParameter(request, value));
}
}
}

/**
* decode request parameter(name or value).
*
* @param request the current request
* @param target target string
* @return decoded string
* @see java.net.URLDecoder#decode(String, String)
* @see java.net.URLDecoder#decode(String)
*/
@SuppressWarnings("deprecation")
protected String decodeParameter(HttpServletRequest request, String target) {
String enc = request.getCharacterEncoding();
if (enc == null) {
enc = WebUtils.DEFAULT_CHARACTER_ENCODING;
}

try {
return URLDecoder.decode(target, enc);
}
catch (UnsupportedEncodingException e) {
if (logger.isWarnEnabled()) {
logger.warn("Could not decode request string ["
+ target
+ "] with encoding '"
+ enc
+ "': falling back to platform default encoding; exception message: "
+ e.getMessage());
}
return URLDecoder.decode(target);
}
}

/**
* Retrieve saved FlashMap instances from the underlying storage.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,62 @@ public void saveOutputFlashMapDecodeParameters() throws Exception {
assertEquals(Arrays.asList("value"), targetRequestParams.get(":/?#[]@"));
}

// SPR-11821

@Test
public void saveOutputFlashMapDecodeParametersContainsWhiteSpace() {
this.request.setCharacterEncoding("UTF-8");

FlashMap flashMap = new FlashMap();
flashMap.put("anyKey", "anyValue");

flashMap.addTargetRequestParam("key", "value"); // normal value
flashMap.addTargetRequestParam("ke+y1", "val+ue"); // contains white space(+)
flashMap.addTargetRequestParam("ke%20y2", "val%20ue"); // contains white space(%20)
flashMap.addTargetRequestParam("ke%2By3", "val%2bue"); // contains plus(%2b)

this.flashMapManager.saveOutputFlashMap(flashMap, this.request, this.response);

MultiValueMap<String,String> targetRequestParams = flashMap.getTargetRequestParams();
assertEquals(Arrays.asList("value"), targetRequestParams.get("key"));
assertEquals(Arrays.asList("val ue"), targetRequestParams.get("ke y1"));
assertEquals(Arrays.asList("val ue"), targetRequestParams.get("ke y2"));
assertEquals(Arrays.asList("val+ue"), targetRequestParams.get("ke+y3"));
}

@Test
public void saveOutputFlashMapDecodeParametersCharacterEncodingIsNull() {
this.request.setCharacterEncoding(null);

FlashMap flashMap = new FlashMap();
flashMap.put("anyKey", "anyValue");

flashMap.addTargetRequestParam("ke+y1", "val+ue"); // contains white space(+)
flashMap.addTargetRequestParam("ke%20y2", "val%20ue"); // contains white space(%20)

this.flashMapManager.saveOutputFlashMap(flashMap, this.request, this.response);

MultiValueMap<String,String> targetRequestParams = flashMap.getTargetRequestParams();
assertEquals(Arrays.asList("val ue"), targetRequestParams.get("ke y1"));
assertEquals(Arrays.asList("val ue"), targetRequestParams.get("ke y2"));
}

@Test
public void saveOutputFlashMapDecodeParametersUnsupportedEncoding() {
this.request.setCharacterEncoding("unsupportedEncoding");

FlashMap flashMap = new FlashMap();
flashMap.put("anyKey", "anyValue");

flashMap.addTargetRequestParam("ke+y1", "val+ue"); // contains white space(+)
flashMap.addTargetRequestParam("ke%20y2", "val%20ue"); // contains white space(%20)

this.flashMapManager.saveOutputFlashMap(flashMap, this.request, this.response);

MultiValueMap<String,String> targetRequestParams = flashMap.getTargetRequestParams();
assertEquals(Arrays.asList("val ue"), targetRequestParams.get("ke y1"));
assertEquals(Arrays.asList("val ue"), targetRequestParams.get("ke y2"));
}

private static class TestFlashMapManager extends AbstractFlashMapManager {

Expand Down