jellyfin/Emby.Server.Implementations/Library/UserViewManager.cs

369 lines
14 KiB
C#
Raw Normal View History

2015-01-24 20:03:55 +01:00
using MediaBrowser.Controller.Channels;
using MediaBrowser.Controller.Configuration;
2014-06-07 21:46:24 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.Channels;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Library;
2014-07-13 23:03:57 +02:00
using MediaBrowser.Model.Querying;
2014-06-07 21:46:24 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2017-05-21 09:25:49 +02:00
using MediaBrowser.Controller.Dto;
2015-11-02 18:25:01 +01:00
using MediaBrowser.Controller.Entities.Audio;
2016-10-24 04:45:23 +02:00
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.Extensions;
2014-06-07 21:46:24 +02:00
namespace Emby.Server.Implementations.Library
2014-06-07 21:46:24 +02:00
{
public class UserViewManager : IUserViewManager
{
private readonly ILibraryManager _libraryManager;
private readonly ILocalizationManager _localizationManager;
private readonly IUserManager _userManager;
private readonly IChannelManager _channelManager;
private readonly ILiveTvManager _liveTvManager;
2015-01-24 20:03:55 +01:00
private readonly IServerConfigurationManager _config;
2014-06-07 21:46:24 +02:00
2015-10-04 21:09:13 +02:00
public UserViewManager(ILibraryManager libraryManager, ILocalizationManager localizationManager, IUserManager userManager, IChannelManager channelManager, ILiveTvManager liveTvManager, IServerConfigurationManager config)
2014-06-07 21:46:24 +02:00
{
_libraryManager = libraryManager;
_localizationManager = localizationManager;
_userManager = userManager;
_channelManager = channelManager;
_liveTvManager = liveTvManager;
2015-01-24 20:03:55 +01:00
_config = config;
2014-06-07 21:46:24 +02:00
}
2018-09-12 19:26:21 +02:00
public Folder[] GetUserViews(UserViewQuery query)
2014-06-07 21:46:24 +02:00
{
2014-09-14 17:10:51 +02:00
var user = _userManager.GetUserById(query.UserId);
2014-06-07 21:46:24 +02:00
2018-09-12 19:26:21 +02:00
var folders = _libraryManager.GetUserRootFolder()
2014-06-07 21:46:24 +02:00
.GetChildren(user, true)
.OfType<Folder>()
.ToList();
2015-11-18 06:49:20 +01:00
var groupedFolders = new List<ICollectionFolder>();
2014-06-07 21:46:24 +02:00
2015-03-15 20:22:04 +01:00
var list = new List<Folder>();
2015-11-18 06:49:20 +01:00
foreach (var folder in folders)
2015-03-15 20:22:04 +01:00
{
2015-11-14 17:58:01 +01:00
var collectionFolder = folder as ICollectionFolder;
var folderViewType = collectionFolder == null ? null : collectionFolder.CollectionType;
2015-09-15 20:09:44 +02:00
2015-11-14 17:58:01 +01:00
if (UserView.IsUserSpecific(folder))
{
2018-09-12 19:26:21 +02:00
list.Add(_libraryManager.GetNamedView(user, folder.Name, folder.Id, folderViewType, null));
2015-11-14 17:58:01 +01:00
continue;
2015-11-17 19:17:52 +01:00
}
2015-11-18 06:49:20 +01:00
if (collectionFolder != null && UserView.IsEligibleForGrouping(folder) && user.IsFolderGrouped(folder.Id))
{
groupedFolders.Add(collectionFolder);
continue;
}
if (query.PresetViews.Contains(folderViewType ?? string.Empty, StringComparer.OrdinalIgnoreCase))
{
2018-09-12 19:26:21 +02:00
list.Add(GetUserView(folder, folderViewType, string.Empty));
2015-09-14 19:28:42 +02:00
}
2015-11-14 17:58:01 +01:00
else
2015-09-14 19:28:42 +02:00
{
2015-11-18 06:49:20 +01:00
list.Add(folder);
2015-03-15 20:22:04 +01:00
}
}
2014-10-11 22:38:13 +02:00
2015-11-18 06:49:20 +01:00
foreach (var viewType in new[] { CollectionType.Movies, CollectionType.TvShows })
2014-06-07 21:46:24 +02:00
{
2018-09-12 19:26:21 +02:00
var parents = groupedFolders.Where(i => string.Equals(i.CollectionType, viewType, StringComparison.OrdinalIgnoreCase) || string.IsNullOrEmpty(i.CollectionType))
2015-11-18 06:49:20 +01:00
.ToList();
2015-04-15 23:59:20 +02:00
2015-11-18 06:49:20 +01:00
if (parents.Count > 0)
{
2017-10-16 08:10:55 +02:00
var localizationKey = string.Equals(viewType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase) ?
2017-10-17 21:49:39 +02:00
"TvShows" :
2017-10-16 08:10:55 +02:00
"Movies";
2017-10-13 07:43:11 +02:00
2018-09-12 19:26:21 +02:00
list.Add(GetUserView(parents, viewType, localizationKey, string.Empty, user, query.PresetViews));
2015-11-18 06:49:20 +01:00
}
2014-06-07 21:46:24 +02:00
}
2016-06-04 07:51:33 +02:00
if (_config.Configuration.EnableFolderView)
{
2017-10-13 07:43:11 +02:00
var name = _localizationManager.GetLocalizedString("Folders");
2018-09-12 19:26:21 +02:00
list.Add(_libraryManager.GetNamedView(name, CollectionType.Folders, string.Empty));
2016-06-04 07:51:33 +02:00
}
2014-06-07 21:46:24 +02:00
if (query.IncludeExternalContent)
{
2018-09-12 19:26:21 +02:00
var channelResult = _channelManager.GetChannelsInternal(new ChannelQuery
2014-06-07 21:46:24 +02:00
{
UserId = query.UserId
2018-09-12 19:26:21 +02:00
});
2014-06-07 21:46:24 +02:00
var channels = channelResult.Items;
2018-09-12 19:26:21 +02:00
list.AddRange(channels);
2014-06-07 21:46:24 +02:00
2018-09-12 19:26:21 +02:00
if (_liveTvManager.GetEnabledUsers().Select(i => i.Id).Contains(query.UserId))
2014-06-07 21:46:24 +02:00
{
2017-10-03 20:39:37 +02:00
list.Add(_liveTvManager.GetInternalLiveTvFolder(CancellationToken.None));
2014-06-07 21:46:24 +02:00
}
}
2018-09-12 19:26:21 +02:00
if (!query.IncludeHidden)
{
list = list.Where(i => !user.Configuration.MyMediaExcludes.Contains(i.Id.ToString("N"))).ToList();
}
2014-08-19 03:42:53 +02:00
var sorted = _libraryManager.Sort(list, user, new[] { ItemSortBy.SortName }, SortOrder.Ascending).ToList();
var orders = user.Configuration.OrderedViews.ToList();
return list
.OrderBy(i =>
{
var index = orders.IndexOf(i.Id.ToString("N"));
2015-11-17 19:17:52 +01:00
if (index == -1)
{
var view = i as UserView;
if (view != null)
{
2018-09-12 19:26:21 +02:00
if (!view.DisplayParentId.Equals(Guid.Empty))
2015-11-17 19:17:52 +01:00
{
index = orders.IndexOf(view.DisplayParentId.ToString("N"));
}
}
}
2014-08-19 03:42:53 +02:00
return index == -1 ? int.MaxValue : index;
})
.ThenBy(sorted.IndexOf)
2017-08-19 21:43:35 +02:00
.ThenBy(i => i.SortName)
.ToArray();
2014-06-07 21:46:24 +02:00
}
2018-09-12 19:26:21 +02:00
public UserView GetUserSubViewWithName(string name, Guid parentId, string type, string sortName)
2014-11-11 04:41:55 +01:00
{
2015-04-20 20:04:02 +02:00
var uniqueId = parentId + "subview" + type;
2018-09-12 19:26:21 +02:00
return _libraryManager.GetNamedView(name, parentId, type, sortName, uniqueId);
2014-11-11 04:41:55 +01:00
}
2018-09-12 19:26:21 +02:00
public UserView GetUserSubView(Guid parentId, string type, string localizationKey, string sortName)
2014-06-07 21:46:24 +02:00
{
2017-10-13 07:43:11 +02:00
var name = _localizationManager.GetLocalizedString(localizationKey);
2014-06-07 21:46:24 +02:00
2018-09-12 19:26:21 +02:00
return GetUserSubViewWithName(name, parentId, type, sortName);
2014-06-07 21:46:24 +02:00
}
2014-07-30 05:31:35 +02:00
2018-09-12 19:26:21 +02:00
private Folder GetUserView(List<ICollectionFolder> parents, string viewType, string localizationKey, string sortName, User user, string[] presetViews)
2014-07-30 05:31:35 +02:00
{
2015-11-18 06:49:20 +01:00
if (parents.Count == 1 && parents.All(i => string.Equals(i.CollectionType, viewType, StringComparison.OrdinalIgnoreCase)))
2015-04-15 23:59:20 +02:00
{
2015-11-17 19:17:52 +01:00
if (!presetViews.Contains(viewType, StringComparer.OrdinalIgnoreCase))
2015-11-14 17:58:01 +01:00
{
return (Folder)parents[0];
}
2018-09-12 19:26:21 +02:00
return GetUserView((Folder)parents[0], viewType, string.Empty);
2015-04-15 23:59:20 +02:00
}
2015-04-20 20:04:02 +02:00
2017-10-13 07:43:11 +02:00
var name = _localizationManager.GetLocalizedString(localizationKey);
2018-09-12 19:26:21 +02:00
return _libraryManager.GetNamedView(user, name, viewType, sortName);
2014-07-30 05:31:35 +02:00
}
2018-09-12 19:26:21 +02:00
public UserView GetUserView(Folder parent, string viewType, string sortName)
2015-03-15 20:22:04 +01:00
{
2018-09-12 19:26:21 +02:00
return _libraryManager.GetShadowView(parent, viewType, sortName);
2015-09-15 20:09:44 +02:00
}
2017-05-21 09:25:49 +02:00
public List<Tuple<BaseItem, List<BaseItem>>> GetLatestItems(LatestItemsQuery request, DtoOptions options)
{
var user = _userManager.GetUserById(request.UserId);
2017-05-21 09:25:49 +02:00
var libraryItems = GetItemsForLatestItems(user, request, options);
var list = new List<Tuple<BaseItem, List<BaseItem>>>();
2015-10-29 20:01:04 +01:00
foreach (var item in libraryItems)
{
// Only grab the index container for media
var container = item.IsFolder || !request.GroupItems ? null : item.LatestItemsIndexContainer;
if (container == null)
{
list.Add(new Tuple<BaseItem, List<BaseItem>>(null, new List<BaseItem> { item }));
}
else
{
var current = list.FirstOrDefault(i => i.Item1 != null && i.Item1.Id == container.Id);
if (current != null)
{
current.Item2.Add(item);
}
else
{
list.Add(new Tuple<BaseItem, List<BaseItem>>(container, new List<BaseItem> { item }));
}
}
if (list.Count >= request.Limit)
{
break;
}
}
return list;
}
private List<BaseItem> GetItemsForLatestItems(User user, LatestItemsQuery request, DtoOptions options)
{
2016-06-12 07:03:52 +02:00
var parentId = request.ParentId;
var includeItemTypes = request.IncludeItemTypes;
var limit = request.Limit ?? 10;
2016-11-21 09:54:53 +01:00
var parents = new List<BaseItem>();
2018-09-12 19:26:21 +02:00
if (!parentId.Equals(Guid.Empty))
2015-11-02 18:25:01 +01:00
{
2018-09-12 19:26:21 +02:00
var parentItem = _libraryManager.GetItemById(parentId);
var parentItemChannel = parentItem as Channel;
if (parentItemChannel != null)
{
return _channelManager.GetLatestChannelItemsInternal(new InternalItemsQuery(user)
{
ChannelIds = new [] { parentId },
IsPlayed = request.IsPlayed,
StartIndex = request.StartIndex,
Limit = request.Limit,
IncludeItemTypes = request.IncludeItemTypes,
EnableTotalRecordCount = false
}, CancellationToken.None).Result.Items.ToList();
}
var parent = parentItem as Folder;
2016-11-21 09:54:53 +01:00
if (parent != null)
{
parents.Add(parent);
}
}
2017-02-17 22:11:13 +01:00
var isPlayed = request.IsPlayed;
if (parents.OfType<ICollectionFolder>().Any(i => string.Equals(i.CollectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase)))
{
isPlayed = null;
}
2016-11-21 09:54:53 +01:00
if (parents.Count == 0)
{
2018-09-12 19:26:21 +02:00
parents = _libraryManager.GetUserRootFolder().GetChildren(user, true)
2016-11-21 09:54:53 +01:00
.Where(i => i is Folder)
.Where(i => !user.Configuration.LatestItemsExcludes.Contains(i.Id.ToString("N")))
.ToList();
2015-11-02 18:25:01 +01:00
}
2016-11-21 09:54:53 +01:00
if (parents.Count == 0)
2016-03-26 17:58:03 +01:00
{
return new List<BaseItem>();
}
2018-09-12 19:26:21 +02:00
if (includeItemTypes.Length == 0)
{
// Handle situations with the grouping setting, e.g. movies showing up in tv, etc.
// Thanks to mixed content libraries included in the UserView
var hasCollectionType = parents.OfType<UserView>().ToArray();
if (hasCollectionType.Length > 0)
{
if (hasCollectionType.All(i => string.Equals(i.CollectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase)))
{
includeItemTypes = new string[] { "Movie" };
}
else if (hasCollectionType.All(i => string.Equals(i.CollectionType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase)))
{
includeItemTypes = new string[] { "Episode" };
}
}
}
2017-08-01 18:45:57 +02:00
var mediaTypes = new List<string>();
if (includeItemTypes.Length == 0)
{
foreach (var parent in parents.OfType<ICollectionFolder>())
{
switch (parent.CollectionType)
{
case CollectionType.Books:
mediaTypes.Add(MediaType.Book);
2018-09-12 19:26:21 +02:00
mediaTypes.Add(MediaType.Audio);
2017-08-01 18:45:57 +02:00
break;
case CollectionType.Games:
mediaTypes.Add(MediaType.Game);
break;
case CollectionType.Music:
mediaTypes.Add(MediaType.Audio);
break;
case CollectionType.Photos:
mediaTypes.Add(MediaType.Photo);
mediaTypes.Add(MediaType.Video);
break;
case CollectionType.HomeVideos:
mediaTypes.Add(MediaType.Photo);
mediaTypes.Add(MediaType.Video);
break;
default:
mediaTypes.Add(MediaType.Video);
break;
}
}
mediaTypes = mediaTypes.Distinct().ToList();
}
var excludeItemTypes = includeItemTypes.Length == 0 && mediaTypes.Count == 0 ? new[]
2016-03-19 06:04:38 +01:00
{
2016-06-12 07:03:52 +02:00
typeof(Person).Name,
typeof(Studio).Name,
typeof(Year).Name,
typeof(GameGenre).Name,
typeof(MusicGenre).Name,
typeof(Genre).Name
2016-03-19 06:04:38 +01:00
2018-09-12 19:26:21 +02:00
} : Array.Empty<string>();
2015-11-02 18:25:01 +01:00
2017-06-03 09:36:32 +02:00
var query = new InternalItemsQuery(user)
{
2015-10-29 20:01:04 +01:00
IncludeItemTypes = includeItemTypes,
2018-09-12 19:26:21 +02:00
OrderBy = new[] { new ValueTuple<string, SortOrder>(ItemSortBy.DateCreated, SortOrder.Descending) },
2015-11-02 18:25:01 +01:00
IsFolder = includeItemTypes.Length == 0 ? false : (bool?)null,
ExcludeItemTypes = excludeItemTypes,
2017-01-09 18:05:34 +01:00
IsVirtualItem = false,
2016-06-12 07:03:52 +02:00
Limit = limit * 5,
2017-05-21 09:25:49 +02:00
IsPlayed = isPlayed,
2017-08-01 18:45:57 +02:00
DtoOptions = options,
MediaTypes = mediaTypes.ToArray(mediaTypes.Count)
2017-06-03 09:36:32 +02:00
};
2017-06-03 09:36:32 +02:00
if (parents.Count == 0)
{
return _libraryManager.GetItemList(query, false);
}
return _libraryManager.GetItemList(query, parents);
}
2014-06-07 21:46:24 +02:00
}
}