mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-05 22:54:12 -04:00
60 lines
2.4 KiB
C#
60 lines
2.4 KiB
C#
using System;
|
|
using Kyoo.Models;
|
|
using System.Threading.Tasks;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Kyoo.Controllers
|
|
{
|
|
/// <summary>
|
|
/// Download images and retrieve the path of those images for a resource.
|
|
/// </summary>
|
|
public interface IThumbnailsManager
|
|
{
|
|
/// <summary>
|
|
/// Download images of a specified item.
|
|
/// If no images is available to download, do nothing and silently return.
|
|
/// </summary>
|
|
/// <param name="item">
|
|
/// The item to cache images.
|
|
/// </param>
|
|
/// <param name="alwaysDownload">
|
|
/// <c>true</c> if images should be downloaded even if they already exists locally, <c>false</c> otherwise.
|
|
/// </param>
|
|
/// <typeparam name="T">The type of the item</typeparam>
|
|
/// <returns><c>true</c> if an image has been downloaded, <c>false</c> otherwise.</returns>
|
|
Task<bool> DownloadImages<T>([NotNull] T item, bool alwaysDownload = false)
|
|
where T : IResource;
|
|
|
|
|
|
/// <summary>
|
|
/// Retrieve the local path of the poster of the given item.
|
|
/// </summary>
|
|
/// <param name="item">The item to retrieve the poster from.</param>
|
|
/// <typeparam name="T">The type of the item</typeparam>
|
|
/// <exception cref="NotSupportedException">If the type does not have a poster</exception>
|
|
/// <returns>The path of the poster for the given resource (it might or might not exists).</returns>
|
|
Task<string> GetPoster<T>([NotNull] T item)
|
|
where T : IResource;
|
|
|
|
/// <summary>
|
|
/// Retrieve the local path of the logo of the given item.
|
|
/// </summary>
|
|
/// <param name="item">The item to retrieve the logo from.</param>
|
|
/// <typeparam name="T">The type of the item</typeparam>
|
|
/// <exception cref="NotSupportedException">If the type does not have a logo</exception>
|
|
/// <returns>The path of the logo for the given resource (it might or might not exists).</returns>
|
|
Task<string> GetLogo<T>([NotNull] T item)
|
|
where T : IResource;
|
|
|
|
/// <summary>
|
|
/// Retrieve the local path of the thumbnail of the given item.
|
|
/// </summary>
|
|
/// <param name="item">The item to retrieve the thumbnail from.</param>
|
|
/// <typeparam name="T">The type of the item</typeparam>
|
|
/// <exception cref="NotSupportedException">If the type does not have a thumbnail</exception>
|
|
/// <returns>The path of the thumbnail for the given resource (it might or might not exists).</returns>
|
|
Task<string> GetThumbnail<T>([NotNull] T item)
|
|
where T : IResource;
|
|
}
|
|
}
|