jellyfin-server/MediaBrowser.Model/Dlna/Filter.cs

34 lines
802 B
C#
Raw Normal View History

2014-06-05 02:32:40 +00:00
using MediaBrowser.Model.Extensions;
using System;
2014-04-20 05:21:08 +00:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Dlna
{
public class Filter
{
private readonly List<string> _fields;
private readonly bool _all;
2014-04-23 15:35:31 +00:00
public Filter()
: this("*")
{
}
2014-04-20 05:21:08 +00:00
public Filter(string filter)
{
_all = StringHelper.EqualsIgnoreCase(filter, "*");
2014-04-20 05:21:08 +00: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 05:21:08 +00:00
}
public bool Contains(string field)
{
2014-06-05 02:32:40 +00:00
return _all || ListHelper.ContainsIgnoreCase(_fields, field);
2014-04-20 05:21:08 +00:00
}
}
}