You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.1 KiB
54 lines
2.1 KiB
#pragma warning disable CS1591
|
|
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Emby.Dlna.Service;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Dlna;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Emby.Dlna.ConnectionManager
|
|
{
|
|
/// <summary>
|
|
/// Defines the <see cref="ConnectionManagerService" />.
|
|
/// </summary>
|
|
public class ConnectionManagerService : BaseService, IConnectionManager
|
|
{
|
|
private readonly IDlnaManager _dlna;
|
|
private readonly IServerConfigurationManager _config;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ConnectionManagerService"/> class.
|
|
/// </summary>
|
|
/// <param name="dlna">The <see cref="IDlnaManager"/> for use with the <see cref="ConnectionManagerService"/> instance.</param>
|
|
/// <param name="config">The <see cref="IServerConfigurationManager"/> for use with the <see cref="ConnectionManagerService"/> instance.</param>
|
|
/// <param name="logger">The <see cref="ILogger{ConnectionManagerService}"/> for use with the <see cref="ConnectionManagerService"/> instance..</param>
|
|
/// <param name="httpClientFactory">The <see cref="IHttpClientFactory"/> for use with the <see cref="ConnectionManagerService"/> instance..</param>
|
|
public ConnectionManagerService(
|
|
IDlnaManager dlna,
|
|
IServerConfigurationManager config,
|
|
ILogger<ConnectionManagerService> logger,
|
|
IHttpClientFactory httpClientFactory)
|
|
: base(logger, httpClientFactory)
|
|
{
|
|
_dlna = dlna;
|
|
_config = config;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public string GetServiceXml()
|
|
{
|
|
return ConnectionManagerXmlBuilder.GetXml();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public Task<ControlResponse> ProcessControlRequestAsync(ControlRequest request)
|
|
{
|
|
var profile = _dlna.GetProfile(request.Headers) ??
|
|
_dlna.GetDefaultProfile();
|
|
|
|
return new ControlHandler(_config, Logger, profile).ProcessControlRequestAsync(request);
|
|
}
|
|
}
|
|
}
|