974f0970a4caede8d49574c4bfcbe63f760f20ed
[mir.git] / source / mircoders / media / MediaHandlerImages.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32
33 package mircoders.media;
34
35 import java.lang.*;
36 import java.io.*;
37 import java.util.*;
38 import java.lang.reflect.*;
39
40 import freemarker.template.SimpleList;
41
42 import mir.media.*;
43 import mir.misc.*;
44 import mir.entity.*;
45 import mir.storage.StorageObjectException;
46 import mircoders.entity.EntityImages;
47
48 /**
49  * This class handles saving, fetching creating representations
50  * for all images. The image content is stored in the DB. The content is
51  * written out to a file at the ProducerImages level.
52  * Remember that Handlers for specific image types, Gif, Jpeg, etc..
53  * should override it.
54  * It implements the MirMedia interface.
55  * <p>
56  * slowly starting to look better, a next step would be to have the
57  * representation stuff (WebdbImage) happen here.
58  * -mh 01.03.2002
59  *
60  * @see mir.media.MirMedia
61  * @author mh
62  * @version $Id: MediaHandlerImages.java,v 1.12 2002/11/27 08:57:32 mh Exp $
63  */
64
65
66 public abstract class MediaHandlerImages implements MirMedia
67 {
68   static Logfile theLog = Logfile.getInstance(MirConfig.getProp("Home")+
69                                                 "log/media.log");
70   static final String PNG = "PNG"; 
71   static final String JPEG = "JPEG"; 
72
73   abstract String getType();
74
75         public InputStream getMedia(Entity ent, Entity mediaTypeEnt)
76     throws MirMediaException
77         {
78     InputStream in;
79     try {
80       in = ((EntityImages)ent).getImage();
81     } catch ( StorageObjectException e) {
82       theLog.printDebugInfo("MediaHandlerImages.getImage: "+e.toString()); 
83       throw new MirMediaException(e.toString());
84     }
85
86     return in;
87   }
88
89         public void set(InputStream in, Entity ent, Entity mediaTypeEnt)
90     throws MirMediaException {
91
92     try {
93       ((EntityImages)ent).setImage(in, getType());
94     } catch ( StorageObjectException e) {
95       theLog.printError("MediaHandlerImages.set: "+e.toString()); 
96       throw new MirMediaException(e.toString());
97     }
98
99         }
100
101   public void produce(Entity ent, Entity mediaTypeEnt) throws MirMediaException
102   {
103     String date = ent.getValue("date");
104     String datePath = StringUtil.webdbDate2path(date);
105     String ext = "."+mediaTypeEnt.getValue("name");
106     String filepath = datePath+ent.getId()+ext;
107     String iconFilePath = MirConfig.getProp("Producer.StorageRoot")
108                           +getIconStoragePath() + filepath;
109     String productionFilePath = getStoragePath() + File.separator + filepath;
110
111
112     if (ent.getValue("icon_data")!= null &&
113         ent.getValue("image_data")!= null) {
114       // make icon
115       try {
116         InputStream in = ((EntityImages)ent).getIcon();
117         FileUtil.write(iconFilePath, in);
118         in = ((EntityImages)ent).getImage();
119         FileUtil.write(productionFilePath, in);
120         ent.setValueForProperty("icon_path",getIconStoragePath()+filepath);
121         ent.setValueForProperty("publish_path",filepath);
122         ent.update();
123       } catch ( Exception e) {
124         String msg = "MediaHandlerImages.produce - Error: " + e.toString();
125         theLog.printError(msg);
126         throw new MirMediaException(msg);
127       }
128     } else {
129       String msg="MediaHandlerImages.produce - missing image or icon OID for: "+
130                   ent.getId();
131       theLog.printError(msg);
132       throw new MirMediaException(msg);
133     }
134   }
135                         
136
137         public InputStream getIcon(Entity ent) throws MirMediaException
138         {
139     InputStream in;
140     try {
141       in = ((EntityImages)ent).getIcon();
142     } catch ( StorageObjectException e) {
143       theLog.printDebugInfo("MediaHandlerImages.getIcon: "+e.toString()); 
144       throw new MirMediaException(e.toString());
145     }
146
147     return in;
148   }
149
150   public SimpleList getURL(Entity ent, Entity mediaTypeEnt)
151   {
152     SimpleList theList = new SimpleList();
153     theList.add(ent);
154     return theList;
155   }
156
157   public String getStoragePath()
158   {
159     return MirConfig.getProp("Producer.Image.Path");
160   }
161
162   public String getIconStoragePath()
163   {
164     return MirConfig.getProp("Producer.Image.IconPath");
165   }
166
167   public String getPublishHost()
168   {
169     return StringUtil.removeSlash(MirConfig.getProp("Producer.Image.Host"));
170   }
171
172   public String getTinyIconName()
173   {
174     return MirConfig.getProp("Producer.Icon.TinyImage");
175   } 
176
177   public String getBigIconName()
178   {
179     return MirConfig.getProp("Producer.Icon.BigImage");
180   } 
181
182   public String getIconAltName()
183   {
184     return "Image";
185   } 
186
187   public boolean isVideo()
188   {
189     return false;
190   } 
191
192   public boolean isAudio()
193   {
194     return false;
195   } 
196
197   public boolean isImage ()
198   {
199     return true;
200   } 
201
202   public String getDescr(Entity mediaType)
203   {
204     return "image/jpeg";
205   }
206
207 }