jellyfin/Emby.Server.Implementations/AppBase/BaseApplicationPaths.cs

173 lines
5.5 KiB
C#
Raw Normal View History

using System.IO;
2016-10-29 07:40:15 +02:00
using MediaBrowser.Common.Configuration;
2017-02-20 21:50:58 +01:00
namespace Emby.Server.Implementations.AppBase
2016-10-29 07:40:15 +02: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>
public abstract class BaseApplicationPaths : IApplicationPaths
{
/// <summary>
/// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class.
/// </summary>
2019-01-05 19:12:05 +01:00
protected BaseApplicationPaths(
string programDataPath,
string appFolderPath,
string logDirectoryPath = null,
2019-01-28 17:52:56 +01:00
string configurationDirectoryPath = null,
string cacheDirectoryPath = null)
2016-10-29 07:40:15 +02:00
{
ProgramDataPath = programDataPath;
2016-11-13 22:04:21 +01:00
ProgramSystemPath = appFolderPath;
2019-01-01 21:34:12 +01:00
LogDirectoryPath = logDirectoryPath;
2019-01-05 19:12:05 +01:00
ConfigurationDirectoryPath = configurationDirectoryPath;
2019-01-28 17:52:56 +01:00
CachePath = cacheDirectoryPath;
2016-10-29 07:40:15 +02:00
}
public string ProgramDataPath { get; private set; }
/// <summary>
/// Gets the path to the system folder
/// </summary>
2016-11-13 22:04:21 +01:00
public string ProgramSystemPath { get; private set; }
2016-10-29 07:40:15 +02: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");
2017-08-17 22:19:02 +02:00
Directory.CreateDirectory(_dataDirectory);
2016-10-29 07:40:15 +02:00
}
return _dataDirectory;
}
}
2018-09-12 19:26:21 +02:00
private const string _virtualDataPath = "%AppDataPath%";
public string VirtualDataPath => _virtualDataPath;
2018-09-12 19:26:21 +02:00
2016-10-29 07:40:15 +02:00
/// <summary>
/// Gets the image cache path.
/// </summary>
/// <value>The image cache path.</value>
public string ImageCachePath => Path.Combine(CachePath, "images");
2016-10-29 07:40:15 +02:00
/// <summary>
/// Gets the path to the plugin directory
/// </summary>
/// <value>The plugins path.</value>
public string PluginsPath => Path.Combine(ProgramDataPath, "plugins");
2016-10-29 07:40:15 +02:00
/// <summary>
/// Gets the path to the plugin configurations directory
/// </summary>
/// <value>The plugin configurations path.</value>
public string PluginConfigurationsPath => Path.Combine(PluginsPath, "configurations");
2016-10-29 07:40:15 +02:00
/// <summary>
/// Gets the path to where temporary update files will be stored
/// </summary>
/// <value>The plugin configurations path.</value>
public string TempUpdatePath => Path.Combine(ProgramDataPath, "updates");
2016-10-29 07:40:15 +02:00
2019-01-01 21:34:12 +01:00
/// <summary>
/// The _log directory
/// </summary>
private string _logDirectoryPath;
2016-10-29 07:40:15 +02:00
/// <summary>
/// Gets the path to the log directory
/// </summary>
/// <value>The log directory path.</value>
public string LogDirectoryPath
{
get
{
2019-01-01 21:34:12 +01:00
if (string.IsNullOrEmpty(_logDirectoryPath))
{
_logDirectoryPath = Path.Combine(ProgramDataPath, "logs");
Directory.CreateDirectory(_logDirectoryPath);
}
return _logDirectoryPath;
}
set => _logDirectoryPath = value;
2016-10-29 07:40:15 +02:00
}
2019-01-05 19:12:05 +01:00
/// <summary>
/// The _config directory
/// </summary>
private string _configurationDirectoryPath;
2016-10-29 07:40:15 +02:00
/// <summary>
/// Gets the path to the application configuration root directory
/// </summary>
/// <value>The configuration directory path.</value>
public string ConfigurationDirectoryPath
{
get
{
2019-01-05 19:12:05 +01:00
if (string.IsNullOrEmpty(_configurationDirectoryPath))
{
_configurationDirectoryPath = Path.Combine(ProgramDataPath, "config");
Directory.CreateDirectory(_configurationDirectoryPath);
}
return _configurationDirectoryPath;
}
set => _configurationDirectoryPath = value;
2016-10-29 07:40:15 +02:00
}
/// <summary>
/// Gets the path to the system configuration file
/// </summary>
/// <value>The system configuration file path.</value>
public string SystemConfigurationFilePath => Path.Combine(ConfigurationDirectoryPath, "system.xml");
2016-10-29 07:40:15 +02: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
{
if (string.IsNullOrEmpty(_cachePath))
{
_cachePath = Path.Combine(ProgramDataPath, "cache");
2017-08-17 22:19:02 +02:00
Directory.CreateDirectory(_cachePath);
2016-10-29 07:40:15 +02:00
}
return _cachePath;
}
set => _cachePath = value;
2016-10-29 07:40:15 +02:00
}
/// <summary>
/// Gets the folder path to the temp directory within the cache folder
/// </summary>
/// <value>The temp directory.</value>
public string TempDirectory => Path.Combine(CachePath, "temp");
2016-10-29 07:40:15 +02:00
}
}