f1d80021b56a44767a9e1c22349deedaffa1f74c
[mir.git] / ServletModuleHidden.java
1 /*
2  * Copyright (C) 2001, 2002 The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with  any library licensed under the Apache Software License, 
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library 
23  * (or with modified versions of the above that use the same license as the above), 
24  * and distribute linked combinations including the two.  You must obey the 
25  * GNU General Public License in all respects for all of the code used other than 
26  * the above mentioned libraries.  If you modify this file, you may extend this 
27  * exception to your version of the file, but you are not obligated to do so.  
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30 package mircoders.servlet;
31
32 import javax.servlet.http.HttpServletRequest;
33 import javax.servlet.http.HttpServletResponse;
34
35 import mir.entity.EntityList;
36 import mir.log.LoggerWrapper;
37 import mir.misc.HTMLTemplateProcessor;
38 import mir.servlet.ServletModule;
39 import mir.servlet.ServletModuleExc;
40 import mir.servlet.ServletModuleFailure;
41 import mir.storage.StorageObjectFailure;
42 import mircoders.module.ModuleContent;
43 import mircoders.storage.DatabaseContent;
44 import freemarker.template.SimpleHash;
45
46 /*
47  *  ServletModuleHidden - output of so called "censored" articles
48  *  @author mh
49  *  @version $Id
50  *
51  */
52
53 public class ServletModuleHidden extends ServletModule
54 {
55
56 // Singelton / Kontruktor
57   private static ServletModuleHidden instance = new ServletModuleHidden();
58   public static ServletModule getInstance() { return instance; }
59
60   private ServletModuleHidden() {
61     super();
62     logger = new LoggerWrapper("ServletModule.Hidden");
63     templateListString = configuration.getString("ServletModule.Hidden.ListTemplate");
64     try {
65       mainModule = new ModuleContent(DatabaseContent.getInstance());
66     }
67     catch (StorageObjectFailure e) {
68       logger.error("initialization of servletmoduleHidden failed: " + e.getMessage());
69     }
70   }
71
72
73   public void list(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc
74   {
75 // determine parameter
76     SimpleHash mergeData = new SimpleHash();
77     String query_year = req.getParameter("year");
78     String query_month = req.getParameter("month");
79     String order = "webdb_create";
80
81 // form sql statement
82     String whereClause = "is_published=false AND webdb_create LIKE '"+
83                          query_year+"-"+query_month+"%'";
84
85     logger.debug("ServletModuleHidden.list: whereclause: " + whereClause);
86
87 // fetch and deliver
88     try {
89
90       if ((query_year!=null && !query_year.equals(""))
91           && (query_month!=null && !query_month.equals(""))) {
92         EntityList theList = mainModule.getByWhereClause(whereClause, order, -1);
93         if (theList!=null && theList.size()>0) {
94
95 //make articleHash for comment
96           StringBuffer buf= new StringBuffer("id in (");boolean first=true;
97           for(int i=0;i<theList.size();i++) {
98             if (first==false) buf.append(",");
99             first=false;
100             buf.append(theList.elementAt(i).getValue("to_media"));
101           }
102           buf.append(")");
103           SimpleHash articleHash =
104               HTMLTemplateProcessor.makeSimpleHash(
105               mainModule.getByWhereClause(buf.toString(),-1));
106           mergeData.put("articleHash", articleHash);
107
108 // send the year and month for use in the list template
109           mergeData.put("year", query_year);
110           mergeData.put("month", query_month);
111 // get comment
112           mergeData.put("contentlist",theList);
113         }
114       }
115 // raus damit
116       HTMLTemplateProcessor.process(res, templateListString, mergeData, res.getWriter(), getLocale(req), getFallbackLocale(req));
117     }
118     catch (Throwable e) {
119       throw new ServletModuleFailure(e);
120     }
121   }
122 }