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;
|
2014-06-29 19:59:52 +00:00
|
|
|
|
using System.Linq;
|
2014-04-20 05:21:08 +00:00
|
|
|
|
|
2014-06-29 19:59:52 +00:00
|
|
|
|
namespace MediaBrowser.Dlna.Didl
|
2014-04-20 05:21:08 +00:00
|
|
|
|
{
|
|
|
|
|
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)
|
|
|
|
|
{
|
2014-06-01 04:11:04 +00:00
|
|
|
|
_all = StringHelper.EqualsIgnoreCase(filter, "*");
|
2014-04-20 05:21:08 +00:00
|
|
|
|
|
2014-06-29 19:59:52 +00:00
|
|
|
|
var list = (filter ?? string.Empty).Split(new[] {','}, StringSplitOptions.RemoveEmptyEntries).ToList();
|
|
|
|
|
|
2014-05-09 04:38:12 +00:00
|
|
|
|
_fields = list;
|
2014-04-20 05:21:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Contains(string field)
|
|
|
|
|
{
|
2014-06-22 05:52:31 +00:00
|
|
|
|
// 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);
|
2014-04-20 05:21:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|