Modified config system:
[mir.git] / source / OpenMir.java
1 import java.io.*;
2 import java.util.*;
3 import java.net.*;
4 import java.lang.reflect.*;
5 import javax.servlet.*;
6 import javax.servlet.http.*;
7 import java.sql.*;
8
9 import freemarker.template.*;
10
11 import mir.misc.*;
12 import mir.servlet.*;
13
14 import mircoders.servlet.*;
15 import mircoders.module.*;
16 import mircoders.entity.*;
17 import mircoders.storage.*;
18
19 /**
20  *  OpenMir.java - main servlet for open posting and comment feature to articles
21  *
22  *  @author RK 1999-2001
23  *
24  */
25
26
27 public class OpenMir extends AbstractServlet {
28   
29   private static boolean                confed=false;
30   private static String lang;
31   public HttpSession session;
32
33   public void doGet(HttpServletRequest req, HttpServletResponse res)
34     throws ServletException, IOException {
35     doPost(req,res);
36   }
37
38   public void doPost(HttpServletRequest req, HttpServletResponse res)
39     throws ServletException, IOException {
40
41     long            startTime = (new java.util.Date()).getTime();
42     long            sessionConnectTime=0;
43
44     
45     if (!confed){
46       confed = getConfig(req);
47     }
48     
49     session = req.getSession();
50
51     if(session.getAttribute("Language")==null){
52       setLanguage(session,getAcceptLanguage(req));
53     }
54
55     res.setContentType("text/html");
56     try {
57       ServletModuleDispatch.dispatch(ServletModuleOpenIndy.getInstance(),req,res);
58     }
59     catch (ServletModuleException e){
60       e.printStackTrace();
61       handleError(res,res.getWriter(), "OpenIndy :: ServletException in Module ServletModule -- " + e.toString());
62     }
63     // timing...
64     sessionConnectTime = new java.util.Date().getTime() - startTime;
65     theLog.printInfo("EXECTIME (ServletModuleOpenIndy): " + sessionConnectTime + " ms");
66   }
67
68   private void handleError(HttpServletResponse res,PrintWriter out, String errorString) {
69
70     try {
71       theLog.printError(errorString);
72       SimpleHash modelRoot = new SimpleHash();
73       modelRoot.put("errorstring", new SimpleScalar(errorString));
74       modelRoot.put("date", new SimpleScalar(StringUtil.date2readableDateTime(new GregorianCalendar())));
75       HTMLTemplateProcessor.process(res,MirConfig.getProp("Mir.ErrorTemplate"),modelRoot,out);
76       out.close();
77     }
78     catch (Exception e) {
79       System.err.println("Fehler in ErrorTemplate");
80     }
81
82   }
83
84   public String getServletInfo(){ return "OpenIndy 1.0 rev01"; }
85
86 }
87