jellyfin/Emby.Dlna/ConnectionManager/ControlHandler.cs

56 lines
2.1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2019-01-13 20:16:19 +01:00
using System.Collections.Generic;
using System.Xml;
2016-10-30 00:34:54 +02:00
using Emby.Dlna.Service;
2019-01-13 20:16:19 +01:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Configuration;
2016-10-30 00:22:20 +02:00
using MediaBrowser.Model.Dlna;
2019-01-13 20:16:19 +01:00
using Microsoft.Extensions.Logging;
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
{
/// <summary>
/// Defines the <see cref="ControlHandler" />.
/// </summary>
2016-10-30 00:22:20 +02:00
public class ControlHandler : BaseControlHandler
{
private readonly DeviceProfile _profile;
/// <summary>
/// Initializes a new instance of the <see cref="ControlHandler"/> class.
/// </summary>
/// <param name="config">The <see cref="IServerConfigurationManager"/> for use with the <see cref="ControlHandler"/> instance.</param>
/// <param name="logger">The <see cref="ILogger"/> for use with the <see cref="ControlHandler"/> instance.</param>
/// <param name="profile">The <see cref="DeviceProfile"/> for use with the <see cref="ControlHandler"/> instance.</param>
public ControlHandler(IServerConfigurationManager config, ILogger logger, DeviceProfile profile)
: base(config, logger)
{
_profile = profile;
}
/// <inheritdoc />
2021-04-01 19:16:00 +02:00
protected override void WriteResult(string methodName, IReadOnlyDictionary<string, string> methodParams, XmlWriter xmlWriter)
2016-10-30 00:22:20 +02:00
{
if (string.Equals(methodName, "GetProtocolInfo", StringComparison.OrdinalIgnoreCase))
{
HandleGetProtocolInfo(xmlWriter);
2020-01-26 17:41:34 +01:00
return;
2016-10-30 00:22:20 +02:00
}
throw new ResourceNotFoundException("Unexpected control request name: " + methodName);
}
/// <summary>
/// Builds the response to the GetProtocolInfo request.
/// </summary>
/// <param name="xmlWriter">The <see cref="XmlWriter"/>.</param>
private void HandleGetProtocolInfo(XmlWriter xmlWriter)
2016-10-30 00:22:20 +02:00
{
xmlWriter.WriteElementString("Source", _profile.ProtocolInfo);
xmlWriter.WriteElementString("Sink", string.Empty);
2016-11-04 09:31:05 +01:00
}
2016-10-30 00:22:20 +02:00
}
}