2015-07-28 12:42:24 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-09-01 13:10:54 -07:00
|
|
|
|
using System;
|
2015-07-28 12:42:24 -07:00
|
|
|
|
using System.Collections.Generic;
|
2015-11-06 08:02:22 -07:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-09-01 13:10:54 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2014-10-06 16:58:46 -07:00
|
|
|
|
public class InternalItemsQuery
|
2014-09-01 13:10:54 -07:00
|
|
|
|
{
|
|
|
|
|
public bool Recursive { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? StartIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? Limit { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] SortBy { get; set; }
|
|
|
|
|
|
|
|
|
|
public SortOrder SortOrder { get; set; }
|
|
|
|
|
|
|
|
|
|
public User User { get; set; }
|
|
|
|
|
|
2015-01-24 23:34:50 -07:00
|
|
|
|
public Func<BaseItem, bool> Filter { get; set; }
|
2014-09-01 13:10:54 -07:00
|
|
|
|
|
|
|
|
|
public bool? IsFolder { get; set; }
|
|
|
|
|
public bool? IsFavorite { get; set; }
|
2014-10-06 16:58:46 -07:00
|
|
|
|
public bool? IsFavoriteOrLiked { get; set; }
|
|
|
|
|
public bool? IsLiked { get; set; }
|
2014-09-01 13:10:54 -07:00
|
|
|
|
public bool? IsPlayed { get; set; }
|
|
|
|
|
public bool? IsResumable { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] MediaTypes { get; set; }
|
2014-10-06 16:58:46 -07:00
|
|
|
|
public string[] IncludeItemTypes { get; set; }
|
|
|
|
|
public string[] ExcludeItemTypes { get; set; }
|
2014-10-07 18:37:45 -07:00
|
|
|
|
public string[] Genres { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool? IsMissing { get; set; }
|
|
|
|
|
public bool? IsUnaired { get; set; }
|
|
|
|
|
public bool? IsVirtualUnaired { get; set; }
|
|
|
|
|
public bool? CollapseBoxSetItems { get; set; }
|
|
|
|
|
|
|
|
|
|
public string NameStartsWithOrGreater { get; set; }
|
|
|
|
|
public string NameStartsWith { get; set; }
|
|
|
|
|
public string NameLessThan { get; set; }
|
2015-07-18 12:32:59 -07:00
|
|
|
|
public string NameContains { get; set; }
|
2014-10-07 18:37:45 -07:00
|
|
|
|
|
|
|
|
|
public string Person { get; set; }
|
2015-03-18 09:40:16 -07:00
|
|
|
|
public string[] PersonIds { get; set; }
|
2015-07-14 12:04:16 -07:00
|
|
|
|
public string[] ItemIds { get; set; }
|
2014-10-07 18:37:45 -07:00
|
|
|
|
public string AdjacentTo { get; set; }
|
|
|
|
|
public string[] PersonTypes { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool? Is3D { get; set; }
|
|
|
|
|
public bool? IsHD { get; set; }
|
|
|
|
|
public bool? IsInBoxSet { get; set; }
|
|
|
|
|
public bool? IsLocked { get; set; }
|
|
|
|
|
public bool? IsPlaceHolder { get; set; }
|
|
|
|
|
public bool? IsYearMismatched { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool? HasImdbId { get; set; }
|
|
|
|
|
public bool? HasOverview { get; set; }
|
|
|
|
|
public bool? HasTmdbId { get; set; }
|
|
|
|
|
public bool? HasOfficialRating { get; set; }
|
|
|
|
|
public bool? HasTvdbId { get; set; }
|
|
|
|
|
public bool? HasThemeSong { get; set; }
|
|
|
|
|
public bool? HasThemeVideo { get; set; }
|
|
|
|
|
public bool? HasSubtitles { get; set; }
|
|
|
|
|
public bool? HasSpecialFeature { get; set; }
|
|
|
|
|
public bool? HasTrailer { get; set; }
|
|
|
|
|
public bool? HasParentalRating { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] Studios { get; set; }
|
2015-03-13 11:45:03 -07:00
|
|
|
|
public string[] StudioIds { get; set; }
|
2015-11-06 08:02:22 -07:00
|
|
|
|
public string[] GenreIds { get; set; }
|
2014-10-07 18:37:45 -07:00
|
|
|
|
public ImageType[] ImageTypes { get; set; }
|
|
|
|
|
public VideoType[] VideoTypes { get; set; }
|
2015-11-06 08:02:22 -07:00
|
|
|
|
public UnratedItem[] BlockUnratedItems { get; set; }
|
2014-10-07 18:37:45 -07:00
|
|
|
|
public int[] Years { get; set; }
|
2014-11-09 21:20:11 -07:00
|
|
|
|
public string[] Tags { get; set; }
|
|
|
|
|
public string[] OfficialRatings { get; set; }
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2015-10-28 12:40:38 -07:00
|
|
|
|
public DateTime? MinPremiereDate { get; set; }
|
2015-06-01 07:49:23 -07:00
|
|
|
|
public DateTime? MinStartDate { get; set; }
|
|
|
|
|
public DateTime? MaxStartDate { get; set; }
|
|
|
|
|
public DateTime? MinEndDate { get; set; }
|
|
|
|
|
public DateTime? MaxEndDate { get; set; }
|
|
|
|
|
public bool? IsAiring { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool? IsMovie { get; set; }
|
|
|
|
|
public bool? IsSports { get; set; }
|
2015-06-01 10:49:11 -07:00
|
|
|
|
public bool? IsKids { get; set; }
|
2015-07-14 12:04:16 -07:00
|
|
|
|
|
|
|
|
|
public int? MinPlayers { get; set; }
|
|
|
|
|
public int? MaxPlayers { get; set; }
|
2015-11-06 08:53:23 -07:00
|
|
|
|
public int? MinIndexNumber { get; set; }
|
2015-07-14 12:04:16 -07:00
|
|
|
|
public double? MinCriticRating { get; set; }
|
|
|
|
|
public double? MinCommunityRating { get; set; }
|
|
|
|
|
|
2015-06-01 07:49:23 -07:00
|
|
|
|
public string[] ChannelIds { get; set; }
|
2015-07-14 12:04:16 -07:00
|
|
|
|
|
|
|
|
|
internal List<Guid> ItemIdsFromPersonFilters { get; set; }
|
2015-07-28 05:33:30 -07:00
|
|
|
|
public int? MaxParentalRating { get; set; }
|
2015-07-14 12:04:16 -07:00
|
|
|
|
|
2015-08-25 22:10:04 -07:00
|
|
|
|
public bool? IsCurrentSchema { get; set; }
|
2015-08-27 21:19:08 -07:00
|
|
|
|
public bool? HasDeadParentId { get; set; }
|
2015-09-16 10:16:39 -07:00
|
|
|
|
public bool? IsOffline { get; set; }
|
|
|
|
|
public LocationType? LocationType { get; set; }
|
|
|
|
|
|
2015-09-23 19:31:40 -07:00
|
|
|
|
public Guid? ParentId { get; set; }
|
2015-10-29 06:28:05 -07:00
|
|
|
|
public string[] AncestorIds { get; set; }
|
2015-11-14 11:57:26 -07:00
|
|
|
|
public string[] TopParentIds { get; set; }
|
2015-10-29 12:01:04 -07:00
|
|
|
|
|
|
|
|
|
public LocationType[] ExcludeLocationTypes { get; set; }
|
|
|
|
|
|
2014-10-06 16:58:46 -07:00
|
|
|
|
public InternalItemsQuery()
|
2014-09-01 13:10:54 -07:00
|
|
|
|
{
|
2015-11-06 08:02:22 -07:00
|
|
|
|
BlockUnratedItems = new UnratedItem[] { };
|
2014-11-09 21:20:11 -07:00
|
|
|
|
Tags = new string[] { };
|
|
|
|
|
OfficialRatings = new string[] { };
|
2014-09-01 13:10:54 -07:00
|
|
|
|
SortBy = new string[] { };
|
|
|
|
|
MediaTypes = new string[] { };
|
2014-10-06 16:58:46 -07:00
|
|
|
|
IncludeItemTypes = new string[] { };
|
|
|
|
|
ExcludeItemTypes = new string[] { };
|
2014-10-07 18:37:45 -07:00
|
|
|
|
Genres = new string[] { };
|
|
|
|
|
Studios = new string[] { };
|
2015-03-13 11:45:03 -07:00
|
|
|
|
StudioIds = new string[] { };
|
2015-11-06 08:02:22 -07:00
|
|
|
|
GenreIds = new string[] { };
|
2014-10-07 18:37:45 -07:00
|
|
|
|
ImageTypes = new ImageType[] { };
|
|
|
|
|
VideoTypes = new VideoType[] { };
|
|
|
|
|
Years = new int[] { };
|
|
|
|
|
PersonTypes = new string[] { };
|
2015-03-18 09:40:16 -07:00
|
|
|
|
PersonIds = new string[] { };
|
2015-06-01 07:49:23 -07:00
|
|
|
|
ChannelIds = new string[] { };
|
2015-07-14 12:04:16 -07:00
|
|
|
|
ItemIds = new string[] { };
|
2015-10-29 06:28:05 -07:00
|
|
|
|
AncestorIds = new string[] { };
|
2015-11-14 11:57:26 -07:00
|
|
|
|
TopParentIds = new string[] { };
|
2015-10-29 12:01:04 -07:00
|
|
|
|
ExcludeLocationTypes = new LocationType[] { };
|
2014-09-01 13:10:54 -07:00
|
|
|
|
}
|
2015-10-28 12:40:38 -07:00
|
|
|
|
|
|
|
|
|
public InternalItemsQuery(User user)
|
|
|
|
|
: this()
|
|
|
|
|
{
|
|
|
|
|
if (user != null)
|
|
|
|
|
{
|
|
|
|
|
var policy = user.Policy;
|
|
|
|
|
MaxParentalRating = policy.MaxParentalRating;
|
2015-10-29 06:28:05 -07:00
|
|
|
|
|
|
|
|
|
User = user;
|
2015-10-28 12:40:38 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-01 13:10:54 -07:00
|
|
|
|
}
|
|
|
|
|
}
|