open posting internationalizable again...
[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.IOException;
33 import java.io.PrintWriter;
34 import java.util.GregorianCalendar;
35 import java.util.Locale;
36
37 import javax.servlet.ServletException;
38 import javax.servlet.http.HttpServletRequest;
39 import javax.servlet.http.HttpServletResponse;
40 import javax.servlet.http.HttpSession;
41
42 import mir.config.MirPropertiesConfiguration;
43 import mir.misc.HTMLTemplateProcessor;
44 import mir.misc.StringUtil;
45 import mir.servlet.AbstractServlet;
46 import mir.servlet.ServletModuleDispatch;
47 import mir.servlet.ServletModuleUserExc;
48 import mir.util.ExceptionFunctions;
49 import mircoders.servlet.ServletModuleOpenIndy;
50
51 import org.apache.struts.util.MessageResources;
52
53 import freemarker.template.SimpleHash;
54 import freemarker.template.SimpleScalar;
55
56 /**
57  *  OpenMir.java - main servlet for open posting and comment feature to articles
58  *
59  *  @author RK 1999-2001, the mir-coders group
60  *  @version $Id: OpenMir.java,v 1.29 2003/03/16 13:10:45 zapata Exp $
61  *
62  */
63
64
65 public class OpenMir extends AbstractServlet {
66   private static String lang;
67   public HttpSession session;
68
69
70
71   public void process(HttpServletRequest aRequest, HttpServletResponse aResponse) 
72         throws ServletException, IOException {
73                 if ((configuration.getString("RootUri") == null) ||
74                         configuration.getString("RootUri").equals("")) {
75                   configuration.setProperty("RootUri", aRequest.getContextPath());
76                 }
77
78     long startTime = System.currentTimeMillis();
79     long sessionConnectTime=0;
80
81     session = aRequest.getSession();
82
83     checkLanguage(session, aRequest);
84
85     //make sure client browsers don't cache anything
86     setNoCaching(aResponse);
87
88     aResponse.setContentType("text/html");
89     //aResponse.setContentType("text/html; charset="+MirPropertiesConfiguration.instance().getString("Mir.DefaultHTMLCharset"));
90
91     try {
92       ServletModuleDispatch.dispatch(ServletModuleOpenIndy.getInstance(), aRequest, aResponse);
93     }
94     catch (Throwable e) {
95       Throwable cause = ExceptionFunctions.traceCauseException(e);
96
97       if (cause instanceof ServletModuleUserExc)
98         handleUserError(aRequest, aResponse, aResponse.getWriter(), (ServletModuleUserExc) cause);
99       else
100         handleError(aRequest, aResponse, aResponse.getWriter(), cause);
101
102     }
103
104     sessionConnectTime = System.currentTimeMillis() - startTime;
105     logger.debug("EXECTIME (ServletModuleOpenIndy): " + sessionConnectTime + " ms");
106   }
107
108   private void handleUserError(HttpServletRequest aRequest, HttpServletResponse aResponse,
109                                PrintWriter out, ServletModuleUserExc anException) {
110     try {
111       logger.info("user error: " + anException.getMessage());
112       SimpleHash modelRoot = new SimpleHash();
113       MessageResources messages = MessageResources.getMessageResources("bundles.open");
114       modelRoot.put("errorstring",
115           new SimpleScalar(
116               messages.getMessage(getLocale(aRequest), anException.getMessage(), anException.getParameters())
117           ));
118       modelRoot.put("date", new SimpleScalar(StringUtil.date2readableDateTime(new GregorianCalendar())));
119       HTMLTemplateProcessor.process(aResponse,MirPropertiesConfiguration.instance().getString("ServletModule.OpenIndy.UserErrorTemplate"),
120                                     modelRoot, out, getLocale(aRequest));
121       out.close();
122     }
123     catch (Exception e) {
124       logger.error("Error in UserErrorTemplate");
125     }
126   }
127
128   private void handleError(HttpServletRequest aRequest, HttpServletResponse aResponse,PrintWriter out, Throwable anException) {
129     try {
130       logger.error("error: " + anException);
131       SimpleHash modelRoot = new SimpleHash();
132
133       modelRoot.put("errorstring", new SimpleScalar(anException.getMessage()));
134       modelRoot.put("date", new SimpleScalar(StringUtil.date2readableDateTime(
135                                                new GregorianCalendar())));
136       HTMLTemplateProcessor.process(aResponse,MirPropertiesConfiguration.instance().getString("ServletModule.OpenIndy.ErrorTemplate"),
137                                     modelRoot,out, getLocale(aRequest));
138       out.close();
139     }
140     catch (Exception e) {
141       logger.error("Error in ErrorTemplate");
142     }
143
144   }
145
146   public String getServletInfo(){
147     return "OpenMir "+configuration.getString("Mir.Version");
148   }
149
150   private void checkLanguage(HttpSession session, HttpServletRequest aRequest) {
151     // a lang parameter always sets the language
152     String lang = aRequest.getParameter("language");
153
154     if (lang != null) {
155       logger.info("selected language " + lang + " overrides accept-language");
156       setLanguage(session, lang);
157       setLocale(session, new Locale(lang, ""));
158     }
159     // otherwise store language from accept header in session
160     else if (session.getAttribute("Language") == null) {
161       logger.info("accept-language is " + aRequest.getLocale().getLanguage());
162       setLanguage(session, aRequest.getLocale().getLanguage());
163       setLocale(session, aRequest.getLocale());
164     }
165   }
166 }
167