using System.IO; using Emby.Server.Implementations.AppBase; using MediaBrowser.Controller; namespace Emby.Server.Implementations { /// /// Extends BaseApplicationPaths to add paths that are only applicable on the server. /// public class ServerApplicationPaths : BaseApplicationPaths, IServerApplicationPaths { /// /// Initializes a new instance of the class. /// public ServerApplicationPaths( string programDataPath, string logDirectoryPath, string configurationDirectoryPath, string cacheDirectoryPath, string webDirectoryPath) : base( programDataPath, logDirectoryPath, configurationDirectoryPath, cacheDirectoryPath, webDirectoryPath) { // 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"); InternalMetadataPath = DefaultInternalMetadataPath; } /// /// Gets the path to the base root media directory. /// /// The root folder path. public string RootFolderPath { get; } /// /// Gets the path to the default user view directory. Used if no specific user view is defined. /// /// The default user views path. public string DefaultUserViewsPath { get; } /// /// Gets the path to the People directory. /// /// The people path. public string PeoplePath => Path.Combine(InternalMetadataPath, "People"); /// public string ArtistsPath => Path.Combine(InternalMetadataPath, "artists"); /// /// Gets the path to the Genre directory. /// /// The genre path. public string GenrePath => Path.Combine(InternalMetadataPath, "Genre"); /// /// Gets the path to the Genre directory. /// /// The genre path. public string MusicGenrePath => Path.Combine(InternalMetadataPath, "MusicGenre"); /// /// Gets the path to the Studio directory. /// /// The studio path. public string StudioPath => Path.Combine(InternalMetadataPath, "Studio"); /// /// Gets the path to the Year directory. /// /// The year path. public string YearPath => Path.Combine(InternalMetadataPath, "Year"); /// /// Gets the path to the General IBN directory. /// /// The general path. public string GeneralPath => Path.Combine(InternalMetadataPath, "general"); /// /// Gets the path to the Ratings IBN directory. /// /// The ratings path. public string RatingsPath => Path.Combine(InternalMetadataPath, "ratings"); /// /// Gets the media info images path. /// /// The media info images path. public string MediaInfoImagesPath => Path.Combine(InternalMetadataPath, "mediainfo"); /// /// Gets the path to the user configuration directory. /// /// The user configuration directory path. public string UserConfigurationDirectoryPath => Path.Combine(ConfigurationDirectoryPath, "users"); /// public string DefaultInternalMetadataPath { get; } /// public string InternalMetadataPath { get; set; } /// public string VirtualInternalMetadataPath => "%MetadataPath%"; } }