1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
package org.apache.jetspeed.pipeline.valve.impl; |
18 |
|
|
19 |
|
import java.io.IOException; |
20 |
|
import java.util.Collection; |
21 |
|
import java.util.HashMap; |
22 |
|
import java.util.Iterator; |
23 |
|
|
24 |
|
import javax.portlet.PortletException; |
25 |
|
import javax.servlet.http.HttpServletRequest; |
26 |
|
import javax.servlet.http.HttpServletResponse; |
27 |
|
|
28 |
|
import org.apache.commons.logging.Log; |
29 |
|
import org.apache.commons.logging.LogFactory; |
30 |
|
import org.apache.jetspeed.PortalReservedParameters; |
31 |
|
import org.apache.jetspeed.cache.ContentCacheKey; |
32 |
|
import org.apache.jetspeed.cache.JetspeedContentCache; |
33 |
|
import org.apache.jetspeed.container.window.PortletWindowAccessor; |
34 |
|
import org.apache.jetspeed.exception.JetspeedException; |
35 |
|
import org.apache.jetspeed.om.common.portlet.MutablePortletEntity; |
36 |
|
import org.apache.jetspeed.om.common.portlet.PortletDefinitionComposite; |
37 |
|
import org.apache.jetspeed.om.page.ContentFragment; |
38 |
|
import org.apache.jetspeed.om.page.ContentFragmentImpl; |
39 |
|
import org.apache.jetspeed.om.page.ContentPage; |
40 |
|
import org.apache.jetspeed.om.page.Fragment; |
41 |
|
import org.apache.jetspeed.om.page.Page; |
42 |
|
import org.apache.jetspeed.pipeline.PipelineException; |
43 |
|
import org.apache.jetspeed.pipeline.valve.AbstractValve; |
44 |
|
import org.apache.jetspeed.pipeline.valve.ActionValve; |
45 |
|
import org.apache.jetspeed.pipeline.valve.ValveContext; |
46 |
|
import org.apache.jetspeed.request.RequestContext; |
47 |
|
import org.apache.pluto.PortletContainer; |
48 |
|
import org.apache.pluto.PortletContainerException; |
49 |
|
import org.apache.pluto.om.entity.PortletEntity; |
50 |
|
import org.apache.pluto.om.window.PortletWindow; |
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
|
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
|
65 |
|
|
66 |
|
public class ActionValveImpl extends AbstractValve implements ActionValve |
67 |
|
{ |
68 |
|
|
69 |
0 |
private static final Log log = LogFactory.getLog(ActionValveImpl.class); |
70 |
|
private PortletContainer container; |
71 |
|
private PortletWindowAccessor windowAccessor; |
72 |
0 |
private boolean patchResponseCommitted = false; |
73 |
|
private JetspeedContentCache portletContentCache; |
74 |
|
|
75 |
|
public ActionValveImpl(PortletContainer container, PortletWindowAccessor windowAccessor, JetspeedContentCache portletContentCache) |
76 |
0 |
{ |
77 |
0 |
this.container = container; |
78 |
0 |
this.windowAccessor = windowAccessor; |
79 |
0 |
this.portletContentCache = portletContentCache; |
80 |
0 |
} |
81 |
|
|
82 |
|
public ActionValveImpl(PortletContainer container, PortletWindowAccessor windowAccessor, JetspeedContentCache portletContentCache, boolean patchResponseCommitted) |
83 |
0 |
{ |
84 |
0 |
this.container = container; |
85 |
0 |
this.windowAccessor = windowAccessor; |
86 |
0 |
this.portletContentCache = portletContentCache; |
87 |
0 |
this.patchResponseCommitted = patchResponseCommitted; |
88 |
0 |
} |
89 |
|
|
90 |
|
|
91 |
|
|
92 |
|
|
93 |
|
public void invoke(RequestContext request, ValveContext context) throws PipelineException |
94 |
|
{ |
95 |
0 |
boolean responseCommitted = false; |
96 |
|
try |
97 |
|
{ |
98 |
0 |
PortletWindow actionWindow = request.getActionWindow(); |
99 |
0 |
if (actionWindow != null) |
100 |
|
{ |
101 |
|
|
102 |
|
|
103 |
0 |
if (null == actionWindow.getPortletEntity()) |
104 |
|
{ |
105 |
|
try |
106 |
|
{ |
107 |
0 |
Fragment fragment = request.getPage().getFragmentById(actionWindow.getId().toString()); |
108 |
0 |
ContentFragment contentFragment = new ContentFragmentImpl(fragment, class="keyword">new HashMap()); |
109 |
0 |
actionWindow = this.windowAccessor.getPortletWindow(contentFragment); |
110 |
|
} |
111 |
0 |
catch (Exception e) |
112 |
|
{ |
113 |
0 |
log.error("Failed to refresh action window.", e); |
114 |
0 |
} |
115 |
|
} |
116 |
|
|
117 |
0 |
initWindow(actionWindow, request); |
118 |
0 |
HttpServletResponse response = request.getResponseForWindow(actionWindow); |
119 |
0 |
HttpServletRequest requestForWindow = request.getRequestForWindow(actionWindow); |
120 |
0 |
requestForWindow.setAttribute(PortalReservedParameters.REQUEST_CONTEXT_ATTRIBUTE, request); |
121 |
|
|
122 |
|
|
123 |
|
|
124 |
0 |
requestForWindow.setAttribute("JETSPEED_ACTION", request); |
125 |
0 |
container.processPortletAction( |
126 |
|
actionWindow, |
127 |
|
requestForWindow, |
128 |
|
response); |
129 |
|
|
130 |
|
|
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
|
135 |
0 |
clearPortletCacheForPage(request, actionWindow); |
136 |
|
|
137 |
0 |
if (patchResponseCommitted) |
138 |
|
{ |
139 |
0 |
responseCommitted = true; |
140 |
|
} |
141 |
|
else |
142 |
|
{ |
143 |
0 |
responseCommitted = response.isCommitted(); |
144 |
|
} |
145 |
0 |
request.setAttribute(PortalReservedParameters.PIPELINE, null); |
146 |
|
} |
147 |
|
} |
148 |
0 |
catch (PortletContainerException e) |
149 |
|
{ |
150 |
0 |
log.fatal("Unable to retrieve portlet container!", e); |
151 |
0 |
throw new PipelineException("Unable to retrieve portlet container!", e); |
152 |
|
} |
153 |
0 |
catch (PortletException e) |
154 |
|
{ |
155 |
0 |
log.warn("Unexpected PortletException in ActionValveImpl", e); |
156 |
|
|
157 |
|
|
158 |
|
} |
159 |
0 |
catch (IOException e) |
160 |
|
{ |
161 |
0 |
log.error("Unexpected IOException in ActionValveImpl", e); |
162 |
|
|
163 |
|
} |
164 |
0 |
catch (IllegalStateException e) |
165 |
|
{ |
166 |
0 |
log.error("Illegal State Exception. Response was written to in Action Phase", e); |
167 |
0 |
responseCommitted = true; |
168 |
|
} |
169 |
0 |
catch (Throwable t) |
170 |
|
{ |
171 |
0 |
log.error("Unknown exception processing Action", t); |
172 |
|
} |
173 |
|
finally |
174 |
|
{ |
175 |
|
|
176 |
|
|
177 |
0 |
if ( responseCommitted ) |
178 |
|
{ |
179 |
0 |
log.info("Action processed and response committed (pipeline processing stopped)"); |
180 |
|
} |
181 |
|
else |
182 |
|
{ |
183 |
|
|
184 |
0 |
context.invokeNext(request); |
185 |
|
} |
186 |
0 |
} |
187 |
|
|
188 |
0 |
} |
189 |
|
|
190 |
|
protected void clearPortletCacheForPage(RequestContext request, PortletWindow actionWindow) |
191 |
|
throws JetspeedException |
192 |
|
{ |
193 |
0 |
ContentPage page = request.getPage(); |
194 |
0 |
if (null == page) |
195 |
|
{ |
196 |
0 |
throw new JetspeedException("Failed to find PSML Pin ContentPageAggregator.build"); |
197 |
|
} |
198 |
0 |
ContentFragment root = page.getRootContentFragment(); |
199 |
0 |
if (root == null) |
200 |
|
{ |
201 |
0 |
throw new JetspeedException("No root ContentFragment found in ContentPage"); |
202 |
|
} |
203 |
0 |
if (!isNonStandardAction(actionWindow)) |
204 |
|
{ |
205 |
0 |
notifyFragments(root, request, page); |
206 |
|
} |
207 |
|
else |
208 |
|
{ |
209 |
0 |
ContentFragment fragment = page.getContentFragmentById(actionWindow.getId().toString()); |
210 |
0 |
clearTargetCache(fragment, request); |
211 |
|
} |
212 |
0 |
} |
213 |
|
|
214 |
|
|
215 |
|
|
216 |
|
|
217 |
|
|
218 |
|
|
219 |
|
|
220 |
|
|
221 |
|
|
222 |
|
|
223 |
|
protected boolean isNonStandardAction(PortletWindow actionWindow) |
224 |
|
{ |
225 |
0 |
PortletEntity entity = actionWindow.getPortletEntity(); |
226 |
0 |
if (entity != null) |
227 |
|
{ |
228 |
0 |
PortletDefinitionComposite portletDefinition = (PortletDefinitionComposite)entity.getPortletDefinition(); |
229 |
0 |
if (portletDefinition != null) |
230 |
|
{ |
231 |
0 |
Collection actionList = null; |
232 |
|
|
233 |
0 |
if (portletDefinition != null) |
234 |
|
{ |
235 |
0 |
actionList = portletDefinition.getMetadata().getFields(PortalReservedParameters.PORTLET_EXTENDED_DESCRIPTOR_NON_STANDARD_ACTION); |
236 |
|
} |
237 |
0 |
if (actionList != null) |
238 |
|
{ |
239 |
0 |
if (!actionList.isEmpty()) |
240 |
0 |
return true; |
241 |
|
} |
242 |
|
} |
243 |
|
} |
244 |
0 |
return false; |
245 |
|
} |
246 |
|
|
247 |
|
protected void notifyFragments(ContentFragment f, RequestContext context, ContentPage page) |
248 |
|
{ |
249 |
0 |
if (f.getContentFragments() != null && f.getContentFragments().size() > 0) |
250 |
|
{ |
251 |
0 |
Iterator children = f.getContentFragments().iterator(); |
252 |
0 |
while (children.hasNext()) |
253 |
|
{ |
254 |
0 |
ContentFragment child = (ContentFragment) children.next(); |
255 |
0 |
if (!"hidden".equals(f.getState())) |
256 |
|
{ |
257 |
0 |
notifyFragments(child, context, page); |
258 |
|
} |
259 |
0 |
} |
260 |
|
} |
261 |
0 |
ContentCacheKey cacheKey = portletContentCache.createCacheKey(context, f.getId()); |
262 |
0 |
if (portletContentCache.isKeyInCache(cacheKey)) |
263 |
|
{ |
264 |
0 |
portletContentCache.remove(cacheKey); |
265 |
0 |
portletContentCache.invalidate(context); |
266 |
|
} |
267 |
0 |
} |
268 |
|
|
269 |
|
protected void clearTargetCache(ContentFragment f, RequestContext context) |
270 |
|
{ |
271 |
0 |
ContentCacheKey cacheKey = portletContentCache.createCacheKey(context, f.getId()); |
272 |
0 |
if (portletContentCache.isKeyInCache(cacheKey)) |
273 |
|
{ |
274 |
0 |
portletContentCache.remove(cacheKey); |
275 |
0 |
portletContentCache.invalidate(context); |
276 |
|
} |
277 |
0 |
} |
278 |
|
|
279 |
|
|
280 |
|
|
281 |
|
|
282 |
|
public String toString() |
283 |
|
{ |
284 |
|
|
285 |
0 |
return "ActionValveImpl"; |
286 |
|
} |
287 |
|
|
288 |
|
|
289 |
|
|
290 |
|
|
291 |
|
|
292 |
|
|
293 |
|
|
294 |
|
protected void initWindow(PortletWindow window, RequestContext request) |
295 |
|
{ |
296 |
0 |
Page page = request.getPage(); |
297 |
0 |
Fragment fragment = page.getFragmentById(window.getId().toString()); |
298 |
0 |
((MutablePortletEntity)window.getPortletEntity()).setFragment(fragment); |
299 |
0 |
} |
300 |
|
|
301 |
|
} |