2015-07-28 15:42:24 -04:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-09-01 16:10:54 -04:00
|
|
|
|
using System;
|
2015-07-28 15:42:24 -04:00
|
|
|
|
using System.Collections.Generic;
|
2015-11-06 10:02:22 -05:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2016-10-08 01:57:38 -04:00
|
|
|
|
using System.Linq;
|
2016-10-10 14:18:28 -04:00
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2016-10-08 01:57:38 -04:00
|
|
|
|
using MediaBrowser.Model.Querying;
|
2014-09-01 16:10:54 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
2014-10-06 19:58:46 -04:00
|
|
|
|
public class InternalItemsQuery
|
2014-09-01 16:10:54 -04: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; }
|
|
|
|
|
|
|
2016-06-01 01:50:00 -04:00
|
|
|
|
public BaseItem SimilarTo { get; set; }
|
|
|
|
|
|
|
2014-09-01 16:10:54 -04:00
|
|
|
|
public bool? IsFolder { get; set; }
|
|
|
|
|
|
public bool? IsFavorite { get; set; }
|
2014-10-06 19:58:46 -04:00
|
|
|
|
public bool? IsFavoriteOrLiked { get; set; }
|
|
|
|
|
|
public bool? IsLiked { get; set; }
|
2014-09-01 16:10:54 -04:00
|
|
|
|
public bool? IsPlayed { get; set; }
|
|
|
|
|
|
public bool? IsResumable { get; set; }
|
2016-02-14 12:58:31 -05:00
|
|
|
|
public bool? IncludeItemsByName { get; set; }
|
2014-09-01 16:10:54 -04:00
|
|
|
|
|
|
|
|
|
|
public string[] MediaTypes { get; set; }
|
2014-10-06 19:58:46 -04:00
|
|
|
|
public string[] IncludeItemTypes { get; set; }
|
|
|
|
|
|
public string[] ExcludeItemTypes { get; set; }
|
2015-11-15 17:30:47 -05:00
|
|
|
|
public string[] ExcludeTags { get; set; }
|
2016-04-14 22:39:39 -04:00
|
|
|
|
public string[] ExcludeInheritedTags { get; set; }
|
2014-10-07 21:37:45 -04:00
|
|
|
|
public string[] Genres { get; set; }
|
2016-05-31 14:07:54 -04:00
|
|
|
|
public string[] Keywords { get; set; }
|
2014-10-07 21:37:45 -04:00
|
|
|
|
|
2016-08-18 01:56:10 -04:00
|
|
|
|
public bool? IsSpecialSeason { get; set; }
|
2014-10-07 21:37:45 -04:00
|
|
|
|
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 15:32:59 -04:00
|
|
|
|
public string NameContains { get; set; }
|
2016-06-29 12:31:01 -04:00
|
|
|
|
public string MinSortName { get; set; }
|
2014-10-07 21:37:45 -04:00
|
|
|
|
|
2016-05-02 01:32:04 -04:00
|
|
|
|
public string PresentationUniqueKey { get; set; }
|
2016-03-01 14:39:46 -05:00
|
|
|
|
public string Path { get; set; }
|
2016-08-18 01:56:10 -04:00
|
|
|
|
public string PathNotStartsWith { get; set; }
|
2016-05-04 12:32:34 -04:00
|
|
|
|
public string Name { get; set; }
|
2016-05-06 00:50:39 -04:00
|
|
|
|
public string SlugName { get; set; }
|
2016-05-04 12:32:34 -04:00
|
|
|
|
|
2014-10-07 21:37:45 -04:00
|
|
|
|
public string Person { get; set; }
|
2015-03-18 12:40:16 -04:00
|
|
|
|
public string[] PersonIds { get; set; }
|
2015-07-14 15:04:16 -04:00
|
|
|
|
public string[] ItemIds { get; set; }
|
2016-05-31 14:42:32 -04:00
|
|
|
|
public string[] ExcludeItemIds { get; set; }
|
2014-10-07 21:37:45 -04: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? 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 14:45:03 -04:00
|
|
|
|
public string[] StudioIds { get; set; }
|
2015-11-06 10:02:22 -05:00
|
|
|
|
public string[] GenreIds { get; set; }
|
2014-10-07 21:37:45 -04:00
|
|
|
|
public ImageType[] ImageTypes { get; set; }
|
|
|
|
|
|
public VideoType[] VideoTypes { get; set; }
|
2015-11-06 10:02:22 -05:00
|
|
|
|
public UnratedItem[] BlockUnratedItems { get; set; }
|
2014-10-07 21:37:45 -04:00
|
|
|
|
public int[] Years { get; set; }
|
2014-11-09 23:20:11 -05:00
|
|
|
|
public string[] Tags { get; set; }
|
|
|
|
|
|
public string[] OfficialRatings { get; set; }
|
2014-10-06 19:58:46 -04:00
|
|
|
|
|
2015-10-28 15:40:38 -04:00
|
|
|
|
public DateTime? MinPremiereDate { get; set; }
|
2016-03-20 02:46:51 -04:00
|
|
|
|
public DateTime? MaxPremiereDate { get; set; }
|
2015-06-01 10:49:23 -04: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 13:49:11 -04:00
|
|
|
|
public bool? IsKids { get; set; }
|
2016-09-29 08:55:49 -04:00
|
|
|
|
public bool? IsNews { get; set; }
|
|
|
|
|
|
public bool? IsSeries { get; set; }
|
2015-07-14 15:04:16 -04:00
|
|
|
|
|
|
|
|
|
|
public int? MinPlayers { get; set; }
|
|
|
|
|
|
public int? MaxPlayers { get; set; }
|
2015-11-06 10:53:23 -05:00
|
|
|
|
public int? MinIndexNumber { get; set; }
|
2016-03-20 16:04:27 -04:00
|
|
|
|
public int? AiredDuringSeason { get; set; }
|
2015-07-14 15:04:16 -04:00
|
|
|
|
public double? MinCriticRating { get; set; }
|
|
|
|
|
|
public double? MinCommunityRating { get; set; }
|
2016-03-01 13:42:39 -05:00
|
|
|
|
|
2015-06-01 10:49:23 -04:00
|
|
|
|
public string[] ChannelIds { get; set; }
|
2015-07-14 15:04:16 -04:00
|
|
|
|
|
|
|
|
|
|
internal List<Guid> ItemIdsFromPersonFilters { get; set; }
|
2016-03-20 15:53:22 -04:00
|
|
|
|
public int? ParentIndexNumber { get; set; }
|
2016-06-14 22:18:19 -04:00
|
|
|
|
public int? ParentIndexNumberNotEquals { get; set; }
|
2016-05-04 12:32:34 -04:00
|
|
|
|
public int? IndexNumber { get; set; }
|
2016-03-20 23:10:37 -04:00
|
|
|
|
public int? MinParentalRating { get; set; }
|
2015-07-28 08:33:30 -04:00
|
|
|
|
public int? MaxParentalRating { get; set; }
|
2015-07-14 15:04:16 -04:00
|
|
|
|
|
2015-08-28 00:19:08 -04:00
|
|
|
|
public bool? HasDeadParentId { get; set; }
|
2016-06-12 01:03:52 -04:00
|
|
|
|
public bool? IsVirtualItem { get; set; }
|
2015-09-16 13:16:39 -04:00
|
|
|
|
|
2015-09-23 22:31:40 -04:00
|
|
|
|
public Guid? ParentId { get; set; }
|
2015-10-29 09:28:05 -04:00
|
|
|
|
public string[] AncestorIds { get; set; }
|
2015-11-14 13:57:26 -05:00
|
|
|
|
public string[] TopParentIds { get; set; }
|
2015-10-29 15:01:04 -04:00
|
|
|
|
|
2016-03-20 15:53:22 -04:00
|
|
|
|
public LocationType[] LocationTypes { get; set; }
|
2015-10-29 15:01:04 -04:00
|
|
|
|
public LocationType[] ExcludeLocationTypes { get; set; }
|
2016-03-01 13:42:39 -05:00
|
|
|
|
public string[] PresetViews { get; set; }
|
2016-03-19 01:04:38 -04:00
|
|
|
|
public SourceType[] SourceTypes { get; set; }
|
2016-03-19 11:38:05 -04:00
|
|
|
|
public SourceType[] ExcludeSourceTypes { get; set; }
|
2016-03-19 15:32:37 -04:00
|
|
|
|
public TrailerType[] TrailerTypes { get; set; }
|
2016-03-01 13:42:39 -05:00
|
|
|
|
|
2016-03-20 15:53:22 -04:00
|
|
|
|
public DayOfWeek[] AirDays { get; set; }
|
|
|
|
|
|
public SeriesStatus[] SeriesStatuses { get; set; }
|
2016-03-20 20:15:56 -04:00
|
|
|
|
public string AlbumArtistStartsWithOrGreater { get; set; }
|
2016-10-01 03:06:00 -04:00
|
|
|
|
public string ExternalSeriesId { get; set; }
|
2016-03-20 20:15:56 -04:00
|
|
|
|
|
2016-03-21 12:50:50 -04:00
|
|
|
|
public string[] AlbumNames { get; set; }
|
|
|
|
|
|
public string[] ArtistNames { get; set; }
|
2016-07-22 18:10:39 -04:00
|
|
|
|
public string[] ExcludeArtistIds { get; set; }
|
2016-05-07 13:47:41 -04:00
|
|
|
|
public string AncestorWithPresentationUniqueKey { get; set; }
|
2016-05-06 00:50:39 -04:00
|
|
|
|
|
|
|
|
|
|
public bool GroupByPresentationUniqueKey { get; set; }
|
2016-05-08 23:13:38 -04:00
|
|
|
|
public bool EnableTotalRecordCount { get; set; }
|
2016-05-18 01:34:10 -04:00
|
|
|
|
public bool ForceDirect { get; set; }
|
2016-06-14 22:18:19 -04:00
|
|
|
|
public Dictionary<string, string> ExcludeProviderIds { get; set; }
|
2016-06-28 23:17:27 -04:00
|
|
|
|
public bool EnableGroupByMetadataKey { get; set; }
|
2016-05-06 00:50:39 -04:00
|
|
|
|
|
2016-09-30 02:50:06 -04:00
|
|
|
|
public List<Tuple<string, SortOrder>> OrderBy { get; set; }
|
|
|
|
|
|
|
2016-10-03 02:28:45 -04:00
|
|
|
|
public DateTime? MinDateCreated { get; set; }
|
|
|
|
|
|
public DateTime? MinDateLastSaved { get; set; }
|
|
|
|
|
|
|
2016-10-10 14:18:28 -04:00
|
|
|
|
public DtoOptions DtoOptions { get; set; }
|
2016-10-08 01:57:38 -04:00
|
|
|
|
|
|
|
|
|
|
public bool HasField(ItemFields name)
|
|
|
|
|
|
{
|
2016-10-10 14:18:28 -04:00
|
|
|
|
var fields = DtoOptions.Fields;
|
|
|
|
|
|
|
2016-10-08 01:57:38 -04:00
|
|
|
|
switch (name)
|
|
|
|
|
|
{
|
2016-10-11 17:33:38 -04:00
|
|
|
|
case ItemFields.ThemeSongIds:
|
|
|
|
|
|
case ItemFields.ThemeVideoIds:
|
2016-10-09 03:18:43 -04:00
|
|
|
|
case ItemFields.ProductionLocations:
|
2016-10-08 01:57:38 -04:00
|
|
|
|
case ItemFields.Keywords:
|
|
|
|
|
|
case ItemFields.Taglines:
|
|
|
|
|
|
case ItemFields.ShortOverview:
|
|
|
|
|
|
case ItemFields.CustomRating:
|
|
|
|
|
|
case ItemFields.DateCreated:
|
|
|
|
|
|
case ItemFields.SortName:
|
|
|
|
|
|
case ItemFields.Overview:
|
|
|
|
|
|
case ItemFields.OfficialRatingDescription:
|
|
|
|
|
|
case ItemFields.HomePageUrl:
|
|
|
|
|
|
case ItemFields.VoteCount:
|
|
|
|
|
|
case ItemFields.DisplayMediaType:
|
2016-10-15 18:12:16 -04:00
|
|
|
|
//case ItemFields.ServiceName:
|
2016-10-08 01:57:38 -04:00
|
|
|
|
case ItemFields.Genres:
|
|
|
|
|
|
case ItemFields.Studios:
|
|
|
|
|
|
case ItemFields.Settings:
|
|
|
|
|
|
case ItemFields.OriginalTitle:
|
|
|
|
|
|
case ItemFields.Tags:
|
|
|
|
|
|
case ItemFields.DateLastMediaAdded:
|
|
|
|
|
|
case ItemFields.CriticRatingSummary:
|
2016-10-10 14:18:28 -04:00
|
|
|
|
return fields.Count == 0 || fields.Contains(name);
|
2016-10-08 01:57:38 -04:00
|
|
|
|
default:
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-10-06 19:58:46 -04:00
|
|
|
|
public InternalItemsQuery()
|
2014-09-01 16:10:54 -04:00
|
|
|
|
{
|
2016-05-06 00:50:39 -04:00
|
|
|
|
GroupByPresentationUniqueKey = true;
|
2016-05-08 23:13:38 -04:00
|
|
|
|
EnableTotalRecordCount = true;
|
2016-05-06 00:50:39 -04:00
|
|
|
|
|
2016-10-10 14:18:28 -04:00
|
|
|
|
DtoOptions = new DtoOptions();
|
2016-03-21 12:50:50 -04:00
|
|
|
|
AlbumNames = new string[] { };
|
|
|
|
|
|
ArtistNames = new string[] { };
|
2016-07-22 18:10:39 -04:00
|
|
|
|
ExcludeArtistIds = new string[] { };
|
2016-06-02 00:41:12 -04:00
|
|
|
|
ExcludeProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
|
|
2015-11-06 10:02:22 -05:00
|
|
|
|
BlockUnratedItems = new UnratedItem[] { };
|
2014-11-09 23:20:11 -05:00
|
|
|
|
Tags = new string[] { };
|
|
|
|
|
|
OfficialRatings = new string[] { };
|
2014-09-01 16:10:54 -04:00
|
|
|
|
SortBy = new string[] { };
|
|
|
|
|
|
MediaTypes = new string[] { };
|
2016-05-31 14:07:54 -04:00
|
|
|
|
Keywords = new string[] { };
|
2014-10-06 19:58:46 -04:00
|
|
|
|
IncludeItemTypes = new string[] { };
|
|
|
|
|
|
ExcludeItemTypes = new string[] { };
|
2014-10-07 21:37:45 -04:00
|
|
|
|
Genres = new string[] { };
|
|
|
|
|
|
Studios = new string[] { };
|
2015-03-13 14:45:03 -04:00
|
|
|
|
StudioIds = new string[] { };
|
2015-11-06 10:02:22 -05:00
|
|
|
|
GenreIds = new string[] { };
|
2014-10-07 21:37:45 -04:00
|
|
|
|
ImageTypes = new ImageType[] { };
|
|
|
|
|
|
VideoTypes = new VideoType[] { };
|
|
|
|
|
|
Years = new int[] { };
|
|
|
|
|
|
PersonTypes = new string[] { };
|
2015-03-18 12:40:16 -04:00
|
|
|
|
PersonIds = new string[] { };
|
2015-06-01 10:49:23 -04:00
|
|
|
|
ChannelIds = new string[] { };
|
2015-07-14 15:04:16 -04:00
|
|
|
|
ItemIds = new string[] { };
|
2016-05-31 14:42:32 -04:00
|
|
|
|
ExcludeItemIds = new string[] { };
|
2015-10-29 09:28:05 -04:00
|
|
|
|
AncestorIds = new string[] { };
|
2015-11-14 13:57:26 -05:00
|
|
|
|
TopParentIds = new string[] { };
|
2015-11-15 17:30:47 -05:00
|
|
|
|
ExcludeTags = new string[] { };
|
2016-04-14 22:39:39 -04:00
|
|
|
|
ExcludeInheritedTags = new string[] { };
|
2016-03-20 15:53:22 -04:00
|
|
|
|
LocationTypes = new LocationType[] { };
|
2015-10-29 15:01:04 -04:00
|
|
|
|
ExcludeLocationTypes = new LocationType[] { };
|
2016-03-01 13:42:39 -05:00
|
|
|
|
PresetViews = new string[] { };
|
2016-03-19 01:04:38 -04:00
|
|
|
|
SourceTypes = new SourceType[] { };
|
2016-03-19 11:38:05 -04:00
|
|
|
|
ExcludeSourceTypes = new SourceType[] { };
|
2016-03-19 15:32:37 -04:00
|
|
|
|
TrailerTypes = new TrailerType[] { };
|
2016-03-20 15:53:22 -04:00
|
|
|
|
AirDays = new DayOfWeek[] { };
|
|
|
|
|
|
SeriesStatuses = new SeriesStatus[] { };
|
2016-09-30 02:50:06 -04:00
|
|
|
|
OrderBy = new List<Tuple<string, SortOrder>>();
|
2014-09-01 16:10:54 -04:00
|
|
|
|
}
|
2015-10-28 15:40:38 -04:00
|
|
|
|
|
|
|
|
|
|
public InternalItemsQuery(User user)
|
|
|
|
|
|
: this()
|
2016-05-15 15:25:54 -04:00
|
|
|
|
{
|
|
|
|
|
|
SetUser(user);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void SetUser(User user)
|
2015-10-28 15:40:38 -04:00
|
|
|
|
{
|
|
|
|
|
|
if (user != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
var policy = user.Policy;
|
|
|
|
|
|
MaxParentalRating = policy.MaxParentalRating;
|
2015-10-29 09:28:05 -04:00
|
|
|
|
|
2015-11-15 17:30:47 -05:00
|
|
|
|
if (policy.MaxParentalRating.HasValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
BlockUnratedItems = policy.BlockUnratedItems;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-04-14 22:39:39 -04:00
|
|
|
|
ExcludeInheritedTags = policy.BlockedTags;
|
2016-03-01 13:42:39 -05:00
|
|
|
|
|
2015-10-29 09:28:05 -04:00
|
|
|
|
User = user;
|
2015-10-28 15:40:38 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2014-09-01 16:10:54 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|