WebBox Klassenbibliothek
ulrich
2021-01-01 f826e7bf3a5a9044375f8a384459fbe3e31ee265
commit | author | age
7bcebf 1 /*
U 2     WebBox - Dein Server.
3     Copyright (C) 2017 Ulrich Hilger, http://uhilger.de
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU Affero General Public License as
7     published by the Free Software Foundation, either version 3 of the
8     License, or (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU Affero General Public License for more details.
14
15     You should have received a copy of the GNU Affero General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
22f5de 18 package de.uhilger.wbx.web;
U 19
20 import java.io.IOException;
bc9f6a 21 import java.security.Principal;
U 22 import java.util.logging.Level;
22f5de 23 import java.util.logging.Logger;
4c53ff 24 import javax.naming.Context;
U 25 import javax.naming.InitialContext;
26 import javax.naming.NamingException;
22f5de 27 import javax.servlet.ServletException;
U 28 import javax.servlet.ServletOutputStream;
828ffa 29 import javax.servlet.http.HttpServlet;
22f5de 30 import javax.servlet.http.HttpServletRequest;
U 31 import javax.servlet.http.HttpServletResponse;
f826e7 32 import org.apache.catalina.servlets.DefaultServlet;
22f5de 33
U 34 /**
7bcebf 35  * Das ViewServlet f&uuml;gt dem DefaultServlet von Tomcat 
U 36  * Methoden hinzu, mit denen HTML-Inhalte wie sie z.B. mit 
37  * TinyMCE erzeugt werden zu ganzen HTML-Seiten 
38  * mit head und body tags sowie Stylesheet-Verweisen 
39  * erg&auml;nzt werden
40  * 
41  * TODO: Stylesheets dynamisch einbinden
22f5de 42  */
f826e7 43 public class ViewServlet extends DefaultServlet {
22f5de 44   
U 45   private static final Logger logger = Logger.getLogger(ViewServlet.class.getName());
bc9f6a 46   private static final String HOME_CTX = "/home";
22f5de 47
4c53ff 48   private String getTitle() {
U 49     String title = null;
50     try {    
51       Object object = ((Context) new InitialContext().lookup("java:comp/env")).lookup("webBoxViewTitle");
52       if(object != null) {
53         title = object.toString();
54         logger.finer("WebBox View Titel: " + title);
55       }
56     } catch (NamingException ex) {
57       logger.log(Level.SEVERE, null, ex);
58     }
59     return title;
60   }
61   
bc9f6a 62   private void seiteAusgeben(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
2a7560 63     ServletOutputStream out = response.getOutputStream();
4c53ff 64     printHeader(out, request);
2a7560 65     super.doGet(request, response);
U 66     printFooter(out);
67   }
68   
4c53ff 69   private void printHeader(ServletOutputStream out, HttpServletRequest request) throws IOException {
066b66 70     out.print("<!DOCTYPE html><html><head>\r\n");
a123ba 71     out.print("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"/>\r\n");
066b66 72     out.print("<link rel=\"stylesheet\" type=\"text/css\" href=\"/jslib/bootstrap/css/bootstrap.min.css\">\r\n");
U 73     out.print("<link rel=\"stylesheet\" type=\"text/css\" href=\"/jslib/lightbox/lightbox.css\">\r\n");
74     out.print("<link rel=\"stylesheet\" type=\"text/css\" href=\"stile.css\">\r\n");
4c53ff 75     String title = getTitle();
U 76     if(title != null) {
77       out.print("<title>");
78       out.print(title);
79       out.print(" ");
80       out.print(request.getRequestURI());
81       out.print("</title>\r\n");
82     }
066b66 83     out.print("</head><body class=\"p-3\">\r\n");
2a7560 84   }
U 85   
86   private void printFooter(ServletOutputStream out) throws IOException {
066b66 87     out.print("<script src=\"/jslib/jquery/jquery.min.js\"></script>\r\n");
U 88     out.print("<script src=\"/jslib/lightbox/lightbox.min.js\"></script>\r\n");
2a7560 89     out.print("</body></html>");
U 90   }
91   
bc9f6a 92   /**
U 93    * Handles the HTTP <code>GET</code> method.
94    *
95    * @param request servlet request
96    * @param response servlet response
97    * @throws ServletException if a servlet-specific error occurs
98    * @throws IOException if an I/O error occurs
99    */
100   @Override
101   protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException  {
102     String contextPath = request.getContextPath();
103     if(HOME_CTX.equals(contextPath)) {
104       String userName = getUserName(request);
105       if (userName != null) {
106         String urlUser = getUrlUser(request, userName);
107         if(userName.equals(urlUser)) {
108           seiteAusgeben(request, response);
109         } else {
110           logger.fine("Wrong user.");
111         }
112       } else {
113         logger.fine("Missing login.");
114       }
115     } else {
116       seiteAusgeben(request, response);
117     }
118   }
119   
120   protected String getUrlUser(HttpServletRequest request, String userName) {
2a7560 121     String result = "";
U 122     String requestUrlStr = request.getRequestURL().toString();
123     String contextPath = request.getContextPath();
22f5de 124     if(contextPath != null && requestUrlStr != null && userName != null) {
U 125       int start = requestUrlStr.indexOf(contextPath);
126       start += contextPath.length();
127       start++;
128       int end = start + userName.length();
129       try {
130         result = requestUrlStr.substring(start, end);
131       } catch(Exception ex) {
2a7560 132         logger.log(Level.SEVERE, ex.getLocalizedMessage(), ex);
22f5de 133       }
U 134     }
135     return result;
136   }
137   
bc9f6a 138   protected String getUserName(HttpServletRequest hr) {
22f5de 139     String userName = null;
U 140     Object p = hr.getUserPrincipal();
141     if (p instanceof Principal) {
142       userName = ((Principal) p).getName();
143     }
144     return userName;
145   }
bc9f6a 146   
22f5de 147   /**
U 148    * Returns a short description of the servlet.
149    *
150    * @return a String containing servlet description
151    */
152   @Override
153   public String getServletInfo() {
154     return "Short description";
2a7560 155   }
22f5de 156
U 157 }