Dateiverwaltung für die WebBox
ulrich
2017-03-31 6e70be4f54f3482801d579407846810926cd9997
commit | author | age
6e70be 1 /*
U 2     Dateiverwaltung - File management in your browser
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 */
18
19 package de.uhilger.filecms.web;
20
21 import java.io.File;
22 import java.util.logging.Logger;
23 import javax.servlet.ServletContext;
24
25 /**
26  * Initialisieren der Dateiverwaltung
27  */
28 public class Initialiser {
29   
30   private static final Logger logger = Logger.getLogger(Initialiser.class.getName());
31   
32   public static final String FILE_BASE = "filebase";
33   public static final String DATENABLAGE = "datenAblage";
34   
35   /**
36    * Bei der WebBox ist das Datenverzeichnis relativ zum Verzeichnis 
37    * $CATALINA_BASE/webapps untergebracht. 
38    * Die Abfrage ServletContext.getRealPath 
39    * liefert das Verzeichnis des Context dieser Webanwendung, also 
40    * $CATALINA_BASE/webapps/file-cms
41    * oder
42    * $WBX/sys/base/webapps/file-cms
43    * 
44    * Unter Windows z.B.
45    * C:\Users\fred\Documents\srv\wbx\sys\base\webapps\file-cms
46    * Unter Linux oder Mac OS z.B.
47    * /home/fred/srv/wbx/sys/base/webapps/file-cms
48    * 
49    * Das Datenverzeichis liegt dann auf 
50    * $WBX/daten
51    * 
52    * Mit dem Verzeichnis des Context dieser Webanwendung ist das 
53    * Datenverzeichnis der WebBox hart kodierbar mit dieser Methode
54    * 
55    * @return Verzeichnis 'daten' der WebBox
56    */
57   protected File getWbxDataDir(ServletContext ctx) {
58     File file = getWbxDir(ctx);    
59     file = new File(file, "daten/");
60     logger.fine("WebBox Datenbasis: " + file.getAbsolutePath());
61     return file;
62   }
63   
64   protected File getWbxDir(ServletContext ctx) {
65     String path = ctx.getRealPath("/");
66     logger.fine("getRealPath: " + path); // file-cms in webapps
67     File file = new File(path);
68     file = file.getParentFile().getParentFile().getParentFile().getParentFile();    
69     logger.fine("WebBox: " + file.getAbsolutePath());
70     return file;
71   }
72   
73   /**
74    * Die Dateiablage wird entweder auf einen absoluten Pfad gesetzt, 
75    * der im Deployment Descriptor hinterlegt werden kann oder, wenn 
76    * dort nichts eingetragen ist, auf den hart kodierten Pfad 
77    * der WebBox.
78    * 
79    * @param ctx der ServletContext, in den die Angabe eingetragen wird. Dort 
80    * ist anschliessend die Angabe unter Initialiser.FILE_BASE abrufbar
81    */
82   protected void ablageErmitteln(ServletContext ctx) {
83     Object o = ctx.getInitParameter(DATENABLAGE);
84     try {
85       if(o instanceof String) {
86         String pfad = o.toString();
87         if(pfad.trim().length() > 0) {
88           ctx.setAttribute(FILE_BASE, pfad);
89           logger.fine("Basis: " + pfad);
90         } else {
91           ctx.setAttribute(FILE_BASE, getWbxDataDir(ctx).getAbsolutePath());  
92         }
93       } else {
94         ctx.setAttribute(FILE_BASE, getWbxDataDir(ctx).getAbsolutePath());      
95       }    
96     } catch(Exception ex) {
97       ctx.setAttribute(FILE_BASE, getWbxDataDir(ctx).getAbsolutePath());
98     }
99   }  
100     
101 }