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