View Javadoc

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