2014-01-28 18:37:01 +00:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2014-01-29 16:16:24 +00:00
|
|
|
|
using System.Threading;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is just a marker interface
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ILocalImageProvider : IImageProvider
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface IImageFileProvider : ILocalImageProvider
|
|
|
|
|
{
|
|
|
|
|
List<LocalImageInfo> GetImages(IHasImages item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class LocalImageInfo
|
|
|
|
|
{
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
public ImageType Type { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-04 20:19:29 +00:00
|
|
|
|
public interface IDynamicImageProvider : IImageProvider
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2014-01-29 16:16:24 +00:00
|
|
|
|
/// Gets the supported images.
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2014-01-29 16:16:24 +00:00
|
|
|
|
/// <returns>IEnumerable{ImageType}.</returns>
|
|
|
|
|
IEnumerable<ImageType> GetSupportedImages(IHasImages item);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2014-01-29 16:16:24 +00:00
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <returns>Task{DynamicImageResponse}.</returns>
|
2014-01-29 16:16:24 +00:00
|
|
|
|
Task<DynamicImageResponse> GetImage(IHasImages item, ImageType type, CancellationToken cancellationToken);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DynamicImageInfo
|
|
|
|
|
{
|
|
|
|
|
public string ImageId { get; set; }
|
|
|
|
|
public ImageType Type { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DynamicImageResponse
|
|
|
|
|
{
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
public Stream Stream { get; set; }
|
|
|
|
|
public ImageFormat Format { get; set; }
|
2014-01-29 16:16:24 +00:00
|
|
|
|
public bool HasImage { get; set; }
|
|
|
|
|
|
|
|
|
|
public void SetFormatFromMimeType(string mimeType)
|
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
|
2014-01-29 16:16:24 +00:00
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|