jellyfin/MediaBrowser.Controller/Entities/InternalItemsQuery.cs

270 lines
10 KiB
C#
Raw Normal View History

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