add no-cache Pragma and Cache-control headers to the http response.. I see no reason...
[mir.git] / source / OpenMir.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 import java.io.*;
33 import java.util.*;
34 import java.net.*;
35 import java.lang.reflect.*;
36 import javax.servlet.*;
37 import javax.servlet.http.*;
38 import java.sql.*;
39
40 import freemarker.template.*;
41
42 import mir.misc.*;
43 import mir.servlet.*;
44
45 import mircoders.servlet.*;
46 import mircoders.module.*;
47 import mircoders.entity.*;
48 import mircoders.storage.*;
49
50 /**
51  *  OpenMir.java - main servlet for open posting and comment feature to articles
52  *
53  *  @author RK 1999-2001
54  *
55  */
56
57
58 public class OpenMir extends AbstractServlet {
59   
60   //private static boolean                confed=false;
61   private static String lang;
62   public HttpSession session;
63
64   private boolean nameSet = false;
65
66   public void doGet(HttpServletRequest req, HttpServletResponse res)
67     throws ServletException, IOException {
68     doPost(req,res);
69   }
70
71   public void doPost(HttpServletRequest req, HttpServletResponse res)
72     throws ServletException, IOException {
73
74     long            startTime = (new java.util.Date()).getTime();
75     long            sessionConnectTime=0;
76
77     // get the configration - this could conflict if 2 mirs are in the
78     // VM maybe? to be checked. -mh
79     if(getServletContext().getAttribute("mir.confed") == null) {
80       getConfig(req);
81     }
82     if (!nameSet) {
83         MirConfig.setOpenServletName(getServletName());
84         nameSet = true;
85     }
86       
87     session = req.getSession();
88
89     if(session.getAttribute("Language")==null){
90       setLanguage(session,getAcceptLanguage(req));
91     }
92
93     //nothing in Mir can or should be cached as it's all dynamic...
94     //
95     //this needs to be done here and not per page (via meta tags) as some
96     //browsers have problems w/ it per-page -mh
97     res.setHeader("Pragma", "no-cache");
98     res.setDateHeader("Expires", 0);
99     res.setHeader("Cache-Control", "no-cache");
100     res.setContentType("text/html; charset="
101                       +MirConfig.getProp("Mir.DefaultEncoding"));
102     try {
103       ServletModuleDispatch.dispatch(ServletModuleOpenIndy.getInstance(),req,res);
104     }
105     catch (ServletModuleUserException e) {
106       handleUserError(req,res,res.getWriter(), e.getMsg());
107     }
108     catch (ServletModuleException e){
109       e.printStackTrace();
110       handleError(req,res,res.getWriter(), "OpenIndy :: ServletException in Module ServletModule -- " + e.toString());
111     }
112     // timing...
113     sessionConnectTime = new java.util.Date().getTime() - startTime;
114     theLog.printInfo("EXECTIME (ServletModuleOpenIndy): " + sessionConnectTime + " ms");
115   }
116
117   private void handleUserError(HttpServletRequest req, HttpServletResponse res,
118                                                                                                                          PrintWriter out, String errorString) {
119     try {
120       theLog.printError(errorString);
121       SimpleHash modelRoot = new SimpleHash();
122       modelRoot.put("errorstring", new SimpleScalar(errorString));
123       modelRoot.put("date", new SimpleScalar(StringUtil.date2readableDateTime(new GregorianCalendar())));
124       HTMLTemplateProcessor.process(res,MirConfig.getProp("Mir.UserErrorTemplate"),
125                                                                                                                                                 modelRoot, out, req.getLocale() );
126       out.close();
127     }
128     catch (Exception e) {
129       System.err.println("Fehler in UserErrorTemplate");
130     }
131
132   }
133
134   private void handleError(HttpServletRequest req, HttpServletResponse res,PrintWriter out, String errorString) {
135
136     try {
137       theLog.printError(errorString);
138       SimpleHash modelRoot = new SimpleHash();
139       modelRoot.put("errorstring", new SimpleScalar(errorString));
140       modelRoot.put("date", new SimpleScalar(StringUtil.date2readableDateTime(
141                                                                                                                                                                                          new GregorianCalendar())));
142       HTMLTemplateProcessor.process(res,MirConfig.getProp("Mir.ErrorTemplate"),
143                                                                                                                                                 modelRoot,out, req.getLocale());
144       out.close();
145     }
146     catch (Exception e) {
147       System.err.println("Fehler in ErrorTemplate");
148     }
149
150   }
151
152   public String getServletInfo(){
153     return "OpenMir "+MirConfig.getProp("Mir.Version");
154   }
155
156 }
157