123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Common.Net;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Controller.Entities.Movies;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Controller.Providers;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Globalization;
- using MediaBrowser.Model.IO;
- using MediaBrowser.Model.Providers;
- using MediaBrowser.Model.Serialization;
- using MediaBrowser.Providers.Movies;
- using Microsoft.Extensions.Logging;
- namespace MediaBrowser.Providers.BoxSets
- {
- public class MovieDbBoxSetProvider : IRemoteMetadataProvider<BoxSet, BoxSetInfo>
- {
- private const string GetCollectionInfo3 = MovieDbProvider.BaseMovieDbUrl + @"3/collection/{0}?api_key={1}&append_to_response=images";
- internal static MovieDbBoxSetProvider Current;
- private readonly ILogger _logger;
- private readonly IJsonSerializer _json;
- private readonly IServerConfigurationManager _config;
- private readonly IFileSystem _fileSystem;
- private readonly ILocalizationManager _localization;
- private readonly IHttpClient _httpClient;
- private readonly ILibraryManager _libraryManager;
- public MovieDbBoxSetProvider(ILogger logger, IJsonSerializer json, IServerConfigurationManager config, IFileSystem fileSystem, ILocalizationManager localization, IHttpClient httpClient, ILibraryManager libraryManager)
- {
- _logger = logger;
- _json = json;
- _config = config;
- _fileSystem = fileSystem;
- _localization = localization;
- _httpClient = httpClient;
- _libraryManager = libraryManager;
- Current = this;
- }
- private readonly CultureInfo _usCulture = new CultureInfo("en-US");
- public async Task<IEnumerable<RemoteSearchResult>> GetSearchResults(BoxSetInfo searchInfo, CancellationToken cancellationToken)
- {
- var tmdbId = searchInfo.GetProviderId(MetadataProviders.Tmdb);
- if (!string.IsNullOrEmpty(tmdbId))
- {
- await EnsureInfo(tmdbId, searchInfo.MetadataLanguage, cancellationToken).ConfigureAwait(false);
- var dataFilePath = GetDataFilePath(_config.ApplicationPaths, tmdbId, searchInfo.MetadataLanguage);
- var info = _json.DeserializeFromFile<RootObject>(dataFilePath);
- var images = (info.images ?? new Images()).posters ?? new List<Poster>();
- var tmdbSettings = await MovieDbProvider.Current.GetTmdbSettings(cancellationToken).ConfigureAwait(false);
- var tmdbImageUrl = tmdbSettings.images.GetImageUrl("original");
- var result = new RemoteSearchResult
- {
- Name = info.name,
- SearchProviderName = Name,
- ImageUrl = images.Count == 0 ? null : (tmdbImageUrl + images[0].file_path)
- };
- result.SetProviderId(MetadataProviders.Tmdb, info.id.ToString(_usCulture));
- return new[] { result };
- }
- return await new MovieDbSearch(_logger, _json, _libraryManager).GetSearchResults(searchInfo, cancellationToken).ConfigureAwait(false);
- }
- public async Task<MetadataResult<BoxSet>> GetMetadata(BoxSetInfo id, CancellationToken cancellationToken)
- {
- var tmdbId = id.GetProviderId(MetadataProviders.Tmdb);
- // We don't already have an Id, need to fetch it
- if (string.IsNullOrEmpty(tmdbId))
- {
- var searchResults = await new MovieDbSearch(_logger, _json, _libraryManager).GetSearchResults(id, cancellationToken).ConfigureAwait(false);
- var searchResult = searchResults.FirstOrDefault();
- if (searchResult != null)
- {
- tmdbId = searchResult.GetProviderId(MetadataProviders.Tmdb);
- }
- }
- var result = new MetadataResult<BoxSet>();
- if (!string.IsNullOrEmpty(tmdbId))
- {
- var mainResult = await GetMovieDbResult(tmdbId, id.MetadataLanguage, cancellationToken).ConfigureAwait(false);
- if (mainResult != null)
- {
- result.HasMetadata = true;
- result.Item = GetItem(mainResult);
- }
- }
- return result;
- }
- internal async Task<RootObject> GetMovieDbResult(string tmdbId, string language, CancellationToken cancellationToken)
- {
- if (string.IsNullOrEmpty(tmdbId))
- {
- throw new ArgumentNullException(nameof(tmdbId));
- }
- await EnsureInfo(tmdbId, language, cancellationToken).ConfigureAwait(false);
- var dataFilePath = GetDataFilePath(_config.ApplicationPaths, tmdbId, language);
- if (!string.IsNullOrEmpty(dataFilePath))
- {
- return _json.DeserializeFromFile<RootObject>(dataFilePath);
- }
- return null;
- }
- private BoxSet GetItem(RootObject obj)
- {
- var item = new BoxSet
- {
- Name = obj.name,
- Overview = obj.overview
- };
- item.SetProviderId(MetadataProviders.Tmdb, obj.id.ToString(_usCulture));
- return item;
- }
- private async Task DownloadInfo(string tmdbId, string preferredMetadataLanguage, CancellationToken cancellationToken)
- {
- var mainResult = await FetchMainResult(tmdbId, preferredMetadataLanguage, cancellationToken).ConfigureAwait(false);
- if (mainResult == null) return;
- var dataFilePath = GetDataFilePath(_config.ApplicationPaths, tmdbId, preferredMetadataLanguage);
- _fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(dataFilePath));
- _json.SerializeToFile(mainResult, dataFilePath);
- }
- private async Task<RootObject> FetchMainResult(string id, string language, CancellationToken cancellationToken)
- {
- var url = string.Format(GetCollectionInfo3, id, MovieDbProvider.ApiKey);
- if (!string.IsNullOrEmpty(language))
- {
- url += string.Format("&language={0}", MovieDbProvider.NormalizeLanguage(language));
- // Get images in english and with no language
- url += "&include_image_language=" + MovieDbProvider.GetImageLanguagesParam(language);
- }
- cancellationToken.ThrowIfCancellationRequested();
- RootObject mainResult = null;
- using (var response = await MovieDbProvider.Current.GetMovieDbResponse(new HttpRequestOptions
- {
- Url = url,
- CancellationToken = cancellationToken,
- AcceptHeader = MovieDbSearch.AcceptHeader
- }).ConfigureAwait(false))
- {
- using (var json = response.Content)
- {
- mainResult = await _json.DeserializeFromStreamAsync<RootObject>(json).ConfigureAwait(false);
- }
- }
- cancellationToken.ThrowIfCancellationRequested();
- if (mainResult != null && string.IsNullOrEmpty(mainResult.name))
- {
- if (!string.IsNullOrEmpty(language) && !string.Equals(language, "en", StringComparison.OrdinalIgnoreCase))
- {
- url = string.Format(GetCollectionInfo3, id, MovieDbSearch.ApiKey) + "&language=en";
- if (!string.IsNullOrEmpty(language))
- {
- // Get images in english and with no language
- url += "&include_image_language=" + MovieDbProvider.GetImageLanguagesParam(language);
- }
- using (var response = await MovieDbProvider.Current.GetMovieDbResponse(new HttpRequestOptions
- {
- Url = url,
- CancellationToken = cancellationToken,
- AcceptHeader = MovieDbSearch.AcceptHeader
- }).ConfigureAwait(false))
- {
- using (var json = response.Content)
- {
- mainResult = await _json.DeserializeFromStreamAsync<RootObject>(json).ConfigureAwait(false);
- }
- }
- }
- }
- return mainResult;
- }
- internal Task EnsureInfo(string tmdbId, string preferredMetadataLanguage, CancellationToken cancellationToken)
- {
- var path = GetDataFilePath(_config.ApplicationPaths, tmdbId, preferredMetadataLanguage);
- var fileInfo = _fileSystem.GetFileSystemInfo(path);
- if (fileInfo.Exists)
- {
- // If it's recent or automatic updates are enabled, don't re-download
- if ((DateTime.UtcNow - _fileSystem.GetLastWriteTimeUtc(fileInfo)).TotalDays <= 2)
- {
- return Task.CompletedTask;
- }
- }
- return DownloadInfo(tmdbId, preferredMetadataLanguage, cancellationToken);
- }
- public string Name => "TheMovieDb";
- private static string GetDataFilePath(IApplicationPaths appPaths, string tmdbId, string preferredLanguage)
- {
- var path = GetDataPath(appPaths, tmdbId);
- var filename = string.Format("all-{0}.json", preferredLanguage ?? string.Empty);
- return Path.Combine(path, filename);
- }
- private static string GetDataPath(IApplicationPaths appPaths, string tmdbId)
- {
- var dataPath = GetCollectionsDataPath(appPaths);
- return Path.Combine(dataPath, tmdbId);
- }
- private static string GetCollectionsDataPath(IApplicationPaths appPaths)
- {
- var dataPath = Path.Combine(appPaths.CachePath, "tmdb-collections");
- return dataPath;
- }
- internal class Part
- {
- public string title { get; set; }
- public int id { get; set; }
- public string release_date { get; set; }
- public string poster_path { get; set; }
- public string backdrop_path { get; set; }
- }
- internal class Backdrop
- {
- public double aspect_ratio { get; set; }
- public string file_path { get; set; }
- public int height { get; set; }
- public string iso_639_1 { get; set; }
- public double vote_average { get; set; }
- public int vote_count { get; set; }
- public int width { get; set; }
- }
- internal class Poster
- {
- public double aspect_ratio { get; set; }
- public string file_path { get; set; }
- public int height { get; set; }
- public string iso_639_1 { get; set; }
- public double vote_average { get; set; }
- public int vote_count { get; set; }
- public int width { get; set; }
- }
- internal class Images
- {
- public List<Backdrop> backdrops { get; set; }
- public List<Poster> posters { get; set; }
- }
- internal class RootObject
- {
- public int id { get; set; }
- public string name { get; set; }
- public string overview { get; set; }
- public string poster_path { get; set; }
- public string backdrop_path { get; set; }
- public List<Part> parts { get; set; }
- public Images images { get; set; }
- }
- public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
- {
- return _httpClient.GetResponse(new HttpRequestOptions
- {
- CancellationToken = cancellationToken,
- Url = url
- });
- }
- }
- }
|