jellyfin/MediaBrowser.Model/Dlna/ContainerProfile.cs

70 lines
1.9 KiB
C#
Raw Normal View History

2014-03-23 09:42:02 -07:00
using System.Collections.Generic;
2014-03-26 08:06:48 -07:00
using System.Xml.Serialization;
2016-12-09 00:23:09 -07:00
using MediaBrowser.Model.Dlna;
2016-12-13 10:04:37 -07:00
using MediaBrowser.Model.Extensions;
2014-03-23 09:42:02 -07:00
2014-04-01 15:23:07 -07:00
namespace MediaBrowser.Model.Dlna
2014-03-23 09:42:02 -07:00
{
public class ContainerProfile
{
2016-12-09 00:23:09 -07:00
[XmlAttribute("type")]
2014-03-23 09:42:02 -07:00
public DlnaProfileType Type { get; set; }
public ProfileCondition[] Conditions { get; set; }
2014-03-26 08:06:48 -07:00
2016-12-09 00:23:09 -07:00
[XmlAttribute("container")]
2014-03-23 09:42:02 -07:00
public string Container { get; set; }
public ContainerProfile()
{
Conditions = new ProfileCondition[] { };
}
public List<string> GetContainers()
2017-08-03 23:34:46 -07:00
{
return SplitValue(Container);
}
private static List<string> SplitValue(string value)
2014-03-23 09:42:02 -07:00
{
2014-05-08 14:23:24 -07:00
List<string> list = new List<string>();
2017-08-03 23:34:46 -07:00
foreach (string i in (value ?? string.Empty).Split(','))
2014-05-08 14:23:24 -07:00
{
2017-08-03 23:34:46 -07:00
if (!string.IsNullOrWhiteSpace(i)) list.Add(i);
2014-05-08 14:23:24 -07:00
}
return list;
2014-03-23 09:42:02 -07:00
}
2016-12-13 10:04:37 -07:00
public bool ContainsContainer(string container)
{
List<string> containers = GetContainers();
2017-08-03 23:34:46 -07:00
return ContainsContainer(containers, container);
}
public static bool ContainsContainer(string profileContainers, string inputContainer)
{
return ContainsContainer(SplitValue(profileContainers), inputContainer);
}
public static bool ContainsContainer(List<string> profileContainers, string inputContainer)
{
if (profileContainers.Count == 0)
{
return true;
}
var allInputContainers = SplitValue(inputContainer);
foreach (var container in allInputContainers)
{
if (ListHelper.ContainsIgnoreCase(profileContainers, container))
{
return true;
}
}
return false;
2016-12-13 10:04:37 -07:00
}
2014-03-23 09:42:02 -07:00
}
}