0917c1ace31081720367e6432a5ae6f3688ae407
[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  any library licensed under the Apache Software License,
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
23  * (or with modified versions of the above that use the same license as the above),
24  * and distribute linked combinations including the two.  You must obey the
25  * GNU General Public License in all respects for all of the code used other than
26  * the above mentioned libraries.  If you modify this file, you may extend this
27  * exception to your version of the file, but you are not obligated to do so.
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30 package mircoders.media;
31
32 import mir.config.MirPropertiesConfiguration;
33 import mir.entity.Entity;
34 import mir.log.LoggerWrapper;
35 import mir.media.MediaExc;
36 import mir.media.MediaFailure;
37 import mir.media.MediaHandler;
38 import mir.misc.StringUtil;
39 import mir.session.SessionExc;
40 import mir.session.UploadedFile;
41 import mir.util.IORoutines;
42 import mir.util.FileRoutines;
43 import mircoders.entity.EntityImages;
44
45 import java.io.*;
46 import java.sql.SQLException;
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 MirMediaHandler 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.MediaHandler
61  * @author mh
62  * @version $Id: MediaHandlerImages.java,v 1.23.2.10 2006/01/28 18:33:16 zapata Exp $
63  */
64
65
66 public abstract class MediaHandlerImages extends AbstractMediaHandler implements MediaHandler {
67   protected static MirPropertiesConfiguration configuration = MirPropertiesConfiguration.instance();
68   protected static final String PNG = "PNG";
69   protected static final String JPEG = "JPEG";
70
71   protected LoggerWrapper logger;
72
73   abstract String getType();
74
75   public MediaHandlerImages() {
76     logger = new LoggerWrapper("Media.Images");
77   }
78
79   public InputStream getMedia(Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
80     try {
81       return new ByteArrayInputStream(((EntityImages) ent).getImage());
82     }
83     catch (Throwable e) {
84       logger.error("MediaHandlerImages.getImage: " + e.toString());
85
86       throw new MediaFailure(e);
87     }
88   }
89
90   public void store(UploadedFile anUploadedFile, Entity aMedia, Entity aMediaType) throws MediaExc, MediaFailure {
91     try {
92       store(anUploadedFile.getInputStream(), aMedia, aMediaType);
93     }
94     catch (SessionExc e) {
95       throw new MediaFailure(e);
96     }
97   }
98
99   public void store(InputStream in, Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
100     try {
101       ((EntityImages) ent).setImage(in, getType());
102     }
103     catch (IOException e) {
104       logger.error("MediaHandlerImages.store", e);
105
106       throw new MediaFailure("A problem has occurred processing the media file", e);
107     }
108     catch (SQLException e) {
109       logger.error("MediaHandlerImages.store", e);
110
111       throw new MediaFailure("A problem has occurred processing the media file", e);
112     }
113   }
114
115   public void produce(Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
116     String date = ent.getFieldValue("date");
117     String datePath = StringUtil.webdbDate2path(date);
118     String ext = "."+mediaTypeEnt.getFieldValue("name");
119     String filepath = datePath+ent.getId()+ext;
120     String iconFilePath = configuration.getString("Producer.StorageRoot") + getBaseIconStoragePath() + filepath;
121     String productionFilePath = getBaseStoragePath() + File.separator + filepath;
122
123
124     if (ent.getFieldValue("icon_data")!= null &&
125         ent.getFieldValue("image_data")!= null) {
126       // make icon
127       try {
128         OutputStream out;
129         InputStream in = new ByteArrayInputStream(((EntityImages) ent).getIcon());
130         try {
131           File iconFile = new File(iconFilePath);
132
133           FileRoutines.createParentDirectories(iconFile);
134
135           out = new FileOutputStream(iconFile);
136           try {
137             IORoutines.copyStream(in, out);
138           }
139           finally {
140             out.close();
141           }
142         }
143         finally {
144           in.close();
145         }
146
147         in = new ByteArrayInputStream(((EntityImages) ent).getImage());
148         try {
149           File imageFile = new File(productionFilePath);
150
151           FileRoutines.createParentDirectories(imageFile);
152
153           out = new FileOutputStream(imageFile);
154           try {
155             IORoutines.copyStream(in, out);
156           }
157           finally {
158             out.close();
159           }
160         }
161         finally {
162           in.close();
163         }
164
165         ent.setFieldValue("icon_path", getBaseIconStoragePath() + filepath);
166         ent.setFieldValue("publish_path", filepath);
167         ent.update();
168       }
169       catch (Throwable e) {
170         logger.error("Error producing image", e);
171
172         throw new MediaFailure("Error producing image", e);
173       }
174       finally {
175       }
176     }
177     else {
178       logger.error("Can't produce image " + ent.getId() + ": missing image or icon OID");
179
180       throw new MediaExc("Can't produce image " + ent.getId() + ": missing image or icon OID");
181     }
182   }
183
184   public InputStream getThumbnail(Entity ent) throws MediaExc, MediaFailure {
185     try {
186       return new ByteArrayInputStream(((EntityImages) ent).getIcon());
187     }
188     catch (Throwable e) {
189       logger.error("MediaHandlerImages.getIcon: " + e.toString());
190       throw new MediaFailure(e);
191     }
192   }
193
194   public String getBaseStoragePath() {
195     return configuration.getString("Producer.Image.Path");
196   }
197
198   public String getBaseIconStoragePath() {
199     return configuration.getString("Producer.Image.IconPath");
200   }
201
202   public String getPublishHost() {
203     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
204   }
205
206   public String getTinyIconName() {
207     return configuration.getString("Producer.Icon.TinyImage");
208   }
209
210   public String getBigIconName() {
211     return configuration.getString("Producer.Icon.BigImage");
212   }
213
214   public String getIconAltName() {
215     return "Image";
216   }
217
218   public String getDescr(Entity mediaType) {
219     return "image/jpeg";
220   }
221
222 }