2015-05-13 14:43:34 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-10-29 22:01:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-08-12 02:59:51 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2016-11-03 07:14:14 +00:00
|
|
|
|
using Emby.Server.Implementations.Images;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2015-10-28 16:42:04 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-08-12 02:59:51 +00:00
|
|
|
|
|
2016-11-03 07:14:14 +00:00
|
|
|
|
namespace Emby.Server.Implementations.Photos
|
2014-08-12 02:59:51 +00:00
|
|
|
|
{
|
2015-05-13 14:43:34 +00:00
|
|
|
|
public class PhotoAlbumImageProvider : BaseDynamicImageProvider<PhotoAlbum>
|
2015-05-10 21:56:13 +00:00
|
|
|
|
{
|
2015-05-13 14:43:34 +00:00
|
|
|
|
public PhotoAlbumImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor)
|
|
|
|
|
: base(fileSystem, providerManager, applicationPaths, imageProcessor)
|
2015-05-10 21:56:13 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2014-10-20 03:04:45 +00:00
|
|
|
|
|
2017-05-26 06:48:54 +00:00
|
|
|
|
protected override List<BaseItem> GetItemsWithImages(IHasImages item)
|
2015-05-10 21:56:13 +00:00
|
|
|
|
{
|
2015-05-13 14:43:34 +00:00
|
|
|
|
var photoAlbum = (PhotoAlbum)item;
|
2015-10-30 16:45:22 +00:00
|
|
|
|
var items = GetFinalItems(photoAlbum.Children.ToList());
|
2014-10-20 03:04:45 +00:00
|
|
|
|
|
2017-05-26 06:48:54 +00:00
|
|
|
|
return items;
|
2015-05-10 21:56:13 +00:00
|
|
|
|
}
|
2015-10-26 05:29:32 +00:00
|
|
|
|
|
2017-05-19 17:09:37 +00:00
|
|
|
|
protected string CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
|
2015-10-26 05:29:32 +00:00
|
|
|
|
{
|
2015-11-14 16:58:01 +00:00
|
|
|
|
return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
|
2015-10-26 05:29:32 +00:00
|
|
|
|
}
|
2015-05-10 21:56:13 +00:00
|
|
|
|
}
|
2014-08-12 02:59:51 +00:00
|
|
|
|
}
|