jellyfin/MediaBrowser.Model/Dlna/ContainerProfile.cs

73 lines
1.9 KiB
C#
Raw Normal View History

2017-08-04 22:29:34 +02:00
using System;
using System.Collections.Generic;
2014-03-26 16:06:48 +01:00
using System.Xml.Serialization;
2016-12-09 08:23:09 +01:00
using MediaBrowser.Model.Dlna;
2016-12-13 18:04:37 +01:00
using MediaBrowser.Model.Extensions;
2014-03-23 17:42:02 +01:00
2014-04-02 00:23:07 +02:00
namespace MediaBrowser.Model.Dlna
2014-03-23 17:42:02 +01:00
{
public class ContainerProfile
{
2016-12-09 08:23:09 +01:00
[XmlAttribute("type")]
2014-03-23 17:42:02 +01:00
public DlnaProfileType Type { get; set; }
public ProfileCondition[] Conditions { get; set; }
2014-03-26 16:06:48 +01:00
2016-12-09 08:23:09 +01:00
[XmlAttribute("container")]
2014-03-23 17:42:02 +01:00
public string Container { get; set; }
public ContainerProfile()
{
Conditions = new ProfileCondition[] { };
}
2017-08-19 21:43:35 +02:00
public string[] GetContainers()
2017-08-04 08:34:46 +02:00
{
return SplitValue(Container);
}
2017-08-19 21:43:35 +02:00
private static readonly string[] EmptyStringArray = new string[] { };
public static string[] SplitValue(string value)
2014-03-23 17:42:02 +01:00
{
2017-08-19 21:43:35 +02:00
if (string.IsNullOrWhiteSpace(value))
2014-05-08 23:23:24 +02:00
{
2017-08-19 21:43:35 +02:00
return EmptyStringArray;
2014-05-08 23:23:24 +02:00
}
2017-08-19 21:43:35 +02:00
return value.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
2014-03-23 17:42:02 +01:00
}
2016-12-13 18:04:37 +01:00
public bool ContainsContainer(string container)
{
2017-08-19 21:43:35 +02:00
var containers = GetContainers();
2016-12-13 18:04:37 +01:00
2017-08-04 08:34:46 +02:00
return ContainsContainer(containers, container);
}
public static bool ContainsContainer(string profileContainers, string inputContainer)
{
return ContainsContainer(SplitValue(profileContainers), inputContainer);
}
2017-08-19 21:43:35 +02:00
public static bool ContainsContainer(string[] profileContainers, string inputContainer)
2017-08-04 08:34:46 +02:00
{
2017-08-19 21:43:35 +02:00
if (profileContainers.Length == 0)
2017-08-04 08:34:46 +02:00
{
return true;
}
var allInputContainers = SplitValue(inputContainer);
foreach (var container in allInputContainers)
{
if (ListHelper.ContainsIgnoreCase(profileContainers, container))
{
return true;
}
}
return false;
2016-12-13 18:04:37 +01:00
}
2014-03-23 17:42:02 +01:00
}
}