popup
[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,
41                         commentFormDupeTemplate;
42   private String        postingFormTemplate, postingFormDoneTemplate,
43                         postingFormDupeTemplate;
44   private ModuleContent contentModule;
45   private ModuleImages  imageModule;
46   private ModuleTopics  themenModule;
47   private String        directOp ="yes";
48
49   // Singelton / Kontruktor
50   private static ServletModuleOpenIndy instance = new ServletModuleOpenIndy();
51   public static ServletModule getInstance() { return instance; }
52
53   private ServletModuleOpenIndy() {
54     try {
55       theLog = Logfile.getInstance(MirConfig.getProp("Home") + MirConfig.getProp("ServletModule.OpenIndy.Logfile"));
56       commentFormTemplate = MirConfig.getProp("ServletModule.OpenIndy.CommentTemplate");
57       commentFormDoneTemplate = MirConfig.getProp("ServletModule.OpenIndy.CommentDoneTemplate");
58       commentFormDupeTemplate = MirConfig.getProp("ServletModule.OpenIndy.CommentDupeTemplate");
59       postingFormTemplate = MirConfig.getProp("ServletModule.OpenIndy.PostingTemplate");
60       postingFormDoneTemplate = MirConfig.getProp("ServletModule.OpenIndy.PostingDoneTemplate");
61       postingFormDupeTemplate = MirConfig.getProp("ServletModule.OpenIndy.PostingDupeTemplate");
62       directOp = MirConfig.getProp("DirectOpenposting").toLowerCase();
63       mainModule = new ModuleComment(DatabaseComment.getInstance());
64       contentModule = new ModuleContent(DatabaseContent.getInstance());
65       themenModule = new ModuleTopics(DatabaseTopics.getInstance());
66       imageModule = new ModuleImages(DatabaseImages.getInstance());
67       defaultAction="addposting";
68     }
69     catch (StorageObjectException e) {
70         theLog.printError("servletmoduleopenindy could not be initialized");
71     }
72   }
73
74
75   /**
76    *  Method for making a comment
77    */
78
79   public void addcomment(HttpServletRequest req, HttpServletResponse res) throws ServletModuleException
80   {
81     String aid = req.getParameter("aid"); // the article id the comment will belong to
82     if (aid!=null && !aid.equals(""))
83     {
84       SimpleHash mergeData = new SimpleHash();
85       // ok, article
86       mergeData.put("aid", aid);
87       deliver(req, res, mergeData, commentFormTemplate);
88     }
89     else throw new ServletModuleException("aid not set!");
90   }
91
92   /**
93    *  Method for inserting a comment into the Database and delivering
94    *  the commentDone Page
95    */
96
97   public void inscomment(HttpServletRequest req, HttpServletResponse res) throws ServletModuleException
98   {
99     String aid = req.getParameter("to_media"); // the article id the comment will belong to
100     if (aid!=null && !aid.equals(""))
101     {
102       // ok, collecting data from form
103       try {
104         HashMap withValues = getIntersectingValues(req, DatabaseComment.getInstance());
105        
106         //no html in comments(for now)
107         for (Iterator i=withValues.keySet().iterator(); i.hasNext(); ){
108             String k=(String)i.next();
109             String v=(String)withValues.get(k);
110             
111             withValues.put(k,StringUtil.removeHTMLTags(v));
112         }
113         withValues.put("is_published","1");
114
115         // inserting into database
116         String id = mainModule.add(withValues);
117         theLog.printDebugInfo("id: "+id);
118         //insert was not successfull
119         if(id==null){
120           deliver(req, res, new SimpleHash(), commentFormDupeTemplate);
121         }
122         
123         // producing new page
124         new ProducerContent().handle(null, null, true, false, aid);
125
126         // sync the server
127         int exitValue = Helper.rsync();
128         theLog.printDebugInfo("rsync:"+exitValue);
129
130         // redirecting to url
131         // should implement back to article
132         SimpleHash mergeData = new SimpleHash();
133         deliver(req, res, mergeData, commentFormDoneTemplate);
134       }
135       catch (StorageObjectException e) { throw new ServletModuleException(e.toString());}
136       catch (ModuleException e) { throw new ServletModuleException(e.toString());}
137
138     }
139     else throw new ServletModuleException("aid not set!");
140
141   }
142
143   /**
144    *  Method for delivering the form-Page for open posting
145    */
146
147   public void addposting(HttpServletRequest req, HttpServletResponse res)
148     throws ServletModuleException {
149     SimpleHash mergeData = new SimpleHash();
150     String numOfMedia = req.getParameter("medianum");
151     if(numOfMedia==null||numOfMedia.equals("")){
152       numOfMedia="1";
153     }
154     
155     int mediaNum = Integer.parseInt(numOfMedia);
156     SimpleList mediaFields = new SimpleList();
157     for(int i =0; i<mediaNum;i++){
158       Integer mNum = new Integer(i+1);
159       mediaFields.add(mNum.toString());
160     }
161     mergeData.put("medianum",numOfMedia);
162     mergeData.put("mediafields",mediaFields);
163     
164     
165     SimpleHash extraInfo = new SimpleHash();
166     /** @todo popups missing */
167     try{
168       SimpleList popUpData = DatabaseLanguage.getInstance().getPopupData();
169       extraInfo.put("languagePopUpData", popUpData );
170       extraInfo.put("themenPopupData", themenModule.getTopicsAsSimpleList());
171     } catch (Exception e) {
172       theLog.printError("languagePopUpData or getTopicslist failed "
173                         +e.toString());
174       throw new ServletModuleException("OpenIndy -- failed getting language or topics: "+e.toString());
175     } 
176       
177     deliver(req, res, mergeData, extraInfo, postingFormTemplate);
178   }
179
180   /**
181    *  Method for inserting an open posting into the Database and delivering
182    *  the postingDone Page
183    */
184
185   public void insposting(HttpServletRequest req, HttpServletResponse res)
186     throws ServletModuleException, ServletModuleUserException
187   {
188     SimpleHash mergeData = new SimpleHash();
189     boolean setMedia=false;
190                 boolean setTopic = false;
191
192     try {
193       WebdbMultipartRequest mp = new WebdbMultipartRequest(req);
194           
195       HashMap withValues = mp.getParameters();
196
197       if ((((String)withValues.get("title")).length() == 0) ||
198           (((String)withValues.get("description")).length() == 0) ||
199           (((String)withValues.get("content_data")).length() == 0))
200             throw new ServletModuleUserException("Missing field");
201       
202       // call the routines that escape html
203
204       for (Iterator i=withValues.keySet().iterator(); i.hasNext(); ){
205         String k=(String)i.next();
206         String v=(String)withValues.get(k);
207         
208         if (k.equals("content_data")){
209           //this doesn't quite work yet, so for now, all html goes
210           //withValues.put(k,StringUtil.approveHTMLTags(v));
211           //withValues.put(k,StringUtil.removeHTMLTags(v));
212         } else {
213           withValues.put(k,StringUtil.removeHTMLTags(v));
214         }
215         
216       }
217
218       withValues.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));
219       withValues.put("publish_path", StringUtil.webdbDate2path((String)withValues.get("date")));
220       withValues.put("is_produced", "0");
221       // op-articles are not immediatly published
222       // we don't know that all is good yet (media, title is present, etc..)
223       withValues.put("is_published","0");
224       // if op direct article-type == newswire
225       if (directOp.equals("yes")) withValues.put("to_article_type","1");
226       
227       // owner is openposting user
228       withValues.put("to_publisher","1");
229       if (withValues.get("creator").toString().equals(""))
230         withValues.put("creator","Anonym");
231
232       // inserting  content into database
233       String cid = contentModule.add(withValues);
234       theLog.printDebugInfo("id: "+cid);
235       //insert was not successfull
236       if(cid==null){
237         //How do we know that it was not succesful cause of a
238         //dupe, what if it failed cause of "No space left on device"?
239         //Or is there something I am missing? Wouldn't it be better
240         //to have an explicit dupe check and then insert? I have no
241         //idea what I am talking about. this comment is in case
242         //I forget to explicitely ask. -mh
243         deliver(req, res, mergeData, postingFormDupeTemplate);
244       }
245
246       String[] to_topicsArr = mp.getParameterValues("to_topic");
247       
248                         if (to_topicsArr != null && to_topicsArr.length > 0) {
249         try{
250           DatabaseContentToTopics.getInstance().setTopics(cid,to_topicsArr);
251           setTopic = true;
252         } catch (Exception e) {
253           theLog.printError("setting content_x_topic failed");
254           contentModule.deleteById(cid);
255           throw new ServletModuleException("smod - openindy :: insposting: setting content_x_topic failed: "+e.toString());
256         } //end try
257       } //end if
258         
259       // if op contains uploaddata
260       String mediaId=null;
261       int i=1;
262       for(Iterator it = mp.requestList.iterator(); it.hasNext();){
263         MpRequest mpReq = (MpRequest)it.next();
264         String fileName = mpReq.getFilename();
265
266         //get the content-type from what the client browser
267         //sends us. (the "Oreilly method")
268         String contentType = mpReq.getContentType();
269
270         theLog.printInfo("FROM BROWSER: "+contentType);
271
272         //if the client browser sent us unknown (text/plain is default)
273         //or if we got application/octet-stream, it's possible that
274         //the browser is in error, better check against the file extension
275         if (contentType.equals("text/plain") ||
276             contentType.equals("application/octet-stream")) {
277             /**
278              * This is just a temporary way to get the content-type via
279              * the .extension , we could maybe use a magic method, by looking
280              * at the header (first few bytes) of the file. (like the file(1)
281              * command).
282              * The Oreilly method  relies on the content-type that the client
283              * browser sends and that sometimes is application-octet stream with
284              * broken/mis-configured browsers.
285              *
286              * The map file should be Mir/content-types.properties, it's the
287              * default Sun Java file with some additional entries that it did
288              * not have. So if you support a new media type you have to make
289              * sure that it is in this file -mh
290              */
291             contentType = FileUtil.guessContentTypeFromName(fileName);
292             if (contentType==null)
293                 contentType = "text/plain"; // rfc1867 says this is the default
294         }
295         HashMap mediaValues = new HashMap();
296
297         theLog.printInfo("CONTENT TYPE IS: "+contentType);
298         
299         if (contentType.equals("text/plain") ||
300             contentType.equals("application/octet-stream")) {
301           throw new ServletModuleUserException("One or more files of unrecognized types");
302         }
303
304         String mediaTitle=(String)withValues.get("media_title"+i);
305         i++;
306
307         if (mediaTitle==null)
308             mediaTitle = (String)withValues.get("title");
309
310         mediaValues.put("title", mediaTitle);
311         mediaValues.put("date", StringUtil.date2webdbDate(new GregorianCalendar()));
312         mediaValues.put("to_publisher", "1"); // op user
313         mediaValues.put("to_media_folder", "7"); // op media_folder
314         mediaValues.put("is_produced", "0");
315         mediaValues.put("is_published","0");
316
317         //the where clause to find the media_type entry
318         //from the content-type.
319         //we use the media type entry to lookup the
320         //media Handler/Storage classes
321         //String wc = " mime_type = '"+contentType+"'";
322
323         // @todo this should probably be moved to DatabaseMediaType -mh
324         String[] cTypeSplit = StringUtil.split(contentType, "/");
325         String wc = " mime_type LIKE '"+cTypeSplit[0]+"%'";
326
327         DatabaseMediaType mediaTypeStor = DatabaseMediaType.getInstance();
328         EntityList mediaTypesList = mediaTypeStor.selectByWhereClause(wc);
329
330         String mediaTypeId = null;
331         MirMedia mediaHandler;
332         Database mediaStorage;
333         ProducerMedia mediaProducer;
334  
335         //if we found an entry matching the
336         //content-type int the table.
337         if (mediaTypesList.size() > 0) {
338           Entity mediaType = null;
339           
340           // find out if we an exact content-type match if so take it.
341           // otherwise just use the first one.
342           // @todo this should probably be moved to DatabaseMediaType -mh
343           for(int j=0;j<mediaTypesList.size();j++) {
344             if(contentType.equals(
345                             mediaTypesList.elementAt(j).getValue("mime_type")))
346               mediaType = mediaTypesList.elementAt(j);
347           }
348
349           if( mediaType == null )
350             mediaType = mediaTypesList.elementAt(0);
351                 
352           //get the class names from the media_type table.
353           mediaTypeId = mediaType.getId();
354           try {
355             // ############### @todo: merge these and the getURL call into one
356             // getURL helper call that just takes the Entity as a parameter
357             // along with media_type
358             mediaHandler = MediaHelper.getHandler(mediaType);
359             mediaStorage = MediaHelper.getStorage(mediaType,
360                                                 "mircoders.storage.Database");
361             Class prodCls = Class.forName("mircoders.producer.Producer"
362                                               +mediaType.getValue("tablename"));
363             mediaProducer = (ProducerMedia)prodCls.newInstance();
364           } catch (Exception e) {
365             theLog.printError("getting media handler failed: "+e.toString());
366             contentModule.deleteById(cid);
367             throw new ServletModuleException("getting media handler failed: "
368                                             +e.toString());
369           }
370
371           mediaValues.put("to_media_type",mediaTypeId);
372
373           //load the classes via reflection
374           String MediaId;
375           Entity mediaEnt = null;
376           try {
377             mediaEnt = (Entity)mediaStorage.getEntityClass().newInstance();
378             mediaEnt.setStorage(mediaStorage);
379             mediaEnt.setValues(mediaValues);
380             mediaId = mediaEnt.insert();
381
382             //save and store the media data/metadata
383             mediaHandler.set(mpReq.getMedia(), mediaEnt,
384                             mediaType);
385
386             //were done with mpReq at this point, dereference it.
387             //as it contains mucho mem. -mh 01.10.2001
388             mpReq=null;
389             
390             //we got this far, associate the media to the article
391             mediaEnt.setValueForProperty("is_published","1");
392             mediaEnt.update();
393             //produce it
394             mediaProducer.handle(null, null, false, false, mediaId);
395             DatabaseContentToMedia.getInstance().addMedia(cid,mediaId);
396           } catch (Exception e) {
397             theLog.printError("setting media failed: "+e.toString());
398             contentModule.deleteById(cid);
399             throw new ServletModuleException("setting media failed: "+e.toString());
400           }
401
402         } else {
403           contentModule.deleteById(cid);
404           theLog.printDebugInfo("Wrong file type uploaded!: " + fileName);
405           throw new ServletModuleUserException("One or more files of unrecognized types");
406         } // end if-else mediaTypesList.size() > 0
407           
408       } //end for Iterator...
409
410       //if we're here all is ok...
411       EntityContent contentEnt = (EntityContent)contentModule.getById(cid);
412       contentEnt.setValueForProperty("is_published","1");
413       contentEnt.update();
414
415
416       //dereference mp. -mh
417       mp=null;
418
419       // producing openpostinglist
420       new ProducerOpenPosting().handle(null,null,false,false);
421       // producing new page
422       new ProducerContent().handle(null, null, false, false,cid);
423       //if direct op producing startpage
424       if (directOp.equals("yes")) new ProducerStartPage().handle(null,null);
425       
426                         //produce the topicPages if set
427                         //should be more intelligent
428                         //if(setTopic==true) new ProducerTopics().handle(null,null);
429                         
430       // sync the server
431       //should be configureable
432       int exitValue = Helper.rsync();
433       theLog.printDebugInfo("rsync: "+exitValue);
434
435     }
436     catch (IOException e) { throw new ServletModuleException("IOException: "+ e.toString());}
437     catch (StorageObjectException e) { throw new ServletModuleException("StorageObjectException" + e.toString());}
438     catch (ModuleException e) { throw new ServletModuleException("ModuleException"+e.toString());}
439
440     deliver(req, res, mergeData, postingFormDoneTemplate);
441   }
442
443 }
444
445