ProducerList is now converted to the new way to handle media.
[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         String contentType = FileUtil.guessContentTypeFromName(fileName);
243         HashMap mediaValues = new HashMap();
244
245         theLog.printError("CONTENT TYPE IS: "+contentType);
246
247         if ((contentType==null) || (contentType=="application/octet-stream")) {
248           throw new ServletModuleException("ModuleException: One or more files of unrecognized types");
249         }
250
251
252         String mediaTitle=(String)withValues.get("media_title"+i);
253         i++;
254
255         if (mediaTitle==null)
256             mediaTitle = (String)withValues.get("title");
257
258         mediaValues.put("title", mediaTitle);
259         mediaValues.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));
260         mediaValues.put("to_publisher", "1"); // op user
261         mediaValues.put("to_media_folder", "7"); // op media_folder
262         mediaValues.put("is_produced", "0");
263         mediaValues.put("is_published","1");
264
265         String wc = " mime_type='"+contentType+"'";
266
267         EntityList mediaTypesList = DatabaseMediaType.getInstance().selectByWhereClause(wc);
268
269         String mediaTypeId = null;
270         String mediaStorageName = null;
271         String mediaHandlerName = null;
272   
273         if (mediaTypesList.size() > 0) {
274           mediaTypeId = mediaTypesList.elementAt(0).getId();
275           mediaStorageName = mediaTypesList.elementAt(0).getValue("tablename");
276           mediaHandlerName = mediaTypesList.elementAt(0).getValue("classname");
277           mediaValues.put("to_media_type",mediaTypeId);
278           
279           String MediaId;
280           try {
281                 Class mediaStorageClass = Class.forName("mircoders.storage.Database"+mediaStorageName);
282                 Method m = mediaStorageClass.getMethod("getInstance", null);
283                 Database mediaStorage = (Database)m.invoke(null, null);
284                 Entity mediaEnt = (Entity)mediaStorage.getEntityClass().newInstance();
285                 mediaEnt.setStorage(mediaStorage);
286                 mediaEnt.setValues(mediaValues);
287                 mediaId = mediaEnt.insert();
288
289                 Class mediaHandlerClass = Class.forName("mir.media.MediaHandler"+mediaHandlerName);
290                 MirMedia mediaHandler = (MirMedia)mediaHandlerClass.newInstance();
291                 mediaHandler.set(mpReq.getMedia(), mediaEnt,mediaTypesList.elementAt(0));
292
293                 //were done with mpReq at this point, dereference it. as it contains
294                 //mucho mem. -mh 01.10.2001
295                 mpReq=null;
296
297               if(mediaId!=null){
298                 new ProducerMedia().handle(null, null, false, false, mediaId);
299               }
300           } catch (Exception e) {
301                 theLog.printError("setting uploaded_media failed: "+e.toString());
302           } //end try-catch
303               
304
305           try{
306               DatabaseContentToMedia.getInstance().addMedia(cid,mediaId);
307               theLog.printError("setting content_x_media success");
308           } catch (Exception e) {
309               theLog.printError("setting content_x_media failed");
310           }
311
312         } else {
313           theLog.printDebugInfo("Wrong file uploaded!: " + fileName);
314           throw new ServletModuleException("ModuleException: One or more files of unrecognized types");
315         } // end if-else mediaTypesList.size() > 0
316           
317       } //end for Iterator...
318
319       //dereference mp. -mh
320       mp=null;
321
322       // producing openpostinglist
323       new ProducerOpenPosting().handle(null,null,false,false);
324       // producing new page
325       new ProducerContent().handle(null, null, false, false,cid);
326       //if direct op producing startpage
327       if (directOp.equals("yes")) new ProducerStartPage().handle(null,null);
328       
329       // sync the server
330       //should be configureable
331       int exitValue = Helper.rsync();
332       theLog.printDebugInfo("rsync: "+exitValue);
333
334     }
335     catch (IOException e) { throw new ServletModuleException("IOException: "+ e.toString());}
336     catch (StorageObjectException e) { throw new ServletModuleException("StorageObjectException" + e.toString());}
337     catch (ModuleException e) { throw new ServletModuleException("ModuleException"+e.toString());}
338
339     deliver(req, res, mergeData, postingFormDoneTemplate);
340     //System.gc();
341   }
342
343 }
344
345