jellyfin/MediaBrowser.Model/Dlna/ContainerProfile.cs

102 lines
2.8 KiB
C#
Raw Normal View History

#nullable disable
2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System;
2020-05-01 16:48:33 +02:00
using System.Linq;
2018-12-28 00:27:57 +01:00
using System.Xml.Serialization;
namespace MediaBrowser.Model.Dlna
{
public class ContainerProfile
{
public ContainerProfile()
{
Conditions = Array.Empty<ProfileCondition>();
}
2018-12-28 00:27:57 +01:00
[XmlAttribute("type")]
public DlnaProfileType Type { get; set; }
2018-12-28 00:27:57 +01:00
public ProfileCondition[] Conditions { get; set; }
[XmlAttribute("container")]
public string Container { get; set; }
public string[] GetContainers()
{
return SplitValue(Container);
}
public static string[] SplitValue(string value)
{
if (string.IsNullOrEmpty(value))
{
2018-12-27 22:43:48 +01:00
return Array.Empty<string>();
2018-12-28 00:27:57 +01:00
}
2020-11-14 16:28:49 +01:00
return value.Split(',', StringSplitOptions.RemoveEmptyEntries);
2018-12-28 00:27:57 +01:00
}
public bool ContainsContainer(string container)
{
var containers = GetContainers();
return ContainsContainer(containers, container);
}
public static bool ContainsContainer(string profileContainers, string inputContainer)
{
var isNegativeList = false;
2020-12-02 15:38:52 +01:00
if (profileContainers != null && profileContainers.StartsWith('-'))
2018-12-28 00:27:57 +01:00
{
isNegativeList = true;
profileContainers = profileContainers.Substring(1);
}
return ContainsContainer(SplitValue(profileContainers), isNegativeList, inputContainer);
}
public static bool ContainsContainer(string[] profileContainers, string inputContainer)
{
return ContainsContainer(profileContainers, false, inputContainer);
}
public static bool ContainsContainer(string[] profileContainers, bool isNegativeList, string inputContainer)
{
if (profileContainers.Length == 0)
{
return true;
}
if (isNegativeList)
{
var allInputContainers = SplitValue(inputContainer);
foreach (var container in allInputContainers)
{
2020-05-01 16:48:33 +02:00
if (profileContainers.Contains(container, StringComparer.OrdinalIgnoreCase))
2018-12-28 00:27:57 +01:00
{
return false;
}
}
return true;
}
else
{
var allInputContainers = SplitValue(inputContainer);
foreach (var container in allInputContainers)
{
2020-05-01 16:48:33 +02:00
if (profileContainers.Contains(container, StringComparer.OrdinalIgnoreCase))
2018-12-28 00:27:57 +01:00
{
return true;
}
}
return false;
}
}
}
}