fixed the date format in a pdf
[mir.git] / source / mircoders / media / MediaHandlerImagesExtern.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
33 import java.io.File;
34 import java.io.FileInputStream;
35 import java.io.InputStream;
36
37 import mir.config.MirPropertiesConfiguration;
38 import mir.entity.Entity;
39 import mir.log.LoggerWrapper;
40 import mir.media.MediaExc;
41 import mir.media.MediaFailure;
42 import mir.misc.StringUtil;
43 import mircoders.storage.DatabaseUploadedMedia;
44 import mircoders.module.*;
45
46
47 /**
48  * Image handler that stores images outside of the database. Will be replaced by the new
49  *   media handling system.
50  * @author Zapata
51  * @version 1.0
52  */
53
54 public class MediaHandlerImagesExtern extends MediaHandlerGeneric
55 {
56   private int maxIconSize;
57   private float minDescaleRatio;
58   private int minDescaleReduction;
59
60   public MediaHandlerImagesExtern() {
61
62     logger = new LoggerWrapper("Media.Images.Extern");
63     try {
64       MirPropertiesConfiguration configuration = MirPropertiesConfiguration.instance();
65     }
66     catch (Throwable t) {
67       logger.fatal("MediaHandlerImagesExtern: can't get configuration");
68
69       throw new RuntimeException(t.toString());
70     }
71
72     maxIconSize = configuration.getInt("Producer.Image.MaxIconSize");
73     minDescaleRatio = configuration.getFloat("Producer.Image.MinDescalePercentage")/100;
74     minDescaleReduction = configuration.getInt("Producer.Image.MinDescaleReduction");
75   }
76
77   public void produce(Entity anImageEntity, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
78     try {
79       String date = anImageEntity.getValue("date");
80       String datePath = StringUtil.webdbDate2path(date);
81       String ext = "." + mediaTypeEnt.getValue("name");
82       String fileBasePath = datePath + anImageEntity.getId();
83       String filePath = fileBasePath + ext;
84       String iconPath = getIconStoragePath() + fileBasePath + ".jpg";
85       String iconStoragePath = configuration.getString("Producer.StorageRoot") + iconPath;
86       String imageFilePath = getStoragePath() + File.separator + filePath;
87
88       File imageFile = new File(imageFilePath);
89       File iconFile = new File(iconStoragePath);
90
91       if (!imageFile.exists()) {
92         throw new MediaExc("error in MediaHandlerImagesExtern.produce(): " + filePath + " does not exist!");
93       }
94       else {
95         ImageProcessor processor = new ImageProcessor(imageFile);
96
97         processor.descaleImage(maxIconSize, minDescaleRatio, minDescaleReduction);
98         File dir = new File(iconFile.getParent());
99           if (dir!=null && !dir.exists()){
100             dir.mkdirs();
101         }
102         processor.writeScaledData(iconFile, "JPEG");
103
104         anImageEntity.setValueForProperty("img_height", new Integer(processor.getHeight()).toString());
105         anImageEntity.setValueForProperty("img_width", new Integer(processor.getWidth()).toString());
106
107         anImageEntity.setValueForProperty("icon_height", new Integer(processor.getScaledHeight()).toString());
108         anImageEntity.setValueForProperty("icon_width", new Integer(processor.getScaledWidth()).toString());
109
110         anImageEntity.setValueForProperty("icon_path", iconPath);
111         anImageEntity.setValueForProperty("publish_path", filePath);
112
113         anImageEntity.update();
114
115
116       }
117     }
118     catch(Throwable t) {
119       logger.error("MediaHandlerImagesExtern.produce: " + t.getMessage());
120       t.printStackTrace(logger.asPrintWriter(LoggerWrapper.DEBUG_MESSAGE));
121       throw new MediaFailure(t.getMessage(), t);
122     }
123   }
124
125
126   public InputStream getIcon(Entity anImageEntity) throws MediaExc, MediaFailure {
127     try {
128       String filePath =
129           configuration.getString("Producer.StorageRoot") + anImageEntity.getValue("icon_path");
130
131       logger.info(filePath);
132
133       return new FileInputStream(new File(filePath));
134     }
135     catch (Throwable t) {
136       return null;
137     }
138   }
139
140   public String getIconMimeType(Entity anImageEntity, Entity aMediaType) {
141     return "image/jpeg";
142   }
143
144   public String getStoragePath()
145   {
146     return configuration.getString("Producer.Image.Path");
147   }
148
149   public String getIconStoragePath()
150   {
151     return configuration.getString("Producer.Image.IconPath");
152   }
153
154   public String getPublishHost()
155   {
156     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
157   }
158
159   public String getTinyIconName()
160   {
161     return configuration.getString("Producer.Icon.TinyImage");
162   }
163
164   public String getBigIconName()
165   {
166     return configuration.getString("Producer.Icon.BigImage");
167   }
168
169   public String getIconAltName()
170   {
171     return "Image";
172   }
173
174   public boolean isVideo()
175   {
176     return false;
177   }
178
179   public boolean isAudio()
180   {
181     return false;
182   }
183
184   public boolean isImage ()
185   {
186     return true;
187   }
188
189   public String getDescr(Entity mediaType)
190   {
191      return "image/jpeg";
192   }
193 }