2014-09-01 20:10:54 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Controller.TV;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2016-07-01 15:51:35 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2017-05-21 07:25:49 +00:00
|
|
|
|
using MediaBrowser.Controller.Dto;
|
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;
|
2016-07-01 15:51:35 +00:00
|
|
|
|
private readonly IServerConfigurationManager _config;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
2016-07-01 15:51:35 +00:00
|
|
|
|
public TVSeriesManager(IUserManager userManager, IUserDataManager userDataManager, ILibraryManager libraryManager, IServerConfigurationManager config)
|
2014-09-01 20:10:54 +00:00
|
|
|
|
{
|
|
|
|
|
_userManager = userManager;
|
|
|
|
|
_userDataManager = userDataManager;
|
|
|
|
|
_libraryManager = libraryManager;
|
2016-07-01 15:51:35 +00:00
|
|
|
|
_config = config;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 07:25:49 +00:00
|
|
|
|
public QueryResult<BaseItem> GetNextUp(NextUpQuery request, DtoOptions dtoOptions)
|
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-06-30 19:10:12 +00:00
|
|
|
|
var parentIdGuid = string.IsNullOrWhiteSpace(request.ParentId) ? (Guid?)null : new Guid(request.ParentId);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
2016-05-02 05:32:04 +00:00
|
|
|
|
string presentationUniqueKey = null;
|
|
|
|
|
int? limit = null;
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(request.SeriesId))
|
|
|
|
|
{
|
|
|
|
|
var series = _libraryManager.GetItemById(request.SeriesId);
|
|
|
|
|
|
|
|
|
|
if (series != null)
|
|
|
|
|
{
|
2016-07-01 15:51:35 +00:00
|
|
|
|
presentationUniqueKey = GetUniqueSeriesKey(series);
|
2016-05-02 05:32:04 +00:00
|
|
|
|
limit = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-05 06:09:11 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(presentationUniqueKey) && limit.HasValue)
|
|
|
|
|
{
|
|
|
|
|
limit = limit.Value + 10;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-20 06:46:51 +00:00
|
|
|
|
var items = _libraryManager.GetItemList(new InternalItemsQuery(user)
|
2015-10-28 19:40:38 +00:00
|
|
|
|
{
|
2015-10-29 13:28:05 +00:00
|
|
|
|
IncludeItemTypes = new[] { typeof(Series).Name },
|
2016-12-12 08:53:25 +00:00
|
|
|
|
SortBy = new[] { ItemSortBy.SeriesDatePlayed },
|
|
|
|
|
SortOrder = SortOrder.Descending,
|
2016-05-02 05:32:04 +00:00
|
|
|
|
PresentationUniqueKey = presentationUniqueKey,
|
2016-06-30 19:10:12 +00:00
|
|
|
|
Limit = limit,
|
2016-06-30 19:13:14 +00:00
|
|
|
|
ParentId = parentIdGuid,
|
2016-12-12 05:49:19 +00:00
|
|
|
|
Recursive = true,
|
|
|
|
|
DtoOptions = new MediaBrowser.Controller.Dto.DtoOptions
|
|
|
|
|
{
|
|
|
|
|
Fields = new List<ItemFields>
|
|
|
|
|
{
|
2017-05-24 19:12:55 +00:00
|
|
|
|
ItemFields.PresentationUniqueKey
|
2016-12-12 05:49:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-28 19:40:38 +00:00
|
|
|
|
|
2016-12-12 08:53:25 +00:00
|
|
|
|
}).Cast<Series>().Select(GetUniqueSeriesKey);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
|
|
|
|
// Avoid implicitly captured closure
|
2017-05-21 07:25:49 +00:00
|
|
|
|
var episodes = GetNextUpEpisodes(request, user, items, dtoOptions);
|
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
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 07:25:49 +00:00
|
|
|
|
public QueryResult<BaseItem> GetNextUp(NextUpQuery request, List<Folder> parentsFolders, DtoOptions dtoOptions)
|
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;
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(request.SeriesId))
|
|
|
|
|
{
|
|
|
|
|
var series = _libraryManager.GetItemById(request.SeriesId);
|
|
|
|
|
|
|
|
|
|
if (series != null)
|
|
|
|
|
{
|
2016-07-01 15:51:35 +00:00
|
|
|
|
presentationUniqueKey = GetUniqueSeriesKey(series);
|
2016-05-02 05:32:04 +00:00
|
|
|
|
limit = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-05 06:09:11 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(presentationUniqueKey) && limit.HasValue)
|
|
|
|
|
{
|
|
|
|
|
limit = limit.Value + 10;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-20 06:46:51 +00:00
|
|
|
|
var items = _libraryManager.GetItemList(new InternalItemsQuery(user)
|
2015-10-29 13:28:05 +00:00
|
|
|
|
{
|
|
|
|
|
IncludeItemTypes = new[] { typeof(Series).Name },
|
2016-12-12 08:53:25 +00:00
|
|
|
|
SortBy = new[] { ItemSortBy.SeriesDatePlayed },
|
|
|
|
|
SortOrder = SortOrder.Descending,
|
2016-05-02 05:32:04 +00:00
|
|
|
|
PresentationUniqueKey = presentationUniqueKey,
|
2016-12-12 05:49:19 +00:00
|
|
|
|
Limit = limit,
|
|
|
|
|
DtoOptions = new MediaBrowser.Controller.Dto.DtoOptions
|
|
|
|
|
{
|
|
|
|
|
Fields = new List<ItemFields>
|
|
|
|
|
{
|
2017-05-24 19:12:55 +00:00
|
|
|
|
ItemFields.PresentationUniqueKey
|
2016-12-12 05:49:19 +00:00
|
|
|
|
},
|
|
|
|
|
EnableImages = false
|
|
|
|
|
}
|
2015-10-29 13:28:05 +00:00
|
|
|
|
|
2016-12-12 08:53:25 +00:00
|
|
|
|
}, parentsFolders.Cast<BaseItem>().ToList()).Cast<Series>().Select(GetUniqueSeriesKey);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
|
|
|
|
// Avoid implicitly captured closure
|
2017-05-21 07:25:49 +00:00
|
|
|
|
var episodes = GetNextUpEpisodes(request, user, items, dtoOptions);
|
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
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 07:25:49 +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
|
|
|
|
|
|
|
|
|
//allNextUp = allNextUp.OrderByDescending(i => i.Item1);
|
2016-07-23 20:27:22 +00:00
|
|
|
|
|
|
|
|
|
// If viewing all next up for all series, remove first episodes
|
2016-12-12 05:49:19 +00:00
|
|
|
|
// But if that returns empty, keep those first episodes (avoid completely empty view)
|
2016-12-12 22:43:07 +00:00
|
|
|
|
var alwaysEnableFirstEpisode = !string.IsNullOrWhiteSpace(request.SeriesId);
|
2017-01-31 21:15:22 +00:00
|
|
|
|
var anyFound = false;
|
2016-07-23 20:27:22 +00:00
|
|
|
|
|
|
|
|
|
return allNextUp
|
2016-12-12 05:49:19 +00:00
|
|
|
|
.Where(i =>
|
|
|
|
|
{
|
|
|
|
|
if (alwaysEnableFirstEpisode || i.Item1 != DateTime.MinValue)
|
2017-01-31 21:15:22 +00:00
|
|
|
|
{
|
|
|
|
|
anyFound = true;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!anyFound && i.Item1 == DateTime.MinValue)
|
2016-12-12 05:49:19 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-15 06:41:10 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2016-07-01 15:51:35 +00:00
|
|
|
|
private string GetUniqueSeriesKey(BaseItem series)
|
|
|
|
|
{
|
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>
|
2017-05-21 07:25:49 +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,
|
2016-06-14 19:21:26 +00:00
|
|
|
|
IncludeItemTypes = new[] { typeof(Episode).Name },
|
|
|
|
|
SortBy = new[] { ItemSortBy.SortName },
|
2016-06-29 16:31:01 +00:00
|
|
|
|
SortOrder = SortOrder.Descending,
|
|
|
|
|
IsPlayed = true,
|
2016-06-14 19:21:26 +00:00
|
|
|
|
Limit = 1,
|
2016-12-12 05:49:19 +00:00
|
|
|
|
ParentIndexNumberNotEquals = 0,
|
|
|
|
|
DtoOptions = new MediaBrowser.Controller.Dto.DtoOptions
|
|
|
|
|
{
|
|
|
|
|
Fields = new List<ItemFields>
|
|
|
|
|
{
|
2017-05-24 19:12:55 +00:00
|
|
|
|
ItemFields.SortName
|
2016-12-12 05:49:19 +00:00
|
|
|
|
},
|
|
|
|
|
EnableImages = false
|
|
|
|
|
}
|
2016-06-04 00:15:14 +00:00
|
|
|
|
|
2016-06-29 16:31:01 +00:00
|
|
|
|
}).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
|
|
|
|
{
|
2016-11-21 17:17:26 +00:00
|
|
|
|
return _libraryManager.GetItemList(new InternalItemsQuery(user)
|
|
|
|
|
{
|
2017-05-24 19:12:55 +00:00
|
|
|
|
AncestorWithPresentationUniqueKey = null,
|
|
|
|
|
SeriesPresentationUniqueKey = seriesKey,
|
2016-11-21 17:17:26 +00:00
|
|
|
|
IncludeItemTypes = new[] { typeof(Episode).Name },
|
|
|
|
|
SortBy = new[] { ItemSortBy.SortName },
|
|
|
|
|
SortOrder = SortOrder.Ascending,
|
|
|
|
|
Limit = 1,
|
|
|
|
|
IsPlayed = false,
|
|
|
|
|
IsVirtualItem = false,
|
|
|
|
|
ParentIndexNumberNotEquals = 0,
|
2017-05-21 07:25:49 +00:00
|
|
|
|
MinSortName = lastWatchedEpisode == null ? null : lastWatchedEpisode.SortName,
|
|
|
|
|
DtoOptions = dtoOptions
|
2016-11-21 17:17:26 +00:00
|
|
|
|
|
|
|
|
|
}).Cast<Episode>().FirstOrDefault();
|
|
|
|
|
};
|
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
|
|
|
|
}
|
|
|
|
|
|
2017-03-21 17:31:40 +00:00
|
|
|
|
private 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);
|
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|