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.
44 lines
1.4 KiB
44 lines
1.4 KiB
using MediaBrowser.Common.Extensions;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Dlna.Server;
|
|
using MediaBrowser.Dlna.Service;
|
|
using MediaBrowser.Model.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Dlna.MediaReceiverRegistrar
|
|
{
|
|
public class ControlHandler : BaseControlHandler
|
|
{
|
|
public ControlHandler(IServerConfigurationManager config, ILogger logger) : base(config, logger)
|
|
{
|
|
}
|
|
|
|
protected override IEnumerable<KeyValuePair<string, string>> GetResult(string methodName, Headers methodParams)
|
|
{
|
|
if (string.Equals(methodName, "IsAuthorized", StringComparison.OrdinalIgnoreCase))
|
|
return HandleIsAuthorized();
|
|
if (string.Equals(methodName, "IsValidated", StringComparison.OrdinalIgnoreCase))
|
|
return HandleIsValidated();
|
|
|
|
throw new ResourceNotFoundException("Unexpected control request name: " + methodName);
|
|
}
|
|
|
|
private IEnumerable<KeyValuePair<string, string>> HandleIsAuthorized()
|
|
{
|
|
return new Headers(true)
|
|
{
|
|
{ "Result", "1" }
|
|
};
|
|
}
|
|
|
|
private IEnumerable<KeyValuePair<string, string>> HandleIsValidated()
|
|
{
|
|
return new Headers(true)
|
|
{
|
|
{ "Result", "1" }
|
|
};
|
|
}
|
|
}
|
|
}
|