jellyfin/MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbSeriesImageProvider.cs

184 lines
6 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Collections.Generic;
2020-09-08 16:12:47 +02:00
using System.IO;
using System.Linq;
2020-08-17 21:10:02 +02:00
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
2020-08-31 19:05:21 +02:00
using MediaBrowser.Common.Net;
2014-02-09 07:08:10 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
using MediaBrowser.Model.Serialization;
2020-05-31 08:23:09 +02:00
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
using MediaBrowser.Providers.Plugins.Tmdb.Models.TV;
using MediaBrowser.Providers.Plugins.Tmdb.Movies;
2014-02-09 07:08:10 +01:00
2020-05-31 08:23:09 +02:00
namespace MediaBrowser.Providers.Plugins.Tmdb.TV
2014-02-09 07:08:10 +01:00
{
public class TmdbSeriesImageProvider : IRemoteImageProvider, IHasOrder
2014-02-09 07:08:10 +01:00
{
private readonly IJsonSerializer _jsonSerializer;
2020-08-17 21:10:02 +02:00
private readonly IHttpClientFactory _httpClientFactory;
2014-02-09 07:08:10 +01:00
2020-09-08 16:12:47 +02:00
public TmdbSeriesImageProvider(IJsonSerializer jsonSerializer, IHttpClientFactory httpClientFactory)
2014-02-09 07:08:10 +01:00
{
_jsonSerializer = jsonSerializer;
2020-08-17 21:10:02 +02:00
_httpClientFactory = httpClientFactory;
2014-02-09 07:08:10 +01:00
}
public string Name => ProviderName;
2014-02-09 07:08:10 +01:00
public static string ProviderName => TmdbUtils.ProviderName;
2014-02-09 07:08:10 +01:00
2020-09-08 16:12:47 +02:00
// After tvdb and fanart
public int Order => 2;
2018-09-12 19:26:21 +02:00
public bool Supports(BaseItem item)
2014-02-09 07:08:10 +01:00
{
return item is Series;
}
2018-09-12 19:26:21 +02:00
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
2014-02-09 07:08:10 +01:00
{
return new List<ImageType>
{
2019-01-08 00:27:46 +01:00
ImageType.Primary,
2014-02-09 07:08:10 +01:00
ImageType.Backdrop
};
}
2018-09-12 19:26:21 +02:00
public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken)
2014-02-09 07:08:10 +01:00
{
var list = new List<RemoteImageInfo>();
2020-09-08 16:12:47 +02:00
var results = await FetchImages(item, null, cancellationToken).ConfigureAwait(false);
2014-02-09 07:08:10 +01:00
if (results == null)
{
return list;
}
var tmdbSettings = await TmdbMovieProvider.Current.GetTmdbSettings(cancellationToken).ConfigureAwait(false);
2014-02-09 07:08:10 +01:00
2018-09-12 19:26:21 +02:00
var tmdbImageUrl = tmdbSettings.images.GetImageUrl("original");
2014-02-09 07:08:10 +01:00
var language = item.GetPreferredMetadataLanguage();
2014-02-09 07:08:10 +01:00
list.AddRange(GetPosters(results).Select(i => new RemoteImageInfo
{
2019-08-18 14:44:13 +02:00
Url = tmdbImageUrl + 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-02-09 07:08:10 +01:00
ProviderName = Name,
Type = ImageType.Primary,
RatingType = RatingType.Score
}));
list.AddRange(GetBackdrops(results).Select(i => new RemoteImageInfo
{
2019-08-18 14:44:13 +02:00
Url = tmdbImageUrl + i.File_Path,
CommunityRating = i.Vote_Average,
VoteCount = i.Vote_Count,
Width = i.Width,
Height = i.Height,
2014-02-09 07:08:10 +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-02-09 07:08:10 +01:00
if (!isLanguageEn)
{
if (string.Equals("en", i.Language, StringComparison.OrdinalIgnoreCase))
{
return 2;
}
}
2020-05-31 08:28:01 +02:00
2014-02-09 07:08:10 +01:00
if (string.IsNullOrEmpty(i.Language))
{
return isLanguageEn ? 3 : 2;
}
2020-05-31 08:28:01 +02:00
2014-02-09 07:08:10 +01:00
return 0;
})
.ThenByDescending(i => i.CommunityRating ?? 0)
.ThenByDescending(i => i.VoteCount ?? 0);
2014-02-09 07:08:10 +01:00
}
/// <summary>
/// Gets the posters.
/// </summary>
/// <param name="images">The images.</param>
private IEnumerable<Poster> GetPosters(Images images)
2014-02-09 07:08:10 +01:00
{
2019-08-18 14:44:13 +02:00
return images.Posters ?? new List<Poster>();
2014-02-09 07:08:10 +01:00
}
/// <summary>
/// Gets the backdrops.
/// </summary>
/// <param name="images">The images.</param>
private IEnumerable<Backdrop> GetBackdrops(Images images)
2014-02-09 07:08:10 +01:00
{
2019-08-18 14:44:13 +02:00
var eligibleBackdrops = images.Backdrops ?? new List<Backdrop>();
2014-02-09 07:08:10 +01:00
2019-08-18 14:44:13 +02:00
return eligibleBackdrops.OrderByDescending(i => i.Vote_Average)
.ThenByDescending(i => i.Vote_Count);
2014-02-09 07:08:10 +01:00
}
/// <summary>
/// Fetches the images.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="language">The language.</param>
2014-02-09 07:08:10 +01:00
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{MovieImages}.</returns>
2020-09-08 16:12:47 +02:00
private async Task<Images> FetchImages(
BaseItem item,
string language,
2014-02-09 07:08:10 +01:00
CancellationToken cancellationToken)
{
2020-06-06 21:17:49 +02:00
var tmdbId = item.GetProviderId(MetadataProvider.Tmdb);
2014-02-09 07:08:10 +01:00
if (string.IsNullOrEmpty(tmdbId))
{
return null;
}
await TmdbSeriesProvider.Current.EnsureSeriesInfo(tmdbId, language, cancellationToken).ConfigureAwait(false);
2014-02-09 07:08:10 +01:00
var path = TmdbSeriesProvider.Current.GetDataFilePath(tmdbId, language);
2014-02-09 07:08:10 +01:00
2020-09-08 16:12:47 +02:00
if (!string.IsNullOrEmpty(path) && File.Exists(path))
2014-02-09 07:08:10 +01:00
{
2020-09-08 16:12:47 +02:00
return _jsonSerializer.DeserializeFromFile<SeriesResult>(path).Images;
2014-02-09 07:08:10 +01:00
}
return null;
}
2020-05-31 08:28:01 +02:00
2020-08-17 21:10:02 +02:00
public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
2014-02-09 07:08:10 +01:00
{
2020-08-31 19:05:21 +02:00
return _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationToken);
2014-02-09 07:08:10 +01:00
}
}
}