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.cms.beans.runtime;
35  
36  import info.magnolia.cms.core.NodeData;
37  import info.magnolia.cms.util.ContentUtil;
38  import info.magnolia.context.MgnlContext;
39  
40  import org.apache.commons.lang.math.NumberUtils;
41  
42  import javax.jcr.Node;
43  import javax.jcr.RepositoryException;
44  import java.io.InputStream;
45  
46  
47  /**
48   * Wraps a NodeData and exposes it into a simple file-like bean.
49   *
50   * @author Sameer Charles
51   * @version 1.1
52   */
53  public class File {
54  
55      private Node node;
56  
57      private String extension;
58  
59      private String fileName;
60  
61      private String contentType;
62  
63      private int size;
64  
65      /**
66       * @deprecated Since 5.0 use File(Node)
67       */
68      public File(NodeData data) {
69          initFile(data);
70      }
71      
72      public File(Node node) {
73          this.node = node;
74  
75          try{
76              if(node.hasProperty("extension")){
77                  setExtension(node.getProperty("extension").getString());
78              }
79              if(node.hasProperty("fileName")){
80                  setFileName(node.getProperty("fileName").getString());
81              }
82              if(node.hasProperty("contentType")){
83                  setContentType(node.getProperty("contentType").getString());
84              }
85  
86              if(node.hasProperty("size")){
87                  String sizeString = node.getProperty("size").getString();
88                  if (NumberUtils.isNumber(sizeString)) {
89                      setSize(Integer.parseInt(sizeString));
90                  }
91              }
92          }catch(RepositoryException e){
93              throw new RuntimeException(e);
94          }
95  
96      }
97  
98      /**
99       * Initialisation method for File(NodeData) constructor.
100      * @deprecated Since 5.0 use File(Node)
101      */
102     private File initFile(NodeData nodedata){
103         try {
104             return new File(MgnlContext.getJCRSession(nodedata.getHierarchyManager().getWorkspace().getName()).getNode(nodedata.getHandle()));
105         } catch (RepositoryException e) {
106             throw new RuntimeException(e);
107         }
108     }
109 
110     public String getExtension() {
111         return extension;
112     }
113 
114     public void setExtension(String extension) {
115         this.extension = extension;
116     }
117 
118     public String getFileName() {
119         return fileName;
120     }
121 
122     public void setFileName(String fileName) {
123         this.fileName = fileName;
124     }
125 
126     public String getContentType() {
127         return contentType;
128     }
129 
130     public void setContentType(String contentType) {
131         this.contentType = contentType;
132     }
133 
134     /**
135      * @deprecated Since 5.0.
136      */
137     public String getNodeDataTemplate() {
138         throw new UnsupportedOperationException();
139     }
140 
141     /**
142      * @deprecated Since 5.0.
143      */
144     public void setNodeDataTemplate(String nodeDataTemplate) {
145         throw new UnsupportedOperationException();
146     }
147 
148     public int getSize() {
149         return size;
150     }
151 
152     public void setSize(int size) {
153         this.size = size;
154     }
155     
156     public Node getNode() {
157         return node;
158     }
159 
160     /**
161      * @deprecated Since 5.0 use getNode(Node) instead. 
162      */
163     public NodeData getNodeData() {
164         try {
165             if(ContentUtil.asContent(node.getParent()).hasNodeData(node.getName())){
166                 return ContentUtil.asContent(node.getParent()).getNodeData(node.getName());
167             }
168         } catch (RepositoryException e) {
169             //Cannot retrieve NodeData, return null.
170         }
171         return null;
172     }
173 
174     /**
175      * @deprecated Since 5.0, unsupported on Node API. 
176      */
177     public InputStream getStream() {
178         return getNodeData().getStream();
179     }
180 }