| | |
| | | |
| | | package de.uhilger.filecms.web; |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * Initialisieren der Dateiverwaltung |
| | |
| | | |
| | | private static final Logger logger = Logger.getLogger(Initialiser.class.getName()); |
| | | |
| | | |
| | | public static final String FILE_BASE = "filebase"; |
| | | public static final String DATENABLAGE = "datenAblage"; |
| | | |
| | | /* ----- ServletContextListener Implementation ----- */ |
| | | |
| | | @Override |
| | | public void contextInitialized(ServletContextEvent sce) { |
| | | // hier kann etwas initialisiert werden |
| | | ServletContext ctx = sce.getServletContext(); |
| | | ablageErmitteln(ctx); |
| | | } |
| | | |
| | | /** |
| | | * 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 |
| | | */ |
| | | private void ablageErmitteln(ServletContext ctx) { |
| | | Object o = ctx.getInitParameter(DATENABLAGE); |
| | | 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, getWbxDataDir(ctx).getAbsolutePath()); |
| | | } |
| | | } else { |
| | | ctx.setAttribute(FILE_BASE, getWbxDataDir(ctx).getAbsolutePath()); |
| | | } |
| | | } catch(Exception ex) { |
| | | ctx.setAttribute(FILE_BASE, getWbxDataDir(ctx).getAbsolutePath()); |
| | | } |
| | | } |
| | | public static final String WBX_FILE_BASE = "wbxFileBase"; |
| | | |
| | | /** |
| | | * Bei der WebBox ist das Datenverzeichnis relativ zum Verzeichnis |
| | |
| | | * |
| | | * @return Verzeichnis 'daten' der WebBox |
| | | */ |
| | | private File getWbxDataDir(ServletContext ctx) { |
| | | /* |
| | | protected File getWbxDataDir(ServletContext ctx) { |
| | | File file = getWbxDir(ctx); |
| | | file = new File(file, "daten/"); |
| | | logger.fine("WebBox Datenbasis: " + file.getAbsolutePath()); |
| | | return file; |
| | | } |
| | | */ |
| | | |
| | | /* |
| | | 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(); |
| | | file = new File(file, "daten/"); |
| | | logger.fine("Basis: " + file.getAbsolutePath()); |
| | | 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) { |
| | | ServletContext ctx = sce.getServletContext(); |
| | | ablageErmitteln(ctx); |
| | | ablageInitialisieren(ctx); |
| | | } |
| | | |
| | | @Override |
| | | public void contextDestroyed(ServletContextEvent sce) { |
| | | // hier wird alles wieder aufgeraeumt |
| | | ServletContext ctx = sce.getServletContext(); |
| | | ctx.removeAttribute(FILE_BASE); |
| | | } |
| | | |
| | | |
| | | } |