jellyfin/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs

179 lines
4.9 KiB
C#
Raw Normal View History

2013-03-04 06:43:06 +01:00
using MediaBrowser.Common.Configuration;
2013-02-21 02:33:05 +01:00
using System.IO;
2013-02-24 22:53:54 +01:00
namespace MediaBrowser.Common.Implementations
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Provides a base class to hold common application paths used by both the Ui and Server.
/// This can be subclassed to add application-specific paths.
/// </summary>
2013-02-25 01:13:45 +01:00
public abstract class BaseApplicationPaths : IApplicationPaths
2013-02-21 02:33:05 +01:00
{
2013-09-21 03:04:14 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class.
/// </summary>
protected BaseApplicationPaths(string programDataPath, string applicationPath)
2013-09-21 03:04:14 +02:00
{
ProgramDataPath = programDataPath;
ApplicationPath = applicationPath;
2013-09-21 03:04:14 +02:00
}
public string ApplicationPath { get; private set; }
public string ProgramDataPath { get; private set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the system folder
/// </summary>
2015-05-28 07:51:48 +02:00
public string ProgramSystemPath
{
get { return Path.GetDirectoryName(ApplicationPath); }
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// The _data directory
/// </summary>
private string _dataDirectory;
/// <summary>
/// Gets the folder path to the data directory
/// </summary>
/// <value>The data directory.</value>
public string DataPath
{
get
{
if (_dataDirectory == null)
{
_dataDirectory = Path.Combine(ProgramDataPath, "data");
2015-09-14 01:07:54 +02:00
Directory.CreateDirectory(_dataDirectory);
2013-02-21 02:33:05 +01:00
}
return _dataDirectory;
}
}
/// <summary>
/// Gets the image cache path.
/// </summary>
/// <value>The image cache path.</value>
public string ImageCachePath
{
get
{
2013-12-15 02:17:57 +01:00
return Path.Combine(CachePath, "images");
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the path to the plugin directory
/// </summary>
/// <value>The plugins path.</value>
public string PluginsPath
{
get
{
2013-12-29 15:12:29 +01:00
return Path.Combine(ProgramDataPath, "plugins");
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the path to the plugin configurations directory
/// </summary>
/// <value>The plugin configurations path.</value>
public string PluginConfigurationsPath
{
get
{
2013-12-29 15:12:29 +01:00
return Path.Combine(PluginsPath, "configurations");
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the path to where temporary update files will be stored
/// </summary>
/// <value>The plugin configurations path.</value>
public string TempUpdatePath
{
get
{
2013-12-29 15:12:29 +01:00
return Path.Combine(ProgramDataPath, "updates");
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the path to the log directory
/// </summary>
/// <value>The log directory path.</value>
public string LogDirectoryPath
{
get
{
2013-12-29 15:12:29 +01:00
return Path.Combine(ProgramDataPath, "logs");
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the path to the application configuration root directory
/// </summary>
/// <value>The configuration directory path.</value>
public string ConfigurationDirectoryPath
{
get
{
2013-12-29 18:07:29 +01:00
return Path.Combine(ProgramDataPath, "config");
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the path to the system configuration file
/// </summary>
/// <value>The system configuration file path.</value>
public string SystemConfigurationFilePath
{
get
{
2013-06-04 18:48:23 +02:00
return Path.Combine(ConfigurationDirectoryPath, "system.xml");
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// The _cache directory
/// </summary>
private string _cachePath;
/// <summary>
/// Gets the folder path to the cache directory
/// </summary>
/// <value>The cache directory.</value>
public string CachePath
{
get
{
2013-12-15 02:17:57 +01:00
if (string.IsNullOrEmpty(_cachePath))
2013-02-21 02:33:05 +01:00
{
_cachePath = Path.Combine(ProgramDataPath, "cache");
2015-09-14 01:07:54 +02:00
Directory.CreateDirectory(_cachePath);
2013-02-21 02:33:05 +01:00
}
return _cachePath;
}
2013-12-15 02:17:57 +01:00
set
{
_cachePath = value;
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the folder path to the temp directory within the cache folder
/// </summary>
/// <value>The temp directory.</value>
public string TempDirectory
{
get
{
2013-12-15 02:17:57 +01:00
return Path.Combine(CachePath, "temp");
2013-02-21 02:33:05 +01:00
}
}
}
}