jellyfin/MediaBrowser.Model/Dlna/ContainerProfile.cs

75 lines
2.3 KiB
C#
Raw Permalink Normal View History

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