d4087e3eb69d47e57b61650d455fd08ca31ef16f
[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 java.io.*;
33
34 import mir.config.MirPropertiesConfiguration;
35 import mir.entity.Entity;
36 import mir.log.LoggerWrapper;
37 import mir.media.MediaExc;
38 import mir.media.MediaFailure;
39 import mir.media.MediaHandler;
40 import mir.misc.FileUtil;
41 import mir.misc.StringUtil;
42 import mir.session.SessionExc;
43 import mir.session.UploadedFile;
44 import mircoders.entity.EntityImages;
45
46 /**
47  * This class handles saving, fetching creating representations
48  * for all images. The image content is stored in the DB. The content is
49  * written out to a file at the ProducerImages level.
50  * Remember that Handlers for specific image types, Gif, Jpeg, etc..
51  * should override it.
52  * It implements the MirMediaHandler interface.
53  * <p>
54  * slowly starting to look better, a next step would be to have the
55  * representation stuff (WebdbImage) happen here.
56  * -mh 01.03.2002
57  *
58  * @see mir.media.MediaHandler
59  * @author mh
60  * @version $Id: MediaHandlerImages.java,v 1.23.2.8 2005/03/26 11:26:26 zapata Exp $
61  */
62
63
64 public abstract class MediaHandlerImages extends AbstractMediaHandler implements MediaHandler {
65   protected static MirPropertiesConfiguration configuration = MirPropertiesConfiguration.instance();
66   protected static final String PNG = "PNG";
67   protected static final String JPEG = "JPEG";
68
69   protected LoggerWrapper logger;
70
71   abstract String getType();
72
73   public MediaHandlerImages() {
74     logger = new LoggerWrapper("Media.Images");
75   }
76
77   public InputStream getMedia(Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
78     try {
79       return new ByteArrayInputStream(((EntityImages) ent).getImage());
80     }
81     catch (Throwable e) {
82       logger.error("MediaHandlerImages.getImage: " + e.toString());
83
84       throw new MediaFailure(e);
85     }
86   }
87
88   public void store(UploadedFile anUploadedFile, Entity aMedia, Entity aMediaType) throws MediaExc, MediaFailure {
89     try {
90       store(anUploadedFile.getInputStream(), aMedia, aMediaType);
91     }
92     catch (SessionExc e) {
93       throw new MediaFailure(e);
94     }
95   }
96
97   public void store(InputStream in, Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
98     try {
99       ((EntityImages) ent).setImage(in, getType());
100     }
101     catch (Throwable e) {
102       logger.error("MediaHandlerImages.store", e);
103
104       throw new MediaFailure("A problem has occurred processing the media file", e);
105     }
106   }
107
108   public void store(File aFile, Entity aMedia, Entity aMediaType) throws MediaExc, MediaFailure {
109     try {
110       store(new FileInputStream(aFile), aMedia, aMediaType);
111     }
112     catch (FileNotFoundException e) {
113       throw new MediaFailure(e);
114     }
115   }
116
117   public void produce(Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
118     String date = ent.getFieldValue("date");
119     String datePath = StringUtil.webdbDate2path(date);
120     String ext = "."+mediaTypeEnt.getFieldValue("name");
121     String filepath = datePath+ent.getId()+ext;
122     String iconFilePath = configuration.getString("Producer.StorageRoot")
123                           +getIconStoragePath() + filepath;
124     String productionFilePath = getStoragePath() + File.separator + filepath;
125
126
127     if (ent.getFieldValue("icon_data")!= null &&
128         ent.getFieldValue("image_data")!= null) {
129       // make icon
130       try {
131         InputStream in = new ByteArrayInputStream(((EntityImages) ent).getIcon());
132         FileUtil.write(iconFilePath, in);
133
134         in = new ByteArrayInputStream(((EntityImages) ent).getImage());
135         FileUtil.write(productionFilePath, in);
136         ent.setFieldValue("icon_path",getIconStoragePath()+filepath);
137         ent.setFieldValue("publish_path",filepath);
138         ent.update();
139       }
140       catch (Throwable e) {
141         logger.error("MediaHandlerImages.produce: " + e.toString());
142         throw new MediaFailure("MediaHandlerImages.produce: " + e.toString(), e);
143       }
144     }
145     else {
146       logger.error("MediaHandlerImages.produce: missing image or icon OID for: " + ent.getId());
147
148       throw new MediaExc("MediaHandlerImages.produce: missing image or icon OID for: " + ent.getId());
149     }
150   }
151
152   public InputStream getThumbnail(Entity ent) throws MediaExc, MediaFailure {
153     try {
154       return new ByteArrayInputStream(((EntityImages) ent).getIcon());
155     }
156     catch (Throwable e) {
157       logger.error("MediaHandlerImages.getIcon: " + e.toString());
158       throw new MediaFailure(e);
159     }
160   }
161
162  public String getStoragePath() {
163     return configuration.getString("Producer.Image.Path");
164   }
165
166   public String getIconStoragePath() {
167     return configuration.getString("Producer.Image.IconPath");
168   }
169
170   public String getPublishHost() {
171     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
172   }
173
174   public String getTinyIconName() {
175     return configuration.getString("Producer.Icon.TinyImage");
176   }
177
178   public String getBigIconName() {
179     return configuration.getString("Producer.Icon.BigImage");
180   }
181
182   public String getIconAltName() {
183     return "Image";
184   }
185
186   public String getDescr(Entity mediaType) {
187     return "image/jpeg";
188   }
189
190 }