2020-05-29 02:28:19 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:22:56 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2019-02-28 15:22:57 -07:00
|
|
|
using System.Globalization;
|
2019-01-13 12:22:56 -07:00
|
|
|
using System.Linq;
|
2020-05-20 10:07:53 -07:00
|
|
|
using Jellyfin.Data.Entities;
|
2020-05-12 19:10:35 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 12:22:56 -07:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2019-01-06 13:50:43 -07:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-09-01 13:10:54 -07:00
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.TV;
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaBrowser.Model.Querying;
|
2020-05-20 10:07:53 -07:00
|
|
|
using Episode = MediaBrowser.Controller.Entities.TV.Episode;
|
|
|
|
using Series = MediaBrowser.Controller.Entities.TV.Series;
|
2014-09-01 13:10:54 -07:00
|
|
|
|
2016-11-03 00:14:14 -07:00
|
|
|
namespace Emby.Server.Implementations.TV
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
|
|
|
public class TVSeriesManager : ITVSeriesManager
|
|
|
|
{
|
|
|
|
private readonly IUserManager _userManager;
|
|
|
|
private readonly IUserDataManager _userDataManager;
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
|
|
|
|
2020-05-29 02:28:19 -07:00
|
|
|
public TVSeriesManager(IUserManager userManager, IUserDataManager userDataManager, ILibraryManager libraryManager)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
|
|
|
_userManager = userManager;
|
|
|
|
_userDataManager = userDataManager;
|
|
|
|
_libraryManager = libraryManager;
|
|
|
|
}
|
|
|
|
|
2017-05-21 00:25:49 -07:00
|
|
|
public QueryResult<BaseItem> GetNextUp(NextUpQuery request, DtoOptions dtoOptions)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
2014-09-14 08:10:51 -07:00
|
|
|
var user = _userManager.GetUserById(request.UserId);
|
2014-09-01 13:10:54 -07:00
|
|
|
|
|
|
|
if (user == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("User not found");
|
|
|
|
}
|
|
|
|
|
2016-05-01 22:32:04 -07:00
|
|
|
string presentationUniqueKey = null;
|
2018-09-12 10:26:21 -07:00
|
|
|
if (!string.IsNullOrEmpty(request.SeriesId))
|
2016-05-01 22:32:04 -07:00
|
|
|
{
|
2017-08-01 09:45:57 -07:00
|
|
|
var series = _libraryManager.GetItemById(request.SeriesId) as Series;
|
2016-05-01 22:32:04 -07:00
|
|
|
|
|
|
|
if (series != null)
|
|
|
|
{
|
2016-07-01 08:51:35 -07:00
|
|
|
presentationUniqueKey = GetUniqueSeriesKey(series);
|
2016-05-01 22:32:04 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
if (!string.IsNullOrEmpty(presentationUniqueKey))
|
2017-08-01 09:45:57 -07:00
|
|
|
{
|
|
|
|
return GetResult(GetNextUpEpisodes(request, user, new[] { presentationUniqueKey }, dtoOptions), request);
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
BaseItem[] parents;
|
2017-10-02 13:18:27 -07:00
|
|
|
|
2020-12-01 11:07:41 -07:00
|
|
|
if (request.ParentId.HasValue)
|
2017-10-02 13:18:27 -07:00
|
|
|
{
|
2020-12-01 11:07:41 -07:00
|
|
|
var parent = _libraryManager.GetItemById(request.ParentId.Value);
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2017-10-02 13:18:27 -07:00
|
|
|
if (parent != null)
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
parents = new[] { parent };
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
parents = Array.Empty<BaseItem>();
|
2017-10-02 13:18:27 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
parents = _libraryManager.GetUserRootFolder().GetChildren(user, true)
|
2017-10-02 13:18:27 -07:00
|
|
|
.Where(i => i is Folder)
|
2020-05-12 19:10:35 -07:00
|
|
|
.Where(i => !user.GetPreference(PreferenceKind.LatestItemExcludes)
|
|
|
|
.Contains(i.Id.ToString("N", CultureInfo.InvariantCulture)))
|
2018-09-12 10:26:21 -07:00
|
|
|
.ToArray();
|
2017-10-02 13:18:27 -07:00
|
|
|
}
|
2016-07-04 23:09:11 -07:00
|
|
|
|
2017-10-01 10:26:09 -07:00
|
|
|
return GetNextUp(request, parents, dtoOptions);
|
2014-09-01 13:10:54 -07:00
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public QueryResult<BaseItem> GetNextUp(NextUpQuery request, BaseItem[] parentsFolders, DtoOptions dtoOptions)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
2014-09-14 08:10:51 -07:00
|
|
|
var user = _userManager.GetUserById(request.UserId);
|
2014-09-01 13:10:54 -07:00
|
|
|
|
|
|
|
if (user == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("User not found");
|
|
|
|
}
|
|
|
|
|
2016-05-01 22:32:04 -07:00
|
|
|
string presentationUniqueKey = null;
|
|
|
|
int? limit = null;
|
2018-09-12 10:26:21 -07:00
|
|
|
if (!string.IsNullOrEmpty(request.SeriesId))
|
2016-05-01 22:32:04 -07:00
|
|
|
{
|
2017-08-01 09:45:57 -07:00
|
|
|
var series = _libraryManager.GetItemById(request.SeriesId) as Series;
|
2016-05-01 22:32:04 -07:00
|
|
|
|
|
|
|
if (series != null)
|
|
|
|
{
|
2016-07-01 08:51:35 -07:00
|
|
|
presentationUniqueKey = GetUniqueSeriesKey(series);
|
2016-05-01 22:32:04 -07:00
|
|
|
limit = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
if (!string.IsNullOrEmpty(presentationUniqueKey))
|
2017-08-01 09:45:57 -07:00
|
|
|
{
|
2017-10-02 13:18:27 -07:00
|
|
|
return GetResult(GetNextUpEpisodes(request, user, new[] { presentationUniqueKey }, dtoOptions), request);
|
2017-08-01 09:45:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (limit.HasValue)
|
2016-07-04 23:09:11 -07:00
|
|
|
{
|
|
|
|
limit = limit.Value + 10;
|
|
|
|
}
|
|
|
|
|
2020-07-15 04:18:02 -07:00
|
|
|
var items = _libraryManager
|
2020-07-15 10:04:36 -07:00
|
|
|
.GetItemList(
|
|
|
|
new InternalItemsQuery(user)
|
|
|
|
{
|
2020-10-17 07:19:57 -07:00
|
|
|
IncludeItemTypes = new[] { nameof(Episode) },
|
2020-07-15 10:04:36 -07: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 04:18:02 -07:00
|
|
|
.Cast<Episode>()
|
|
|
|
.Where(episode => !string.IsNullOrEmpty(episode.SeriesPresentationUniqueKey))
|
|
|
|
.Select(GetUniqueSeriesKey);
|
2014-09-01 13:10:54 -07:00
|
|
|
|
|
|
|
// Avoid implicitly captured closure
|
2017-05-21 00:25:49 -07:00
|
|
|
var episodes = GetNextUpEpisodes(request, user, items, dtoOptions);
|
2014-09-01 13:10:54 -07:00
|
|
|
|
2017-03-21 10:31:40 -07:00
|
|
|
return GetResult(episodes, request);
|
2014-09-01 13:10:54 -07:00
|
|
|
}
|
|
|
|
|
2020-05-20 10:07:53 -07:00
|
|
|
public IEnumerable<Episode> GetNextUpEpisodes(NextUpQuery request, User user, IEnumerable<string> seriesKeys, DtoOptions dtoOptions)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
|
|
|
// Avoid implicitly captured closure
|
|
|
|
var currentUser = user;
|
|
|
|
|
2016-12-12 01:53:25 -07:00
|
|
|
var allNextUp = seriesKeys
|
2017-05-21 00:25:49 -07:00
|
|
|
.Select(i => GetNextUp(i, currentUser, dtoOptions));
|
2016-12-12 01:53:25 -07:00
|
|
|
|
2016-07-23 13:27:22 -07:00
|
|
|
return allNextUp
|
2016-12-11 22:49:19 -07:00
|
|
|
.Where(i =>
|
|
|
|
{
|
2020-11-27 11:06:18 -07:00
|
|
|
return i.Item1 != DateTime.MinValue;
|
2016-12-11 22:49:19 -07:00
|
|
|
})
|
2016-11-21 10:17:26 -07:00
|
|
|
.Select(i => i.Item2())
|
2017-03-21 10:31:40 -07:00
|
|
|
.Where(i => i != null);
|
2014-09-01 13:10:54 -07:00
|
|
|
}
|
|
|
|
|
2019-01-06 13:50:43 -07:00
|
|
|
private static string GetUniqueSeriesKey(Episode episode)
|
2017-08-01 09:45:57 -07:00
|
|
|
{
|
|
|
|
return episode.SeriesPresentationUniqueKey;
|
|
|
|
}
|
|
|
|
|
2019-01-06 13:50:43 -07:00
|
|
|
private static string GetUniqueSeriesKey(Series series)
|
2016-07-01 08:51:35 -07:00
|
|
|
{
|
2016-08-12 12:11:45 -07:00
|
|
|
return series.GetPresentationUniqueKey();
|
2016-07-01 08:51:35 -07:00
|
|
|
}
|
|
|
|
|
2014-09-01 13:10:54 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the next up.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>Task{Episode}.</returns>
|
2020-05-20 10:07:53 -07:00
|
|
|
private Tuple<DateTime, Func<Episode>> GetNextUp(string seriesKey, User user, DtoOptions dtoOptions)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
2016-06-29 09:31:01 -07:00
|
|
|
var lastWatchedEpisode = _libraryManager.GetItemList(new InternalItemsQuery(user)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
2017-05-24 12:12:55 -07:00
|
|
|
AncestorWithPresentationUniqueKey = null,
|
|
|
|
SeriesPresentationUniqueKey = seriesKey,
|
2020-05-12 19:10:35 -07:00
|
|
|
IncludeItemTypes = new[] { nameof(Episode) },
|
2018-09-12 10:26:21 -07:00
|
|
|
OrderBy = new[] { new ValueTuple<string, SortOrder>(ItemSortBy.SortName, SortOrder.Descending) },
|
2016-06-29 09:31:01 -07:00
|
|
|
IsPlayed = true,
|
2016-06-14 12:21:26 -07:00
|
|
|
Limit = 1,
|
2016-12-11 22:49:19 -07:00
|
|
|
ParentIndexNumberNotEquals = 0,
|
2019-01-13 13:37:13 -07:00
|
|
|
DtoOptions = new DtoOptions
|
2016-12-11 22:49:19 -07:00
|
|
|
{
|
2017-08-19 12:43:35 -07:00
|
|
|
Fields = new ItemFields[]
|
2016-12-11 22:49:19 -07:00
|
|
|
{
|
2017-05-24 12:12:55 -07:00
|
|
|
ItemFields.SortName
|
2016-12-11 22:49:19 -07:00
|
|
|
},
|
|
|
|
EnableImages = false
|
|
|
|
}
|
2016-06-29 09:31:01 -07:00
|
|
|
}).FirstOrDefault();
|
2014-09-01 13:10:54 -07:00
|
|
|
|
2016-11-21 10:17:26 -07:00
|
|
|
Func<Episode> getEpisode = () =>
|
2016-06-03 17:15:14 -07:00
|
|
|
{
|
2020-12-01 11:26:51 -07:00
|
|
|
var nextEpisode = _libraryManager.GetItemList(new InternalItemsQuery(user)
|
2016-11-21 10:17:26 -07:00
|
|
|
{
|
2017-05-24 12:12:55 -07:00
|
|
|
AncestorWithPresentationUniqueKey = null,
|
|
|
|
SeriesPresentationUniqueKey = seriesKey,
|
2020-10-17 07:19:57 -07:00
|
|
|
IncludeItemTypes = new[] { nameof(Episode) },
|
2018-09-12 10:26:21 -07:00
|
|
|
OrderBy = new[] { new ValueTuple<string, SortOrder>(ItemSortBy.SortName, SortOrder.Ascending) },
|
2016-11-21 10:17:26 -07:00
|
|
|
Limit = 1,
|
|
|
|
IsPlayed = false,
|
|
|
|
IsVirtualItem = false,
|
|
|
|
ParentIndexNumberNotEquals = 0,
|
2020-05-12 19:10:35 -07:00
|
|
|
MinSortName = lastWatchedEpisode?.SortName,
|
2017-05-21 00:25:49 -07:00
|
|
|
DtoOptions = dtoOptions
|
2016-11-21 10:17:26 -07:00
|
|
|
}).Cast<Episode>().FirstOrDefault();
|
2020-12-01 05:55:52 -07:00
|
|
|
|
2020-12-01 14:31:55 -07:00
|
|
|
if (nextEpisode != null)
|
|
|
|
{
|
2020-12-01 11:33:18 -07:00
|
|
|
var userData = _userDataManager.GetUserData(user, nextEpisode);
|
2020-12-01 05:55:52 -07:00
|
|
|
|
2020-12-01 11:33:18 -07:00
|
|
|
if (userData.PlaybackPositionTicks > 0)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2020-12-01 05:55:52 -07:00
|
|
|
}
|
|
|
|
|
2020-12-01 11:26:51 -07:00
|
|
|
return nextEpisode;
|
2016-11-21 10:17:26 -07:00
|
|
|
};
|
2016-06-14 12:21:26 -07:00
|
|
|
|
2016-11-21 10:17:26 -07:00
|
|
|
if (lastWatchedEpisode != null)
|
2016-06-14 12:21:26 -07:00
|
|
|
{
|
|
|
|
var userData = _userDataManager.GetUserData(user, lastWatchedEpisode);
|
2016-06-03 17:15:14 -07:00
|
|
|
|
2016-07-01 08:51:35 -07:00
|
|
|
var lastWatchedDate = userData.LastPlayedDate ?? DateTime.MinValue.AddDays(1);
|
|
|
|
|
2016-11-21 10:17:26 -07:00
|
|
|
return new Tuple<DateTime, Func<Episode>>(lastWatchedDate, getEpisode);
|
2016-06-03 17:15:14 -07:00
|
|
|
}
|
2015-01-22 23:15:15 -07:00
|
|
|
|
|
|
|
// Return the first episode
|
2016-11-21 10:17:26 -07:00
|
|
|
return new Tuple<DateTime, Func<Episode>>(DateTime.MinValue, getEpisode);
|
2014-09-01 13:10:54 -07:00
|
|
|
}
|
|
|
|
|
2019-01-06 13:50:43 -07:00
|
|
|
private static QueryResult<BaseItem> GetResult(IEnumerable<BaseItem> items, NextUpQuery query)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
2017-03-21 10:31:40 -07:00
|
|
|
int totalCount = 0;
|
2014-09-01 13:10:54 -07:00
|
|
|
|
2017-03-21 10:31:40 -07:00
|
|
|
if (query.EnableTotalRecordCount)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
2017-03-21 10:31:40 -07:00
|
|
|
var list = items.ToList();
|
|
|
|
totalCount = list.Count;
|
|
|
|
items = list;
|
2014-09-01 13:10:54 -07:00
|
|
|
}
|
2017-03-21 10:31:40 -07:00
|
|
|
|
|
|
|
if (query.StartIndex.HasValue)
|
|
|
|
{
|
|
|
|
items = items.Skip(query.StartIndex.Value);
|
|
|
|
}
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2017-03-21 10:31:40 -07:00
|
|
|
if (query.Limit.HasValue)
|
2014-09-01 13:10:54 -07:00
|
|
|
{
|
2017-03-21 10:31:40 -07:00
|
|
|
items = items.Take(query.Limit.Value);
|
2014-09-01 13:10:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return new QueryResult<BaseItem>
|
|
|
|
{
|
|
|
|
TotalRecordCount = totalCount,
|
2017-03-21 10:31:40 -07:00
|
|
|
Items = items.ToArray()
|
2014-09-01 13:10:54 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|