2016-10-29 22:22:20 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2016-10-29 22:34:54 +00:00
|
|
|
|
using Emby.Dlna.Server;
|
|
|
|
|
using Emby.Dlna.Service;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2016-11-04 08:31:05 +00:00
|
|
|
|
using MediaBrowser.Model.Xml;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
|
namespace Emby.Dlna.ConnectionManager
|
2016-10-29 22:22:20 +00:00
|
|
|
|
{
|
|
|
|
|
public class ControlHandler : BaseControlHandler
|
|
|
|
|
{
|
|
|
|
|
private readonly DeviceProfile _profile;
|
|
|
|
|
|
2016-12-04 21:30:38 +00:00
|
|
|
|
protected override IEnumerable<KeyValuePair<string, string>> GetResult(string methodName, IDictionary<string, string> methodParams)
|
2016-10-29 22:22:20 +00: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 21:30:38 +00:00
|
|
|
|
return new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase)
|
2016-10-29 22:22:20 +00:00
|
|
|
|
{
|
|
|
|
|
{ "Source", _profile.ProtocolInfo },
|
|
|
|
|
{ "Sink", "" }
|
|
|
|
|
};
|
|
|
|
|
}
|
2016-11-04 08:31:05 +00:00
|
|
|
|
|
|
|
|
|
public ControlHandler(IServerConfigurationManager config, ILogger logger, IXmlReaderSettingsFactory xmlReaderSettingsFactory, DeviceProfile profile) : base(config, logger, xmlReaderSettingsFactory)
|
|
|
|
|
{
|
|
|
|
|
_profile = profile;
|
|
|
|
|
}
|
2016-10-29 22:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|