bae412b8836f89b1f323a12a103c942f524b19a3
[mir.git] / source / mircoders / servlet / 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 the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mircoders.servlet;
33
34 import java.io.IOException;
35
36 import javax.servlet.http.HttpServletRequest;
37 import javax.servlet.http.HttpServletResponse;
38
39 import mir.entity.EntityList;
40 import mir.log.LoggerWrapper;
41 import mir.misc.HTMLTemplateProcessor;
42 import mir.module.ModuleException;
43 import mir.servlet.ServletModule;
44 import mir.servlet.ServletModuleExc;
45 import mir.servlet.ServletModuleFailure;
46 import mir.storage.StorageObjectFailure;
47 import mircoders.module.ModuleContent;
48 import mircoders.storage.DatabaseContent;
49 import freemarker.template.SimpleHash;
50
51 /*
52  *  ServletModuleHidden - output of so called "censored" articles
53  *  @author mh
54  *  @version $Id
55  *
56  */
57
58 public class ServletModuleHidden extends ServletModule
59 {
60
61 // Singelton / Kontruktor
62   private static ServletModuleHidden instance = new ServletModuleHidden();
63   public static ServletModule getInstance() { return instance; }
64
65   private ServletModuleHidden() {
66     super();
67     logger = new LoggerWrapper("ServletModule.Hidden");
68     templateListString = configuration.getString("ServletModule.Hidden.ListTemplate");
69     try {
70       mainModule = new ModuleContent(DatabaseContent.getInstance());
71     }
72     catch (StorageObjectFailure e) {
73       logger.error("initialization of servletmoduleHidden failed: " + e.getMessage());
74     }
75   }
76
77
78   public void list(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc
79   {
80 // determine parameter
81     SimpleHash mergeData = new SimpleHash();
82     String query_year = req.getParameter("year");
83     String query_month = req.getParameter("month");
84     String order = "webdb_create";
85
86 // form sql statement
87     String whereClause = "is_published=false AND webdb_create LIKE '"+
88                          query_year+"-"+query_month+"%'";
89
90     logger.debug("ServletModuleHidden.list: whereclause: " + whereClause);
91
92 // fetch and deliver
93     try {
94
95       if ((query_year!=null && !query_year.equals(""))
96           && (query_month!=null && !query_month.equals(""))) {
97         EntityList theList = mainModule.getByWhereClause(whereClause, order, -1);
98         if (theList!=null && theList.size()>0) {
99
100 //make articleHash for comment
101           StringBuffer buf= new StringBuffer("id in (");boolean first=true;
102           for(int i=0;i<theList.size();i++) {
103             if (first==false) buf.append(",");
104             first=false;
105             buf.append(theList.elementAt(i).getValue("to_media"));
106           }
107           buf.append(")");
108           SimpleHash articleHash =
109               HTMLTemplateProcessor.makeSimpleHash(
110               mainModule.getByWhereClause(buf.toString(),-1));
111           mergeData.put("articleHash", articleHash);
112
113 // send the year and month for use in the list template
114           mergeData.put("year", query_year);
115           mergeData.put("month", query_month);
116 // get comment
117           mergeData.put("contentlist",theList);
118         }
119       }
120 // raus damit
121       HTMLTemplateProcessor.process(res, templateListString, mergeData, res.getWriter(), getLocale(req));
122     }
123     catch (Throwable e) {
124       throw new ServletModuleFailure(e);
125     }
126   }
127 }