| | |
| | | |
| | | package de.uhilger.filecms.web; |
| | | |
| | | import de.uhilger.filecms.api.FileMgr; |
| | | import de.uhilger.filesystem.FileRef; |
| | | import de.uhilger.wbx.WbxUtils; |
| | | import java.io.File; |
| | | import java.io.IOException; |
| | | import java.util.logging.Level; |
| | | import java.util.logging.Logger; |
| | | import javax.servlet.ServletContext; |
| | | import javax.servlet.ServletContextEvent; |
| | | import javax.servlet.ServletContextListener; |
| | | import org.apache.commons.io.FileUtils; |
| | | |
| | | /** |
| | | * |
| | | * @author ulrich |
| | | * Initialisieren der Dateiverwaltung |
| | | */ |
| | | public class Initialiser implements ServletContextListener { |
| | | |
| | | private static final Logger logger = Logger.getLogger(Initialiser.class.getName()); |
| | | |
| | | |
| | | public static final String FILE_BASE = "filebase"; |
| | | public static final String DATENABLAGE = "datenAblage"; |
| | | public static final String WBX_FILE_BASE = "wbxFileBase"; |
| | | |
| | | // http://localhost:8097/file-cms/rpc/de.uhilger.filecms.api.FileMgr/getBase/JSONNICE |
| | | private FileRef getBase() { |
| | | FileRef ref = null; |
| | | //String fileBase = getServletContext().getInitParameter(FILE_BASE); |
| | | // -Dfilecms.base=/pfad/zu/daten |
| | | //String fileBase = System.getProperty("filecms.base"); |
| | | //File file = new File(fileBase); |
| | | //logger.info(file.getAbsolutePath()); |
| | | //logger.info(getWebappsDir().getAbsolutePath()); |
| | | |
| | | /* |
| | | file = new File("."); liefert |
| | | /home/ulrich/dev/lib/java/tomcat/tomcat2-8.5.9/bin/. |
| | | |
| | | ..auf der WebBox aber |
| | | /home/ulrich/srv/wbx_probe/. |
| | | ..weil das Startskript dort liegt |
| | | |
| | | der Tomcat der WebBox ist unter |
| | | sys/jrs/tomcat/bin |
| | | |
| | | also z.B. |
| | | /home/ulrich/srv/wbx_probe/sys/jrs/tomcat/bin |
| | | |
| | | das Datenverzeichnis ist z.B. auf |
| | | /home/ulrich/srv/wbx_probe/daten |
| | | |
| | | dann ist das Datenverzeichnis unter |
| | | ../../../daten |
| | | |
| | | Der Ausdruck file = new File("."); liefert stets den |
| | | Ort von dem aus der Java-Prozess gestartet wurde. |
| | | |
| | | Die unten folgende Bestimmung des Datenverzeichnisses |
| | | ist beschraenkt auf das Datenverzeichnis der WebBox, |
| | | entweder relativ zum Startskript der WebBox oder |
| | | dem Startskript von Tomcat, wie es aus Netbeans heraus |
| | | waehrend der Entwicklung genutzt wird. |
| | | |
| | | Besser ware vielleicht eine Bestimmung ueber einen |
| | | Systemparameter -Dfilecms.base=... wie weiter oben |
| | | auskommentiert. Damit liesse sich das file-cms auch |
| | | ohne WebBox einsetzen. Allerdings muss dann das |
| | | Datenverzeichnis im Start-Skript gebildet werden, |
| | | also ausserhalb von Java, wenn es dynamisch aus |
| | | einem Pfad relativ zum Start-Skript erzeugt werden |
| | | soll. |
| | | */ |
| | | |
| | | File file = new File("."); |
| | | logger.info(file.getAbsolutePath()); |
| | | String path = file.getAbsolutePath(); |
| | | path = path.substring(0, path.length() - 1); |
| | | file = new File(path); |
| | | if(path.endsWith("bin")) { |
| | | file = file.getParentFile().getParentFile().getParentFile(); |
| | | } else { |
| | | |
| | | } |
| | | /** |
| | | * Bei der WebBox ist das Datenverzeichnis relativ zum Verzeichnis |
| | | * $CATALINA_BASE/webapps untergebracht. |
| | | * Die Abfrage ServletContext.getRealPath |
| | | * liefert das Verzeichnis des Context dieser Webanwendung, also |
| | | * $CATALINA_BASE/webapps/file-cms |
| | | * oder |
| | | * $WBX/sys/base/webapps/file-cms |
| | | * |
| | | * Unter Windows z.B. |
| | | * C:\Users\fred\Documents\srv\wbx\sys\base\webapps\file-cms |
| | | * Unter Linux oder Mac OS z.B. |
| | | * /home/fred/srv/wbx/sys/base/webapps/file-cms |
| | | * |
| | | * Das Datenverzeichis liegt dann auf |
| | | * $WBX/daten |
| | | * |
| | | * Mit dem Verzeichnis des Context dieser Webanwendung ist das |
| | | * Datenverzeichnis der WebBox hart kodierbar mit dieser Methode |
| | | * |
| | | * @return Verzeichnis 'daten' der WebBox |
| | | */ |
| | | /* |
| | | protected File getWbxDataDir(ServletContext ctx) { |
| | | File file = getWbxDir(ctx); |
| | | file = new File(file, "daten/"); |
| | | ref = new FileRef(file.getAbsolutePath(), file.isDirectory()); |
| | | logger.info(ref.getAbsolutePath()); |
| | | return ref; |
| | | logger.fine("WebBox Datenbasis: " + file.getAbsolutePath()); |
| | | return file; |
| | | } |
| | | */ |
| | | |
| | | /* ----- ServletContextListener Implementation ----- */ |
| | | /* |
| | | protected File getWbxDir(ServletContext ctx) { |
| | | logger.fine("Catalina Base: " + System.getProperty("catalina.base")); |
| | | File catalinaBase = new File(System.getProperty("catalina.base")); |
| | | File wbxDir = catalinaBase.getParentFile().getParentFile(); |
| | | return wbxDir; |
| | | /* |
| | | String path = ctx.getRealPath("/"); |
| | | logger.fine("getRealPath: " + path); // file-cms in webapps |
| | | File file = new File(path); |
| | | file = file.getParentFile().getParentFile().getParentFile().getParentFile(); |
| | | logger.fine("WebBox: " + file.getAbsolutePath()); |
| | | return file; |
| | | */ |
| | | //} |
| | | |
| | | /** |
| | | * Die Dateiablage wird entweder auf einen absoluten Pfad gesetzt, |
| | | * der im Deployment Descriptor hinterlegt werden kann oder, wenn |
| | | * dort nichts eingetragen ist, auf den hart kodierten Pfad |
| | | * der WebBox. |
| | | * |
| | | * @param ctx der ServletContext, in den die Angabe eingetragen wird. Dort |
| | | * ist anschliessend die Angabe unter Initialiser.FILE_BASE abrufbar |
| | | */ |
| | | protected void ablageErmitteln(ServletContext ctx) { |
| | | //Object o = ctx.getInitParameter(DATENABLAGE); |
| | | WbxUtils wu = new WbxUtils(); |
| | | Object o = wu.getJNDIParameter(WBX_FILE_BASE, WbxUtils.EMPTY_STRING); |
| | | try { |
| | | if(o instanceof String) { |
| | | String pfad = o.toString(); |
| | | if(pfad.trim().length() > 0) { |
| | | ctx.setAttribute(FILE_BASE, pfad); |
| | | logger.fine("Basis: " + pfad); |
| | | } else { |
| | | ctx.setAttribute(FILE_BASE, wu.getWbxDataDir().getAbsolutePath()); |
| | | } |
| | | } else { |
| | | ctx.setAttribute(FILE_BASE, wu.getWbxDataDir().getAbsolutePath()); |
| | | } |
| | | } catch(Exception ex) { |
| | | ctx.setAttribute(FILE_BASE, wu.getWbxDataDir().getAbsolutePath()); |
| | | } |
| | | } |
| | | |
| | | protected void ablageInitialisieren(ServletContext ctx) { |
| | | Object o = ctx.getAttribute(FILE_BASE); |
| | | if(o instanceof String) { |
| | | String targetDirName = (String) o; |
| | | File dataDir = new File(targetDirName, "www"); |
| | | if(!dataDir.exists()) { |
| | | dataDir.mkdirs(); |
| | | String srcPath = ctx.getRealPath("/"); // file-cms in webapps |
| | | File srcDir = new File(srcPath, "/META-INF/daten/www"); |
| | | dataDir = new File(targetDirName); |
| | | try { |
| | | FileUtils.copyDirectoryToDirectory(srcDir, dataDir); |
| | | srcDir = new File(srcPath, "/META-INF/daten/home"); |
| | | FileUtils.copyDirectoryToDirectory(srcDir, dataDir); |
| | | srcDir = new File(srcPath, "/META-INF/daten/dav"); |
| | | FileUtils.copyDirectoryToDirectory(srcDir, dataDir); |
| | | |
| | | /* |
| | | |
| | | an dieser Stelle koennten noch die Kontexte fuer www und home |
| | | angelegt werden. Sie muessten aber dynamisch erzeugt werden, |
| | | mit der jeweiligen Einstellung laut FILE_BASE, nicht, wie |
| | | unten durch Kopieren einer statischen Datei |
| | | |
| | | // hier noch den context anlegen |
| | | String path = ctx.getRealPath("/"); |
| | | //File appDir = new File(path); |
| | | logger.fine("Catalina Base: " + System.getProperty("catalina.base")); |
| | | //File catalinaBase = appDir.getParentFile().getParentFile(); |
| | | File catalinaBase = new File(System.getProperty("catalina.base")); |
| | | File confLocalhost = new File(catalinaBase, "conf/Catalina/localhost"); |
| | | File dataContext = new File(confLocalhost, "data.xml"); |
| | | srcDir = new File(path, "/META-INF/conf"); |
| | | File dataCtxSrc = new File(srcDir, "data.xml"); |
| | | logger.fine("dataCtxSrc: " + dataCtxSrc.getAbsolutePath()); |
| | | logger.fine("dataContext: " + dataContext.getAbsolutePath()); |
| | | FileUtils.copyFile(dataCtxSrc, dataContext); |
| | | */ |
| | | } catch (IOException ex) { |
| | | logger.log(Level.SEVERE, null, ex); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void contextInitialized(ServletContextEvent sce) { |
| | | // hier kann etwas initialisiert werden |
| | | ServletContext ctx = sce.getServletContext(); |
| | | ctx.setAttribute(FILE_BASE, getBase()); |
| | | ablageErmitteln(ctx); |
| | | ablageInitialisieren(ctx); |
| | | } |
| | | |
| | | @Override |
| | | public void contextDestroyed(ServletContextEvent sce) { |
| | | // hier wird alles wieder aufgeraeumt |
| | | ServletContext ctx = sce.getServletContext(); |
| | | ctx.removeAttribute(FILE_BASE); |
| | | } |
| | | |
| | | |
| | | } |