jellyfin/MediaBrowser.Common.Impleme.../BaseApplicationPaths.cs

179 lines
4.9 KiB
C#
Raw Normal View History

2013-03-04 00:43:06 -05:00
using MediaBrowser.Common.Configuration;
2013-02-20 20:33:05 -05:00
using System.IO;
2013-02-24 16:53:54 -05:00
namespace MediaBrowser.Common.Implementations
2013-02-20 20:33:05 -05: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-24 19:13:45 -05:00
public abstract class BaseApplicationPaths : IApplicationPaths
2013-02-20 20:33:05 -05:00
{
2013-09-20 21:04:14 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class.
/// </summary>
protected BaseApplicationPaths(string programDataPath, string applicationPath)
2013-09-20 21:04:14 -04:00
{
ProgramDataPath = programDataPath;
ApplicationPath = applicationPath;
2013-09-20 21:04:14 -04:00
}
public string ApplicationPath { get; private set; }
public string ProgramDataPath { get; private set; }
2013-02-20 20:33:05 -05:00
/// <summary>
/// Gets the path to the system folder
/// </summary>
2015-05-28 01:51:48 -04:00
public string ProgramSystemPath
{
get { return Path.GetDirectoryName(ApplicationPath); }
}
2013-02-20 20:33:05 -05: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-13 19:07:54 -04:00
Directory.CreateDirectory(_dataDirectory);
2013-02-20 20:33:05 -05:00
}
return _dataDirectory;
}
}
/// <summary>
/// Gets the image cache path.
/// </summary>
/// <value>The image cache path.</value>
public string ImageCachePath
{
get
{
2013-12-14 20:17:57 -05:00
return Path.Combine(CachePath, "images");
2013-02-20 20:33:05 -05:00
}
}
/// <summary>
/// Gets the path to the plugin directory
/// </summary>
/// <value>The plugins path.</value>
public string PluginsPath
{
get
{
2013-12-29 09:12:29 -05:00
return Path.Combine(ProgramDataPath, "plugins");
2013-02-20 20:33:05 -05:00
}
}
/// <summary>
/// Gets the path to the plugin configurations directory
/// </summary>
/// <value>The plugin configurations path.</value>
public string PluginConfigurationsPath
{
get
{
2013-12-29 09:12:29 -05:00
return Path.Combine(PluginsPath, "configurations");
2013-02-20 20:33:05 -05: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 09:12:29 -05:00
return Path.Combine(ProgramDataPath, "updates");
2013-02-20 20:33:05 -05:00
}
}
/// <summary>
/// Gets the path to the log directory
/// </summary>
/// <value>The log directory path.</value>
public string LogDirectoryPath
{
get
{
2013-12-29 09:12:29 -05:00
return Path.Combine(ProgramDataPath, "logs");
2013-02-20 20:33:05 -05: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 12:07:29 -05:00
return Path.Combine(ProgramDataPath, "config");
2013-02-20 20:33:05 -05: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 12:48:23 -04:00
return Path.Combine(ConfigurationDirectoryPath, "system.xml");
2013-02-20 20:33:05 -05: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-14 20:17:57 -05:00
if (string.IsNullOrEmpty(_cachePath))
2013-02-20 20:33:05 -05:00
{
_cachePath = Path.Combine(ProgramDataPath, "cache");
2015-09-13 19:07:54 -04:00
Directory.CreateDirectory(_cachePath);
2013-02-20 20:33:05 -05:00
}
return _cachePath;
}
2013-12-14 20:17:57 -05:00
set
{
_cachePath = value;
}
2013-02-20 20:33:05 -05: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-14 20:17:57 -05:00
return Path.Combine(CachePath, "temp");
2013-02-20 20:33:05 -05:00
}
}
}
}