cleanup / abuse system fix / prepping for a release
[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
47 /**
48  * This class handles saving, fetching creating representations
49  * for all images. The image content is stored in the DB. The content is
50  * written out to a file at the ProducerImages level.
51  * Remember that Handlers for specific image types, Gif, Jpeg, etc..
52  * should override it.
53  * It implements the MirMediaHandler interface.
54  * <p>
55  * slowly starting to look better, a next step would be to have the
56  * representation stuff (WebdbImage) happen here.
57  * -mh 01.03.2002
58  *
59  * @see mir.media.MediaHandler
60  * @author mh
61  * @version $Id: MediaHandlerImages.java,v 1.23.2.9 2005/08/21 17:09:23 zapata Exp $
62  */
63
64
65 public abstract class MediaHandlerImages extends AbstractMediaHandler implements MediaHandler {
66   protected static MirPropertiesConfiguration configuration = MirPropertiesConfiguration.instance();
67   protected static final String PNG = "PNG";
68   protected static final String JPEG = "JPEG";
69
70   protected LoggerWrapper logger;
71
72   abstract String getType();
73
74   public MediaHandlerImages() {
75     logger = new LoggerWrapper("Media.Images");
76   }
77
78   public InputStream getMedia(Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
79     try {
80       return new ByteArrayInputStream(((EntityImages) ent).getImage());
81     }
82     catch (Throwable e) {
83       logger.error("MediaHandlerImages.getImage: " + e.toString());
84
85       throw new MediaFailure(e);
86     }
87   }
88
89   public void store(UploadedFile anUploadedFile, Entity aMedia, Entity aMediaType) throws MediaExc, MediaFailure {
90     try {
91       store(anUploadedFile.getInputStream(), aMedia, aMediaType);
92     }
93     catch (SessionExc e) {
94       throw new MediaFailure(e);
95     }
96   }
97
98   public void store(InputStream in, Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
99     try {
100       ((EntityImages) ent).setImage(in, getType());
101     }
102     catch (Throwable e) {
103       logger.error("MediaHandlerImages.store", e);
104
105       throw new MediaFailure("A problem has occurred processing the media file", e);
106     }
107   }
108
109   public void produce(Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
110     String date = ent.getFieldValue("date");
111     String datePath = StringUtil.webdbDate2path(date);
112     String ext = "."+mediaTypeEnt.getFieldValue("name");
113     String filepath = datePath+ent.getId()+ext;
114     String iconFilePath = configuration.getString("Producer.StorageRoot") + getBaseIconStoragePath() + filepath;
115     String productionFilePath = getBaseStoragePath() + File.separator + filepath;
116
117
118     if (ent.getFieldValue("icon_data")!= null &&
119         ent.getFieldValue("image_data")!= null) {
120       // make icon
121       try {
122         OutputStream out;
123         InputStream in = new ByteArrayInputStream(((EntityImages) ent).getIcon());
124         try {
125           File iconFile = new File(iconFilePath);
126
127           FileRoutines.createParentDirectories(iconFile);
128
129           out = new FileOutputStream(iconFile);
130           try {
131             IORoutines.copyStream(in, out);
132           }
133           finally {
134             out.close();
135           }
136         }
137         finally {
138           in.close();
139         }
140
141         in = new ByteArrayInputStream(((EntityImages) ent).getImage());
142         try {
143           File imageFile = new File(productionFilePath);
144
145           FileRoutines.createParentDirectories(imageFile);
146
147           out = new FileOutputStream(imageFile);
148           try {
149             IORoutines.copyStream(in, out);
150           }
151           finally {
152             out.close();
153           }
154         }
155         finally {
156           in.close();
157         }
158
159         ent.setFieldValue("icon_path", getBaseIconStoragePath() + filepath);
160         ent.setFieldValue("publish_path", filepath);
161         ent.update();
162       }
163       catch (Throwable e) {
164         logger.error("Error producing image", e);
165
166         throw new MediaFailure("Error producing image", e);
167       }
168       finally {
169       }
170     }
171     else {
172       logger.error("Can't produce image " + ent.getId() + ": missing image or icon OID");
173
174       throw new MediaExc("Can't produce image " + ent.getId() + ": missing image or icon OID");
175     }
176   }
177
178   public InputStream getThumbnail(Entity ent) throws MediaExc, MediaFailure {
179     try {
180       return new ByteArrayInputStream(((EntityImages) ent).getIcon());
181     }
182     catch (Throwable e) {
183       logger.error("MediaHandlerImages.getIcon: " + e.toString());
184       throw new MediaFailure(e);
185     }
186   }
187
188   public String getBaseStoragePath() {
189     return configuration.getString("Producer.Image.Path");
190   }
191
192   public String getBaseIconStoragePath() {
193     return configuration.getString("Producer.Image.IconPath");
194   }
195
196   public String getPublishHost() {
197     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
198   }
199
200   public String getTinyIconName() {
201     return configuration.getString("Producer.Icon.TinyImage");
202   }
203
204   public String getBigIconName() {
205     return configuration.getString("Producer.Icon.BigImage");
206   }
207
208   public String getIconAltName() {
209     return "Image";
210   }
211
212   public String getDescr(Entity mediaType) {
213     return "image/jpeg";
214   }
215
216 }