| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Globalization; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Net.Http; |
| | 6 | | using System.Threading; |
| | 7 | | using System.Threading.Tasks; |
| | 8 | | using MediaBrowser.Common.Net; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Providers; |
| | 11 | | using MediaBrowser.Model.Entities; |
| | 12 | | using MediaBrowser.Model.Providers; |
| | 13 | |
|
| | 14 | | namespace MediaBrowser.Providers.Plugins.Tmdb.TV |
| | 15 | | { |
| | 16 | | /// <summary> |
| | 17 | | /// TV episode image provider powered by TheMovieDb. |
| | 18 | | /// </summary> |
| | 19 | | public class TmdbEpisodeImageProvider : IRemoteImageProvider, IHasOrder |
| | 20 | | { |
| | 21 | | private readonly IHttpClientFactory _httpClientFactory; |
| | 22 | | private readonly TmdbClientManager _tmdbClientManager; |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// Initializes a new instance of the <see cref="TmdbEpisodeImageProvider"/> class. |
| | 26 | | /// </summary> |
| | 27 | | /// <param name="httpClientFactory">The <see cref="IHttpClientFactory"/>.</param> |
| | 28 | | /// <param name="tmdbClientManager">The <see cref="TmdbClientManager"/>.</param> |
| | 29 | | public TmdbEpisodeImageProvider(IHttpClientFactory httpClientFactory, TmdbClientManager tmdbClientManager) |
| | 30 | | { |
| 21 | 31 | | _httpClientFactory = httpClientFactory; |
| 21 | 32 | | _tmdbClientManager = tmdbClientManager; |
| 21 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <inheritdoc /> |
| 0 | 36 | | public int Order => 1; |
| | 37 | |
|
| | 38 | | /// <inheritdoc /> |
| 0 | 39 | | public string Name => TmdbUtils.ProviderName; |
| | 40 | |
|
| | 41 | | /// <inheritdoc /> |
| | 42 | | public bool Supports(BaseItem item) |
| | 43 | | { |
| 53 | 44 | | return item is Controller.Entities.TV.Episode; |
| | 45 | | } |
| | 46 | |
|
| | 47 | | /// <inheritdoc /> |
| | 48 | | public IEnumerable<ImageType> GetSupportedImages(BaseItem item) |
| | 49 | | { |
| | 50 | | yield return ImageType.Primary; |
| | 51 | | } |
| | 52 | |
|
| | 53 | | /// <inheritdoc /> |
| | 54 | | public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken) |
| | 55 | | { |
| | 56 | | var episode = (Controller.Entities.TV.Episode)item; |
| | 57 | | var series = episode.Series; |
| | 58 | |
|
| | 59 | | var seriesTmdbId = Convert.ToInt32(series?.GetProviderId(MetadataProvider.Tmdb), CultureInfo.InvariantCultur |
| | 60 | |
|
| | 61 | | if (series is null || seriesTmdbId <= 0) |
| | 62 | | { |
| | 63 | | return Enumerable.Empty<RemoteImageInfo>(); |
| | 64 | | } |
| | 65 | |
|
| | 66 | | var seasonNumber = episode.ParentIndexNumber ?? 1; |
| | 67 | | var episodeNumber = episode.IndexNumber; |
| | 68 | |
|
| | 69 | | if (!episodeNumber.HasValue) |
| | 70 | | { |
| | 71 | | return Enumerable.Empty<RemoteImageInfo>(); |
| | 72 | | } |
| | 73 | |
|
| | 74 | | var language = item.GetPreferredMetadataLanguage(); |
| | 75 | |
|
| | 76 | | // TODO use image languages if All Languages isn't toggled, but there's currently no way to get that value i |
| | 77 | | var episodeResult = await _tmdbClientManager |
| | 78 | | .GetEpisodeAsync(seriesTmdbId, seasonNumber, episodeNumber.Value, series.DisplayOrder, null, null, cance |
| | 79 | | .ConfigureAwait(false); |
| | 80 | |
|
| | 81 | | var stills = episodeResult?.Images?.Stills; |
| | 82 | | if (stills is null) |
| | 83 | | { |
| | 84 | | return Enumerable.Empty<RemoteImageInfo>(); |
| | 85 | | } |
| | 86 | |
|
| | 87 | | return _tmdbClientManager.ConvertStillsToRemoteImageInfo(stills, language); |
| | 88 | | } |
| | 89 | |
|
| | 90 | | /// <inheritdoc /> |
| | 91 | | public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken) |
| | 92 | | { |
| 0 | 93 | | return _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationToken); |
| | 94 | | } |
| | 95 | | } |
| | 96 | | } |