View Javadoc

1   /**
2    * This file Copyright (c) 2010-2013 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.module.blossom.preexecution;
35  
36  import javax.servlet.http.HttpServletRequest;
37  
38  import org.springframework.beans.BeansException;
39  import org.springframework.beans.factory.InitializingBean;
40  import org.springframework.context.ApplicationContext;
41  import org.springframework.context.ApplicationContextAware;
42  import org.springframework.web.servlet.HandlerExecutionChain;
43  import org.springframework.web.servlet.HandlerMapping;
44  import org.springframework.web.servlet.handler.AbstractUrlHandlerMapping;
45  import org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping;
46  import org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping;
47  
48  import info.magnolia.context.MgnlContext;
49  import info.magnolia.module.blossom.dispatcher.BlossomDispatcher;
50  import info.magnolia.module.blossom.dispatcher.BlossomDispatcherAware;
51  
52  /**
53   * Detects pre-execution requests and decorates handlers in order to either grab the returned ModelAndView or render
54   * one that was previously returned and now should be rendered.
55   *
56   * @since 0.5
57   */
58  public class BlossomHandlerMapping implements HandlerMapping, InitializingBean, ApplicationContextAware, BlossomDispatcherAware {
59  
60      private ApplicationContext applicationContext;
61      private AbstractUrlHandlerMapping[] targetHandlerMappings;
62      private DirectRenderingVoter directRenderingVoter;
63      private BlossomDispatcher dispatcher;
64  
65      public AbstractUrlHandlerMapping[] getTargetHandlerMappings() {
66          return targetHandlerMappings;
67      }
68  
69      public void setTargetHandlerMapping(AbstractUrlHandlerMapping targetHandlerMapping) {
70          this.targetHandlerMappings = new AbstractUrlHandlerMapping[]{targetHandlerMapping};
71      }
72  
73      public void setTargetHandlerMappings(AbstractUrlHandlerMapping[] targetHandlerMappings) {
74          this.targetHandlerMappings = targetHandlerMappings;
75      }
76  
77      public DirectRenderingVoter getDirectRenderingPolicy() {
78          return directRenderingVoter;
79      }
80  
81      public void setDirectRenderingPolicy(DirectRenderingVoter directRenderingVoter) {
82          this.directRenderingVoter = directRenderingVoter;
83      }
84  
85      @Override
86      public HandlerExecutionChain getHandler(HttpServletRequest request) throws Exception {
87  
88          PreexecutionContext preexecutionContext = PreexecutionContextHolder.get(request);
89  
90          // If it's not a pre-execution request we simply delegate to the target HandlerMapping.
91          if (preexecutionContext == null) {
92              return getTargetHandler(request);
93          }
94  
95          // If this is a pre-execution request but not for this paragraph then also delegate.
96          String localUuid = MgnlContext.getAggregationState().getCurrentContentNode().getIdentifier();
97          if (!preexecutionContext.getUuid().equals(localUuid)) {
98              return getTargetHandler(request);
99          }
100 
101         // If there's already a MAV from a pre-executed handler, it should be rendered now.
102         if (preexecutionContext.isModelAndViewSet()) {
103             return new HandlerExecutionChain(new ModelAndViewReuseController(preexecutionContext));
104         }
105 
106         // At this point we know that we're being called by the BlossomFilter to do pre-execution.
107 
108         // Have the target HandlerMapping return a HandlerExecutionChain.
109         HandlerExecutionChain executionChain = getTargetHandler(request);
110         if (executionChain == null) {
111             return null;
112         }
113 
114         // Return a wrapper that will execute the HandlerExecutionChain and grab it's result.
115         return new HandlerExecutionChain(new ModelAndViewGrabbingController(preexecutionContext, executionChain, directRenderingVoter, dispatcher));
116     }
117 
118     private HandlerExecutionChain getTargetHandler(HttpServletRequest request) throws Exception {
119         for (AbstractUrlHandlerMapping targetHandlerMapping : targetHandlerMappings) {
120             HandlerExecutionChain executionChain = targetHandlerMapping.getHandler(request);
121             if (executionChain != null) {
122                 return executionChain;
123             }
124         }
125         return null;
126     }
127 
128     @Override
129     public void afterPropertiesSet() throws Exception {
130 
131         if (directRenderingVoter == null) {
132             directRenderingVoter = new DefaultDirectRenderingVoter();
133         }
134 
135         if (targetHandlerMappings == null) {
136             this.targetHandlerMappings = new AbstractUrlHandlerMapping[2];
137             this.targetHandlerMappings[0] = (AbstractUrlHandlerMapping) applicationContext.getAutowireCapableBeanFactory().createBean(BeanNameUrlHandlerMapping.class);
138             DefaultAnnotationHandlerMapping defaultAnnotationHandlerMapping = (DefaultAnnotationHandlerMapping) applicationContext.getAutowireCapableBeanFactory().createBean(DefaultAnnotationHandlerMapping.class);
139             defaultAnnotationHandlerMapping.setUseDefaultSuffixPattern(false);
140             this.targetHandlerMappings[1] = defaultAnnotationHandlerMapping;
141         }
142     }
143 
144     @Override
145     public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
146         this.applicationContext = applicationContext;
147     }
148 
149     @Override
150     public void setBlossomDispatcher(BlossomDispatcher dispatcher) {
151         this.dispatcher = dispatcher;
152     }
153 }