jellyfin/Emby.Dlna/Didl/Filter.cs

32 lines
810 B
C#
Raw Normal View History

using System;
2019-01-13 20:16:19 +01:00
using MediaBrowser.Model.Extensions;
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)
{
_all = StringHelper.EqualsIgnoreCase(filter, "*");
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;
//return _all || ListHelper.ContainsIgnoreCase(_fields, field);
}
}
}