50952583353797193c30608b9e07b1fb97531bd9
[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.15 2002/12/17 19:20:31 zapata 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     }
95     catch ( StorageObjectException e) {
96       e.printStackTrace(System.out);
97       theLog.printError("MediaHandlerImages.set: "+e.getMessage());
98       throw new MirMediaException(e.getMessage());
99     }
100   }
101
102   public void produce(Entity ent, Entity mediaTypeEnt) throws MirMediaException
103   {
104     String date = ent.getValue("date");
105     String datePath = StringUtil.webdbDate2path(date);
106     String ext = "."+mediaTypeEnt.getValue("name");
107     String filepath = datePath+ent.getId()+ext;
108     String iconFilePath = MirConfig.getProp("Producer.StorageRoot")
109                           +getIconStoragePath() + filepath;
110     String productionFilePath = getStoragePath() + File.separator + filepath;
111
112
113     if (ent.getValue("icon_data")!= null &&
114         ent.getValue("image_data")!= null) {
115       // make icon
116       try {
117         InputStream in = ((EntityImages)ent).getIcon();
118         FileUtil.write(iconFilePath, in);
119         in = ((EntityImages)ent).getImage();
120         FileUtil.write(productionFilePath, in);
121         ent.setValueForProperty("icon_path",getIconStoragePath()+filepath);
122         ent.setValueForProperty("publish_path",filepath);
123         ent.update();
124       } catch ( Exception e) {
125         String msg = "MediaHandlerImages.produce - Error: " + e.toString();
126         theLog.printError(msg);
127         throw new MirMediaException(msg);
128       }
129     } else {
130       String msg="MediaHandlerImages.produce - missing image or icon OID for: "+
131                   ent.getId();
132       theLog.printError(msg);
133       throw new MirMediaException(msg);
134     }
135   }
136
137
138   public InputStream getIcon(Entity ent) throws MirMediaException
139   {
140     InputStream in;
141     try {
142       in = ((EntityImages)ent).getIcon();
143     } catch ( StorageObjectException e) {
144       theLog.printDebugInfo("MediaHandlerImages.getIcon: "+e.toString());
145       throw new MirMediaException(e.toString());
146     }
147
148     return in;
149   }
150
151   public SimpleList getURL(Entity ent, Entity mediaTypeEnt)
152   {
153     SimpleList theList = new SimpleList();
154     theList.add(ent);
155     return theList;
156   }
157
158   public String getStoragePath()
159   {
160     return MirConfig.getProp("Producer.Image.Path");
161   }
162
163   public String getIconStoragePath()
164   {
165     return MirConfig.getProp("Producer.Image.IconPath");
166   }
167
168   public String getPublishHost()
169   {
170     return StringUtil.removeSlash(MirConfig.getProp("Producer.Image.Host"));
171   }
172
173   public String getTinyIconName()
174   {
175     return MirConfig.getProp("Producer.Icon.TinyImage");
176   }
177
178   public String getBigIconName()
179   {
180     return MirConfig.getProp("Producer.Icon.BigImage");
181   }
182
183   public String getIconAltName()
184   {
185     return "Image";
186   }
187
188   public boolean isVideo()
189   {
190     return false;
191   }
192
193   public boolean isAudio()
194   {
195     return false;
196   }
197
198   public boolean isImage ()
199   {
200     return true;
201   }
202
203   public String getDescr(Entity mediaType)
204   {
205     return "image/jpeg";
206   }
207
208 }