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.
38 lines
1.0 KiB
38 lines
1.0 KiB
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|
{
|
|
public class LegacyHdHomerunChannelCommands : IHdHomerunChannelCommands
|
|
{
|
|
private string? _channel;
|
|
private string? _program;
|
|
|
|
public LegacyHdHomerunChannelCommands(string url)
|
|
{
|
|
// parse url for channel and program
|
|
var match = Regex.Match(url, @"\/ch([0-9]+)-?([0-9]*)");
|
|
if (match.Success)
|
|
{
|
|
_channel = match.Groups[1].Value;
|
|
_program = match.Groups[2].Value;
|
|
}
|
|
}
|
|
|
|
public IEnumerable<(string CommandName, string CommandValue)> GetCommands()
|
|
{
|
|
if (!string.IsNullOrEmpty(_channel))
|
|
{
|
|
yield return ("channel", _channel);
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(_program))
|
|
{
|
|
yield return ("program", _program);
|
|
}
|
|
}
|
|
}
|
|
}
|