2019-02-13 08:35:14 -07:00
|
|
|
using System;
|
2019-01-13 12:54:44 -07:00
|
|
|
using System.IO;
|
2016-10-28 22:40:15 -07:00
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
2017-02-20 13:50:58 -07:00
|
|
|
namespace Emby.Server.Implementations.AppBase
|
2016-10-28 22:40:15 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-15 04:59:34 -07:00
|
|
|
/// Provides a base class to hold common application paths used by both the UI and Server.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// This can be subclassed to add application-specific paths.
|
|
|
|
/// </summary>
|
|
|
|
public abstract class BaseApplicationPaths : IApplicationPaths
|
|
|
|
{
|
2019-08-09 14:50:40 -07:00
|
|
|
private string _dataPath;
|
|
|
|
|
2016-10-28 22:40:15 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class.
|
|
|
|
/// </summary>
|
2020-04-14 12:08:20 -07:00
|
|
|
/// <param name="programDataPath">The program data path.</param>
|
|
|
|
/// <param name="logDirectoryPath">The log directory path.</param>
|
|
|
|
/// <param name="configurationDirectoryPath">The configuration directory path.</param>
|
|
|
|
/// <param name="cacheDirectoryPath">The cache directory path.</param>
|
|
|
|
/// <param name="webDirectoryPath">The web directory path.</param>
|
2019-01-05 11:12:05 -07:00
|
|
|
protected BaseApplicationPaths(
|
|
|
|
string programDataPath,
|
2019-02-13 08:35:14 -07:00
|
|
|
string logDirectoryPath,
|
|
|
|
string configurationDirectoryPath,
|
2019-03-10 13:17:48 -07:00
|
|
|
string cacheDirectoryPath,
|
|
|
|
string webDirectoryPath)
|
2016-10-28 22:40:15 -07:00
|
|
|
{
|
|
|
|
ProgramDataPath = programDataPath;
|
2019-01-01 13:34:12 -07:00
|
|
|
LogDirectoryPath = logDirectoryPath;
|
2019-01-05 11:12:05 -07:00
|
|
|
ConfigurationDirectoryPath = configurationDirectoryPath;
|
2019-01-28 09:52:56 -07:00
|
|
|
CachePath = cacheDirectoryPath;
|
2019-03-10 13:17:48 -07:00
|
|
|
WebPath = webDirectoryPath;
|
2019-02-13 08:35:14 -07:00
|
|
|
|
2021-05-20 12:28:18 -07:00
|
|
|
_dataPath = Directory.CreateDirectory(Path.Combine(ProgramDataPath, "data")).FullName;
|
2016-10-28 22:40:15 -07:00
|
|
|
}
|
|
|
|
|
2019-02-13 08:35:14 -07:00
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the path to the program data folder.
|
2019-02-13 08:35:14 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The program data path.</value>
|
2019-08-09 14:50:40 -07:00
|
|
|
public string ProgramDataPath { get; }
|
2016-10-28 22:40:15 -07:00
|
|
|
|
2020-03-15 09:42:57 -07:00
|
|
|
/// <inheritdoc/>
|
2019-08-09 14:50:40 -07:00
|
|
|
public string WebPath { get; }
|
2019-03-10 14:04:18 -07:00
|
|
|
|
2016-10-28 22:40:15 -07:00
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the path to the system folder.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// <value>The path to the system folder.</value>
|
2019-02-13 08:35:14 -07:00
|
|
|
public string ProgramSystemPath { get; } = AppContext.BaseDirectory;
|
2016-10-28 22:40:15 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the folder path to the data directory.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The data directory.</value>
|
2021-05-20 12:28:18 -07:00
|
|
|
public string DataPath => _dataPath;
|
2016-10-28 22:40:15 -07:00
|
|
|
|
2019-10-09 08:10:16 -07:00
|
|
|
/// <inheritdoc />
|
2020-10-17 07:01:36 -07:00
|
|
|
public string VirtualDataPath => "%AppDataPath%";
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2016-10-28 22:40:15 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the image cache path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The image cache path.</value>
|
2019-01-06 13:50:43 -07:00
|
|
|
public string ImageCachePath => Path.Combine(CachePath, "images");
|
2016-10-28 22:40:15 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the path to the plugin directory.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The plugins path.</value>
|
2019-01-06 13:50:43 -07:00
|
|
|
public string PluginsPath => Path.Combine(ProgramDataPath, "plugins");
|
2016-10-28 22:40:15 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the path to the plugin configurations directory.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The plugin configurations path.</value>
|
2019-01-06 13:50:43 -07:00
|
|
|
public string PluginConfigurationsPath => Path.Combine(PluginsPath, "configurations");
|
2016-10-28 22:40:15 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the path to the log directory.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The log directory path.</value>
|
2019-08-09 14:50:40 -07:00
|
|
|
public string LogDirectoryPath { get; }
|
2019-01-05 11:12:05 -07:00
|
|
|
|
2016-10-28 22:40:15 -07:00
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the path to the application configuration root directory.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The configuration directory path.</value>
|
2019-08-09 14:50:40 -07:00
|
|
|
public string ConfigurationDirectoryPath { get; }
|
2016-10-28 22:40:15 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the path to the system configuration file.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The system configuration file path.</value>
|
2019-01-06 13:50:43 -07:00
|
|
|
public string SystemConfigurationFilePath => Path.Combine(ConfigurationDirectoryPath, "system.xml");
|
2016-10-28 22:40:15 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets or sets the folder path to the cache directory.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The cache directory.</value>
|
2019-02-13 08:35:14 -07:00
|
|
|
public string CachePath { get; set; }
|
2016-10-28 22:40:15 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-08-09 14:50:40 -07:00
|
|
|
/// Gets the folder path to the temp directory within the cache folder.
|
2016-10-28 22:40:15 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The temp directory.</value>
|
2019-01-06 13:50:43 -07:00
|
|
|
public string TempDirectory => Path.Combine(CachePath, "temp");
|
2016-10-28 22:40:15 -07:00
|
|
|
}
|
|
|
|
}
|