View Javadoc
1   /**
2    * This file Copyright (c) 2003-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.jcr.util.NodeUtil;
37  
38  import java.io.IOException;
39  import java.io.ObjectInputStream;
40  import java.io.Serializable;
41  import java.util.Arrays;
42  import java.util.HashSet;
43  import java.util.Iterator;
44  import java.util.Set;
45  
46  import javax.jcr.Node;
47  import javax.jcr.RepositoryException;
48  
49  import org.apache.commons.lang.StringUtils;
50  
51  /**
52   * This class defines the rules to be used by the activation content aggregator this is simply a collection of node
53   * types.
54   * @author Sameer Charles
55   * @version $Revision$ ($Author$)
56   */
57  public class Rule implements Serializable {
58  
59      /**
60       * generated Stable serialVersionUID.
61       */
62      private static final long serialVersionUID = 222L;
63  
64      /**
65       * list of node types allowed.
66       */
67      private Set<String> allowedTypes = new HashSet<String>();
68  
69      /**
70       * reverse rule.
71       */
72      private boolean reverse = false;
73  
74      public Rule() {
75      }
76  
77      /**
78       * Generate list from string array.
79       * @param allowedTypes
80       */
81      public Rule(String[] allowedTypes) {
82          for (int j = 0; j < allowedTypes.length; j++) {
83              this.addAllowType(allowedTypes[j]);
84          }
85      }
86  
87      /**
88       * Generate list from the string.
89       * @param allowedTypes
90       * @param separator
91       */
92      public Rule(String allowedTypes, String separator) {
93          String[] types = StringUtils.split(allowedTypes, separator);
94          for (int j = 0; j < types.length; j++) {
95              this.addAllowType(types[j]);
96          }
97      }
98  
99      /**
100      * Add to allow list.
101      * @param nodeType
102      */
103     public void addAllowType(String nodeType) {
104         if (nodeType != null) {
105             this.allowedTypes.add(nodeType);
106         }
107     }
108 
109     /**
110      * Remove from allow list.
111      * @param nodeType
112      */
113     public void removeAllowType(String nodeType) {
114         if (nodeType != null) {
115             this.allowedTypes.remove(nodeType);
116         }
117     }
118 
119     /**
120      * True if allowedTypes contains nodeType.
121      * Method return false also if nodeType is subtype of one of the allowedTypes.
122      * @deprecated since 4.5.5 - use {@link info.magnolia.cms.util.Rule.isAllowed(Node)} instead.
123      */
124     public boolean isAllowed(String nodeType) {
125         boolean allowed = this.allowedTypes.contains(nodeType);
126         if (this.reverse) {
127             return !allowed;
128         }
129 
130         return allowed;
131 
132     }
133 
134     /**
135      * True if given nodeType is allowed.
136      * @throws RepositoryException
137      */
138     public boolean isAllowed(Node node) throws RepositoryException {
139         boolean allowed = false;
140 
141         for(String allowedType:this.allowedTypes){
142             allowed |= NodeUtil.isNodeType(node, allowedType);
143         }
144 
145         if (this.reverse) {
146             return !allowed;
147         }
148 
149         return allowed;
150     }
151 
152     /**
153      * Get a string representation of this rule.
154      * @return string representation
155      */
156     @Override
157     public String toString() {
158         StringBuffer buffer = new StringBuffer();
159         Iterator<String> typeIterator = allowedTypes.iterator();
160         while (typeIterator.hasNext()) {
161             buffer.append(typeIterator.next());
162             buffer.append(",");
163         }
164         return buffer.toString();
165     }
166 
167     /**
168      * Set reverse.
169      */
170     public void reverse() {
171         this.reverse = true;
172     }
173 
174     private void readObject(ObjectInputStream ois) throws ClassNotFoundException, IOException {
175         final ObjectInputStream.GetField field = ois.readFields();
176         final Object o = field.get("allowedTypes", null);
177         if (o instanceof String[]){
178             Set<String> typesCol = new HashSet<String>();
179             typesCol.addAll(Arrays.asList((String[]) o));
180             this.allowedTypes = typesCol;
181         }
182         if(o instanceof HashSet){
183             this.allowedTypes = (Set<String>) o;
184         }
185         this.reverse = field.get("reverse", false);
186     }
187 }