jellyfin/MediaBrowser.Server.Implementations/Photos/PhotoAlbumImageProvider.cs

46 lines
1.6 KiB
C#
Raw Normal View History

2015-05-13 16:43:34 +02:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Entities;
2014-10-29 23:01:02 +01:00
using MediaBrowser.Controller.Providers;
2014-08-12 04:59:51 +02:00
using System.Collections.Generic;
2015-10-26 06:29:32 +01:00
using System.IO;
2014-08-12 04:59:51 +02:00
using System.Linq;
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2014-08-12 04:59:51 +02:00
2014-10-20 05:04:45 +02:00
namespace MediaBrowser.Server.Implementations.Photos
2014-08-12 04:59:51 +02:00
{
2015-05-13 16:43:34 +02:00
public class PhotoAlbumImageProvider : BaseDynamicImageProvider<PhotoAlbum>
2015-05-10 23:56:13 +02:00
{
2015-05-13 16:43:34 +02:00
public PhotoAlbumImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor)
: base(fileSystem, providerManager, applicationPaths, imageProcessor)
2015-05-10 23:56:13 +02:00
{
}
2014-10-20 05:04:45 +02:00
2015-05-13 16:43:34 +02:00
protected override Task<List<BaseItem>> GetItemsWithImages(IHasImages item)
2015-05-10 23:56:13 +02:00
{
2015-05-13 16:43:34 +02:00
var photoAlbum = (PhotoAlbum)item;
2015-10-26 06:29:32 +01:00
var items = GetFinalItems(photoAlbum.Children.ToList(), 1);
2014-10-20 05:04:45 +02:00
2015-05-13 16:43:34 +02:00
return Task.FromResult(items);
2015-05-10 23:56:13 +02:00
}
2015-10-26 06:29:32 +01:00
protected override async Task<string> CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, Model.Entities.ImageType imageType, int imageIndex)
{
var photoFile = itemsWithImages.Where(i => Path.HasExtension(i.Path)).Select(i => i.Path).FirstOrDefault();
if (string.IsNullOrWhiteSpace(photoFile))
{
return null;
}
var ext = Path.GetExtension(photoFile);
var outputPath = Path.ChangeExtension(outputPathWithoutExtension, ext);
File.Copy(photoFile, outputPath);
return outputPath;
}
2015-05-10 23:56:13 +02:00
}
2014-08-12 04:59:51 +02:00
}