|
@@ -0,0 +1,208 @@
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.IO;
|
|
|
|
+using System.Linq;
|
|
|
|
+using System.Threading;
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
+using MediaBrowser.Common.Net;
|
|
|
|
+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;
|
|
|
|
+using MediaBrowser.Model.Serialization;
|
|
|
|
+using MediaBrowser.Providers.Movies;
|
|
|
|
+
|
|
|
|
+namespace MediaBrowser.Providers.BoxSets
|
|
|
|
+{
|
|
|
|
+ class MovieDbBoxSetImageProvider : IRemoteImageProvider
|
|
|
|
+ {
|
|
|
|
+ private readonly IJsonSerializer _jsonSerializer;
|
|
|
|
+ private readonly IHttpClient _httpClient;
|
|
|
|
+
|
|
|
|
+ public MovieDbBoxSetImageProvider(IJsonSerializer jsonSerializer, IHttpClient httpClient)
|
|
|
|
+ {
|
|
|
|
+ _jsonSerializer = jsonSerializer;
|
|
|
|
+ _httpClient = httpClient;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public string Name
|
|
|
|
+ {
|
|
|
|
+ get { return ProviderName; }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static string ProviderName
|
|
|
|
+ {
|
|
|
|
+ get { return "TheMovieDb"; }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public bool Supports(IHasImages item)
|
|
|
|
+ {
|
|
|
|
+ return item is BoxSet;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public IEnumerable<ImageType> GetSupportedImages(IHasImages item)
|
|
|
|
+ {
|
|
|
|
+ return new List<ImageType>
|
|
|
|
+ {
|
|
|
|
+ ImageType.Primary,
|
|
|
|
+ ImageType.Backdrop
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public async Task<IEnumerable<RemoteImageInfo>> GetImages(IHasImages item, ImageType imageType, CancellationToken cancellationToken)
|
|
|
|
+ {
|
|
|
|
+ var images = await GetAllImages(item, cancellationToken).ConfigureAwait(false);
|
|
|
|
+
|
|
|
|
+ return images.Where(i => i.Type == imageType);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public async Task<IEnumerable<RemoteImageInfo>> GetAllImages(IHasImages item, CancellationToken cancellationToken)
|
|
|
|
+ {
|
|
|
|
+ var tmdbId = item.GetProviderId(MetadataProviders.Tmdb);
|
|
|
|
+
|
|
|
|
+ if (!string.IsNullOrEmpty(tmdbId))
|
|
|
|
+ {
|
|
|
|
+ var language = item.GetPreferredMetadataLanguage();
|
|
|
|
+
|
|
|
|
+ var mainResult = await MovieDbBoxSetProvider.Current.GetMovieDbResult(tmdbId, language, cancellationToken).ConfigureAwait(false);
|
|
|
|
+
|
|
|
|
+ if (mainResult != null)
|
|
|
|
+ {
|
|
|
|
+ var tmdbSettings = await MovieDbProvider.Current.GetTmdbSettings(cancellationToken).ConfigureAwait(false);
|
|
|
|
+
|
|
|
|
+ var tmdbImageUrl = tmdbSettings.images.base_url + "original";
|
|
|
|
+
|
|
|
|
+ return GetImages(mainResult, language, tmdbImageUrl);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return new List<RemoteImageInfo>();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private IEnumerable<RemoteImageInfo> GetImages(MovieDbBoxSetProvider.RootObject obj, string language, string baseUrl)
|
|
|
|
+ {
|
|
|
|
+ var list = new List<RemoteImageInfo>();
|
|
|
|
+
|
|
|
|
+ var images = obj.images ?? new MovieDbBoxSetProvider.Images();
|
|
|
|
+
|
|
|
|
+ list.AddRange(GetPosters(images).Select(i => new RemoteImageInfo
|
|
|
|
+ {
|
|
|
|
+ Url = baseUrl + i.file_path,
|
|
|
|
+ CommunityRating = i.vote_average,
|
|
|
|
+ VoteCount = i.vote_count,
|
|
|
|
+ Width = i.width,
|
|
|
|
+ Height = i.height,
|
|
|
|
+ Language = i.iso_639_1,
|
|
|
|
+ ProviderName = Name,
|
|
|
|
+ Type = ImageType.Primary,
|
|
|
|
+ RatingType = RatingType.Score
|
|
|
|
+ }));
|
|
|
|
+
|
|
|
|
+ list.AddRange(GetBackdrops(images).Select(i => new RemoteImageInfo
|
|
|
|
+ {
|
|
|
|
+ Url = baseUrl + i.file_path,
|
|
|
|
+ CommunityRating = i.vote_average,
|
|
|
|
+ VoteCount = i.vote_count,
|
|
|
|
+ Width = i.width,
|
|
|
|
+ Height = i.height,
|
|
|
|
+ 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;
|
|
|
|
+ }
|
|
|
|
+ if (!isLanguageEn)
|
|
|
|
+ {
|
|
|
|
+ if (string.Equals("en", i.Language, StringComparison.OrdinalIgnoreCase))
|
|
|
|
+ {
|
|
|
|
+ return 2;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (string.IsNullOrEmpty(i.Language))
|
|
|
|
+ {
|
|
|
|
+ return isLanguageEn ? 3 : 2;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+ })
|
|
|
|
+ .ThenByDescending(i => i.CommunityRating ?? 0)
|
|
|
|
+ .ThenByDescending(i => i.VoteCount ?? 0)
|
|
|
|
+ .ToList();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets the posters.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="images">The images.</param>
|
|
|
|
+ /// <returns>IEnumerable{MovieDbProvider.Poster}.</returns>
|
|
|
|
+ private IEnumerable<MovieDbBoxSetProvider.Poster> GetPosters(MovieDbBoxSetProvider.Images images)
|
|
|
|
+ {
|
|
|
|
+ return images.posters ?? new List<MovieDbBoxSetProvider.Poster>();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets the backdrops.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="images">The images.</param>
|
|
|
|
+ /// <returns>IEnumerable{MovieDbProvider.Backdrop}.</returns>
|
|
|
|
+ private IEnumerable<MovieDbBoxSetProvider.Backdrop> GetBackdrops(MovieDbBoxSetProvider.Images images)
|
|
|
|
+ {
|
|
|
|
+ var eligibleBackdrops = images.backdrops == null ? new List<MovieDbBoxSetProvider.Backdrop>() :
|
|
|
|
+ images.backdrops
|
|
|
|
+ .ToList();
|
|
|
|
+
|
|
|
|
+ return eligibleBackdrops.OrderByDescending(i => i.vote_average)
|
|
|
|
+ .ThenByDescending(i => i.vote_count);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Fetches the images.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="item">The item.</param>
|
|
|
|
+ /// <param name="jsonSerializer">The json serializer.</param>
|
|
|
|
+ /// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
+ /// <returns>Task{MovieImages}.</returns>
|
|
|
|
+ private async Task<MovieDbProvider.Images> FetchImages(BaseItem item, IJsonSerializer jsonSerializer,
|
|
|
|
+ CancellationToken cancellationToken)
|
|
|
|
+ {
|
|
|
|
+ await MovieDbProvider.Current.EnsureMovieInfo(item, cancellationToken).ConfigureAwait(false);
|
|
|
|
+
|
|
|
|
+ var path = MovieDbProvider.Current.GetDataFilePath(item);
|
|
|
|
+
|
|
|
|
+ if (!string.IsNullOrEmpty(path))
|
|
|
|
+ {
|
|
|
|
+ var fileInfo = new FileInfo(path);
|
|
|
|
+
|
|
|
|
+ if (fileInfo.Exists)
|
|
|
|
+ {
|
|
|
|
+ return jsonSerializer.DeserializeFromFile<MovieDbProvider.CompleteMovieData>(path).images;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public int Order
|
|
|
|
+ {
|
|
|
|
+ get { return 0; }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
|
|
|
|
+ {
|
|
|
|
+ return _httpClient.GetResponse(new HttpRequestOptions
|
|
|
|
+ {
|
|
|
|
+ CancellationToken = cancellationToken,
|
|
|
|
+ Url = url,
|
|
|
|
+ ResourcePool = MovieDbProvider.Current.MovieDbResourcePool
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|