producing the topic-pages at open-posting is to heavy, that has to be more intelligent
[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     
162     
163     /** @todo popups missing */
164     try{
165       mergeData.put("languagePopUpData",DatabaseLanguage.getInstance().getPopupData());
166       mergeData.put("themenPopupData", themenModule.getTopicsAsSimpleList());
167     } catch (Exception e) {
168       theLog.printError("languagePopUpData or getTopicslist failed");
169       throw new ServletModuleException("smod -- openindy -- getting language or topics failed: "+e.toString());
170     }
171     deliver(req, res, mergeData, postingFormTemplate);
172   }
173
174   /**
175    *  Method for inserting an open posting into the Database and delivering
176    *  the postingDone Page
177    */
178
179   public void insposting(HttpServletRequest req, HttpServletResponse res)
180     throws ServletModuleException, ServletModuleUserException
181   {
182     SimpleHash mergeData = new SimpleHash();
183     boolean setMedia=false;
184                 boolean setTopic = false;
185
186     try {
187       WebdbMultipartRequest mp = new WebdbMultipartRequest(req);
188           
189       HashMap withValues = mp.getParameters();
190
191       if ((((String)withValues.get("title")).length() == 0) ||
192           (((String)withValues.get("description")).length() == 0) ||
193           (((String)withValues.get("content_data")).length() == 0))
194             throw new ServletModuleUserException("Missing field");
195       
196       // call the routines that escape html
197
198       for (Iterator i=withValues.keySet().iterator(); i.hasNext(); ){
199         String k=(String)i.next();
200         String v=(String)withValues.get(k);
201         
202         if (k.equals("content_data")){
203           //this doesn't quite work yet, so for now, all html goes
204           //withValues.put(k,StringUtil.approveHTMLTags(v));
205           //withValues.put(k,StringUtil.removeHTMLTags(v));
206         } else {
207           withValues.put(k,StringUtil.removeHTMLTags(v));
208         }
209         
210       }
211
212       withValues.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));
213       withValues.put("publish_path", StringUtil.webdbDate2path((String)withValues.get("date")));
214       withValues.put("is_produced", "0");
215       // op-articles are not immediatly published
216       // we don't know that all is good yet (media, title is present, etc..)
217       withValues.put("is_published","0");
218       // if op direct article-type == newswire
219       if (directOp.equals("yes")) withValues.put("to_article_type","1");
220       
221       // owner is openposting user
222       withValues.put("to_publisher","1");
223       if (withValues.get("creator").toString().equals(""))
224         withValues.put("creator","Anonym");
225
226       // inserting  content into database
227       String cid = contentModule.add(withValues);
228       theLog.printDebugInfo("id: "+cid);
229       //insert was not successfull
230       if(cid==null){
231         //How do we know that it was not succesful cause of a
232         //dupe, what if it failed cause of "No space left on device"?
233         //Or is there something I am missing? Wouldn't it be better
234         //to have an explicit dupe check and then insert? I have no
235         //idea what I am talking about. this comment is in case
236         //I forget to explicitely ask. -mh
237         deliver(req, res, mergeData, postingFormDupeTemplate);
238       }
239
240       String[] to_topicsArr = mp.getParameterValues("to_topic");
241       
242                         if (to_topicsArr != null && to_topicsArr.length > 0) {
243         try{
244           DatabaseContentToTopics.getInstance().setTopics(cid,to_topicsArr);
245                 setTopic = true;
246                                         theLog.printError("setting content_x_topic success");
247         } catch (Exception e) {
248           theLog.printError("setting content_x_topic failed");
249           contentModule.deleteById(cid);
250           throw new ServletModuleException("smod - openindy :: insposting: setting content_x_topic failed: "+e.toString());
251         } //end try
252       } //end if
253         
254       // if op contains uploaddata
255       String mediaId=null;
256       int i=1;
257       for(Iterator it = mp.requestList.iterator(); it.hasNext();){
258         MpRequest mpReq = (MpRequest)it.next();
259         String fileName = mpReq.getFilename();
260
261         //get the content-type from what the client browser
262         //sends us. (the "Oreilly method")
263         String contentType = mpReq.getContentType();
264
265         theLog.printError("FROM BROWSER: "+contentType);
266
267         //if the client browser sent us unknown (text/plain is default)
268         //or if we got application/octet-stream, it's possible that
269         //the browser is in error, better check against the file extension
270         if (contentType.equals("text/plain") ||
271             contentType.equals("application/octet-stream")) {
272             /**
273              * This is just a temporary way to get the content-type via
274              * the .extension , we could maybe use a magic method, by looking
275              * at the header (first few bytes) of the file. (like the file(1)
276              * command).
277              * The Oreilly method  relies on the content-type that the client
278              * browser sends and that sometimes is application-octet stream with
279              * broken/mis-configured browsers.
280              *
281              * The map file should be Mir/content-types.properties, it's the
282              * default Sun Java file with some additional entries that it did
283              * not have. So if you support a new media type you have to make
284              * sure that it is in this file -mh
285              */
286             contentType = FileUtil.guessContentTypeFromName(fileName);
287             theLog.printError("tYPE: "+contentType);
288             if (contentType==null)
289                 contentType = "text/plain"; // rfc1867 says this is the default
290         }
291         HashMap mediaValues = new HashMap();
292
293         theLog.printError("CONTENT TYPE IS: "+contentType);
294         
295         if (contentType.equals("text/plain") ||
296             contentType.equals("application/octet-stream")) {
297           throw new ServletModuleUserException("One or more files of unrecognized types");
298         }
299
300         String mediaTitle=(String)withValues.get("media_title"+i);
301         i++;
302
303         if (mediaTitle==null)
304             mediaTitle = (String)withValues.get("title");
305
306         mediaValues.put("title", mediaTitle);
307         mediaValues.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));
308         mediaValues.put("to_publisher", "1"); // op user
309         mediaValues.put("to_media_folder", "7"); // op media_folder
310         mediaValues.put("is_produced", "0");
311         mediaValues.put("is_published","0");
312
313         //the where clause to find the media_type entry
314         //from the content-type.
315         //we use the media type entry to lookup the
316         //media Handler/Storage classes
317         String wc = " mime_type='"+contentType+"'";
318
319         EntityList mediaTypesList = DatabaseMediaType.getInstance().selectByWhereClause(wc);
320
321         String mediaTypeId = null;
322         String mediaStorageName = null;
323         String mediaHandlerName = null;
324  
325         //if we found an entry matching the
326         //content-type int the table.
327         if (mediaTypesList.size() > 0) {
328           //get the class names from the media_type table.
329           mediaTypeId = mediaTypesList.elementAt(0).getId();
330           mediaStorageName = mediaTypesList.elementAt(0).getValue("tablename");
331           mediaHandlerName = mediaTypesList.elementAt(0).getValue("classname");
332           mediaValues.put("to_media_type",mediaTypeId);
333          
334           //load the classes via reflection
335           String MediaId;
336           Entity mediaEnt = null;
337           try {
338             Class mediaStorageClass = Class.forName("mircoders.storage.Database"+mediaStorageName);
339             Method m = mediaStorageClass.getMethod("getInstance", null);
340             Database mediaStorage = (Database)m.invoke(null, null);
341             mediaEnt = (Entity)mediaStorage.getEntityClass().newInstance();
342             mediaEnt.setStorage(mediaStorage);
343             mediaEnt.setValues(mediaValues);
344             mediaId = mediaEnt.insert();
345
346             Class mediaHandlerClass = Class.forName("mir.media.MediaHandler"+mediaHandlerName);
347             MirMedia mediaHandler = (MirMedia)mediaHandlerClass.newInstance();
348             //save and store the media data/metadata
349             mediaHandler.set(mpReq.getMedia(), mediaEnt,mediaTypesList.elementAt(0));
350
351             //were done with mpReq at this point, dereference it.
352             //as it contains mucho mem. -mh 01.10.2001
353             mpReq=null;
354               
355             //we got this far, associate the media to the article
356             theLog.printError("ID"+mediaId);
357             mediaEnt.setValueForProperty("is_published","1");
358             mediaEnt.update();
359             new ProducerMedia().handle(null,null,false,false,mediaId);
360             DatabaseContentToMedia.getInstance().addMedia(cid,mediaId);
361           } catch (Exception e) {
362             theLog.printError("setting media failed: "+e.toString());
363             contentModule.deleteById(cid);
364             throw new ServletModuleException("setting media failed: "+e.toString());
365           }
366
367         } else {
368           contentModule.deleteById(cid);
369           theLog.printDebugInfo("Wrong file type uploaded!: " + fileName);
370           throw new ServletModuleUserException("One or more files of unrecognized types");
371         } // end if-else mediaTypesList.size() > 0
372           
373       } //end for Iterator...
374
375       //if we're here all is ok...
376       EntityContent contentEnt = (EntityContent)contentModule.getById(cid);
377       contentEnt.setValueForProperty("is_published","1");
378       contentEnt.update();
379
380       //dereference mp. -mh
381       mp=null;
382
383       // producing openpostinglist
384       new ProducerOpenPosting().handle(null,null,false,false);
385       // producing new page
386       new ProducerContent().handle(null, null, false, false,cid);
387       //if direct op producing startpage
388       if (directOp.equals("yes")) new ProducerStartPage().handle(null,null);
389       
390                         //produce the topicPages if set
391                         //should be more intelligent
392                         //if(setTopic==true) new ProducerTopics().handle(null,null);
393                         
394       // sync the server
395       //should be configureable
396       int exitValue = Helper.rsync();
397       theLog.printDebugInfo("rsync: "+exitValue);
398
399     }
400     catch (IOException e) { throw new ServletModuleException("IOException: "+ e.toString());}
401     catch (StorageObjectException e) { throw new ServletModuleException("StorageObjectException" + e.toString());}
402     catch (ModuleException e) { throw new ServletModuleException("ModuleException"+e.toString());}
403
404     deliver(req, res, mergeData, postingFormDoneTemplate);
405   }
406
407 }
408
409