cos removed from the open posting system + misc. updates here and there
[mir.git] / source / mircoders / media / MediaUploadProcessor.java
1 /*\r
2  * Copyright (C) 2001, 2002  The Mir-coders group\r
3  *\r
4  * This file is part of Mir.\r
5  *\r
6  * Mir is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 2 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Mir is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with Mir; if not, write to the Free Software\r
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19  *\r
20  * In addition, as a special exception, The Mir-coders gives permission to link\r
21  * the code of this program with the com.oreilly.servlet library, any library\r
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced\r
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of\r
24  * the above that use the same license as the above), and distribute linked\r
25  * combinations including the two.  You must obey the GNU General Public\r
26  * License in all respects for all of the code used other than the above\r
27  * mentioned libraries.  If you modify this file, you may extend this exception\r
28  * to your version of the file, but you are not obligated to do so.  If you do\r
29  * not wish to do so, delete this exception statement from your version.\r
30  */\r
31 \r
32 package mircoders.media;\r
33 \r
34 import java.util.GregorianCalendar;\r
35 import java.util.HashMap;\r
36 import java.util.Map;\r
37 \r
38 import mir.entity.Entity;\r
39 import mir.media.MediaExc;\r
40 import mir.media.MediaFailure;\r
41 import mir.media.MediaHelper;\r
42 import mir.media.MirMedia;\r
43 import mir.misc.StringUtil;\r
44 import mir.session.UploadedFile;\r
45 import mir.storage.Database;\r
46 \r
47 import mircoders.module.ModuleMediaType;\r
48 \r
49 public class MediaUploadProcessor {\r
50   public static Entity processMediaUpload(UploadedFile aFile, Map aValues) throws MediaExc, MediaFailure {\r
51     String mediaId;\r
52     MirMedia mediaHandler;\r
53     Entity mediaType;\r
54     ModuleMediaType mediaTypeModule;\r
55     Database mediaStorage;\r
56     Map values = new HashMap();\r
57     String MediaId;\r
58     Entity mediaEntity;\r
59 \r
60 \r
61     try {\r
62       String contentType = aFile.getContentType();\r
63 \r
64       if (contentType.equals("text/plain") ||\r
65           contentType.equals("application/octet-stream") ||\r
66           contentType == null) {\r
67         throw new MediaExc("Invalid content-type: " + contentType);\r
68       }\r
69 \r
70       values.putAll(aValues);\r
71       values.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));\r
72       values.put("is_produced", "0");\r
73       values.put("is_published", "1");\r
74       values.put("to_publisher", "0");\r
75       values.put("to_media_folder", "7");\r
76 \r
77       mediaTypeModule = new ModuleMediaType();\r
78       mediaType = mediaTypeModule.findMediaTypeForMimeType(contentType);\r
79 \r
80       try {\r
81         mediaHandler = MediaHelper.getHandler(mediaType);\r
82         mediaStorage = MediaHelper.getStorage(mediaType, "mircoders.storage.Database");\r
83       }\r
84       catch (Throwable e) {\r
85         throw new MediaFailure(e);\r
86       }\r
87 \r
88       values.put("to_media_type", mediaType.getId());\r
89 \r
90       try {\r
91         mediaEntity = (Entity) mediaStorage.getEntityClass().newInstance();\r
92         mediaEntity.setStorage(mediaStorage);\r
93       }\r
94       catch (Throwable e) {\r
95         throw new MediaFailure(e);\r
96       }\r
97 \r
98       mediaEntity.setValues(values);\r
99       mediaId = mediaEntity.insert();\r
100 \r
101       try {\r
102         mediaHandler.set(aFile.getInputStream(), mediaEntity, mediaType);\r
103       }\r
104       catch (Throwable e) {\r
105         throw new MediaFailure(e);\r
106       }\r
107 \r
108       return mediaEntity;\r
109     }\r
110     catch (Throwable e) {\r
111       throw new MediaFailure(e);\r
112     }\r
113 \r
114   }\r
115 }