2015-02-20 02:12:33 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2015-04-08 14:38:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
2014-08-12 02:59:51 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Playlists;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-10-29 22:01:02 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Photos;
|
2014-08-12 02:59:51 +00:00
|
|
|
|
using MoreLinq;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2016-07-23 05:44:46 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Model.Querying;
|
2014-08-12 02:59:51 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Playlists
|
|
|
|
|
{
|
2015-03-13 19:16:34 +00:00
|
|
|
|
public class PlaylistImageProvider : BaseDynamicImageProvider<Playlist>
|
2014-08-12 02:59:51 +00:00
|
|
|
|
{
|
2015-04-08 14:38:02 +00:00
|
|
|
|
public PlaylistImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor) : base(fileSystem, providerManager, applicationPaths, imageProcessor)
|
2014-10-20 03:04:45 +00:00
|
|
|
|
{
|
2014-08-12 02:59:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-29 22:01:02 +00:00
|
|
|
|
protected override Task<List<BaseItem>> GetItemsWithImages(IHasImages item)
|
2014-08-12 02:59:51 +00:00
|
|
|
|
{
|
|
|
|
|
var playlist = (Playlist)item;
|
|
|
|
|
|
|
|
|
|
var items = playlist.GetManageableItems()
|
|
|
|
|
.Select(i =>
|
|
|
|
|
{
|
|
|
|
|
var subItem = i.Item2;
|
|
|
|
|
|
|
|
|
|
var episode = subItem as Episode;
|
|
|
|
|
|
|
|
|
|
if (episode != null)
|
|
|
|
|
{
|
|
|
|
|
var series = episode.Series;
|
|
|
|
|
if (series != null && series.HasImage(ImageType.Primary))
|
|
|
|
|
{
|
|
|
|
|
return series;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (subItem.HasImage(ImageType.Primary))
|
|
|
|
|
{
|
|
|
|
|
return subItem;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-11 14:56:31 +00:00
|
|
|
|
var parent = subItem.GetParent();
|
2014-08-12 02:59:51 +00:00
|
|
|
|
|
|
|
|
|
if (parent != null && parent.HasImage(ImageType.Primary))
|
|
|
|
|
{
|
|
|
|
|
if (parent is MusicAlbum)
|
|
|
|
|
{
|
|
|
|
|
return parent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
})
|
|
|
|
|
.Where(i => i != null)
|
|
|
|
|
.DistinctBy(i => i.Id)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
2014-10-29 22:01:02 +00:00
|
|
|
|
return Task.FromResult(GetFinalItems(items));
|
2014-10-20 03:04:45 +00:00
|
|
|
|
}
|
2014-08-12 02:59:51 +00:00
|
|
|
|
}
|
2016-07-23 05:44:46 +00:00
|
|
|
|
|
|
|
|
|
public class MusicGenreImageProvider : BaseDynamicImageProvider<MusicGenre>
|
|
|
|
|
{
|
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
|
|
|
|
|
|
|
|
|
public MusicGenreImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor, ILibraryManager libraryManager) : base(fileSystem, providerManager, applicationPaths, imageProcessor)
|
|
|
|
|
{
|
|
|
|
|
_libraryManager = libraryManager;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override Task<List<BaseItem>> GetItemsWithImages(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
var items = _libraryManager.GetItemList(new InternalItemsQuery
|
|
|
|
|
{
|
|
|
|
|
Genres = new[] { item.Name },
|
|
|
|
|
IncludeItemTypes = new[] { typeof(MusicAlbum).Name, typeof(MusicVideo).Name, typeof(Audio).Name },
|
|
|
|
|
SortBy = new[] { ItemSortBy.Random },
|
|
|
|
|
Limit = 4,
|
|
|
|
|
Recursive = true,
|
|
|
|
|
ImageTypes = new[] { ImageType.Primary }
|
|
|
|
|
|
|
|
|
|
}).ToList();
|
|
|
|
|
|
|
|
|
|
return Task.FromResult(GetFinalItems(items));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//protected override Task<string> CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
|
|
|
|
|
//{
|
|
|
|
|
// return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-12 02:59:51 +00:00
|
|
|
|
}
|