jellyfin/MediaBrowser.Model/Dlna/Filter.cs

34 lines
802 B
C#
Raw Normal View History

2014-06-05 04:32:40 +02:00
using MediaBrowser.Model.Extensions;
using System;
2014-04-20 07:21:08 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Dlna
{
public class Filter
{
private readonly List<string> _fields;
private readonly bool _all;
2014-04-23 17:35:31 +02:00
public Filter()
: this("*")
{
}
2014-04-20 07:21:08 +02:00
public Filter(string filter)
{
_all = StringHelper.EqualsIgnoreCase(filter, "*");
2014-04-20 07:21:08 +02:00
List<string> list = new List<string>();
foreach (string s in (filter ?? string.Empty).Split(new[] {','}, StringSplitOptions.RemoveEmptyEntries))
list.Add(s);
_fields = list;
2014-04-20 07:21:08 +02:00
}
public bool Contains(string field)
{
2014-06-05 04:32:40 +02:00
return _all || ListHelper.ContainsIgnoreCase(_fields, field);
2014-04-20 07:21:08 +02:00
}
}
}