jellyfin/Emby.Server.Implementations/ServerApplicationPaths.cs

101 lines
4 KiB
C#
Raw Normal View History

2017-02-20 21:50:58 +01:00
using System.IO;
using Emby.Server.Implementations.AppBase;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Controller;
2013-02-21 02:33:05 +01:00
2017-02-20 21:50:58 +01:00
namespace Emby.Server.Implementations
2013-02-21 02:33:05 +01:00
{
/// <summary>
2019-09-10 22:37:53 +02:00
/// Extends BaseApplicationPaths to add paths that are only applicable on the server.
2013-02-21 02:33:05 +01:00
/// </summary>
2013-02-24 22:53:54 +01:00
public class ServerApplicationPaths : BaseApplicationPaths, IServerApplicationPaths
2013-02-21 02:33:05 +01:00
{
2013-09-21 03:04:14 +02:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Initializes a new instance of the <see cref="ServerApplicationPaths" /> class.
2013-09-21 03:04:14 +02:00
/// </summary>
2021-10-02 19:41:42 +02:00
/// <param name="programDataPath">The path for Jellyfin's data.</param>
/// <param name="logDirectoryPath">The path for Jellyfin's logging directory.</param>
/// <param name="configurationDirectoryPath">The path for Jellyfin's configuration directory.</param>
/// <param name="cacheDirectoryPath">The path for Jellyfin's cache directory.</param>
/// <param name="webDirectoryPath">The path for Jellyfin's web UI.</param>
2019-01-05 19:12:05 +01:00
public ServerApplicationPaths(
string programDataPath,
string logDirectoryPath,
string configurationDirectoryPath,
string cacheDirectoryPath,
string webDirectoryPath)
2019-12-04 21:47:01 +01:00
: base(
programDataPath,
2019-01-28 17:52:56 +01:00
logDirectoryPath,
configurationDirectoryPath,
cacheDirectoryPath,
webDirectoryPath)
2013-09-21 03:04:14 +02:00
{
2021-05-24 00:30:41 +02:00
// ProgramDataPath cannot change when the server is running, so cache these to avoid allocations.
RootFolderPath = Path.Join(ProgramDataPath, "root");
DefaultUserViewsPath = Path.Combine(RootFolderPath, "default");
DefaultInternalMetadataPath = Path.Combine(ProgramDataPath, "metadata");
2021-05-24 08:03:24 +02:00
InternalMetadataPath = DefaultInternalMetadataPath;
2013-09-21 03:04:14 +02:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the path to the base root media directory.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <value>The root folder path.</value>
2021-05-24 00:30:41 +02:00
public string RootFolderPath { get; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the default user view directory. Used if no specific user view is defined.
/// </summary>
/// <value>The default user views path.</value>
2021-05-24 00:30:41 +02:00
public string DefaultUserViewsPath { get; }
2013-02-21 02:33:05 +01:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the path to the People directory.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <value>The people path.</value>
public string PeoplePath => Path.Combine(InternalMetadataPath, "People");
2013-02-21 02:33:05 +01:00
2019-12-04 21:47:01 +01:00
/// <inheritdoc />
public string ArtistsPath => Path.Combine(InternalMetadataPath, "artists");
2016-08-18 07:56:10 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the path to the Genre directory.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <value>The genre path.</value>
public string GenrePath => Path.Combine(InternalMetadataPath, "Genre");
2013-02-21 02:33:05 +01:00
2013-06-11 05:31:00 +02:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the path to the Genre directory.
2013-06-11 05:31:00 +02:00
/// </summary>
/// <value>The genre path.</value>
public string MusicGenrePath => Path.Combine(InternalMetadataPath, "MusicGenre");
2013-09-21 03:04:14 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the path to the Studio directory.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <value>The studio path.</value>
public string StudioPath => Path.Combine(InternalMetadataPath, "Studio");
2013-02-21 02:33:05 +01:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the path to the Year directory.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <value>The year path.</value>
public string YearPath => Path.Combine(InternalMetadataPath, "Year");
2013-02-21 02:33:05 +01:00
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the path to the user configuration directory.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <value>The user configuration directory path.</value>
public string UserConfigurationDirectoryPath => Path.Combine(ConfigurationDirectoryPath, "users");
2013-02-21 02:33:05 +01:00
/// <inheritdoc/>
2021-05-24 00:30:41 +02:00
public string DefaultInternalMetadataPath { get; }
2019-12-04 21:47:01 +01:00
/// <inheritdoc />
public string InternalMetadataPath { get; set; }
2018-09-12 19:26:21 +02:00
2019-12-04 21:47:01 +01:00
/// <inheritdoc />
2020-10-17 16:01:36 +02:00
public string VirtualInternalMetadataPath => "%MetadataPath%";
2013-02-21 02:33:05 +01:00
}
}