View Javadoc

1   /**
2    * This file Copyright (c) 2010-2010 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.groovy.support.classes;
35  
36  import groovy.lang.GroovyResourceLoader;
37  import info.magnolia.cms.core.Content;
38  import info.magnolia.cms.core.HierarchyManager;
39  import info.magnolia.cms.core.MetaData;
40  import info.magnolia.cms.core.NodeData;
41  import info.magnolia.module.groovy.support.HierarchyManagerProvider;
42  
43  import javax.jcr.RepositoryException;
44  import java.io.ByteArrayInputStream;
45  import java.io.IOException;
46  import java.io.InputStream;
47  import java.net.MalformedURLException;
48  import java.net.URL;
49  import java.net.URLConnection;
50  import java.net.URLStreamHandler;
51  import java.util.Calendar;
52  
53  /**
54   * A {@link GroovyResourceLoader} implementation which is able to load Groovy source from a given repository.
55   *
56   * <strong>Warning:</strong> this is based on URLs objects. It uses a custom "protocol", but this is only
57   * supported in as far as the URL object instance is passed around. Using the URL's string representation
58   * outside the context of this class will invariably fail, unless {@link info.magnolia.module.groovy.support.classes.MgnlGroovyResourceLoader.MagnoliaStreamHandler}
59   * is passed too.
60   *
61   * @author gjoseph
62   * @version $Revision: $ ($Author: $)
63   */
64  class MgnlGroovyResourceLoader implements GroovyResourceLoader {
65      private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(MgnlGroovyResourceLoader.class);
66  
67      private static final String PROTOCOL = "magnolia-repository://";
68      private final GroovyResourceLoader delegate;
69      private final HierarchyManagerProvider hmp;
70      private final String repoName;
71  
72      MgnlGroovyResourceLoader(GroovyResourceLoader delegate, HierarchyManagerProvider hmp, String repoName) {
73          this.delegate = delegate;
74          this.hmp = hmp;
75          this.repoName = repoName;
76      }
77  
78      public URL loadGroovySource(String name) throws MalformedURLException {
79          final URL url = loadGroovySourceFromRepository(name);
80          if (url == null) {
81              return delegate.loadGroovySource(name);
82          }
83          return url;
84      }
85  
86      /**
87       * Returns a URL <em>only if</em> the path to the source exits <strong>AND</strong> the enabled flag is <code>true</code>.
88       * In all other cases it <strong>must</strong> return <code>null</code>
89       */
90      private URL loadGroovySourceFromRepository(String name) throws MalformedURLException {
91          if (name.startsWith("[") || name.contains("$")) {
92              // we don't even try loading array classes or nested classes.
93              // see java.lang.Class#forName()
94              log.debug("Skipping {}, array or nested class.", name);
95              return null;
96          }
97  
98          final HierarchyManager hm = hmp.getHierarchyManager(repoName);
99          final String path = "/" + name.replace('.', '/');
100         try {
101             if (hm.isExist(path) && hm.getNodeData(path + "/enabled").getBoolean()) {
102                 return new URL(null, PROTOCOL + hm.getName() + path, new MagnoliaStreamHandler(hm));
103             } else {
104                 return null;
105             }
106         } catch (RepositoryException e) {
107             return null;
108         }
109     }
110 
111     /**
112      * Magnolia Stream Handler.
113      *
114      */
115     protected static class MagnoliaStreamHandler extends URLStreamHandler {
116         private final HierarchyManager hm;
117 
118         public MagnoliaStreamHandler(HierarchyManager hm) {
119             this.hm = hm;
120         }
121 
122         protected URLConnection openConnection(URL u) throws IOException {
123             if (!"magnolia-repository".equals(u.getProtocol())) {
124                 throw new IllegalStateException("Unsupported protocol: " + u.getProtocol() + " (only supports \"magnolia-repository\")");
125             }
126             return new MagnoliaURLConnection(u, hm);
127         }
128     }
129 
130     /**
131      * Magnolia URL Connection.
132      *
133      */
134     protected static class MagnoliaURLConnection extends URLConnection {
135         private final Content node;
136 
137         public MagnoliaURLConnection(URL u, HierarchyManager hm) throws IOException {
138             super(u);
139             // final String repository = u.getHost();
140             final String path = u.getPath();
141 
142             try {
143                 this.node = hm.getContent(path);
144             } catch (RepositoryException e) {
145                 throw new IOException("Can't get " + path + " from the " + hm.getName() + " repository: " + e.getClass().getSimpleName() + ": " + e.getMessage());
146             }
147         }
148 
149         public void connect() throws IOException {
150             // Nothing to do here.
151             // I'm assuming this could be needed for connections that can timeout, and/or when the URL object is
152             // used long after it's been instantiated. In our specific case, we know for a fact that it's used
153             // immediately, and not kept around, which is why we fetch the node from the repository straight from
154             // the constructor of this class.
155         }
156 
157         public InputStream getInputStream() throws IOException {
158             final NodeData prop = node.getNodeData("text");
159             if (!prop.isExist()) {
160                 throw new IOException(node.getHandle() + " has no 'text' property");
161             }
162 
163             // TODO - double check "enabled" flag ?
164             // TODO - doesn't work with MockNodeData: return prop.getStream();
165             final String sourceStr = prop.getString();
166             return new ByteArrayInputStream(sourceStr.getBytes());
167         }
168 
169         public long getLastModified() {
170             final MetaData md = node.getMetaData();
171             final Calendar date = md.getModificationDate();
172             return date.getTimeInMillis();
173         }
174     }
175 }