View Javadoc
1   /**
2    * This file Copyright (c) 2003-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.freemarker;
35  
36  import info.magnolia.cms.util.ClasspathResourcesUtil;
37  
38  import java.beans.PropertyDescriptor;
39  import java.io.File;
40  import java.io.FileInputStream;
41  import java.io.FileNotFoundException;
42  import java.io.InputStream;
43  import java.net.MalformedURLException;
44  import java.net.URL;
45  import java.net.URLClassLoader;
46  import java.util.Enumeration;
47  import java.util.HashSet;
48  import java.util.List;
49  import java.util.Set;
50  
51  import javax.servlet.RequestDispatcher;
52  import javax.servlet.Servlet;
53  import javax.servlet.ServletContext;
54  import javax.servlet.ServletException;
55  
56  import org.apache.commons.io.FileUtils;
57  import org.apache.commons.lang.StringUtils;
58  import org.slf4j.Logger;
59  import org.slf4j.LoggerFactory;
60  
61  
62  /**
63   * Wraps the servlet context especially for freemarker taglib resolution. This will trick freemarker TaglibFactory class
64   * to "see" all jars in classpath as if they were jars in /WEB-INF/lib.
65   *
66   * On Windows systems the implementation of getResourcePaths will return absolute paths including the drive letter. When
67   * freemarker then calls getResource and getResourceAsStream we must not call the wrapped servlet context because its
68   * not a valid URL and it will fail with a MalformedURLException. See MAGNOLIA-5651.
69   */
70  public class FreemarkerServletContextWrapper implements ServletContext {
71  
72      private final ServletContext parentContext;
73  
74      private static Logger log = LoggerFactory.getLogger(FreemarkerServletContextWrapper.class);
75  
76      public FreemarkerServletContextWrapper(ServletContext parentServletContext) {
77          // allow also a null parent context for unit tests
78          this.parentContext = parentServletContext;
79      }
80  
81      @Override
82      public URL getResource(String path) throws MalformedURLException {
83  
84          URL result = null;
85          if (path.startsWith("/")) {
86              result = parentContext.getResource(path);
87          }
88          if (result == null) {
89              // Trying the absolute path if the parent context fails.
90              File file = new File(path);
91              if ((file.exists()) && (file.isFile())) {
92                  result = file.toURI().toURL();
93              }
94          }
95          return result;
96      }
97  
98      @Override
99      public InputStream getResourceAsStream(String path) {
100 
101         InputStream is = null;
102         if (path.startsWith("/")) {
103             is = parentContext.getResourceAsStream(path);
104         }
105         if (is == null) {
106             // Trying the absolute path if the parent context fails.
107             File file = new File(path);
108             if ((file.exists()) && (file.isFile())) {
109                 try {
110                     return new FileInputStream(file);
111                 }
112                 catch (FileNotFoundException e) {
113                     // Ignore, file not found
114                 }
115             }
116         }
117         return is;
118     }
119 
120     @Override
121     @SuppressWarnings({"unchecked", "rawtypes"})
122     public Set getResourcePaths(String path) {
123         if (StringUtils.equals(path, "/WEB-INF/lib")) {
124             log.debug("returning resources from classpath");
125             // Just when asking libraries, pass the classpath ones.
126             final Set<String> resources = new HashSet<String>();
127             final ClassLoader cl = Thread.currentThread().getContextClassLoader();
128             // if the classloader is an URLClassloader we have a better method for discovering resources
129             // whis will also fetch files from jars outside WEB-INF/lib, useful during development
130             if (cl instanceof URLClassLoader) {
131                 final URLClassLoader urlClassLoader = (URLClassLoader) cl;
132                 final URL[] urls = urlClassLoader.getURLs();
133                 for (int j = 0; j < urls.length; j++) {
134                     final File tofile = ClasspathResourcesUtil.sanitizeToFile(urls[j]);
135                     if (tofile.isDirectory()) {
136                         for (File file : ((List<File>) FileUtils.listFiles(tofile, null, true))) {
137                             resources.add(file.getAbsolutePath());
138                         }
139                     }
140                     else {
141                         resources.add(tofile.getAbsolutePath());
142                     }
143                 }
144 
145                 return resources;
146             }
147             try {
148                 // be friendly to WAS developers too...
149                 // in development mode under RAD 7.5 here we have an instance of com.ibm.ws.classloader.WsClassLoader
150                 // and jars are NOT deployed to WEB-INF/lib by default, so they can't be found without this explicit
151                 // check
152                 //
153                 // but since we don't want to depend on WAS stuff we just check if the cl exposes a "classPath" property
154                 PropertyDescriptor pd = new PropertyDescriptor("classPath", cl.getClass());
155                 if (pd != null && pd.getReadMethod() != null) {
156                     String classpath = (String) pd.getReadMethod().invoke(cl, new Object[]{});
157                     if (StringUtils.isNotBlank(classpath)) {
158                         String[] paths = StringUtils.split(classpath, File.pathSeparator);
159                         for (int j = 0; j < paths.length; j++) {
160                             final File tofile = new File(paths[j]);
161                             // there can be several missing (optional?) paths here...
162                             if (tofile.exists()) {
163                                 if (tofile.isDirectory()) {
164                                     for (File file : ((List<File>) FileUtils.listFiles(tofile, null, true))) {
165                                         resources.add(file.getAbsolutePath());
166                                     }
167                                 }
168                                 else {
169                                     resources.add(tofile.getAbsolutePath());
170                                 }
171                             }
172                         }
173                         return resources;
174                     }
175                 }
176             }
177             catch (Throwable e) {
178                 // no, it's not a classloader we can handle in a special way
179             }
180             // no way, we have to assume a standard war structure and look in the WEB-INF/lib and WEB-INF/classes dirs
181             // read the jars in the lib dir
182         }
183         return parentContext.getResourcePaths(path);
184     }
185 
186     // Below here, just methods that redirects to the wrapped context.
187     @Override
188     public Object getAttribute(String name) {
189         return parentContext.getAttribute(name);
190     }
191 
192     @SuppressWarnings("rawtypes")
193     @Override
194     public Enumeration getAttributeNames() {
195         return parentContext.getAttributeNames();
196     }
197 
198     @Override
199     public ServletContext getContext(String uripath) {
200         return parentContext.getContext(uripath);
201     }
202 
203     @Override
204     public String getContextPath() {
205         return parentContext.getContextPath();
206     }
207 
208     @Override
209     public String getInitParameter(String name) {
210         return parentContext.getInitParameter(name);
211     }
212 
213     @SuppressWarnings("rawtypes")
214     @Override
215     public Enumeration getInitParameterNames() {
216         return parentContext.getInitParameterNames();
217     }
218 
219     @Override
220     public int getMajorVersion() {
221         return parentContext.getMajorVersion();
222     }
223 
224     @Override
225     public String getMimeType(String file) {
226         return parentContext.getMimeType(file);
227     }
228 
229     @Override
230     public int getMinorVersion() {
231         return parentContext.getMinorVersion();
232     }
233 
234     @Override
235     public RequestDispatcher getNamedDispatcher(String name) {
236         return parentContext.getNamedDispatcher(name);
237     }
238 
239     @Override
240     public String getRealPath(String path) {
241         return parentContext.getRealPath(path);
242     }
243 
244     @Override
245     public RequestDispatcher getRequestDispatcher(String path) {
246         return parentContext.getRequestDispatcher(path);
247     }
248 
249     @Override
250     public String getServerInfo() {
251         return parentContext.getServerInfo();
252     }
253 
254     @SuppressWarnings("deprecation")
255     @Override
256     public Servlet getServlet(String name) throws ServletException {
257         return parentContext.getServlet(name);
258     }
259 
260     @Override
261     public String getServletContextName() {
262         return parentContext.getServletContextName();
263     }
264 
265     @SuppressWarnings({"rawtypes", "deprecation"})
266     @Override
267     public Enumeration getServletNames() {
268         return parentContext.getServletNames();
269     }
270 
271     @SuppressWarnings({"rawtypes", "deprecation"})
272     @Override
273     public Enumeration getServlets() {
274         return parentContext.getServlets();
275     }
276 
277     @Override
278     public void log(String msg) {
279         parentContext.log(msg);
280     }
281 
282     @SuppressWarnings("deprecation")
283     @Override
284     public void log(Exception exception, String msg) {
285         parentContext.log(exception, msg);
286     }
287 
288     @Override
289     public void log(String message, Throwable throwable) {
290         parentContext.log(message, throwable);
291     }
292 
293     @Override
294     public void removeAttribute(String name) {
295         parentContext.removeAttribute(name);
296     }
297 
298     @Override
299     public void setAttribute(String name, Object object) {
300         parentContext.setAttribute(name, object);
301     }
302 }