1
22
23 package com.liferay.portal.apache.bridges.struts;
24
25 import com.liferay.portlet.ActionResponseImpl;
26 import com.liferay.portlet.PortletURLImplWrapper;
27 import com.liferay.portlet.RenderResponseImpl;
28 import com.liferay.util.HttpUtil;
29
30 import org.apache.commons.logging.Log;
31 import org.apache.commons.logging.LogFactory;
32 import org.apache.portals.bridges.struts.StrutsPortletURL;
33
34
40 public class LiferayStrutsPortletURLImpl extends PortletURLImplWrapper {
41
42 public LiferayStrutsPortletURLImpl(ActionResponseImpl res, boolean action) {
43 super(res, action);
44 }
45
46 public LiferayStrutsPortletURLImpl(RenderResponseImpl res, boolean action) {
47 super(res, action);
48 }
49
50 public void setParameter(String name, String value) {
51 super.setParameter(name, value);
52
53
56 String decodedValue = HttpUtil.decodeURL(value);
57
58 try {
59 if (name.equals(StrutsPortletURL.PAGE)) {
60 String[] urlComponents = decodedValue.split("\\?", 2);
61
62 if (urlComponents.length != 2) {
63 return;
64 }
65
66 String[] nameValue = urlComponents[1].split("\\&");
67
68 for (int i = 0; i < nameValue.length; i++) {
69 String[] nameValuePair = nameValue[i].split("\\=", 2);
70
71 if (nameValuePair.length == 2) {
72 super.setParameter(nameValuePair[0], nameValuePair[1]);
73 }
74 else if (nameValuePair.length == 1) {
75 super.setParameter(nameValuePair[0], "true");
76 }
77 }
78 }
79 }
80 catch (Throwable t) {
81 _log.error("Could not parse Struts page query string " + value, t);
82 }
83 }
84
85 private static Log _log =
86 LogFactory.getLog(LiferayStrutsPortletURLImpl.class);
87
88 }