- documentation for the Media handling interface. See MirMedia.java and
[mir.git] / source / mircoders / servlet / ServletModuleOpenIndy.java
1 package mircoders.servlet;
2
3 import java.io.*;
4 import java.lang.*;
5 import java.sql.*;
6 import java.util.*;
7 import java.net.*;
8 import java.lang.reflect.*;
9 import javax.servlet.*;
10 import javax.servlet.http.*;
11
12 import freemarker.template.*;
13 import com.oreilly.servlet.multipart.*;
14 import com.oreilly.servlet.*;
15
16 import mir.servlet.*;
17 import mir.module.*;
18 import mir.misc.*;
19 import mir.entity.*;
20 import mir.storage.*;
21 import mir.media.*;
22
23 import mircoders.entity.*;
24 import mircoders.storage.*;
25 import mircoders.module.*;
26 import mircoders.producer.*;
27
28 /*
29  *  ServletModuleOpenIndy -
30  *   is the open-access-servlet, which is responsible for
31  *    adding comments to articles &
32  *    open-postings to the newswire
33  *
34  * @author RK
35  */
36
37 public class ServletModuleOpenIndy extends ServletModule
38 {
39
40   private String          commentFormTemplate, commentFormDoneTemplate, commentFormDupeTemplate;
41   private String          postingFormTemplate, postingFormDoneTemplate, postingFormDupeTemplate;
42   private ModuleContent   contentModule;
43   private ModuleImages    imageModule;
44   private ModuleTopics    themenModule;
45   private String          directOp ="yes";
46
47   // Singelton / Kontruktor
48   private static ServletModuleOpenIndy instance = new ServletModuleOpenIndy();
49   public static ServletModule getInstance() { return instance; }
50
51   private ServletModuleOpenIndy() {
52     try {
53       theLog = Logfile.getInstance(MirConfig.getProp("Home") + MirConfig.getProp("ServletModule.OpenIndy.Logfile"));
54       commentFormTemplate = MirConfig.getProp("ServletModule.OpenIndy.CommentTemplate");
55       commentFormDoneTemplate = MirConfig.getProp("ServletModule.OpenIndy.CommentDoneTemplate");
56       commentFormDupeTemplate = MirConfig.getProp("ServletModule.OpenIndy.CommentDupeTemplate");
57       postingFormTemplate = MirConfig.getProp("ServletModule.OpenIndy.PostingTemplate");
58       postingFormDoneTemplate = MirConfig.getProp("ServletModule.OpenIndy.PostingDoneTemplate");
59       postingFormDupeTemplate = MirConfig.getProp("ServletModule.OpenIndy.PostingDupeTemplate");
60       directOp = MirConfig.getProp("DirectOpenposting").toLowerCase();
61       mainModule = new ModuleComment(DatabaseComment.getInstance());
62       contentModule = new ModuleContent(DatabaseContent.getInstance());
63       themenModule = new ModuleTopics(DatabaseTopics.getInstance());
64       imageModule = new ModuleImages(DatabaseImages.getInstance());
65       defaultAction="addposting";
66     }
67     catch (StorageObjectException e) {
68         theLog.printError("servletmoduleopenindy could not be initialized");
69     }
70   }
71
72
73   /**
74    *  Method for making a comment
75    */
76
77   public void addcomment(HttpServletRequest req, HttpServletResponse res) throws ServletModuleException
78   {
79     String aid = req.getParameter("aid"); // the article id the comment will belong to
80     if (aid!=null && !aid.equals(""))
81     {
82       SimpleHash mergeData = new SimpleHash();
83       // ok, article
84       mergeData.put("aid", aid);
85       deliver(req, res, mergeData, commentFormTemplate);
86     }
87     else throw new ServletModuleException("aid not set!");
88   }
89
90   /**
91    *  Method for inserting a comment into the Database and delivering
92    *  the commentDone Page
93    */
94
95   public void inscomment(HttpServletRequest req, HttpServletResponse res) throws ServletModuleException
96   {
97     String aid = req.getParameter("to_media"); // the article id the comment will belong to
98     if (aid!=null && !aid.equals(""))
99     {
100       // ok, collecting data from form
101       try {
102         HashMap withValues = getIntersectingValues(req, DatabaseComment.getInstance());
103        
104         //no html in comments(for now)
105         for (Iterator i=withValues.keySet().iterator(); i.hasNext(); ){
106             String k=(String)i.next();
107             String v=(String)withValues.get(k);
108             
109             withValues.put(k,StringUtil.removeHTMLTags(v));
110         }
111         withValues.put("is_published","1");
112
113         // inserting into database
114         String id = mainModule.add(withValues);
115         theLog.printDebugInfo("id: "+id);
116         //insert was not successfull
117         if(id==null){
118           deliver(req, res, new SimpleHash(), commentFormDupeTemplate);
119         }
120         
121         // producing new page
122         new ProducerContent().handle(null, null, true, false, aid);
123
124         // sync the server
125         int exitValue = Helper.rsync();
126         theLog.printDebugInfo("rsync:"+exitValue);
127
128         // redirecting to url
129         // should implement back to article
130         SimpleHash mergeData = new SimpleHash();
131         deliver(req, res, mergeData, commentFormDoneTemplate);
132       }
133       catch (StorageObjectException e) { throw new ServletModuleException(e.toString());}
134       catch (ModuleException e) { throw new ServletModuleException(e.toString());}
135
136     }
137     else throw new ServletModuleException("aid not set!");
138
139   }
140
141   /**
142    *  Method for delivering the form-Page for open posting
143    */
144
145   public void addposting(HttpServletRequest req, HttpServletResponse res) throws ServletModuleException
146   {
147     SimpleHash mergeData = new SimpleHash();
148     String numOfMedia = req.getParameter("medianum");
149     if(numOfMedia==null||numOfMedia.equals("")){
150       numOfMedia="1";
151     }
152     
153     int mediaNum = Integer.parseInt(numOfMedia);
154     SimpleList mediaFields = new SimpleList();
155     for(int i =0; i<mediaNum;i++){
156       Integer mNum = new Integer(i+1);
157       mediaFields.add(mNum.toString());
158     }
159     mergeData.put("medianum",numOfMedia);
160     mergeData.put("mediafields",mediaFields);
161     mergeData.put("themenPopupData", themenModule.getTopicsAsSimpleList());
162     
163     
164     /** @todo popups missing */
165     try{
166       mergeData.put("languagePopUpData",DatabaseLanguage.getInstance().getPopupData());
167     } catch (Exception e) {
168       theLog.printError("languagePopUpData failed");
169     }
170     deliver(req, res, mergeData, postingFormTemplate);
171   }
172
173   /**
174    *  Method for inserting an open posting into the Database and delivering
175    *  the postingDone Page
176    */
177
178   public void insposting(HttpServletRequest req, HttpServletResponse res)
179     throws ServletModuleException
180   {
181     SimpleHash mergeData = new SimpleHash();
182     boolean setMedia=false;
183
184     try {
185       WebdbMultipartRequest mp = new WebdbMultipartRequest(req);
186           
187       HashMap withValues = mp.getParameters();
188       
189       // call the routines that escape html
190
191       for (Iterator i=withValues.keySet().iterator(); i.hasNext(); ){
192         String k=(String)i.next();
193         String v=(String)withValues.get(k);
194         
195         if (k.equals("content_data")){
196           //this doesn't quite work yet, so for now, all html goes
197           //withValues.put(k,StringUtil.approveHTMLTags(v));
198           //withValues.put(k,StringUtil.removeHTMLTags(v));
199         } else {
200           withValues.put(k,StringUtil.removeHTMLTags(v));
201         }
202         
203       }
204
205       withValues.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));
206       withValues.put("publish_path", StringUtil.webdbDate2path((String)withValues.get("date")));
207       withValues.put("is_produced", "0");
208       // op-articles are immediatly published
209       withValues.put("is_published","1");
210       // if op direct article-type == newswire
211       if (directOp.equals("yes")) withValues.put("to_article_type","1");
212       
213       // owner is openposting user
214       withValues.put("to_publisher","1");
215       if (withValues.get("creator").toString().equals(""))
216         withValues.put("creator","Anonym");
217
218       // inserting  content into database
219       String cid = contentModule.add(withValues);
220       theLog.printDebugInfo("id: "+cid);
221       //insert was not successfull
222       if(cid==null){
223         deliver(req, res, mergeData, postingFormDupeTemplate);
224       }
225
226       String[] to_topicsArr = mp.getParameterValues("to_topic");
227       if (to_topicsArr != null && to_topicsArr.length > 0) {
228         try{
229           DatabaseContentToTopics.getInstance().setTopics(cid,to_topicsArr);
230           theLog.printError("setting content_x_topic success");
231         } catch (Exception e) {
232           theLog.printError("setting content_x_topic failed");
233         } //end try
234       } //end if
235         
236       // if op contains uploaddata
237       String mediaId=null;
238       int i=1;
239       for(Iterator it = mp.requestList.iterator(); it.hasNext();){
240         MpRequest mpReq = (MpRequest)it.next();
241         String fileName = mpReq.getFilename();
242         //This is just a temporary way to get the content-type via
243         //the .extension , we need to use a magic method, by looking
244         //at the header (first few bytes) of the file. -mh
245         //the Oreilly method sucks cause it rely's on the what
246         //content-type the client browser sends and that's
247         //too often application-octet stream.
248         String contentType = FileUtil.guessContentTypeFromName(fileName);
249         HashMap mediaValues = new HashMap();
250
251         theLog.printError("CONTENT TYPE IS: "+contentType);
252         
253         //The map file should be Mir/content-types.properties, it's the 
254         //default Sun Java file+ some entries that it did not have.
255         //so if you support a new media type you have to make sure that
256         //it is in this file
257         if ((contentType==null) || (contentType=="application/octet-stream")) {
258           throw new ServletModuleException("ModuleException: One or more files of unrecognized types");
259         }
260
261         String mediaTitle=(String)withValues.get("media_title"+i);
262         i++;
263
264         if (mediaTitle==null)
265             mediaTitle = (String)withValues.get("title");
266
267         mediaValues.put("title", mediaTitle);
268         mediaValues.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));
269         mediaValues.put("to_publisher", "1"); // op user
270         mediaValues.put("to_media_folder", "7"); // op media_folder
271         mediaValues.put("is_produced", "0");
272         mediaValues.put("is_published","1");
273
274         //the where clause to find the media_type entry
275         //from the content-type.
276         //we use the media type entry to lookup the 
277         //media Handler/Storage classes
278         String wc = " mime_type='"+contentType+"'";
279
280         EntityList mediaTypesList = DatabaseMediaType.getInstance().selectByWhereClause(wc);
281
282         String mediaTypeId = null;
283         String mediaStorageName = null;
284         String mediaHandlerName = null;
285  
286         //if we found an entry matching the
287         //content-type int the table.
288         if (mediaTypesList.size() > 0) {
289           //get the class names from the media_type table.
290           mediaTypeId = mediaTypesList.elementAt(0).getId();
291           mediaStorageName = mediaTypesList.elementAt(0).getValue("tablename");
292           mediaHandlerName = mediaTypesList.elementAt(0).getValue("classname");
293           mediaValues.put("to_media_type",mediaTypeId);
294          
295           //load the classes via reflection
296           String MediaId;
297           try {
298                 Class mediaStorageClass = Class.forName("mircoders.storage.Database"+mediaStorageName);
299                 Method m = mediaStorageClass.getMethod("getInstance", null);
300                 Database mediaStorage = (Database)m.invoke(null, null);
301                 Entity mediaEnt = (Entity)mediaStorage.getEntityClass().newInstance();
302                 mediaEnt.setStorage(mediaStorage);
303                 mediaEnt.setValues(mediaValues);
304                 mediaId = mediaEnt.insert();
305
306                 Class mediaHandlerClass = Class.forName("mir.media.MediaHandler"+mediaHandlerName);
307                 MirMedia mediaHandler = (MirMedia)mediaHandlerClass.newInstance();
308                 //save and store the media data/metadata
309                 mediaHandler.set(mpReq.getMedia(), mediaEnt,mediaTypesList.elementAt(0));
310
311                 //were done with mpReq at this point, dereference it. as it contains
312                 //mucho mem. -mh 01.10.2001
313                 mpReq=null;
314               
315               if(mediaId!=null){
316                 new ProducerMedia().handle(null, null, false, false, mediaId);
317               }
318           } catch (Exception e) {
319                 theLog.printError("setting uploaded_media failed: "+e.toString());
320           } //end try-catch
321               
322           //we got this far, associate the media to the article
323           try{
324               DatabaseContentToMedia.getInstance().addMedia(cid,mediaId);
325               theLog.printError("setting content_x_media success");
326           } catch (Exception e) {
327               theLog.printError("setting content_x_media failed");
328           }
329
330         } else {
331           theLog.printDebugInfo("Wrong file uploaded!: " + fileName);
332           throw new ServletModuleException("ModuleException: One or more files of unrecognized types");
333         } // end if-else mediaTypesList.size() > 0
334           
335       } //end for Iterator...
336
337       //dereference mp. -mh
338       mp=null;
339
340       // producing openpostinglist
341       new ProducerOpenPosting().handle(null,null,false,false);
342       // producing new page
343       new ProducerContent().handle(null, null, false, false,cid);
344       //if direct op producing startpage
345       if (directOp.equals("yes")) new ProducerStartPage().handle(null,null);
346       
347       // sync the server
348       //should be configureable
349       int exitValue = Helper.rsync();
350       theLog.printDebugInfo("rsync: "+exitValue);
351
352     }
353     catch (IOException e) { throw new ServletModuleException("IOException: "+ e.toString());}
354     catch (StorageObjectException e) { throw new ServletModuleException("StorageObjectException" + e.toString());}
355     catch (ModuleException e) { throw new ServletModuleException("ModuleException"+e.toString());}
356
357     deliver(req, res, mergeData, postingFormDoneTemplate);
358     //System.gc();
359   }
360
361 }
362
363