2015-05-10 13:06:12 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-10-29 22:01:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2015-05-10 13:06:12 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-08-12 02:59:51 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2015-05-10 13:06:12 +00:00
|
|
|
|
using System.Threading;
|
2014-08-12 02:59:51 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2014-10-20 03:04:45 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.Photos
|
2014-08-12 02:59:51 +00:00
|
|
|
|
{
|
2015-05-10 21:56:13 +00:00
|
|
|
|
public class PhotoAlbumImageProvider : IDynamicImageProvider
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<ImageType> GetSupportedImages(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
return new List<ImageType> { ImageType.Primary };
|
|
|
|
|
}
|
2014-10-20 03:04:45 +00:00
|
|
|
|
|
2015-05-10 21:56:13 +00:00
|
|
|
|
public Task<DynamicImageResponse> GetImage(IHasImages item, ImageType type, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var album = (PhotoAlbum)item;
|
2014-10-20 03:04:45 +00:00
|
|
|
|
|
2015-05-10 21:56:13 +00:00
|
|
|
|
var image = album.Children
|
|
|
|
|
.OfType<Photo>()
|
|
|
|
|
.Select(i => i.GetImagePath(type))
|
|
|
|
|
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
|
2015-05-10 13:06:12 +00:00
|
|
|
|
|
2015-05-10 21:56:13 +00:00
|
|
|
|
return Task.FromResult(new DynamicImageResponse
|
|
|
|
|
{
|
|
|
|
|
Path = image,
|
|
|
|
|
HasImage = !string.IsNullOrEmpty(image)
|
|
|
|
|
});
|
|
|
|
|
}
|
2015-05-10 13:06:12 +00:00
|
|
|
|
|
2015-05-10 21:56:13 +00:00
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Image Extractor"; }
|
|
|
|
|
}
|
2015-05-10 13:06:12 +00:00
|
|
|
|
|
2015-05-10 21:56:13 +00:00
|
|
|
|
public bool Supports(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
return item is PhotoAlbum;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-08-12 02:59:51 +00:00
|
|
|
|
}
|