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