2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2019-01-13 19:16:19 +00:00
|
|
|
using MediaBrowser.Model.Extensions;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
namespace Emby.Dlna.Didl
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
|
|
|
public class Filter
|
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
private readonly string[] _fields;
|
2016-10-29 22:22:20 +00:00
|
|
|
private readonly bool _all;
|
|
|
|
|
|
|
|
public Filter()
|
|
|
|
: this("*")
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public Filter(string filter)
|
|
|
|
{
|
|
|
|
_all = StringHelper.EqualsIgnoreCase(filter, "*");
|
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
_fields = (filter ?? string.Empty).Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
|
2016-10-29 22:22:20 +00: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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|