View Javadoc

1   /**
2    * This file Copyright (c) 2003-2011 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.beans.config;
35  
36  import info.magnolia.cms.core.Content;
37  import info.magnolia.content2bean.Content2BeanUtil;
38  import info.magnolia.content2bean.TransformationState;
39  import info.magnolia.content2bean.TypeDescriptor;
40  import info.magnolia.content2bean.TypeMapping;
41  import info.magnolia.content2bean.impl.Content2BeanTransformerImpl;
42  import info.magnolia.objectfactory.ComponentProvider;
43  import info.magnolia.objectfactory.Components;
44  
45  import java.util.ArrayList;
46  import java.util.Collection;
47  import java.util.Iterator;
48  import java.util.List;
49  
50  import javax.inject.Singleton;
51  
52  import org.apache.commons.lang.StringUtils;
53  import org.slf4j.Logger;
54  import org.slf4j.LoggerFactory;
55  
56  /**
57   * Store for all virtual URI to template/page mapping.
58   *
59   * @author Sameer Charles
60   * @version 2.0
61   */
62  @Singleton
63  public final class VirtualURIManager extends ObservedManager {
64  
65      private static final Logger log = LoggerFactory.getLogger(VirtualURIManager.class);
66  
67      public static final String FROM_URI_NODEDATANAME = "fromURI";
68  
69      public static final String TO_URI_NODEDATANAME = "toURI";
70  
71      /**
72       * Instantiated by the system.
73       */
74      public VirtualURIManager() {
75      }
76  
77      /**
78       * all cached data. <UrlPattern, String[target, pattern]>
79       */
80      private final List<VirtualURIMapping> cachedURImapping = new ArrayList<VirtualURIMapping>();
81  
82      /**
83       * checks for the requested URI mapping in Server config : Servlet Specification 2.3 Section 10 "Mapping Requests to
84       * Servlets".
85       * 
86       * @param uri the URI of the current request, decoded and without the context path
87       * @return URI string mapping
88       */
89      public String getURIMapping(String uri) {
90          return getURIMapping(uri, null);
91      }
92      
93      /**
94       * checks for the requested URI mapping in Server config : Servlet Specification 2.3 Section 10 "Mapping Requests to
95       * Servlets".
96       * 
97       * @param uri the URI of the current request, decoded and without the context path
98       * @param queryString the Query String of the current request
99       * @return URI string mapping
100      */
101     public String getURIMapping(String uri, String queryString) {
102         Iterator<VirtualURIMapping> e = cachedURImapping.iterator();
103         String mappedURI = StringUtils.EMPTY;
104         int lastMatchedLevel = 0;
105         while (e.hasNext()) {
106             try{
107                 VirtualURIMapping vm = e.next();
108                 final VirtualURIMapping.MappingResult result;
109                 if (queryString != null && vm instanceof QueryAwareVirtualURIMapping){
110                     result = ((QueryAwareVirtualURIMapping)vm).mapURI(uri, queryString);
111                 } else {
112                     result = vm.mapURI(uri);
113                 }
114                 if (result != null && lastMatchedLevel < result.getLevel()) {
115                     lastMatchedLevel = result.getLevel();
116                     mappedURI = result.getToURI();
117                 }
118             }catch(ClassCastException ex){
119                 log.error("Virtual URI configuration error, mapping rule is skipped: " + ex.getMessage(), ex);
120             }
121         }
122         return mappedURI;
123     }
124 
125     @Override
126     protected void onRegister(Content node) {
127         try {
128             log.info("Loading VirtualURIMapping from {}", node.getHandle()); //$NON-NLS-1$
129             Content2BeanUtil.setProperties(this.cachedURImapping, node, true, new Content2BeanTransformerImpl(){
130                 @Override
131                 protected TypeDescriptor onResolveType(TypeMapping typeMapping, TransformationState state, TypeDescriptor resolvedType, ComponentProvider componentProvider) {
132                     if(state.getLevel()==2 && resolvedType == null){
133                         return typeMapping.getTypeDescriptor(DefaultVirtualURIMapping.class);
134                     }
135                     return resolvedType;
136                 }
137             });
138             log.debug("VirtualURIMapping loaded from {}", node.getHandle()); //$NON-NLS-1$
139         }
140         catch (Exception e) {
141             log.error("Failed to load VirtualURIMapping from " + node.getHandle() + " - " + e.getMessage(), e); //$NON-NLS-1$ //$NON-NLS-2$
142         }
143     }
144 
145     @Override
146     protected void onClear() {
147         this.cachedURImapping.clear();
148     }
149 
150     // TODO : should this really be public ?
151     public Collection<VirtualURIMapping> getURIMappings() {
152         return cachedURImapping;
153     }
154 
155     /**
156      * @return Returns the instance.
157      * @deprecated since 4.5, use IoC !
158      */
159     public static VirtualURIManager getInstance() {
160         return Components.getSingleton(VirtualURIManager.class);
161     }
162 }