2014-09-28 15:27:26 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller
|
|
|
|
|
{
|
|
|
|
|
public interface IServerApplicationPaths : IApplicationPaths
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the base root media directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The root folder path.</value>
|
|
|
|
|
string RootFolderPath { get; }
|
|
|
|
|
|
2014-11-26 20:57:16 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the application resources path. This is the path to the folder containing resources that are deployed as part of the application
|
|
|
|
|
/// For example, this folder contains dashboard-ui and swagger-ui
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The application resources path.</value>
|
|
|
|
|
string ApplicationResourcesPath { get; }
|
|
|
|
|
|
2013-02-24 21:53:54 +00: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>
|
|
|
|
|
string DefaultUserViewsPath { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to localization data.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The localization path.</value>
|
|
|
|
|
string LocalizationPath { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the Images By Name directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The images by name path.</value>
|
2013-12-15 01:17:57 +00:00
|
|
|
|
string ItemsByNamePath { get; }
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the People directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The people path.</value>
|
|
|
|
|
string PeoplePath { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the Genre directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The genre path.</value>
|
|
|
|
|
string GenrePath { get; }
|
|
|
|
|
|
2013-06-11 03:31:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the music genre path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The music genre path.</value>
|
|
|
|
|
string MusicGenrePath { get; }
|
2013-07-01 17:17:33 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the game genre path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The game genre path.</value>
|
|
|
|
|
string GameGenrePath { get; }
|
2013-12-15 01:17:57 +00:00
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the Studio directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The studio path.</value>
|
|
|
|
|
string StudioPath { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the Year directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The year path.</value>
|
|
|
|
|
string YearPath { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the General IBN directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The general path.</value>
|
|
|
|
|
string GeneralPath { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the Ratings IBN directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The ratings path.</value>
|
|
|
|
|
string RatingsPath { get; }
|
|
|
|
|
|
2013-05-02 14:30:38 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the media info images path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The media info images path.</value>
|
|
|
|
|
string MediaInfoImagesPath { get; }
|
2013-12-15 01:17:57 +00:00
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path to the user configuration directory
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The user configuration directory path.</value>
|
|
|
|
|
string UserConfigurationDirectoryPath { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-01-11 18:58:50 +00:00
|
|
|
|
/// Gets the transcoding temporary path.
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// </summary>
|
2014-01-11 18:58:50 +00:00
|
|
|
|
/// <value>The transcoding temporary path.</value>
|
|
|
|
|
string TranscodingTempPath { get; }
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
2013-04-10 15:56:36 +00:00
|
|
|
|
/// <summary>
|
2014-02-08 20:02:35 +00:00
|
|
|
|
/// Gets the internal metadata path.
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// </summary>
|
2014-02-08 20:02:35 +00:00
|
|
|
|
/// <value>The internal metadata path.</value>
|
|
|
|
|
string InternalMetadataPath { get; }
|
2013-02-24 21:53:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|