View Javadoc
1   /**
2    * This file Copyright (c) 2019 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.ui.datasource.jcr;
35  
36  import static info.magnolia.ui.framework.ContextProperty.log;
37  
38  import info.magnolia.context.Context;
39  import info.magnolia.jcr.decoration.AbstractContentDecorator;
40  import info.magnolia.jcr.util.NodeTypes;
41  
42  import javax.inject.Inject;
43  import javax.inject.Provider;
44  import javax.jcr.InvalidItemStateException;
45  import javax.jcr.Item;
46  import javax.jcr.Node;
47  import javax.jcr.Property;
48  import javax.jcr.RepositoryException;
49  import javax.jcr.Session;
50  import javax.jcr.nodetype.NodeType;
51  
52  /**
53   * {@link info.magnolia.jcr.decoration.ContentDecorator} for JCR operations in content apps.
54   */
55  public class JcrSessionManager extends AbstractContentDecorator {
56  
57      private static final String TMP_DELETED = "mgnl:tmpDeleted";
58      static final String TMP_DELETED_NODE = TMP_DELETED + "$Node";
59      static final String TMP_DELETED_PROPERTY = TMP_DELETED + "$Property";
60  
61      private final Provider<Context> contextProvider;
62      private final JcrDatasourceDefinition datasourceDefinition;
63  
64      @Inject
65      public JcrSessionManager(Provider<Context> contextProvider, JcrDatasourceDefinition datasourceDefinition) {
66          this.contextProvider = contextProvider;
67          this.datasourceDefinition = datasourceDefinition;
68      }
69  
70      @Override
71      public boolean isMultipleWrapEnabled() {
72          return false;
73      }
74  
75      @Override
76      public JcrSessionWrapper wrapSession(Session session) {
77          return new JcrSessionWrapper(session, this);
78      }
79  
80      @Override
81      public JcrNodeWrapper wrapNode(Node node) {
82          return new JcrNodeWrapper(node, this);
83      }
84  
85      @Override
86      public boolean evaluateNode(Node node) {
87          try {
88              NodeType primaryNodeType = node.getPrimaryNodeType();
89              return node.getPath().equals("/") || super.evaluateNode(node) &&
90                      !node.getName().equals(TMP_DELETED_NODE) &&
91                      (datasourceDefinition.getAllowedNodeTypes().isEmpty() || datasourceDefinition.getAllowedNodeTypes().stream().anyMatch(primaryNodeType::isNodeType));
92          } catch (RepositoryException e) {
93              log.error(e.getMessage(), e);
94              return false;
95          }
96      }
97  
98      @Override
99      public JcrPropertyWrapper wrapProperty(Property property) {
100         return new JcrPropertyWrapper(property, this);
101     }
102 
103     @Override
104     public boolean evaluateProperty(Property property) {
105         try {
106             String propertyName = property.getName();
107             return super.evaluateProperty(property) &&
108                     !propertyName.equals(TMP_DELETED_PROPERTY) &&
109                     datasourceDefinition.isIncludeProperties() &&
110                     !propertyName.startsWith(NodeTypes.MGNL_PREFIX) &&
111                     !propertyName.startsWith(NodeTypes.JCR_PREFIX);
112         } catch (RepositoryException e) {
113             log.error(e.getMessage(), e);
114             return false;
115         }
116     }
117 
118     public JcrSessionWrapper getJCRSession() throws RepositoryException {
119         Session session = contextProvider.get().getJCRSession(datasourceDefinition.getWorkspace());
120         return wrapSession(session);
121     }
122 
123     public Item wrapItem(Item item) {
124         return item instanceof Node ? wrapNode((Node) item) : wrapProperty((Property) item);
125     }
126 
127     boolean exists(Item item) throws RepositoryException {
128         try {
129             item.getName();
130             return true;
131         } catch (InvalidItemStateException e) {
132             return false;
133         }
134     }
135 }