From 1475ef12a87376fa82e894c2dda21a7fcb8d3105 Mon Sep 17 00:00:00 2001
From: ulrich <not disclosed>
Date: Sun, 04 Mar 2018 14:16:43 +0000
Subject: [PATCH] Bildqualitaet hinzugefuegt

---
 src/de/uhilger/wbx/web/ViewServlet.java |   64 ++++++++++++++++----------------
 1 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/src/de/uhilger/wbx/web/ViewServlet.java b/src/de/uhilger/wbx/web/ViewServlet.java
index 20106a3..76e1a04 100644
--- a/src/de/uhilger/wbx/web/ViewServlet.java
+++ b/src/de/uhilger/wbx/web/ViewServlet.java
@@ -41,35 +41,7 @@
   private static final Logger logger = Logger.getLogger(ViewServlet.class.getName());
   private static final String HOME_CTX = "/home";
 
-  /**
-   * Handles the HTTP <code>GET</code> method.
-   *
-   * @param request servlet request
-   * @param response servlet response
-   * @throws ServletException if a servlet-specific error occurs
-   * @throws IOException if an I/O error occurs
-   */
-  @Override
-  protected void doGet(HttpServletRequest request, HttpServletResponse response)
-          throws ServletException, IOException {
-    String contextPath = request.getContextPath();
-    if(HOME_CTX.equals(contextPath)) {
-      String userName = getUserName(request);
-      if (userName != null) {
-        String urlUser = getUrlUser(request, userName);
-        if(userName.equals(urlUser)) {
-          seiteAusgeben(request, response);
-        } else {
-          logger.fine("Wrong user.");
-        }
-      } else {
-        logger.fine("Missing login.");
-      }
-    } else {
-      seiteAusgeben(request, response);
-    }
-  }
-  
+
   private void seiteAusgeben(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
     ServletOutputStream out = response.getOutputStream();
     printHeader(out);
@@ -92,7 +64,35 @@
     out.print("</body></html>");
   }
   
-  private String getUrlUser(HttpServletRequest request, String userName) throws IOException {
+  /**
+   * Handles the HTTP <code>GET</code> method.
+   *
+   * @param request servlet request
+   * @param response servlet response
+   * @throws ServletException if a servlet-specific error occurs
+   * @throws IOException if an I/O error occurs
+   */
+  @Override
+  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException  {
+    String contextPath = request.getContextPath();
+    if(HOME_CTX.equals(contextPath)) {
+      String userName = getUserName(request);
+      if (userName != null) {
+        String urlUser = getUrlUser(request, userName);
+        if(userName.equals(urlUser)) {
+          seiteAusgeben(request, response);
+        } else {
+          logger.fine("Wrong user.");
+        }
+      } else {
+        logger.fine("Missing login.");
+      }
+    } else {
+      seiteAusgeben(request, response);
+    }
+  }
+  
+  protected String getUrlUser(HttpServletRequest request, String userName) {
     String result = "";
     String requestUrlStr = request.getRequestURL().toString();
     String contextPath = request.getContextPath();
@@ -110,7 +110,7 @@
     return result;
   }
   
-  private String getUserName(HttpServletRequest hr) {
+  protected String getUserName(HttpServletRequest hr) {
     String userName = null;
     Object p = hr.getUserPrincipal();
     if (p instanceof Principal) {
@@ -118,7 +118,7 @@
     }
     return userName;
   }
-
+  
   /**
    * Returns a short description of the servlet.
    *

--
Gitblit v1.9.3