jellyfin/MediaBrowser.Controller/Kernel.cs

89 lines
2.9 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Localization;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.MediaInfo;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Weather;
using System.Collections.Generic;
namespace MediaBrowser.Controller
{
/// <summary>
/// Class Kernel
/// </summary>
public class Kernel
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets the instance.
/// </summary>
/// <value>The instance.</value>
public static Kernel Instance { get; private set; }
/// <summary>
/// Gets the image manager.
/// </summary>
/// <value>The image manager.</value>
public ImageManager ImageManager { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the FFMPEG controller.
/// </summary>
/// <value>The FFMPEG controller.</value>
public FFMpegManager FFMpegManager { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
2013-03-07 06:34:00 +01:00
/// Gets the name of the web application that can be used for url building.
/// All api urls will be of the form {protocol}://{host}:{port}/{appname}/...
2013-02-21 02:33:05 +01:00
/// </summary>
2013-03-07 06:34:00 +01:00
/// <value>The name of the web application.</value>
public string WebApplicationName
2013-02-21 02:33:05 +01:00
{
2013-03-07 06:34:00 +01:00
get { return "mediabrowser"; }
}
/// <summary>
/// Gets the HTTP server URL prefix.
/// </summary>
/// <value>The HTTP server URL prefix.</value>
public virtual string HttpServerUrlPrefix
{
get
{
return "http://+:" + _configurationManager.Configuration.HttpServerPortNumber + "/" + WebApplicationName + "/";
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the list of Localized string files
/// </summary>
/// <value>The string files.</value>
public IEnumerable<LocalizedStringData> StringFiles { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the list of currently registered weather prvoiders
/// </summary>
/// <value>The weather providers.</value>
public IEnumerable<IWeatherProvider> WeatherProviders { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the list of currently registered image processors
/// Image processors are specialized metadata providers that run after the normal ones
/// </summary>
/// <value>The image enhancers.</value>
public IEnumerable<IImageEnhancer> ImageEnhancers { get; set; }
2013-02-21 02:33:05 +01:00
2013-03-04 06:43:06 +01:00
private readonly IServerConfigurationManager _configurationManager;
2013-02-21 02:33:05 +01:00
/// <summary>
/// Creates a kernel based on a Data path, which is akin to our current programdata path
/// </summary>
2013-03-04 06:43:06 +01:00
/// <param name="configurationManager">The configuration manager.</param>
public Kernel(IServerConfigurationManager configurationManager)
2013-02-21 02:33:05 +01:00
{
Instance = this;
2013-03-04 06:43:06 +01:00
_configurationManager = configurationManager;
2013-02-21 02:33:05 +01:00
}
}
}