jellyfin/Emby.Dlna/ConnectionManager/ControlHandler.cs

42 lines
1.4 KiB
C#
Raw Normal View History

2016-10-30 00:22:20 +02:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Configuration;
2016-10-30 00:34:54 +02:00
using Emby.Dlna.Server;
using Emby.Dlna.Service;
2016-10-30 00:22:20 +02:00
using MediaBrowser.Model.Dlna;
using Microsoft.Extensions.Logging;
2016-10-30 00:22:20 +02:00
using System;
using System.Collections.Generic;
2016-11-04 09:31:05 +01:00
using MediaBrowser.Model.Xml;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.ConnectionManager
2016-10-30 00:22:20 +02:00
{
public class ControlHandler : BaseControlHandler
{
private readonly DeviceProfile _profile;
2016-12-04 22:30:38 +01:00
protected override IEnumerable<KeyValuePair<string, string>> GetResult(string methodName, IDictionary<string, string> methodParams)
2016-10-30 00:22:20 +02:00
{
if (string.Equals(methodName, "GetProtocolInfo", StringComparison.OrdinalIgnoreCase))
{
return HandleGetProtocolInfo();
}
throw new ResourceNotFoundException("Unexpected control request name: " + methodName);
}
private IEnumerable<KeyValuePair<string, string>> HandleGetProtocolInfo()
{
2016-12-04 22:30:38 +01:00
return new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase)
2016-10-30 00:22:20 +02:00
{
{ "Source", _profile.ProtocolInfo },
{ "Sink", "" }
};
}
2016-11-04 09:31:05 +01:00
public ControlHandler(IServerConfigurationManager config, ILogger logger, IXmlReaderSettingsFactory xmlReaderSettingsFactory, DeviceProfile profile) : base(config, logger, xmlReaderSettingsFactory)
{
_profile = profile;
}
2016-10-30 00:22:20 +02:00
}
}