2015-03-14 10:02:51 -07:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2015-04-08 07:38:02 -07:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
2014-10-29 15:01:02 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2015-03-13 12:52:49 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2014-11-10 20:41:55 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2014-10-29 15:01:02 -07:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2015-10-25 22:29:32 -07:00
|
|
|
|
using System.IO;
|
2014-10-29 15:01:02 -07:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2016-11-03 00:14:14 -07:00
|
|
|
|
using Emby.Server.Implementations.Images;
|
2016-10-25 12:02:04 -07:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-09-04 08:01:31 -07:00
|
|
|
|
using MediaBrowser.Controller.LiveTv;
|
2016-10-21 19:08:34 -07:00
|
|
|
|
using MediaBrowser.Model.Extensions;
|
2014-10-29 15:01:02 -07:00
|
|
|
|
|
2016-11-03 00:14:14 -07:00
|
|
|
|
namespace Emby.Server.Implementations.UserViews
|
2014-10-29 15:01:02 -07:00
|
|
|
|
{
|
2015-04-25 21:39:40 -07:00
|
|
|
|
public class DynamicImageProvider : BaseDynamicImageProvider<UserView>
|
2014-10-29 15:01:02 -07:00
|
|
|
|
{
|
|
|
|
|
private readonly IUserManager _userManager;
|
2016-09-04 08:01:31 -07:00
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2014-10-29 15:01:02 -07:00
|
|
|
|
|
2016-09-04 08:01:31 -07:00
|
|
|
|
public DynamicImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor, IUserManager userManager, ILibraryManager libraryManager)
|
2015-04-08 08:45:30 -07:00
|
|
|
|
: base(fileSystem, providerManager, applicationPaths, imageProcessor)
|
2014-10-29 15:01:02 -07:00
|
|
|
|
{
|
2015-03-06 20:53:31 -07:00
|
|
|
|
_userManager = userManager;
|
2016-09-04 08:01:31 -07:00
|
|
|
|
_libraryManager = libraryManager;
|
2015-03-13 21:50:23 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override IEnumerable<ImageType> GetSupportedImages(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
var view = (UserView)item;
|
|
|
|
|
if (IsUsingCollectionStrip(view))
|
|
|
|
|
{
|
|
|
|
|
return new List<ImageType>
|
|
|
|
|
{
|
|
|
|
|
ImageType.Primary
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new List<ImageType>
|
|
|
|
|
{
|
2015-06-27 20:29:50 -07:00
|
|
|
|
ImageType.Primary
|
2015-03-13 21:50:23 -07:00
|
|
|
|
};
|
2014-10-29 15:01:02 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task<List<BaseItem>> GetItemsWithImages(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
var view = (UserView)item;
|
|
|
|
|
|
2015-03-14 08:38:16 -07:00
|
|
|
|
if (string.Equals(view.ViewType, CollectionType.LiveTv, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
2016-09-04 08:01:31 -07:00
|
|
|
|
var programs = _libraryManager.GetItemList(new InternalItemsQuery
|
|
|
|
|
{
|
|
|
|
|
IncludeItemTypes = new[] { typeof(LiveTvProgram).Name },
|
|
|
|
|
ImageTypes = new[] { ImageType.Primary },
|
|
|
|
|
Limit = 30,
|
|
|
|
|
IsMovie = true
|
|
|
|
|
}).ToList();
|
|
|
|
|
|
|
|
|
|
return GetFinalItems(programs).ToList();
|
2015-03-14 08:38:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-09 11:18:37 -07:00
|
|
|
|
if (string.Equals(view.ViewType, SpecialFolder.MovieGenre, StringComparison.OrdinalIgnoreCase) ||
|
2014-11-10 21:26:53 -07:00
|
|
|
|
string.Equals(view.ViewType, SpecialFolder.TvGenre, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
2015-04-16 21:53:47 -07:00
|
|
|
|
var userItemsResult = await view.GetItems(new InternalItemsQuery
|
2014-11-10 21:26:53 -07:00
|
|
|
|
{
|
2015-04-16 21:53:47 -07:00
|
|
|
|
CollapseBoxSetItems = false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return userItemsResult.Items.ToList();
|
2014-11-10 21:26:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-13 21:50:23 -07:00
|
|
|
|
var isUsingCollectionStrip = IsUsingCollectionStrip(view);
|
2015-09-15 11:09:44 -07:00
|
|
|
|
var recursive = isUsingCollectionStrip && !new[] { CollectionType.Channels, CollectionType.BoxSets, CollectionType.Playlists }.Contains(view.ViewType ?? string.Empty, StringComparer.OrdinalIgnoreCase);
|
2015-03-13 21:50:23 -07:00
|
|
|
|
|
2014-10-29 15:01:02 -07:00
|
|
|
|
var result = await view.GetItems(new InternalItemsQuery
|
|
|
|
|
{
|
2016-03-27 14:11:27 -07:00
|
|
|
|
User = view.UserId.HasValue ? _userManager.GetUserById(view.UserId.Value) : null,
|
2015-03-13 21:50:23 -07:00
|
|
|
|
CollapseBoxSetItems = false,
|
|
|
|
|
Recursive = recursive,
|
2016-08-08 22:08:21 -07:00
|
|
|
|
ExcludeItemTypes = new[] { "UserView", "CollectionFolder", "Person" },
|
2014-10-29 15:01:02 -07:00
|
|
|
|
|
|
|
|
|
}).ConfigureAwait(false);
|
|
|
|
|
|
2014-11-10 20:41:55 -07:00
|
|
|
|
var items = result.Items.Select(i =>
|
|
|
|
|
{
|
|
|
|
|
var episode = i as Episode;
|
|
|
|
|
if (episode != null)
|
|
|
|
|
{
|
|
|
|
|
var series = episode.Series;
|
|
|
|
|
if (series != null)
|
|
|
|
|
{
|
|
|
|
|
return series;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return episode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var season = i as Season;
|
|
|
|
|
if (season != null)
|
|
|
|
|
{
|
|
|
|
|
var series = season.Series;
|
|
|
|
|
if (series != null)
|
|
|
|
|
{
|
|
|
|
|
return series;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return season;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-13 12:52:49 -07:00
|
|
|
|
var audio = i as Audio;
|
|
|
|
|
if (audio != null)
|
|
|
|
|
{
|
2015-05-04 07:35:38 -07:00
|
|
|
|
var album = audio.AlbumEntity;
|
2015-03-13 21:50:23 -07:00
|
|
|
|
if (album != null && album.HasImage(ImageType.Primary))
|
2015-03-13 12:52:49 -07:00
|
|
|
|
{
|
2015-03-13 21:50:23 -07:00
|
|
|
|
return album;
|
2015-03-13 12:52:49 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-10 20:41:55 -07:00
|
|
|
|
return i;
|
|
|
|
|
|
|
|
|
|
}).DistinctBy(i => i.Id);
|
|
|
|
|
|
2015-03-13 21:50:23 -07:00
|
|
|
|
if (isUsingCollectionStrip)
|
2015-03-13 12:52:49 -07:00
|
|
|
|
{
|
|
|
|
|
return GetFinalItems(items.Where(i => i.HasImage(ImageType.Primary) || i.HasImage(ImageType.Thumb)).ToList(), 8);
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-10 20:41:55 -07:00
|
|
|
|
return GetFinalItems(items.Where(i => i.HasImage(ImageType.Primary)).ToList());
|
2014-10-29 15:01:02 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-13 22:02:30 -07:00
|
|
|
|
protected override bool Supports(IHasImages item)
|
2014-10-29 15:01:02 -07:00
|
|
|
|
{
|
|
|
|
|
var view = item as UserView;
|
2015-07-26 22:03:34 -07:00
|
|
|
|
if (view != null)
|
2014-10-29 15:01:02 -07:00
|
|
|
|
{
|
2016-03-27 14:11:27 -07:00
|
|
|
|
return IsUsingCollectionStrip(view);
|
2014-10-29 15:01:02 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-03-13 12:52:49 -07:00
|
|
|
|
|
|
|
|
|
private bool IsUsingCollectionStrip(UserView view)
|
|
|
|
|
{
|
2015-03-13 21:50:23 -07:00
|
|
|
|
string[] collectionStripViewTypes =
|
|
|
|
|
{
|
|
|
|
|
CollectionType.Movies,
|
2017-01-11 10:56:26 -07:00
|
|
|
|
CollectionType.TvShows,
|
|
|
|
|
CollectionType.Playlists,
|
|
|
|
|
CollectionType.Photos
|
2015-03-13 21:50:23 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return collectionStripViewTypes.Contains(view.ViewType ?? string.Empty);
|
2015-03-13 12:52:49 -07:00
|
|
|
|
}
|
2015-03-13 13:09:07 -07:00
|
|
|
|
|
2015-10-25 22:29:32 -07:00
|
|
|
|
protected override async Task<string> CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
|
2015-03-13 13:09:07 -07:00
|
|
|
|
{
|
2016-12-02 13:45:11 -07:00
|
|
|
|
if (itemsWithImages.Count == 0)
|
2015-03-13 13:09:07 -07:00
|
|
|
|
{
|
2016-12-02 13:45:11 -07:00
|
|
|
|
return null;
|
2015-03-13 13:09:07 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-02 13:45:11 -07:00
|
|
|
|
var outputPath = Path.ChangeExtension(outputPathWithoutExtension, ".png");
|
|
|
|
|
|
|
|
|
|
return await CreateThumbCollage(item, itemsWithImages, outputPath, 960, 540).ConfigureAwait(false);
|
2015-03-13 13:09:07 -07:00
|
|
|
|
}
|
2014-10-29 15:01:02 -07:00
|
|
|
|
}
|
|
|
|
|
}
|