View Javadoc

1   /**
2    * This file Copyright (c) 2009-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.templatingkit.sites;
35  
36  import info.magnolia.context.MgnlContext;
37  import info.magnolia.jcr.util.MetaDataUtil;
38  import info.magnolia.module.templatingkit.templates.category.TemplateCategory;
39  import info.magnolia.module.templatingkit.templates.category.TemplateCategoryUtil;
40  import info.magnolia.module.templatingkit.templates.pages.STKPage;
41  import info.magnolia.repository.RepositoryConstants;
42  
43  import java.util.Collection;
44  import java.util.LinkedHashMap;
45  import java.util.Map;
46  
47  import javax.jcr.Node;
48  import javax.jcr.RepositoryException;
49  import javax.jcr.Workspace;
50  
51  import org.apache.commons.collections.CollectionUtils;
52  import org.slf4j.Logger;
53  import org.slf4j.LoggerFactory;
54  
55  
56  /**
57   * Wrapper class containing the list of available templates.
58   * It contains also the hierarchy of content for site creation:
59   * Root can only be Home or functional, can not add a Root to a Root, .....
60   */
61  public class TemplateAvailability {
62  
63      private static final Logger log = LoggerFactory.getLogger(TemplateAvailability.class);
64  
65      private final Map<String, TemplateConfig> templates = new LinkedHashMap<String, TemplateConfig>();
66  
67      public Map<String, TemplateConfig> getTemplates() {
68          return this.templates;
69      }
70  
71      public void addTemplate(String name, TemplateConfig templateConfig) {
72          templates.put(templateConfig.getId(), templateConfig);
73      }
74  
75      public boolean isAvailable(Node node, STKPage template) {
76  
77          Workspace workspace;
78          try {
79              workspace = node.getSession().getWorkspace();
80              if(!RepositoryConstants.WEBSITE.equals(workspace.getName())){
81                  return false;
82              }
83          } catch (RepositoryException e) {
84              log.error("Not able to access the Node's session or workspace.", e);
85              return false;
86          }
87          if (!getTemplates().containsKey(template.getId())) {
88              return false;
89          }
90          TemplateConfig templateConfig = getTemplates().get(template.getId());
91  
92          // check roles
93          final Collection<String> roles = templateConfig.getRoles();
94          if(!roles.isEmpty()){
95              if(!CollectionUtils.containsAny(MgnlContext.getUser().getAllRoles(), roles)){
96                  return false;
97              }
98          }
99  
100         try {
101             // only home or functional can be the root node
102             final String category = template.getCategory();
103             if(node.getDepth() == 1){
104                 return category.equals(TemplateCategory.HOME) || category.equals(TemplateCategory.FUNCTIONAL);
105             }
106             // section and functional pages are structural pages
107             final String parentTemplateCategory = TemplateCategoryUtil.getTemplateCategory(node.getParent());
108             //if home category was already used it should be no longer available
109             if(category.equals(TemplateCategory.HOME) && TemplateCategoryUtil.findParentWithTemplateCategory(node, TemplateCategory.HOME) != null){
110                 return false;
111             }
112             if(category.equals(TemplateCategory.SECTION) || category.equals(TemplateCategory.HOME) || category.equals(TemplateCategory.FUNCTIONAL)){
113                 return parentTemplateCategory.equals(TemplateCategory.HOME) || parentTemplateCategory.equals(TemplateCategory.SECTION) || parentTemplateCategory.equals(TemplateCategory.FEATURE) || parentTemplateCategory.equals(TemplateCategory.FUNCTIONAL);
114             }
115             // only section pages can have content
116             if(category.equals(TemplateCategory.CONTENT)){
117                 return parentTemplateCategory.equals(TemplateCategory.SECTION) || parentTemplateCategory.equals(TemplateCategory.CONTENT) || parentTemplateCategory.equals(TemplateCategory.FEATURE) || parentTemplateCategory.equals(TemplateCategory.FUNCTIONAL);
118             }
119             if(category.equals(TemplateCategory.FEATURE)){
120                 if("form".equals(template.getSubcategory())){
121                     //stkFormStep is available only as child of form
122                     if("stkFormStep".equals(template.getName())) {
123                         return node.getParent() != null && MetaDataUtil.getTemplate(node.getParent()).endsWith("stkForm");
124                     }
125                 }
126                 return true;
127             }
128         }
129         catch (RepositoryException e) {
130             throw new IllegalStateException("Can't verify availability of the template", e);
131         }
132         return false;
133     }
134 }