jellyfin/MediaBrowser.Model/Dlna/ContainerProfile.cs

75 lines
2.3 KiB
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Xml.Serialization;
2021-12-20 07:31:07 -05:00
using Jellyfin.Extensions;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Dlna
{
public class ContainerProfile
{
[XmlAttribute("type")]
public DlnaProfileType Type { get; set; }
2023-03-07 15:51:48 -05:00
public ProfileCondition[] Conditions { get; set; } = Array.Empty<ProfileCondition>();
2018-12-27 18:27:57 -05:00
[XmlAttribute("container")]
public string Container { get; set; } = string.Empty;
2018-12-27 18:27:57 -05:00
public static string[] SplitValue(string? value)
2018-12-27 18:27:57 -05:00
{
if (string.IsNullOrEmpty(value))
{
2018-12-27 16:43:48 -05:00
return Array.Empty<string>();
2018-12-27 18:27:57 -05:00
}
2020-11-14 10:28:49 -05:00
return value.Split(',', StringSplitOptions.RemoveEmptyEntries);
2018-12-27 18:27:57 -05:00
}
public bool ContainsContainer(string? container)
2018-12-27 18:27:57 -05:00
{
var containers = SplitValue(Container);
2018-12-27 18:27:57 -05:00
return ContainsContainer(containers, container);
}
public static bool ContainsContainer(string? profileContainers, string? inputContainer)
2018-12-27 18:27:57 -05:00
{
var isNegativeList = false;
2022-12-05 09:01:13 -05:00
if (profileContainers is not null && profileContainers.StartsWith('-'))
2018-12-27 18:27:57 -05:00
{
isNegativeList = true;
profileContainers = profileContainers.Substring(1);
}
return ContainsContainer(SplitValue(profileContainers), isNegativeList, inputContainer);
}
public static bool ContainsContainer(string[]? profileContainers, string? inputContainer)
2018-12-27 18:27:57 -05:00
{
return ContainsContainer(profileContainers, false, inputContainer);
}
public static bool ContainsContainer(string[]? profileContainers, bool isNegativeList, string? inputContainer)
2018-12-27 18:27:57 -05:00
{
2022-12-05 09:00:20 -05:00
if (profileContainers is null || profileContainers.Length == 0)
2018-12-27 18:27:57 -05:00
{
// Empty profiles always support all containers/codecs
return true;
2018-12-27 18:27:57 -05:00
}
var allInputContainers = SplitValue(inputContainer);
2018-12-27 18:27:57 -05:00
foreach (var container in allInputContainers)
2018-12-27 18:27:57 -05:00
{
2021-12-20 07:31:07 -05:00
if (profileContainers.Contains(container, StringComparison.OrdinalIgnoreCase))
2018-12-27 18:27:57 -05:00
{
return !isNegativeList;
2018-12-27 18:27:57 -05:00
}
}
return isNegativeList;
2018-12-27 18:27:57 -05:00
}
}
}