mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 09:46:16 +01:00
improve base directory handling
This commit is contained in:
@@ -0,0 +1,158 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) 2010, Sebastian Sdorra All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer. 2. Redistributions in
|
||||||
|
* binary form must reproduce the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer in the documentation and/or other
|
||||||
|
* materials provided with the distribution. 3. Neither the name of SCM-Manager;
|
||||||
|
* nor the names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* http://bitbucket.org/sdorra/scm-manager
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
package sonia.scm.plugin;
|
||||||
|
|
||||||
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
|
import sonia.scm.util.IOUtil;
|
||||||
|
import sonia.scm.util.Util;
|
||||||
|
|
||||||
|
//~--- JDK imports ------------------------------------------------------------
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Sebastian Sdorra
|
||||||
|
*/
|
||||||
|
public class BaseDirectory
|
||||||
|
{
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private static final String DIRECTORY_DEFAULT = ".scm-backend";
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private static final String DIRECTORY_ENVIRONMENT = "SCMBACKEND_HOME";
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
static final String DIRECTORY_PROPERTY = "scm-backend.home";
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private static BaseDirectory instance;
|
||||||
|
|
||||||
|
//~--- constructors ---------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs ...
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BaseDirectory()
|
||||||
|
{
|
||||||
|
baseDirectory = findBaseDirectory();
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- get methods ----------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static File getDirectory(String name)
|
||||||
|
{
|
||||||
|
File directory = getFile(name);
|
||||||
|
|
||||||
|
IOUtil.mkdirs(directory);
|
||||||
|
|
||||||
|
return directory;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static File getFile(String name)
|
||||||
|
{
|
||||||
|
return new File(getInstance().baseDirectory, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private static BaseDirectory getInstance()
|
||||||
|
{
|
||||||
|
if (instance == null)
|
||||||
|
{
|
||||||
|
instance = new BaseDirectory();
|
||||||
|
}
|
||||||
|
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- methods --------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private File findBaseDirectory()
|
||||||
|
{
|
||||||
|
String path = System.getProperty(DIRECTORY_PROPERTY);
|
||||||
|
|
||||||
|
if (Util.isEmpty(path))
|
||||||
|
{
|
||||||
|
path = System.getenv(DIRECTORY_ENVIRONMENT);
|
||||||
|
|
||||||
|
if (Util.isEmpty(path))
|
||||||
|
{
|
||||||
|
path = System.getProperty("user.home").concat(File.separator).concat(
|
||||||
|
DIRECTORY_DEFAULT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
File directory = new File(path);
|
||||||
|
|
||||||
|
if (!directory.exists() &&!directory.mkdirs())
|
||||||
|
{
|
||||||
|
throw new IllegalStateException("could not create directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
return directory;
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- fields ---------------------------------------------------------------
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private File baseDirectory;
|
||||||
|
}
|
||||||
@@ -98,13 +98,10 @@ public class DefaultPluginBackend extends AbstractPluginBackend
|
|||||||
* @param configuration
|
* @param configuration
|
||||||
*/
|
*/
|
||||||
@Inject
|
@Inject
|
||||||
public DefaultPluginBackend(
|
public DefaultPluginBackend(BackendConfiguration configuration)
|
||||||
@Named(ScmBackendModule.DIRECTORY_PROPERTY) File baseDirectory,
|
|
||||||
BackendConfiguration configuration)
|
|
||||||
{
|
{
|
||||||
this.baseDirectory = baseDirectory;
|
|
||||||
this.configuration = configuration;
|
this.configuration = configuration;
|
||||||
this.storeFile = new File(baseDirectory, FILE_STORE);
|
this.storeFile = BaseDirectory.getFile(FILE_STORE);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -197,18 +194,6 @@ public class DefaultPluginBackend extends AbstractPluginBackend
|
|||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public File getBaseDirectory()
|
|
||||||
{
|
|
||||||
return baseDirectory;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method description
|
* Method description
|
||||||
*
|
*
|
||||||
@@ -281,7 +266,7 @@ public class DefaultPluginBackend extends AbstractPluginBackend
|
|||||||
*/
|
*/
|
||||||
private void readScannedFiles() throws IOException
|
private void readScannedFiles() throws IOException
|
||||||
{
|
{
|
||||||
File file = new File(baseDirectory, FILE_SCANNED);
|
File file = BaseDirectory.getFile(FILE_SCANNED);
|
||||||
|
|
||||||
if (file.exists())
|
if (file.exists())
|
||||||
{
|
{
|
||||||
@@ -347,7 +332,7 @@ public class DefaultPluginBackend extends AbstractPluginBackend
|
|||||||
logger.info("store scanned files");
|
logger.info("store scanned files");
|
||||||
}
|
}
|
||||||
|
|
||||||
File file = new File(baseDirectory, FILE_SCANNED);
|
File file = BaseDirectory.getFile(FILE_SCANNED);
|
||||||
PrintWriter writer = null;
|
PrintWriter writer = null;
|
||||||
|
|
||||||
try
|
try
|
||||||
@@ -371,9 +356,6 @@ public class DefaultPluginBackend extends AbstractPluginBackend
|
|||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
//~--- fields ---------------------------------------------------------------
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private File baseDirectory;
|
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
private BackendConfiguration configuration;
|
private BackendConfiguration configuration;
|
||||||
|
|
||||||
|
|||||||
@@ -88,14 +88,6 @@ public interface PluginBackend extends ListenerSupport<PluginBackendListener>
|
|||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public File getBaseDirectory();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method description
|
* Method description
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -78,15 +78,6 @@ public class ScmBackendModule extends ServletModule
|
|||||||
/** Field description */
|
/** Field description */
|
||||||
public static final String CACHE_CONFIG = "/config/ehcache.xml";
|
public static final String CACHE_CONFIG = "/config/ehcache.xml";
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String DIRECTORY_DEFAULT = ".scm-backend";
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String DIRECTORY_ENVIRONMENT = "SCMBACKEND_HOME";
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String DIRECTORY_PROPERTY = "scm-backend.home";
|
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
public static final String FILE_CONFIG = "config.xml";
|
public static final String FILE_CONFIG = "config.xml";
|
||||||
|
|
||||||
@@ -100,8 +91,7 @@ public class ScmBackendModule extends ServletModule
|
|||||||
public static final String PATTERN_REST_API = "/*";
|
public static final String PATTERN_REST_API = "/*";
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
public static final String PATTERN_REST_EXCLUDE =
|
public static final String PATTERN_REST_EXCLUDE = "/(template/|news).*";
|
||||||
"/(template/|news).*";
|
|
||||||
|
|
||||||
//~--- methods --------------------------------------------------------------
|
//~--- methods --------------------------------------------------------------
|
||||||
|
|
||||||
@@ -112,14 +102,7 @@ public class ScmBackendModule extends ServletModule
|
|||||||
@Override
|
@Override
|
||||||
protected void configureServlets()
|
protected void configureServlets()
|
||||||
{
|
{
|
||||||
File baseDirectory = findBaseDirectory();
|
File configurationFile = BaseDirectory.getFile(FILE_CONFIG);
|
||||||
|
|
||||||
if (baseDirectory == null)
|
|
||||||
{
|
|
||||||
throw new ConfigurationException("could not find base directory");
|
|
||||||
}
|
|
||||||
|
|
||||||
File configurationFile = getConfigurationFile(baseDirectory);
|
|
||||||
|
|
||||||
if (!configurationFile.exists())
|
if (!configurationFile.exists())
|
||||||
{
|
{
|
||||||
@@ -130,8 +113,6 @@ public class ScmBackendModule extends ServletModule
|
|||||||
BackendConfiguration configuration = JAXB.unmarshal(configurationFile,
|
BackendConfiguration configuration = JAXB.unmarshal(configurationFile,
|
||||||
BackendConfiguration.class);
|
BackendConfiguration.class);
|
||||||
|
|
||||||
bind(File.class).annotatedWith(Names.named(DIRECTORY_PROPERTY)).toInstance(
|
|
||||||
baseDirectory);
|
|
||||||
bind(BackendConfiguration.class).toInstance(configuration);
|
bind(BackendConfiguration.class).toInstance(configuration);
|
||||||
bind(PluginBackend.class).to(DefaultPluginBackend.class);
|
bind(PluginBackend.class).to(DefaultPluginBackend.class);
|
||||||
bind(PluginScannerFactory.class).to(DefaultPluginScannerFactory.class);
|
bind(PluginScannerFactory.class).to(DefaultPluginScannerFactory.class);
|
||||||
@@ -168,50 +149,4 @@ public class ScmBackendModule extends ServletModule
|
|||||||
PATTERN_REST_EXCLUDE);
|
PATTERN_REST_EXCLUDE);
|
||||||
filter(PATTERN_REST_API).through(GuiceContainer.class, params);
|
filter(PATTERN_REST_API).through(GuiceContainer.class, params);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private File findBaseDirectory()
|
|
||||||
{
|
|
||||||
String path = System.getProperty(DIRECTORY_PROPERTY);
|
|
||||||
|
|
||||||
if (Util.isEmpty(path))
|
|
||||||
{
|
|
||||||
path = System.getenv(DIRECTORY_ENVIRONMENT);
|
|
||||||
|
|
||||||
if (Util.isEmpty(path))
|
|
||||||
{
|
|
||||||
path = System.getProperty("user.home").concat(File.separator).concat(
|
|
||||||
DIRECTORY_DEFAULT);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
File directory = new File(path);
|
|
||||||
|
|
||||||
if (!directory.exists() &&!directory.mkdirs())
|
|
||||||
{
|
|
||||||
throw new IllegalStateException("could not create directory");
|
|
||||||
}
|
|
||||||
|
|
||||||
return directory;
|
|
||||||
}
|
|
||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param baseDirectory
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private File getConfigurationFile(File baseDirectory)
|
|
||||||
{
|
|
||||||
return new File(baseDirectory, FILE_CONFIG);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,6 +66,7 @@ import javax.ws.rs.Produces;
|
|||||||
import javax.ws.rs.WebApplicationException;
|
import javax.ws.rs.WebApplicationException;
|
||||||
import javax.ws.rs.core.Response;
|
import javax.ws.rs.core.Response;
|
||||||
import javax.ws.rs.core.Response.Status;
|
import javax.ws.rs.core.Response.Status;
|
||||||
|
import sonia.scm.plugin.BaseDirectory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@@ -225,7 +226,7 @@ public class ScreenshotResource
|
|||||||
path.append(size).append(File.separator).append(checksum);
|
path.append(size).append(File.separator).append(checksum);
|
||||||
path.append(EXTENSION_IMAGE);
|
path.append(EXTENSION_IMAGE);
|
||||||
|
|
||||||
return new File(backend.getBaseDirectory(), path.toString());
|
return BaseDirectory.getFile(path.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
//~--- fields ---------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user