jellyfin/MediaBrowser.Providers/Plugins/Tmdb/BoxSets/TmdbBoxSetImageProvider.cs

164 lines
5.4 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Net;
2014-01-30 22:47:13 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
2020-05-31 08:23:09 +02:00
using MediaBrowser.Providers.Plugins.Tmdb.Models.Collections;
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
using MediaBrowser.Providers.Plugins.Tmdb.Movies;
2014-01-30 22:47:13 +01:00
2020-05-31 08:23:09 +02:00
namespace MediaBrowser.Providers.Plugins.Tmdb.BoxSets
2014-01-30 22:47:13 +01:00
{
public class TmdbBoxSetImageProvider : IRemoteImageProvider, IHasOrder
2014-01-30 22:47:13 +01:00
{
private readonly IHttpClient _httpClient;
public TmdbBoxSetImageProvider(IHttpClient httpClient)
2014-01-30 22:47:13 +01:00
{
_httpClient = httpClient;
}
public string Name => ProviderName;
2014-01-30 22:47:13 +01:00
public static string ProviderName => TmdbUtils.ProviderName;
2014-01-30 22:47:13 +01:00
2018-09-12 19:26:21 +02:00
public bool Supports(BaseItem item)
2014-01-30 22:47:13 +01:00
{
return item is BoxSet;
}
2018-09-12 19:26:21 +02:00
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
2014-01-30 22:47:13 +01:00
{
return new List<ImageType>
{
2019-01-08 00:27:46 +01:00
ImageType.Primary,
2014-01-30 22:47:13 +01:00
ImageType.Backdrop
};
}
2018-09-12 19:26:21 +02:00
public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken)
2014-01-30 22:47:13 +01:00
{
2020-06-06 21:17:49 +02:00
var tmdbId = item.GetProviderId(MetadataProvider.Tmdb);
2014-01-30 22:47:13 +01:00
if (!string.IsNullOrEmpty(tmdbId))
{
var language = item.GetPreferredMetadataLanguage();
var mainResult = await TmdbBoxSetProvider.Current.GetMovieDbResult(tmdbId, null, cancellationToken).ConfigureAwait(false);
2014-01-30 22:47:13 +01:00
if (mainResult != null)
{
var tmdbSettings = await TmdbMovieProvider.Current.GetTmdbSettings(cancellationToken).ConfigureAwait(false);
2014-01-30 22:47:13 +01:00
2018-09-12 19:26:21 +02:00
var tmdbImageUrl = tmdbSettings.images.GetImageUrl("original");
2014-01-30 22:47:13 +01:00
return GetImages(mainResult, language, tmdbImageUrl);
}
}
return new List<RemoteImageInfo>();
}
private IEnumerable<RemoteImageInfo> GetImages(CollectionResult obj, string language, string baseUrl)
2014-01-30 22:47:13 +01:00
{
var list = new List<RemoteImageInfo>();
2019-08-18 14:44:13 +02:00
var images = obj.Images ?? new CollectionImages();
2014-01-30 22:47:13 +01:00
list.AddRange(GetPosters(images).Select(i => new RemoteImageInfo
{
2019-08-18 14:44:13 +02:00
Url = baseUrl + i.File_Path,
CommunityRating = i.Vote_Average,
VoteCount = i.Vote_Count,
Width = i.Width,
Height = i.Height,
Language = TmdbMovieProvider.AdjustImageLanguage(i.Iso_639_1, language),
2014-01-30 22:47:13 +01:00
ProviderName = Name,
Type = ImageType.Primary,
RatingType = RatingType.Score
}));
list.AddRange(GetBackdrops(images).Select(i => new RemoteImageInfo
{
2019-08-18 14:44:13 +02:00
Url = baseUrl + i.File_Path,
CommunityRating = i.Vote_Average,
VoteCount = i.Vote_Count,
Width = i.Width,
Height = i.Height,
2014-01-30 22:47:13 +01:00
ProviderName = Name,
Type = ImageType.Backdrop,
RatingType = RatingType.Score
}));
var isLanguageEn = string.Equals(language, "en", StringComparison.OrdinalIgnoreCase);
return list.OrderByDescending(i =>
{
if (string.Equals(language, i.Language, StringComparison.OrdinalIgnoreCase))
{
return 3;
}
2020-05-31 08:28:01 +02:00
2014-01-30 22:47:13 +01:00
if (!isLanguageEn)
{
if (string.Equals("en", i.Language, StringComparison.OrdinalIgnoreCase))
{
return 2;
}
}
2020-05-31 08:28:01 +02:00
2014-01-30 22:47:13 +01:00
if (string.IsNullOrEmpty(i.Language))
{
return isLanguageEn ? 3 : 2;
}
2020-05-31 08:28:01 +02:00
2014-01-30 22:47:13 +01:00
return 0;
})
.ThenByDescending(i => i.CommunityRating ?? 0)
.ThenByDescending(i => i.VoteCount ?? 0);
2014-01-30 22:47:13 +01:00
}
/// <summary>
/// Gets the posters.
/// </summary>
/// <param name="images">The images.</param>
/// <returns>IEnumerable{MovieDbProvider.Poster}.</returns>
private IEnumerable<Poster> GetPosters(CollectionImages images)
2014-01-30 22:47:13 +01:00
{
2019-08-18 14:44:13 +02:00
return images.Posters ?? new List<Poster>();
2014-01-30 22:47:13 +01:00
}
/// <summary>
/// Gets the backdrops.
/// </summary>
/// <param name="images">The images.</param>
/// <returns>IEnumerable{MovieDbProvider.Backdrop}.</returns>
private IEnumerable<Backdrop> GetBackdrops(CollectionImages images)
2014-01-30 22:47:13 +01:00
{
2019-08-18 14:44:13 +02:00
var eligibleBackdrops = images.Backdrops == null ? new List<Backdrop>() :
images.Backdrops;
2014-01-30 22:47:13 +01:00
2019-08-18 14:44:13 +02:00
return eligibleBackdrops.OrderByDescending(i => i.Vote_Average)
.ThenByDescending(i => i.Vote_Count);
2014-01-30 22:47:13 +01:00
}
public int Order => 0;
2014-01-30 22:47:13 +01:00
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
{
return _httpClient.GetResponse(new HttpRequestOptions
{
CancellationToken = cancellationToken,
2016-10-31 19:39:41 +01:00
Url = url
2014-01-30 22:47:13 +01:00
});
}
}
}