jellyfin/MediaBrowser.Api/TvShowsService.cs

504 lines
24 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Dto;
2013-05-01 13:45:25 +00:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
2014-07-02 18:34:08 +00:00
using MediaBrowser.Controller.Net;
2013-05-01 13:45:25 +00:00
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Controller.TV;
using MediaBrowser.Model.Dto;
2013-10-26 22:01:21 +00:00
using MediaBrowser.Model.Entities;
2013-05-01 13:45:25 +00:00
using MediaBrowser.Model.Querying;
2016-10-25 19:02:04 +00:00
using MediaBrowser.Model.Services;
2013-05-01 13:45:25 +00:00
namespace MediaBrowser.Api
{
/// <summary>
/// Class GetNextUpEpisodes
/// </summary>
2014-03-23 19:36:25 +00:00
[Route("/Shows/NextUp", "GET", Summary = "Gets a list of next up episodes")]
2017-08-19 19:43:35 +00:00
public class GetNextUpEpisodes : IReturn<QueryResult<BaseItemDto>>, IHasDtoOptions
2013-05-01 13:45:25 +00:00
{
/// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
2018-09-12 17:26:21 +00:00
public Guid UserId { get; set; }
2013-05-01 13:45:25 +00:00
/// <summary>
/// Skips over a given number of items within the results. Use for paging.
/// </summary>
/// <value>The start index.</value>
[ApiMember(Name = "StartIndex", Description = "Optional. The record index to start at. All items with a lower index will be dropped from the results.", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? StartIndex { get; set; }
/// <summary>
/// The maximum number of items to return
/// </summary>
/// <value>The limit.</value>
[ApiMember(Name = "Limit", Description = "Optional. The maximum number of records to return", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? Limit { get; set; }
/// <summary>
/// Fields to return within the items, in addition to basic information
/// </summary>
/// <value>The fields.</value>
2017-04-29 06:22:33 +00:00
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
2013-05-01 13:45:25 +00:00
public string Fields { get; set; }
2013-10-26 22:01:21 +00:00
[ApiMember(Name = "SeriesId", Description = "Optional. Filter by series id", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string SeriesId { get; set; }
2014-05-02 02:54:33 +00:00
/// <summary>
/// Specify this to localize the search to a specific item or folder. Omit to use the root.
/// </summary>
/// <value>The parent id.</value>
[ApiMember(Name = "ParentId", Description = "Specify this to localize the search to a specific item or folder. Omit to use the root", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string ParentId { get; set; }
2014-12-01 12:43:34 +00:00
[ApiMember(Name = "EnableImages", Description = "Optional, include image information in output", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableImages { get; set; }
[ApiMember(Name = "ImageTypeLimit", Description = "Optional, the max number of images to return, per image type", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? ImageTypeLimit { get; set; }
[ApiMember(Name = "EnableImageTypes", Description = "Optional. The image types to include in the output.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string EnableImageTypes { get; set; }
2016-08-17 19:28:43 +00:00
[ApiMember(Name = "EnableUserData", Description = "Optional, include user data", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableUserData { get; set; }
2017-03-21 17:31:40 +00:00
public bool EnableTotalRecordCount { get; set; }
public GetNextUpEpisodes()
{
EnableTotalRecordCount = true;
}
}
2014-03-23 19:36:25 +00:00
[Route("/Shows/Upcoming", "GET", Summary = "Gets a list of upcoming episodes")]
2017-08-19 19:43:35 +00:00
public class GetUpcomingEpisodes : IReturn<QueryResult<BaseItemDto>>, IHasDtoOptions
2014-03-06 05:17:13 +00:00
{
/// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
2018-09-12 17:26:21 +00:00
public Guid UserId { get; set; }
2014-03-06 05:17:13 +00:00
/// <summary>
/// Skips over a given number of items within the results. Use for paging.
/// </summary>
/// <value>The start index.</value>
[ApiMember(Name = "StartIndex", Description = "Optional. The record index to start at. All items with a lower index will be dropped from the results.", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? StartIndex { get; set; }
/// <summary>
/// The maximum number of items to return
/// </summary>
/// <value>The limit.</value>
[ApiMember(Name = "Limit", Description = "Optional. The maximum number of records to return", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? Limit { get; set; }
/// <summary>
/// Fields to return within the items, in addition to basic information
/// </summary>
/// <value>The fields.</value>
2017-04-29 06:22:33 +00:00
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
2014-03-06 05:17:13 +00:00
public string Fields { get; set; }
2014-05-02 02:54:33 +00:00
/// <summary>
/// Specify this to localize the search to a specific item or folder. Omit to use the root.
/// </summary>
/// <value>The parent id.</value>
[ApiMember(Name = "ParentId", Description = "Specify this to localize the search to a specific item or folder. Omit to use the root", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string ParentId { get; set; }
2014-12-01 12:43:34 +00:00
[ApiMember(Name = "EnableImages", Description = "Optional, include image information in output", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableImages { get; set; }
[ApiMember(Name = "ImageTypeLimit", Description = "Optional, the max number of images to return, per image type", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? ImageTypeLimit { get; set; }
[ApiMember(Name = "EnableImageTypes", Description = "Optional. The image types to include in the output.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string EnableImageTypes { get; set; }
2016-08-17 19:28:43 +00:00
[ApiMember(Name = "EnableUserData", Description = "Optional, include user data", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableUserData { get; set; }
2014-03-06 05:17:13 +00:00
}
2014-03-23 19:36:25 +00:00
[Route("/Shows/{Id}/Episodes", "GET", Summary = "Gets episodes for a tv season")]
2017-08-19 19:43:35 +00:00
public class GetEpisodes : IReturn<QueryResult<BaseItemDto>>, IHasItemFields, IHasDtoOptions
{
2013-05-01 13:45:25 +00:00
/// <summary>
/// Gets or sets the user id.
2013-05-01 13:45:25 +00:00
/// </summary>
/// <value>The user id.</value>
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
2018-09-12 17:26:21 +00:00
public Guid UserId { get; set; }
2013-05-01 13:45:25 +00:00
/// <summary>
/// Fields to return within the items, in addition to basic information
/// </summary>
/// <value>The fields.</value>
2017-04-29 06:22:33 +00:00
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
public string Fields { get; set; }
2013-07-22 14:58:38 +00:00
[ApiMember(Name = "Id", Description = "The series id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
2015-05-29 23:51:33 +00:00
public string Id { get; set; }
2013-07-22 14:58:38 +00:00
[ApiMember(Name = "Season", Description = "Optional filter by season number.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public int? Season { get; set; }
2013-05-01 13:45:25 +00:00
2013-11-30 18:32:39 +00:00
[ApiMember(Name = "SeasonId", Description = "Optional. Filter by season id", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string SeasonId { get; set; }
2014-03-06 05:17:13 +00:00
[ApiMember(Name = "IsMissing", Description = "Optional filter by items that are missing episodes or not.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsMissing { get; set; }
[ApiMember(Name = "AdjacentTo", Description = "Optional. Return items that are siblings of a supplied item.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string AdjacentTo { get; set; }
2015-02-16 16:47:30 +00:00
[ApiMember(Name = "StartItemId", Description = "Optional. Skip through the list until a given item is found.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string StartItemId { get; set; }
2015-10-28 19:40:38 +00:00
/// <summary>
/// Skips over a given number of items within the results. Use for paging.
/// </summary>
/// <value>The start index.</value>
[ApiMember(Name = "StartIndex", Description = "Optional. The record index to start at. All items with a lower index will be dropped from the results.", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? StartIndex { get; set; }
/// <summary>
/// The maximum number of items to return
/// </summary>
/// <value>The limit.</value>
[ApiMember(Name = "Limit", Description = "Optional. The maximum number of records to return", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? Limit { get; set; }
2016-04-13 16:17:52 +00:00
[ApiMember(Name = "EnableImages", Description = "Optional, include image information in output", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableImages { get; set; }
[ApiMember(Name = "ImageTypeLimit", Description = "Optional, the max number of images to return, per image type", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? ImageTypeLimit { get; set; }
[ApiMember(Name = "EnableImageTypes", Description = "Optional. The image types to include in the output.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string EnableImageTypes { get; set; }
2016-08-17 19:28:43 +00:00
[ApiMember(Name = "EnableUserData", Description = "Optional, include user data", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableUserData { get; set; }
2017-07-30 18:02:25 +00:00
[ApiMember(Name = "SortBy", Description = "Optional. Specify one or more sort orders, comma delimeted. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
public string SortBy { get; set; }
[ApiMember(Name = "SortOrder", Description = "Sort Order - Ascending,Descending", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public SortOrder? SortOrder { get; set; }
}
2013-06-17 20:35:43 +00:00
2014-03-23 19:36:25 +00:00
[Route("/Shows/{Id}/Seasons", "GET", Summary = "Gets seasons for a tv series")]
2017-08-19 19:43:35 +00:00
public class GetSeasons : IReturn<QueryResult<BaseItemDto>>, IHasItemFields, IHasDtoOptions
2013-11-28 18:27:29 +00:00
{
/// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
2018-09-12 17:26:21 +00:00
public Guid UserId { get; set; }
2013-11-28 18:27:29 +00:00
/// <summary>
/// Fields to return within the items, in addition to basic information
/// </summary>
/// <value>The fields.</value>
2017-04-29 06:22:33 +00:00
[ApiMember(Name = "Fields", Description = "Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET", AllowMultiple = true)]
2013-11-28 18:27:29 +00:00
public string Fields { get; set; }
[ApiMember(Name = "Id", Description = "The series id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
2015-05-29 23:51:33 +00:00
public string Id { get; set; }
2013-11-28 18:27:29 +00:00
[ApiMember(Name = "IsSpecialSeason", Description = "Optional. Filter by special season.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsSpecialSeason { get; set; }
[ApiMember(Name = "IsMissing", Description = "Optional filter by items that are missing episodes or not.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsMissing { get; set; }
[ApiMember(Name = "AdjacentTo", Description = "Optional. Return items that are siblings of a supplied item.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string AdjacentTo { get; set; }
2016-04-13 16:17:52 +00:00
[ApiMember(Name = "EnableImages", Description = "Optional, include image information in output", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableImages { get; set; }
[ApiMember(Name = "ImageTypeLimit", Description = "Optional, the max number of images to return, per image type", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? ImageTypeLimit { get; set; }
[ApiMember(Name = "EnableImageTypes", Description = "Optional. The image types to include in the output.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string EnableImageTypes { get; set; }
2016-08-17 19:28:43 +00:00
[ApiMember(Name = "EnableUserData", Description = "Optional, include user data", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")]
public bool? EnableUserData { get; set; }
2013-11-28 18:27:29 +00:00
}
2013-05-01 13:45:25 +00:00
/// <summary>
/// Class TvShowsService
/// </summary>
2014-07-02 18:34:08 +00:00
[Authenticated]
2013-05-01 13:45:25 +00:00
public class TvShowsService : BaseApiService
{
/// <summary>
/// The _user manager
/// </summary>
private readonly IUserManager _userManager;
/// <summary>
/// The _user data repository
/// </summary>
2013-11-03 20:48:16 +00:00
private readonly IUserDataManager _userDataManager;
2013-05-01 13:45:25 +00:00
/// <summary>
/// The _library manager
/// </summary>
private readonly ILibraryManager _libraryManager;
2013-06-18 19:16:27 +00:00
private readonly IItemRepository _itemRepo;
2013-09-04 17:02:19 +00:00
private readonly IDtoService _dtoService;
private readonly ITVSeriesManager _tvSeriesManager;
2016-11-10 14:41:24 +00:00
private readonly IAuthorizationContext _authContext;
2013-09-04 17:02:19 +00:00
2013-05-01 13:45:25 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="TvShowsService" /> class.
/// </summary>
/// <param name="userManager">The user manager.</param>
2013-11-03 20:48:16 +00:00
/// <param name="userDataManager">The user data repository.</param>
2013-05-01 13:45:25 +00:00
/// <param name="libraryManager">The library manager.</param>
2016-11-10 14:41:24 +00:00
public TvShowsService(IUserManager userManager, IUserDataManager userDataManager, ILibraryManager libraryManager, IItemRepository itemRepo, IDtoService dtoService, ITVSeriesManager tvSeriesManager, IAuthorizationContext authContext)
2013-05-01 13:45:25 +00:00
{
_userManager = userManager;
2013-11-03 20:48:16 +00:00
_userDataManager = userDataManager;
2013-05-01 13:45:25 +00:00
_libraryManager = libraryManager;
2013-06-18 19:16:27 +00:00
_itemRepo = itemRepo;
2013-09-04 17:02:19 +00:00
_dtoService = dtoService;
_tvSeriesManager = tvSeriesManager;
2016-11-10 14:41:24 +00:00
_authContext = authContext;
2013-05-01 13:45:25 +00:00
}
2017-08-28 00:33:05 +00:00
public object Get(GetUpcomingEpisodes request)
2014-03-06 05:17:13 +00:00
{
var user = _userManager.GetUserById(request.UserId);
2016-04-16 19:03:19 +00:00
var minPremiereDate = DateTime.Now.Date.ToUniversalTime().AddDays(-1);
2015-10-28 19:40:38 +00:00
2018-09-12 17:26:21 +00:00
var parentIdGuid = string.IsNullOrWhiteSpace(request.ParentId) ? Guid.Empty : new Guid(request.ParentId);
2015-10-28 19:40:38 +00:00
2016-11-10 14:41:24 +00:00
var options = GetDtoOptions(_authContext, request);
2016-10-08 05:57:38 +00:00
2016-03-20 06:46:51 +00:00
var itemsResult = _libraryManager.GetItemList(new InternalItemsQuery(user)
2015-10-28 19:40:38 +00:00
{
2015-10-29 13:28:05 +00:00
IncludeItemTypes = new[] { typeof(Episode).Name },
2018-09-12 17:26:21 +00:00
OrderBy = new[] { ItemSortBy.PremiereDate, ItemSortBy.SortName }.Select(i => new ValueTuple<string, SortOrder>(i, SortOrder.Ascending)).ToArray(),
2015-10-29 13:28:05 +00:00
MinPremiereDate = minPremiereDate,
StartIndex = request.StartIndex,
Limit = request.Limit,
2016-06-30 19:13:14 +00:00
ParentId = parentIdGuid,
2016-10-08 05:57:38 +00:00
Recursive = true,
2016-10-10 18:18:28 +00:00
DtoOptions = options
2014-03-06 05:17:13 +00:00
});
2014-03-06 05:17:13 +00:00
2017-08-28 00:33:05 +00:00
var returnItems = _dtoService.GetBaseItemDtos(itemsResult, options, user);
2014-03-06 05:17:13 +00:00
2017-08-19 19:43:35 +00:00
var result = new QueryResult<BaseItemDto>
2014-03-06 05:17:13 +00:00
{
2016-03-20 06:46:51 +00:00
TotalRecordCount = itemsResult.Count,
2014-03-06 05:17:13 +00:00
Items = returnItems
};
2018-09-12 17:26:21 +00:00
return ToOptimizedResult(result);
2014-03-06 05:17:13 +00:00
}
2013-05-01 13:45:25 +00:00
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
2017-08-28 00:33:05 +00:00
public object Get(GetNextUpEpisodes request)
2013-11-03 20:48:16 +00:00
{
2017-05-21 07:25:49 +00:00
var options = GetDtoOptions(_authContext, request);
var result = _tvSeriesManager.GetNextUp(new NextUpQuery
{
Limit = request.Limit,
ParentId = request.ParentId,
SeriesId = request.SeriesId,
StartIndex = request.StartIndex,
2017-03-21 17:31:40 +00:00
UserId = request.UserId,
EnableTotalRecordCount = request.EnableTotalRecordCount
2017-05-21 07:25:49 +00:00
}, options);
2013-11-03 20:48:16 +00:00
2014-09-14 15:10:51 +00:00
var user = _userManager.GetUserById(request.UserId);
2013-11-03 20:48:16 +00:00
2017-08-28 00:33:05 +00:00
var returnItems = _dtoService.GetBaseItemDtos(result.Items, options, user);
2013-11-03 20:48:16 +00:00
2018-09-12 17:26:21 +00:00
return ToOptimizedResult(new QueryResult<BaseItemDto>
2013-11-03 20:48:16 +00:00
{
TotalRecordCount = result.TotalRecordCount,
2013-11-03 20:48:16 +00:00
Items = returnItems
});
}
2013-05-01 13:45:25 +00:00
/// <summary>
/// Applies the paging.
/// </summary>
/// <param name="items">The items.</param>
2014-03-06 05:17:13 +00:00
/// <param name="startIndex">The start index.</param>
/// <param name="limit">The limit.</param>
2013-05-01 13:45:25 +00:00
/// <returns>IEnumerable{BaseItem}.</returns>
2014-03-06 05:17:13 +00:00
private IEnumerable<BaseItem> ApplyPaging(IEnumerable<BaseItem> items, int? startIndex, int? limit)
2013-05-01 13:45:25 +00:00
{
// Start at
2014-03-06 05:17:13 +00:00
if (startIndex.HasValue)
2013-05-01 13:45:25 +00:00
{
2014-03-06 05:17:13 +00:00
items = items.Skip(startIndex.Value);
2013-05-01 13:45:25 +00:00
}
// Return limit
2014-03-06 05:17:13 +00:00
if (limit.HasValue)
2013-05-01 13:45:25 +00:00
{
2014-03-06 05:17:13 +00:00
items = items.Take(limit.Value);
2013-05-01 13:45:25 +00:00
}
return items;
}
2017-08-28 00:33:05 +00:00
public object Get(GetSeasons request)
2013-11-28 18:27:29 +00:00
{
var user = _userManager.GetUserById(request.UserId);
2017-04-17 19:01:16 +00:00
var series = GetSeries(request.Id, user);
2013-11-28 18:27:29 +00:00
if (series == null)
{
2017-04-15 19:45:33 +00:00
throw new ResourceNotFoundException("Series not found");
}
2017-08-01 16:45:57 +00:00
var seasons = (series.GetItemList(new InternalItemsQuery(user)
2013-11-28 18:27:29 +00:00
{
2016-08-18 05:56:10 +00:00
IsMissing = request.IsMissing,
IsSpecialSeason = request.IsSpecialSeason,
AdjacentTo = request.AdjacentTo
2013-11-28 18:27:29 +00:00
2017-08-19 19:43:35 +00:00
}));
2016-11-10 14:41:24 +00:00
var dtoOptions = GetDtoOptions(_authContext, request);
2017-08-28 00:33:05 +00:00
var returnItems = _dtoService.GetBaseItemDtos(seasons, dtoOptions, user);
2013-11-28 18:27:29 +00:00
2017-08-19 19:43:35 +00:00
return new QueryResult<BaseItemDto>
2013-11-28 18:27:29 +00:00
{
TotalRecordCount = returnItems.Length,
Items = returnItems
};
}
2017-04-17 19:01:16 +00:00
private Series GetSeries(string seriesId, User user)
2017-04-15 19:45:33 +00:00
{
if (!string.IsNullOrWhiteSpace(seriesId))
{
return _libraryManager.GetItemById(seriesId) as Series;
}
return null;
}
2017-08-28 00:33:05 +00:00
public object Get(GetEpisodes request)
{
var user = _userManager.GetUserById(request.UserId);
2017-08-19 19:43:35 +00:00
List<BaseItem> episodes;
2017-05-21 07:25:49 +00:00
var dtoOptions = GetDtoOptions(_authContext, request);
if (!string.IsNullOrWhiteSpace(request.SeasonId))
{
var season = _libraryManager.GetItemById(new Guid(request.SeasonId)) as Season;
if (season == null)
{
throw new ResourceNotFoundException("No season exists with Id " + request.SeasonId);
}
2017-05-21 07:25:49 +00:00
episodes = season.GetEpisodes(user, dtoOptions);
2015-10-28 19:40:38 +00:00
}
else if (request.Season.HasValue)
2013-11-30 18:32:39 +00:00
{
2017-04-17 19:01:16 +00:00
var series = GetSeries(request.Id, user);
2013-11-30 18:32:39 +00:00
if (series == null)
2013-11-30 18:32:39 +00:00
{
2017-04-15 19:45:33 +00:00
throw new ResourceNotFoundException("Series not found");
2013-11-30 18:32:39 +00:00
}
2017-05-21 07:25:49 +00:00
var season = series.GetSeasons(user, dtoOptions).FirstOrDefault(i => i.IndexNumber == request.Season.Value);
2016-05-24 19:48:53 +00:00
if (season == null)
{
2017-08-19 19:43:35 +00:00
episodes = new List<BaseItem>();
2016-05-24 19:48:53 +00:00
}
else
{
2017-08-19 19:43:35 +00:00
episodes = ((Season)season).GetEpisodes(user, dtoOptions);
2016-05-24 19:48:53 +00:00
}
2013-11-30 18:32:39 +00:00
}
else
{
2017-04-17 19:01:16 +00:00
var series = GetSeries(request.Id, user);
if (series == null)
{
2017-04-15 19:45:33 +00:00
throw new ResourceNotFoundException("Series not found");
}
2014-03-06 05:17:13 +00:00
2017-08-19 19:43:35 +00:00
episodes = series.GetEpisodes(user, dtoOptions).ToList();
}
// Filter after the fact in case the ui doesn't want them
if (request.IsMissing.HasValue)
{
var val = request.IsMissing.Value;
2017-08-19 19:43:35 +00:00
episodes = episodes.Where(i => ((Episode)i).IsMissingEpisode == val).ToList();
}
2015-02-16 16:47:30 +00:00
if (!string.IsNullOrWhiteSpace(request.StartItemId))
{
2017-08-19 19:43:35 +00:00
episodes = episodes.SkipWhile(i => !string.Equals(i.Id.ToString("N"), request.StartItemId, StringComparison.OrdinalIgnoreCase)).ToList();
2015-02-16 16:47:30 +00:00
}
// This must be the last filter
if (!string.IsNullOrEmpty(request.AdjacentTo))
{
2017-08-19 19:43:35 +00:00
episodes = UserViewBuilder.FilterForAdjacency(episodes, request.AdjacentTo).ToList();
}
2017-07-30 18:02:25 +00:00
if (string.Equals(request.SortBy, ItemSortBy.Random, StringComparison.OrdinalIgnoreCase))
{
2017-08-19 19:43:35 +00:00
episodes = episodes.OrderBy(i => Guid.NewGuid()).ToList();
2017-07-30 18:02:25 +00:00
}
2017-08-19 19:43:35 +00:00
var returnItems = episodes;
2014-03-19 04:59:45 +00:00
2017-08-19 19:43:35 +00:00
if (request.StartIndex.HasValue || request.Limit.HasValue)
{
returnItems = ApplyPaging(episodes, request.StartIndex, request.Limit).ToList();
}
2015-10-28 19:40:38 +00:00
2017-08-28 00:33:05 +00:00
var dtos = _dtoService.GetBaseItemDtos(returnItems, dtoOptions, user);
2017-08-19 19:43:35 +00:00
return new QueryResult<BaseItemDto>
{
2017-08-19 19:43:35 +00:00
TotalRecordCount = episodes.Count,
2015-01-25 06:34:50 +00:00
Items = dtos
};
}
2013-05-01 13:45:25 +00:00
}
}