2021-05-20 19:28:18 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:22:56 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2020-05-20 17:07:53 +00:00
|
|
|
using Jellyfin.Data.Entities;
|
2020-05-13 02:10:35 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 19:22:56 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2019-01-06 20:50:43 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-09-01 20:10:54 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.TV;
|
|
|
|
using MediaBrowser.Model.Querying;
|
2020-05-20 17:07:53 +00:00
|
|
|
using Episode = MediaBrowser.Controller.Entities.TV.Episode;
|
|
|
|
using Series = MediaBrowser.Controller.Entities.TV.Series;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
2016-11-03 07:14:14 +00:00
|
|
|
namespace Emby.Server.Implementations.TV
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
|
|
|
public class TVSeriesManager : ITVSeriesManager
|
|
|
|
{
|
|
|
|
private readonly IUserManager _userManager;
|
|
|
|
private readonly IUserDataManager _userDataManager;
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2021-02-17 20:18:27 +00:00
|
|
|
private readonly IServerConfigurationManager _configurationManager;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
2021-02-17 20:18:27 +00:00
|
|
|
public TVSeriesManager(IUserManager userManager, IUserDataManager userDataManager, ILibraryManager libraryManager, IServerConfigurationManager configurationManager)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
|
|
|
_userManager = userManager;
|
|
|
|
_userDataManager = userDataManager;
|
|
|
|
_libraryManager = libraryManager;
|
2021-02-17 20:18:27 +00:00
|
|
|
_configurationManager = configurationManager;
|
2014-09-01 20:10:54 +00:00
|
|
|
}
|
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
public QueryResult<BaseItem> GetNextUp(NextUpQuery query, DtoOptions options)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
2021-09-03 16:46:34 +00:00
|
|
|
var user = _userManager.GetUserById(query.UserId);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
|
|
if (user == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("User not found");
|
|
|
|
}
|
|
|
|
|
2016-05-02 05:32:04 +00:00
|
|
|
string presentationUniqueKey = null;
|
2021-09-03 16:46:34 +00:00
|
|
|
if (!string.IsNullOrEmpty(query.SeriesId))
|
2016-05-02 05:32:04 +00:00
|
|
|
{
|
2021-09-03 16:46:34 +00:00
|
|
|
if (_libraryManager.GetItemById(query.SeriesId) is Series series)
|
2016-05-02 05:32:04 +00:00
|
|
|
{
|
2016-07-01 15:51:35 +00:00
|
|
|
presentationUniqueKey = GetUniqueSeriesKey(series);
|
2016-05-02 05:32:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!string.IsNullOrEmpty(presentationUniqueKey))
|
2017-08-01 16:45:57 +00:00
|
|
|
{
|
2021-09-03 16:46:34 +00:00
|
|
|
return GetResult(GetNextUpEpisodes(query, user, new[] { presentationUniqueKey }, options), query);
|
2017-08-01 16:45:57 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
BaseItem[] parents;
|
2017-10-02 20:18:27 +00:00
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
if (query.ParentId.HasValue)
|
2017-10-02 20:18:27 +00:00
|
|
|
{
|
2021-09-03 16:46:34 +00:00
|
|
|
var parent = _libraryManager.GetItemById(query.ParentId.Value);
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2017-10-02 20:18:27 +00:00
|
|
|
if (parent != null)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
parents = new[] { parent };
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
parents = Array.Empty<BaseItem>();
|
2017-10-02 20:18:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
parents = _libraryManager.GetUserRootFolder().GetChildren(user, true)
|
2017-10-02 20:18:27 +00:00
|
|
|
.Where(i => i is Folder)
|
2020-12-13 15:15:26 +00:00
|
|
|
.Where(i => !user.GetPreferenceValues<Guid>(PreferenceKind.LatestItemExcludes).Contains(i.Id))
|
2018-09-12 17:26:21 +00:00
|
|
|
.ToArray();
|
2017-10-02 20:18:27 +00:00
|
|
|
}
|
2016-07-05 06:09:11 +00:00
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
return GetNextUp(query, parents, options);
|
2014-09-01 20:10:54 +00:00
|
|
|
}
|
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
public QueryResult<BaseItem> GetNextUp(NextUpQuery request, BaseItem[] parentsFolders, DtoOptions options)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
2014-09-14 15:10:51 +00:00
|
|
|
var user = _userManager.GetUserById(request.UserId);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
|
|
if (user == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("User not found");
|
|
|
|
}
|
|
|
|
|
2016-05-02 05:32:04 +00:00
|
|
|
string presentationUniqueKey = null;
|
|
|
|
int? limit = null;
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!string.IsNullOrEmpty(request.SeriesId))
|
2016-05-02 05:32:04 +00:00
|
|
|
{
|
2021-05-05 11:37:36 +00:00
|
|
|
if (_libraryManager.GetItemById(request.SeriesId) is Series series)
|
2016-05-02 05:32:04 +00:00
|
|
|
{
|
2016-07-01 15:51:35 +00:00
|
|
|
presentationUniqueKey = GetUniqueSeriesKey(series);
|
2016-05-02 05:32:04 +00:00
|
|
|
limit = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!string.IsNullOrEmpty(presentationUniqueKey))
|
2017-08-01 16:45:57 +00:00
|
|
|
{
|
2021-09-03 16:46:34 +00:00
|
|
|
return GetResult(GetNextUpEpisodes(request, user, new[] { presentationUniqueKey }, options), request);
|
2017-08-01 16:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (limit.HasValue)
|
2016-07-05 06:09:11 +00:00
|
|
|
{
|
|
|
|
limit = limit.Value + 10;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:18:02 +00:00
|
|
|
var items = _libraryManager
|
2020-07-15 17:04:36 +00:00
|
|
|
.GetItemList(
|
|
|
|
new InternalItemsQuery(user)
|
|
|
|
{
|
2020-10-17 14:19:57 +00:00
|
|
|
IncludeItemTypes = new[] { nameof(Episode) },
|
2020-07-15 17:04:36 +00:00
|
|
|
OrderBy = new[] { new ValueTuple<string, SortOrder>(ItemSortBy.DatePlayed, SortOrder.Descending) },
|
|
|
|
SeriesPresentationUniqueKey = presentationUniqueKey,
|
|
|
|
Limit = limit,
|
|
|
|
DtoOptions = new DtoOptions { Fields = new[] { ItemFields.SeriesPresentationUniqueKey }, EnableImages = false },
|
|
|
|
GroupBySeriesPresentationUniqueKey = true
|
|
|
|
}, parentsFolders.ToList())
|
2020-07-15 11:18:02 +00:00
|
|
|
.Cast<Episode>()
|
|
|
|
.Where(episode => !string.IsNullOrEmpty(episode.SeriesPresentationUniqueKey))
|
|
|
|
.Select(GetUniqueSeriesKey);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
|
|
// Avoid implicitly captured closure
|
2021-09-03 16:46:34 +00:00
|
|
|
var episodes = GetNextUpEpisodes(request, user, items, options);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
2017-03-21 17:31:40 +00:00
|
|
|
return GetResult(episodes, request);
|
2014-09-01 20:10:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-20 17:07:53 +00:00
|
|
|
public IEnumerable<Episode> GetNextUpEpisodes(NextUpQuery request, User user, IEnumerable<string> seriesKeys, DtoOptions dtoOptions)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
|
|
|
// Avoid implicitly captured closure
|
|
|
|
var currentUser = user;
|
|
|
|
|
2016-12-12 08:53:25 +00:00
|
|
|
var allNextUp = seriesKeys
|
2017-05-21 07:25:49 +00:00
|
|
|
.Select(i => GetNextUp(i, currentUser, dtoOptions));
|
2016-12-12 08:53:25 +00:00
|
|
|
|
2021-01-15 22:06:11 +00:00
|
|
|
// If viewing all next up for all series, remove first episodes
|
|
|
|
// But if that returns empty, keep those first episodes (avoid completely empty view)
|
|
|
|
var alwaysEnableFirstEpisode = !string.IsNullOrEmpty(request.SeriesId);
|
|
|
|
var anyFound = false;
|
|
|
|
|
2016-07-23 20:27:22 +00:00
|
|
|
return allNextUp
|
2016-12-12 05:49:19 +00:00
|
|
|
.Where(i =>
|
|
|
|
{
|
2021-01-15 22:08:48 +00:00
|
|
|
if (request.DisableFirstEpisode)
|
|
|
|
{
|
|
|
|
return i.Item1 != DateTime.MinValue;
|
|
|
|
}
|
|
|
|
|
2021-05-26 00:46:29 +00:00
|
|
|
if (alwaysEnableFirstEpisode || (i.Item1 != DateTime.MinValue && i.Item1.Date >= request.NextUpDateCutoff))
|
2021-01-15 22:06:11 +00:00
|
|
|
{
|
|
|
|
anyFound = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!anyFound && i.Item1 == DateTime.MinValue)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2016-12-12 05:49:19 +00:00
|
|
|
})
|
2016-11-21 17:17:26 +00:00
|
|
|
.Select(i => i.Item2())
|
2017-03-21 17:31:40 +00:00
|
|
|
.Where(i => i != null);
|
2014-09-01 20:10:54 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static string GetUniqueSeriesKey(Episode episode)
|
2017-08-01 16:45:57 +00:00
|
|
|
{
|
|
|
|
return episode.SeriesPresentationUniqueKey;
|
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static string GetUniqueSeriesKey(Series series)
|
2016-07-01 15:51:35 +00:00
|
|
|
{
|
2016-08-12 19:11:45 +00:00
|
|
|
return series.GetPresentationUniqueKey();
|
2016-07-01 15:51:35 +00:00
|
|
|
}
|
|
|
|
|
2014-09-01 20:10:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the next up.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>Task{Episode}.</returns>
|
2020-05-20 17:07:53 +00:00
|
|
|
private Tuple<DateTime, Func<Episode>> GetNextUp(string seriesKey, User user, DtoOptions dtoOptions)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
2016-06-29 16:31:01 +00:00
|
|
|
var lastWatchedEpisode = _libraryManager.GetItemList(new InternalItemsQuery(user)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
2017-05-24 19:12:55 +00:00
|
|
|
AncestorWithPresentationUniqueKey = null,
|
|
|
|
SeriesPresentationUniqueKey = seriesKey,
|
2020-05-13 02:10:35 +00:00
|
|
|
IncludeItemTypes = new[] { nameof(Episode) },
|
2018-09-12 17:26:21 +00:00
|
|
|
OrderBy = new[] { new ValueTuple<string, SortOrder>(ItemSortBy.SortName, SortOrder.Descending) },
|
2016-06-29 16:31:01 +00:00
|
|
|
IsPlayed = true,
|
2016-06-14 19:21:26 +00:00
|
|
|
Limit = 1,
|
2016-12-12 05:49:19 +00:00
|
|
|
ParentIndexNumberNotEquals = 0,
|
2019-01-13 20:37:13 +00:00
|
|
|
DtoOptions = new DtoOptions
|
2016-12-12 05:49:19 +00:00
|
|
|
{
|
2021-02-17 20:18:27 +00:00
|
|
|
Fields = new[] { ItemFields.SortName },
|
2016-12-12 05:49:19 +00:00
|
|
|
EnableImages = false
|
|
|
|
}
|
2021-02-17 20:18:27 +00:00
|
|
|
}).Cast<Episode>().FirstOrDefault();
|
2014-09-01 20:10:54 +00:00
|
|
|
|
2016-11-21 17:17:26 +00:00
|
|
|
Func<Episode> getEpisode = () =>
|
2016-06-04 00:15:14 +00:00
|
|
|
{
|
2020-12-01 18:26:51 +00:00
|
|
|
var nextEpisode = _libraryManager.GetItemList(new InternalItemsQuery(user)
|
2016-11-21 17:17:26 +00:00
|
|
|
{
|
2017-05-24 19:12:55 +00:00
|
|
|
AncestorWithPresentationUniqueKey = null,
|
|
|
|
SeriesPresentationUniqueKey = seriesKey,
|
2020-10-17 14:19:57 +00:00
|
|
|
IncludeItemTypes = new[] { nameof(Episode) },
|
2018-09-12 17:26:21 +00:00
|
|
|
OrderBy = new[] { new ValueTuple<string, SortOrder>(ItemSortBy.SortName, SortOrder.Ascending) },
|
2016-11-21 17:17:26 +00:00
|
|
|
Limit = 1,
|
|
|
|
IsPlayed = false,
|
|
|
|
IsVirtualItem = false,
|
|
|
|
ParentIndexNumberNotEquals = 0,
|
2020-05-13 02:10:35 +00:00
|
|
|
MinSortName = lastWatchedEpisode?.SortName,
|
2017-05-21 07:25:49 +00:00
|
|
|
DtoOptions = dtoOptions
|
2016-11-21 17:17:26 +00:00
|
|
|
}).Cast<Episode>().FirstOrDefault();
|
2020-12-01 12:55:52 +00:00
|
|
|
|
2021-02-17 20:18:27 +00:00
|
|
|
if (_configurationManager.Configuration.DisplaySpecialsWithinSeasons)
|
|
|
|
{
|
|
|
|
var consideredEpisodes = _libraryManager.GetItemList(new InternalItemsQuery(user)
|
|
|
|
{
|
|
|
|
AncestorWithPresentationUniqueKey = null,
|
|
|
|
SeriesPresentationUniqueKey = seriesKey,
|
|
|
|
ParentIndexNumber = 0,
|
|
|
|
IncludeItemTypes = new[] { nameof(Episode) },
|
|
|
|
IsPlayed = false,
|
|
|
|
IsVirtualItem = false,
|
|
|
|
DtoOptions = dtoOptions
|
2021-03-05 21:51:08 +00:00
|
|
|
})
|
|
|
|
.Cast<Episode>()
|
|
|
|
.Where(episode => episode.AirsBeforeSeasonNumber != null || episode.AirsAfterSeasonNumber != null)
|
|
|
|
.ToList();
|
2021-02-17 20:18:27 +00:00
|
|
|
|
|
|
|
if (lastWatchedEpisode != null)
|
|
|
|
{
|
|
|
|
// Last watched episode is added, because there could be specials that aired before the last watched episode
|
|
|
|
consideredEpisodes.Add(lastWatchedEpisode);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nextEpisode != null)
|
|
|
|
{
|
|
|
|
consideredEpisodes.Add(nextEpisode);
|
|
|
|
}
|
|
|
|
|
2021-03-05 21:51:08 +00:00
|
|
|
var sortedConsideredEpisodes = _libraryManager.Sort(consideredEpisodes, user, new[] { (ItemSortBy.AiredEpisodeOrder, SortOrder.Ascending) })
|
|
|
|
.Cast<Episode>();
|
2021-02-17 20:18:27 +00:00
|
|
|
if (lastWatchedEpisode != null)
|
|
|
|
{
|
|
|
|
sortedConsideredEpisodes = sortedConsideredEpisodes.SkipWhile(episode => episode.Id != lastWatchedEpisode.Id).Skip(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
nextEpisode = sortedConsideredEpisodes.FirstOrDefault();
|
|
|
|
}
|
|
|
|
|
2020-12-01 21:31:55 +00:00
|
|
|
if (nextEpisode != null)
|
|
|
|
{
|
2020-12-01 18:33:18 +00:00
|
|
|
var userData = _userDataManager.GetUserData(user, nextEpisode);
|
2020-12-01 12:55:52 +00:00
|
|
|
|
2020-12-01 18:33:18 +00:00
|
|
|
if (userData.PlaybackPositionTicks > 0)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2020-12-01 12:55:52 +00:00
|
|
|
}
|
|
|
|
|
2020-12-01 18:26:51 +00:00
|
|
|
return nextEpisode;
|
2016-11-21 17:17:26 +00:00
|
|
|
};
|
2016-06-14 19:21:26 +00:00
|
|
|
|
2016-11-21 17:17:26 +00:00
|
|
|
if (lastWatchedEpisode != null)
|
2016-06-14 19:21:26 +00:00
|
|
|
{
|
|
|
|
var userData = _userDataManager.GetUserData(user, lastWatchedEpisode);
|
2016-06-04 00:15:14 +00:00
|
|
|
|
2016-07-01 15:51:35 +00:00
|
|
|
var lastWatchedDate = userData.LastPlayedDate ?? DateTime.MinValue.AddDays(1);
|
|
|
|
|
2016-11-21 17:17:26 +00:00
|
|
|
return new Tuple<DateTime, Func<Episode>>(lastWatchedDate, getEpisode);
|
2016-06-04 00:15:14 +00:00
|
|
|
}
|
2015-01-23 06:15:15 +00:00
|
|
|
|
|
|
|
// Return the first episode
|
2016-11-21 17:17:26 +00:00
|
|
|
return new Tuple<DateTime, Func<Episode>>(DateTime.MinValue, getEpisode);
|
2014-09-01 20:10:54 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static QueryResult<BaseItem> GetResult(IEnumerable<BaseItem> items, NextUpQuery query)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
2017-03-21 17:31:40 +00:00
|
|
|
int totalCount = 0;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
2017-03-21 17:31:40 +00:00
|
|
|
if (query.EnableTotalRecordCount)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
2017-03-21 17:31:40 +00:00
|
|
|
var list = items.ToList();
|
|
|
|
totalCount = list.Count;
|
|
|
|
items = list;
|
2014-09-01 20:10:54 +00:00
|
|
|
}
|
2017-03-21 17:31:40 +00:00
|
|
|
|
|
|
|
if (query.StartIndex.HasValue)
|
|
|
|
{
|
|
|
|
items = items.Skip(query.StartIndex.Value);
|
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2017-03-21 17:31:40 +00:00
|
|
|
if (query.Limit.HasValue)
|
2014-09-01 20:10:54 +00:00
|
|
|
{
|
2017-03-21 17:31:40 +00:00
|
|
|
items = items.Take(query.Limit.Value);
|
2014-09-01 20:10:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return new QueryResult<BaseItem>
|
|
|
|
{
|
|
|
|
TotalRecordCount = totalCount,
|
2017-03-21 17:31:40 +00:00
|
|
|
Items = items.ToArray()
|
2014-09-01 20:10:54 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|