2021-10-26 06:49:01 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2020-06-19 11:24:13 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:03:10 -07:00
|
|
|
using System;
|
2019-01-13 12:26:31 -07:00
|
|
|
using System.Collections.Generic;
|
2020-09-24 10:49:35 -07:00
|
|
|
using System.Globalization;
|
2019-01-13 12:26:31 -07:00
|
|
|
using System.Linq;
|
2020-08-17 12:10:02 -07:00
|
|
|
using System.Net.Http;
|
2019-01-13 12:26:31 -07:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2020-08-31 10:05:21 -07:00
|
|
|
using MediaBrowser.Common.Net;
|
2014-01-30 14:47:13 -07:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
|
2020-05-30 23:23:09 -07:00
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.BoxSets
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
2019-08-18 04:20:52 -07:00
|
|
|
public class TmdbBoxSetImageProvider : IRemoteImageProvider, IHasOrder
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
2020-08-17 12:10:02 -07:00
|
|
|
private readonly IHttpClientFactory _httpClientFactory;
|
2020-09-24 10:49:35 -07:00
|
|
|
private readonly TmdbClientManager _tmdbClientManager;
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2020-09-24 10:49:35 -07:00
|
|
|
public TmdbBoxSetImageProvider(IHttpClientFactory httpClientFactory, TmdbClientManager tmdbClientManager)
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
2020-08-17 12:10:02 -07:00
|
|
|
_httpClientFactory = httpClientFactory;
|
2020-09-24 10:49:35 -07:00
|
|
|
_tmdbClientManager = tmdbClientManager;
|
2014-01-30 14:47:13 -07:00
|
|
|
}
|
|
|
|
|
2020-09-24 10:49:35 -07:00
|
|
|
public string Name => TmdbUtils.ProviderName;
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2020-09-24 10:49:35 -07:00
|
|
|
public int Order => 0;
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public bool Supports(BaseItem item)
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
|
|
|
return item is BoxSet;
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
|
|
|
return new List<ImageType>
|
|
|
|
{
|
2019-01-07 16:27:46 -07:00
|
|
|
ImageType.Primary,
|
2014-01-30 14:47:13 -07:00
|
|
|
ImageType.Backdrop
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken)
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
2020-09-24 10:49:35 -07:00
|
|
|
var tmdbId = Convert.ToInt32(item.GetProviderId(MetadataProvider.Tmdb), CultureInfo.InvariantCulture);
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2020-09-24 10:49:35 -07:00
|
|
|
if (tmdbId <= 0)
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
2020-09-24 10:49:35 -07:00
|
|
|
return Enumerable.Empty<RemoteImageInfo>();
|
|
|
|
}
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2020-09-24 10:49:35 -07:00
|
|
|
var language = item.GetPreferredMetadataLanguage();
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2021-03-05 00:18:04 -07:00
|
|
|
// TODO use image languages if All Languages isn't toggled, but there's currently no way to get that value in here
|
|
|
|
var collection = await _tmdbClientManager.GetCollectionAsync(tmdbId, null, null, cancellationToken).ConfigureAwait(false);
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2020-09-24 10:49:35 -07:00
|
|
|
if (collection?.Images == null)
|
|
|
|
{
|
|
|
|
return Enumerable.Empty<RemoteImageInfo>();
|
2014-01-30 14:47:13 -07:00
|
|
|
}
|
|
|
|
|
2021-10-21 15:35:14 -07:00
|
|
|
var posters = collection.Images.Posters;
|
|
|
|
var backdrops = collection.Images.Backdrops;
|
|
|
|
var remoteImages = new List<RemoteImageInfo>(posters.Count + backdrops.Count);
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2021-11-03 09:16:40 -07:00
|
|
|
_tmdbClientManager.ConvertPostersToRemoteImageInfo(posters, language, remoteImages);
|
|
|
|
_tmdbClientManager.ConvertBackdropsToRemoteImageInfo(backdrops, language, remoteImages);
|
2014-01-30 14:47:13 -07:00
|
|
|
|
2021-09-08 14:20:11 -07:00
|
|
|
return remoteImages;
|
2014-01-30 14:47:13 -07:00
|
|
|
}
|
|
|
|
|
2020-08-17 12:10:02 -07:00
|
|
|
public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
|
2014-01-30 14:47:13 -07:00
|
|
|
{
|
2020-08-31 10:05:21 -07:00
|
|
|
return _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationToken);
|
2014-01-30 14:47:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|