View Javadoc

1   /**
2    * This file Copyright (c) 2008-2014 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.util;
35  
36  import info.magnolia.cms.core.AbstractContent;
37  import info.magnolia.cms.core.Content;
38  import info.magnolia.cms.core.ItemType;
39  import info.magnolia.cms.core.NodeData;
40  
41  import java.util.ArrayList;
42  import java.util.Collection;
43  import java.util.Collections;
44  import java.util.Comparator;
45  import java.util.List;
46  
47  import javax.jcr.PathNotFoundException;
48  import javax.jcr.RepositoryException;
49  
50  import org.apache.commons.lang.StringUtils;
51  import org.slf4j.Logger;
52  import org.slf4j.LoggerFactory;
53  
54  
55  /**
56   * This wrapper inherits content from the parent hierarchy. The method {@link #isAnchor()} defines
57   * the anchor to which the inheritance is performed relative to. By default the anchor is a page
58   * (mgnl:content).
59   * <p>
60   * The inheritance is then performed as follows:
61   * <ul>
62   * <li>try to get the content directly</li>
63   * <li>find next anchor</li>
64   * <li>try to get the content from the anchor</li>
65   * <li>repeat until no anchor can be found anymore (root)</li>
66   * </ul>
67   * <p>
68   * The {@link #getChildren()} methods merge the direct and inherited children by first adding the
69   * inherited children to the collection and then the direct children.
70   * @author pbracher
71   * @version $Id$
72   */
73  public class InheritanceContentWrapper extends ContentWrapper {
74  
75      private static Logger log = LoggerFactory.getLogger(InheritanceContentWrapper.class);
76  
77      /**
78       * From where the inheritance started.
79       */
80      private final Content start;
81  
82      /**
83       * Used if in the {@link #wrap(Content)} method.
84       */
85      public InheritanceContentWrapper(Content wrappedContent, Content start) {
86          super(wrappedContent);
87          this.start = start;
88      }
89  
90      /**
91       * Starts the inheritance.
92       */
93      public InheritanceContentWrapper(Content node) {
94          this(node, node);
95      }
96  
97      @Override
98      public boolean hasContent(String name) throws RepositoryException {
99          return getContentSafely(name) != null;
100     }
101 
102     @Override
103     public Content getContent(String name) throws RepositoryException {
104         Content inherited = getContentSafely(name);
105         if(inherited == null){
106             throw new PathNotFoundException("Can't inherit a node [" + name + "] on node [" + getWrappedContent().getHandle() + "]");
107         }
108         return inherited;
109     }
110 
111     @Override
112     public Collection<Content> getChildren(ContentFilter filter, String namePattern, Comparator<Content> orderCriteria){
113         List<Content> children = new ArrayList<Content>();
114 
115         // add inherited children
116         try {
117             Content inherited = getContentSafely(findNextAnchor(), resolveInnerPath());
118             if(inherited != null){
119                 children.addAll(((AbstractContent)inherited).getChildren(filter, namePattern, orderCriteria));
120             }
121         }
122         catch (RepositoryException e) {
123             throw new RuntimeException("Can't inherit children from " + getWrappedContent(), e);
124         }
125 
126         // add direct children
127         children.addAll(((AbstractContent)getWrappedContent()).getChildren(filter, namePattern, orderCriteria));
128         if(orderCriteria != null){
129             Collections.sort(children, orderCriteria);
130         }
131 
132         return wrapContentNodes(children);
133     }
134 
135     /**
136      * Returns the inner path of the this node up to the anchor.
137      */
138     protected String resolveInnerPath() throws RepositoryException {
139         final String path;
140         InheritanceContentWrapper anchor = findAnchor();
141         // if no anchor left we are relative to the root
142         if(anchor == null){
143             path = this.getHandle();
144         }
145         else{
146             path = StringUtils.substringAfter(this.getHandle(), anchor.getHandle());
147         }
148         return StringUtils.removeStart(path,"/");
149     }
150 
151     /**
152      * This method returns null if no content has been found.
153      */
154     protected Content getContentSafely(String name) throws RepositoryException {
155         if(getWrappedContent().hasContent(name)){
156             return super.getContent(name);
157         }
158 
159         String innerPath = resolveInnerPath() + "/" + name;
160         innerPath = StringUtils.removeStart(innerPath,"/");
161 
162         Content inherited = getContentSafely(findNextAnchor(), innerPath);
163         return inherited;
164     }
165 
166     /**
167      * This method returns null if no content has been found.
168      */
169     protected Content getContentSafely(InheritanceContentWrapper anchor, String path) throws RepositoryException{
170         if(anchor == null){
171             return null;
172         }
173         if(StringUtils.isEmpty(path)){
174             return anchor;
175         }
176         return anchor.getContentSafely(path);
177     }
178 
179     /**
180      * Find the anchor for this node.
181      */
182     protected InheritanceContentWrapper findAnchor() throws RepositoryException{
183         if(getLevel() ==0){
184             return null;
185         }
186         if(isAnchor()){
187             return this;
188         }
189         // until the current node is the anchor
190         return ((InheritanceContentWrapper)getParent()).findAnchor();
191     }
192 
193     /**
194      * Find next anchor.
195      */
196     protected InheritanceContentWrapper findNextAnchor() throws RepositoryException{
197         final InheritanceContentWrapper currentAnchor = findAnchor();
198         if(currentAnchor != null && getLevel() >0){
199             return ((InheritanceContentWrapper)currentAnchor.getParent()).findAnchor();
200         }
201         return null;
202     }
203 
204     /**
205      * True if this node is an anchor. By default true if this node is of type mgnl:content (page)
206      */
207     protected boolean isAnchor() {
208         return isNodeType(ItemType.CONTENT.getSystemName());
209     }
210 
211     @Override
212     public NodeData getNodeData(String name) {
213         try {
214             if (getWrappedContent().hasNodeData(name)) {
215                 return getWrappedContent().getNodeData(name);
216             }
217             Content inherited = getContentSafely(findNextAnchor(), resolveInnerPath());
218             if(inherited != null){
219                 return inherited.getNodeData(name);
220             }
221         }
222         catch (RepositoryException e) {
223             throw new RuntimeException("Can't inherit nodedata " + name + "  for " + getWrappedContent(), e);
224 
225         }
226         // creates a none existing node data in the standard manner
227         return super.getNodeData(name);
228     }
229 
230     @Override
231     public boolean hasNodeData(String name) throws RepositoryException {
232         try {
233             if (getWrappedContent().hasNodeData(name)) {
234                 return getWrappedContent().hasNodeData(name);
235             }
236             Content inherited = getContentSafely(findNextAnchor(), resolveInnerPath());
237             if (inherited != null) {
238                 return inherited.hasNodeData(name);
239             }
240         } catch (RepositoryException e) {
241             throw new RuntimeException("Can't inherit nodedata " + name + "  for " + getWrappedContent(), e);
242 
243         }
244         // creates a none existing node data in the standard manner
245         return super.hasNodeData(name);
246     }
247 
248     /**
249      * Wrap returned nodes. Sets the inherited flag
250      */
251     @Override
252     protected Content wrap(Content node) {
253         // only wrap once
254         if(node instanceof InheritanceContentWrapper){
255             return node;
256         }
257         return new InheritanceContentWrapper(node, start);
258     }
259 
260     /**
261      * True if this is not a sub node of the starting point.
262      */
263     public boolean isInherited() {
264         return !getWrappedContent().getHandle().startsWith(start.getHandle());
265     }
266 
267 }