View Javadoc
1   /**
2    * This file Copyright (c) 2003-2015 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.cms.filters;
35  
36  import info.magnolia.cms.beans.runtime.File;
37  import info.magnolia.cms.beans.runtime.FileProperties;
38  import info.magnolia.cms.core.AggregationState;
39  import info.magnolia.cms.core.Content;
40  import info.magnolia.cms.core.HierarchyManager;
41  import info.magnolia.cms.core.NodeData;
42  import info.magnolia.cms.security.AccessDeniedException;
43  import info.magnolia.context.MgnlContext;
44  import info.magnolia.jcr.util.NodeTypes;
45  
46  import java.io.IOException;
47  
48  import javax.jcr.PathNotFoundException;
49  import javax.jcr.PropertyType;
50  import javax.jcr.RepositoryException;
51  import javax.servlet.FilterChain;
52  import javax.servlet.ServletException;
53  import javax.servlet.http.HttpServletRequest;
54  import javax.servlet.http.HttpServletResponse;
55  
56  import org.apache.commons.lang3.StringUtils;
57  import org.slf4j.Logger;
58  import org.slf4j.LoggerFactory;
59  
60  
61  /**
62   * Reads the accessed content from the repository and puts it into the {@link AggregationState}.
63   */
64  public class AggregatorFilter extends AbstractMgnlFilter {
65      private static final Logger log = LoggerFactory.getLogger(AggregatorFilter.class);
66  
67      private final String VERSION_NUMBER = "mgnlVersion";
68  
69  
70      @Override
71      public void doFilter(HttpServletRequest request, HttpServletResponse response, FilterChain chain) throws IOException, ServletException {
72  
73          boolean success;
74          try {
75              success = collect();
76          } catch (AccessDeniedException e) {
77              // don't throw further, simply return error and break filter chain
78              log.debug(e.getMessage(), e);
79              if (!response.isCommitted()) {
80                  response.setStatus(HttpServletResponse.SC_FORBIDDEN);
81              }
82              // stop the chain
83              return;
84          } catch (RepositoryException e) {
85              log.error(e.getMessage(), e);
86              throw new ServletException(e.getMessage(), e);
87          }
88  
89          if (!success) {
90              log.debug("Resource not found, redirecting request for [{}] to 404 URI", request.getRequestURI());
91  
92              if (!response.isCommitted()) {
93                  response.sendError(HttpServletResponse.SC_NOT_FOUND);
94              } else {
95                  log.info("Unable to redirect to 404 page, response is already committed. URI was {}", request.getRequestURI());
96              }
97              // stop the chain
98              return;
99          }
100         chain.doFilter(request, response);
101     }
102 
103     /**
104      * Collect content from the pre configured repository and attach it to the HttpServletRequest.
105      */
106     protected boolean collect() throws RepositoryException {
107         final AggregationState aggregationState = MgnlContext.getAggregationState();
108         final String handle = aggregationState.getHandle();
109         final String repository = aggregationState.getRepository();
110 
111         final HierarchyManager hierarchyManager = MgnlContext.getHierarchyManager(repository);
112 
113         Content requestedPage = null;
114         NodeData requestedData = null;
115         String templateName;
116 
117         if (!isJcrPathValid(handle)) {
118             // avoid calling isExist if the path can't be valid
119             return false;
120         }
121         if (hierarchyManager.isExist(handle) && !hierarchyManager.isNodeData(handle)) {
122             requestedPage = hierarchyManager.getContent(handle);
123 
124             // check if its a request for a versioned page
125             if (MgnlContext.getAttribute(VERSION_NUMBER) != null) {
126                 // get versioned state
127                 try {
128                     requestedPage = requestedPage.getVersionedContent((String) MgnlContext.getAttribute(VERSION_NUMBER));
129                 } catch (RepositoryException re) {
130                     log.debug(re.getMessage(), re);
131                     log.error("Unable to get versioned state, rendering current state of {}", handle);
132                 }
133             }
134 
135             try {
136                 templateName = NodeTypes.Renderable.getTemplate(requestedPage.getJCRNode());
137             } catch (RepositoryException e) {
138                 templateName = null;
139             }
140 
141             if (StringUtils.isBlank(templateName)) {
142                 log.error("No template configured for page [{}].", requestedPage.getHandle());
143             }
144         } else {
145             if (hierarchyManager.isNodeData(handle)) {
146                 requestedData = hierarchyManager.getNodeData(handle);
147             } else {
148                 // check again, resource might have different name
149                 int lastIndexOfSlash = handle.lastIndexOf("/");
150 
151                 if (lastIndexOfSlash > 0) {
152 
153                     final String handleToUse = StringUtils.substringBeforeLast(handle, "/");
154 
155                     try {
156                         requestedData = hierarchyManager.getNodeData(handleToUse);
157                         aggregationState.setHandle(handleToUse);
158 
159                         // this is needed for binary nodedata, e.g. images are found using the path:
160                         // /features/integration/headerImage instead of /features/integration/headerImage/header30_2
161 
162                     } catch (PathNotFoundException e) {
163                         // no page available
164                         return false;
165                     } catch (RepositoryException e) {
166                         log.debug(e.getMessage(), e);
167                         return false;
168                     }
169                 }
170             }
171 
172             if (requestedData != null) {
173                 templateName = requestedData.getAttribute(FileProperties.PROPERTY_TEMPLATE);
174             } else {
175                 return false;
176             }
177         }
178 
179         // Attach all collected information to the HttpServletRequest.
180         if (requestedPage != null) {
181             aggregationState.setMainContentNode(requestedPage.getJCRNode());
182             aggregationState.setCurrentContentNode(requestedPage.getJCRNode());
183         }
184         if ((requestedData != null) && (requestedData.getType() == PropertyType.BINARY)) {
185             File file = new File(requestedData);
186             aggregationState.setFile(file);
187         }
188 
189         aggregationState.setTemplateName(templateName);
190 
191         return true;
192     }
193 
194     /**
195      * Check if the path *may be* a valid path before calling getItem, in order to avoid annoying logs.
196      *
197      * @param handle node handle
198      * @return true if the path is invalid
199      */
200     private boolean isJcrPathValid(String handle) {
201         if (StringUtils.isBlank(handle) || StringUtils.equals(handle, "/")) {
202             // empty path not allowed
203             return false;
204         }
205         if (StringUtils.containsAny(handle, ':', '*', '\n')) {
206             // not allowed chars
207             return false;
208         }
209         if (StringUtils.contains(handle, " /")) {
210             // trailing slash not allowed
211             return false;
212         }
213         return true;
214     }
215 
216 }