jellyfin/Emby.Dlna/Didl/Filter.cs

32 lines
825 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Didl
2016-10-30 00:22:20 +02:00
{
public class Filter
{
2017-08-24 21:52:19 +02:00
private readonly string[] _fields;
2016-10-30 00:22:20 +02:00
private readonly bool _all;
public Filter()
: this("*")
{
}
public Filter(string filter)
{
2020-01-09 17:07:13 +01:00
_all = string.Equals(filter, "*", StringComparison.OrdinalIgnoreCase);
2016-10-30 00:22:20 +02:00
2017-08-24 21:52:19 +02:00
_fields = (filter ?? string.Empty).Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
2016-10-30 00:22:20 +02:00
}
public bool Contains(string field)
{
// Don't bother with this. Some clients (media monkey) use the filter and then don't display very well when very little data comes back.
return true;
2020-06-14 11:11:11 +02:00
// return _all || ListHelper.ContainsIgnoreCase(_fields, field);
2016-10-30 00:22:20 +02:00
}
}
}