2019-01-13 20:03:10 +00:00
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.Collections.Generic;
|
2014-03-02 17:09:35 +00:00
|
|
|
using System.Globalization;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.IO;
|
2015-10-26 05:29:32 +00:00
|
|
|
using System.Net;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2016-01-23 01:57:35 +00:00
|
|
|
using MediaBrowser.Common;
|
2019-01-13 19:26:31 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2016-10-24 02:45:23 +00:00
|
|
|
using MediaBrowser.Model.Globalization;
|
2019-01-13 19:26:31 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2015-10-26 05:29:32 +00:00
|
|
|
using MediaBrowser.Model.Net;
|
2019-01-13 19:26:31 +00:00
|
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
namespace MediaBrowser.Providers.Movies
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class MovieDbProvider
|
|
|
|
/// </summary>
|
2017-09-05 19:49:02 +00:00
|
|
|
public class MovieDbProvider : IRemoteMetadataProvider<Movie, MovieInfo>, IHasOrder
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-03-04 05:43:06 +00:00
|
|
|
internal static MovieDbProvider Current { get; private set; }
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
private readonly IJsonSerializer _jsonSerializer;
|
|
|
|
private readonly IHttpClient _httpClient;
|
2013-10-31 14:03:23 +00:00
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-02-06 04:39:16 +00:00
|
|
|
private readonly IServerConfigurationManager _configurationManager;
|
|
|
|
private readonly ILogger _logger;
|
2014-02-17 21:35:08 +00:00
|
|
|
private readonly ILocalizationManager _localization;
|
2014-11-18 02:48:22 +00:00
|
|
|
private readonly ILibraryManager _libraryManager;
|
2016-01-23 01:57:35 +00:00
|
|
|
private readonly IApplicationHost _appHost;
|
2013-02-25 00:13:45 +00:00
|
|
|
|
2014-03-02 17:09:35 +00:00
|
|
|
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
2014-07-05 03:17:24 +00:00
|
|
|
|
2016-01-23 01:57:35 +00:00
|
|
|
public MovieDbProvider(IJsonSerializer jsonSerializer, IHttpClient httpClient, IFileSystem fileSystem, IServerConfigurationManager configurationManager, ILogger logger, ILocalizationManager localization, ILibraryManager libraryManager, IApplicationHost appHost)
|
2014-02-06 04:39:16 +00:00
|
|
|
{
|
|
|
|
_jsonSerializer = jsonSerializer;
|
|
|
|
_httpClient = httpClient;
|
2013-10-31 14:03:23 +00:00
|
|
|
_fileSystem = fileSystem;
|
2014-02-06 04:39:16 +00:00
|
|
|
_configurationManager = configurationManager;
|
|
|
|
_logger = logger;
|
2014-02-17 21:35:08 +00:00
|
|
|
_localization = localization;
|
2014-11-18 02:48:22 +00:00
|
|
|
_libraryManager = libraryManager;
|
2016-01-23 01:57:35 +00:00
|
|
|
_appHost = appHost;
|
2013-03-04 05:43:06 +00:00
|
|
|
Current = this;
|
|
|
|
}
|
|
|
|
|
2014-03-02 17:09:35 +00:00
|
|
|
public Task<IEnumerable<RemoteSearchResult>> GetSearchResults(MovieInfo searchInfo, CancellationToken cancellationToken)
|
2014-02-20 04:53:15 +00:00
|
|
|
{
|
2014-03-02 17:09:35 +00:00
|
|
|
return GetMovieSearchResults(searchInfo, cancellationToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<IEnumerable<RemoteSearchResult>> GetMovieSearchResults(ItemLookupInfo searchInfo, CancellationToken cancellationToken)
|
|
|
|
{
|
|
|
|
var tmdbId = searchInfo.GetProviderId(MetadataProviders.Tmdb);
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(tmdbId))
|
|
|
|
{
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
await EnsureMovieInfo(tmdbId, searchInfo.MetadataLanguage, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
var dataFilePath = GetDataFilePath(tmdbId, searchInfo.MetadataLanguage);
|
|
|
|
|
|
|
|
var obj = _jsonSerializer.DeserializeFromFile<CompleteMovieData>(dataFilePath);
|
|
|
|
|
2014-09-22 21:56:54 +00:00
|
|
|
var tmdbSettings = await GetTmdbSettings(cancellationToken).ConfigureAwait(false);
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var tmdbImageUrl = tmdbSettings.images.GetImageUrl("original");
|
2014-09-22 21:56:54 +00:00
|
|
|
|
2014-03-02 17:09:35 +00:00
|
|
|
var remoteResult = new RemoteSearchResult
|
|
|
|
{
|
2015-03-10 01:30:20 +00:00
|
|
|
Name = obj.GetTitle(),
|
2014-03-02 17:09:35 +00:00
|
|
|
SearchProviderName = Name,
|
|
|
|
ImageUrl = string.IsNullOrWhiteSpace(obj.poster_path) ? null : tmdbImageUrl + obj.poster_path
|
|
|
|
};
|
|
|
|
|
2014-03-02 18:01:46 +00:00
|
|
|
if (!string.IsNullOrWhiteSpace(obj.release_date))
|
|
|
|
{
|
|
|
|
// These dates are always in this exact format
|
2019-01-13 20:46:33 +00:00
|
|
|
if (DateTime.TryParse(obj.release_date, _usCulture, DateTimeStyles.None, out var r))
|
2014-03-02 18:01:46 +00:00
|
|
|
{
|
|
|
|
remoteResult.PremiereDate = r.ToUniversalTime();
|
|
|
|
remoteResult.ProductionYear = remoteResult.PremiereDate.Value.Year;
|
|
|
|
}
|
|
|
|
}
|
2014-07-05 03:17:24 +00:00
|
|
|
|
2014-03-02 17:09:35 +00:00
|
|
|
remoteResult.SetProviderId(MetadataProviders.Tmdb, obj.id.ToString(_usCulture));
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(obj.imdb_id))
|
|
|
|
{
|
|
|
|
remoteResult.SetProviderId(MetadataProviders.Imdb, obj.imdb_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new[] { remoteResult };
|
|
|
|
}
|
|
|
|
|
2014-11-18 02:48:22 +00:00
|
|
|
return await new MovieDbSearch(_logger, _jsonSerializer, _libraryManager).GetMovieSearchResults(searchInfo, cancellationToken).ConfigureAwait(false);
|
2014-02-20 04:53:15 +00:00
|
|
|
}
|
|
|
|
|
2014-02-07 03:10:13 +00:00
|
|
|
public Task<MetadataResult<Movie>> GetMetadata(MovieInfo info, CancellationToken cancellationToken)
|
2013-03-04 05:43:06 +00:00
|
|
|
{
|
2014-02-07 03:10:13 +00:00
|
|
|
return GetItemMetadata<Movie>(info, cancellationToken);
|
2013-02-24 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
2014-02-07 03:10:13 +00:00
|
|
|
public Task<MetadataResult<T>> GetItemMetadata<T>(ItemLookupInfo id, CancellationToken cancellationToken)
|
2015-03-14 20:00:32 +00:00
|
|
|
where T : BaseItem, new()
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2015-10-26 05:29:32 +00:00
|
|
|
var movieDb = new GenericMovieDbInfo<T>(_logger, _jsonSerializer, _libraryManager, _fileSystem);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
return movieDb.GetMetadata(id, cancellationToken);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
public string Name => "TheMovieDb";
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The _TMDB settings task
|
|
|
|
/// </summary>
|
2013-05-19 19:37:52 +00:00
|
|
|
private TmdbSettingsResult _tmdbSettings;
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the TMDB settings.
|
|
|
|
/// </summary>
|
2013-05-19 19:37:52 +00:00
|
|
|
/// <returns>Task{TmdbSettingsResult}.</returns>
|
|
|
|
internal async Task<TmdbSettingsResult> GetTmdbSettings(CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-05-19 19:37:52 +00:00
|
|
|
if (_tmdbSettings != null)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-05-19 19:37:52 +00:00
|
|
|
return _tmdbSettings;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 19:24:39 +00:00
|
|
|
using (HttpResponseInfo response = await GetMovieDbResponse(new HttpRequestOptions
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2014-04-13 17:27:13 +00:00
|
|
|
Url = string.Format(TmdbConfigUrl, ApiKey),
|
|
|
|
CancellationToken = cancellationToken,
|
2016-01-23 01:58:22 +00:00
|
|
|
AcceptHeader = AcceptHeader
|
2013-05-04 04:15:39 +00:00
|
|
|
|
2014-04-13 17:27:13 +00:00
|
|
|
}).ConfigureAwait(false))
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-01-17 19:24:39 +00:00
|
|
|
using (Stream json = response.Content)
|
2017-10-20 16:16:56 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
_tmdbSettings = await _jsonSerializer.DeserializeFromStreamAsync<TmdbSettingsResult>(json).ConfigureAwait(false);
|
2014-04-13 17:27:13 +00:00
|
|
|
|
2017-10-20 16:16:56 +00:00
|
|
|
return _tmdbSettings;
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public const string BaseMovieDbUrl = "https://api.themoviedb.org/";
|
|
|
|
|
|
|
|
private const string TmdbConfigUrl = BaseMovieDbUrl + "3/configuration?api_key={0}";
|
|
|
|
private const string GetMovieInfo3 = BaseMovieDbUrl + @"3/movie/{0}?api_key={1}&append_to_response=casts,releases,images,keywords,trailers";
|
2013-05-06 22:52:13 +00:00
|
|
|
|
2019-01-09 17:09:40 +00:00
|
|
|
internal static string ApiKey = "4219e299c89411838049ab0dab19ebd5";
|
2013-05-04 04:15:39 +00:00
|
|
|
internal static string AcceptHeader = "application/json,image/*";
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2013-10-14 17:34:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the movie data path.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="appPaths">The app paths.</param>
|
|
|
|
/// <param name="tmdbId">The TMDB id.</param>
|
|
|
|
/// <returns>System.String.</returns>
|
2014-01-30 21:23:54 +00:00
|
|
|
internal static string GetMovieDataPath(IApplicationPaths appPaths, string tmdbId)
|
2013-10-14 17:34:54 +00:00
|
|
|
{
|
2014-01-30 21:23:54 +00:00
|
|
|
var dataPath = GetMoviesDataPath(appPaths);
|
2013-10-14 17:34:54 +00:00
|
|
|
|
|
|
|
return Path.Combine(dataPath, tmdbId);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal static string GetMoviesDataPath(IApplicationPaths appPaths)
|
|
|
|
{
|
2014-10-07 03:03:38 +00:00
|
|
|
var dataPath = Path.Combine(appPaths.CachePath, "tmdb-movies2");
|
2013-10-14 17:34:54 +00:00
|
|
|
|
|
|
|
return dataPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Downloads the movie info.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id">The id.</param>
|
2013-12-27 00:23:58 +00:00
|
|
|
/// <param name="preferredMetadataLanguage">The preferred metadata language.</param>
|
2013-10-14 17:34:54 +00:00
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
/// <returns>Task.</returns>
|
2014-01-30 21:23:54 +00:00
|
|
|
internal async Task DownloadMovieInfo(string id, string preferredMetadataLanguage, CancellationToken cancellationToken)
|
2013-10-14 17:34:54 +00:00
|
|
|
{
|
2014-09-28 20:49:43 +00:00
|
|
|
var mainResult = await FetchMainResult(id, true, preferredMetadataLanguage, cancellationToken).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
if (mainResult == null) return;
|
|
|
|
|
2014-01-30 21:23:54 +00:00
|
|
|
var dataFilePath = GetDataFilePath(id, preferredMetadataLanguage);
|
2013-10-14 17:34:54 +00:00
|
|
|
|
2017-05-04 18:14:45 +00:00
|
|
|
_fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(dataFilePath));
|
2013-10-14 17:34:54 +00:00
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
_jsonSerializer.SerializeToFile(mainResult, dataFilePath);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
internal Task EnsureMovieInfo(string tmdbId, string language, CancellationToken cancellationToken)
|
2014-01-10 13:52:01 +00:00
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
if (string.IsNullOrEmpty(tmdbId))
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(tmdbId));
|
2014-02-06 04:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var path = GetDataFilePath(tmdbId, language);
|
|
|
|
|
2014-01-10 13:52:01 +00:00
|
|
|
var fileInfo = _fileSystem.GetFileSystemInfo(path);
|
|
|
|
|
|
|
|
if (fileInfo.Exists)
|
|
|
|
{
|
|
|
|
// If it's recent or automatic updates are enabled, don't re-download
|
2018-09-12 17:26:21 +00:00
|
|
|
if ((DateTime.UtcNow - _fileSystem.GetLastWriteTimeUtc(fileInfo)).TotalDays <= 2)
|
2014-01-10 13:52:01 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return Task.CompletedTask;
|
2014-01-10 13:52:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
return DownloadMovieInfo(tmdbId, language, cancellationToken);
|
2014-01-10 13:52:01 +00:00
|
|
|
}
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
internal string GetDataFilePath(string tmdbId, string preferredLanguage)
|
2013-10-14 17:34:54 +00:00
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
if (string.IsNullOrEmpty(tmdbId))
|
2013-10-14 17:34:54 +00:00
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(tmdbId));
|
2014-02-06 04:39:16 +00:00
|
|
|
}
|
2013-10-14 17:34:54 +00:00
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
var path = GetMovieDataPath(_configurationManager.ApplicationPaths, tmdbId);
|
2013-10-14 17:34:54 +00:00
|
|
|
|
2016-03-04 17:38:51 +00:00
|
|
|
if (string.IsNullOrWhiteSpace(preferredLanguage))
|
|
|
|
{
|
|
|
|
preferredLanguage = "alllang";
|
|
|
|
}
|
|
|
|
|
|
|
|
var filename = string.Format("all-{0}.json", preferredLanguage);
|
2013-12-28 16:58:13 +00:00
|
|
|
|
|
|
|
return Path.Combine(path, filename);
|
2013-11-01 15:55:25 +00:00
|
|
|
}
|
|
|
|
|
2015-01-31 03:19:41 +00:00
|
|
|
public static string GetImageLanguagesParam(string preferredLanguage)
|
2014-10-06 23:30:05 +00:00
|
|
|
{
|
|
|
|
var languages = new List<string>();
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(preferredLanguage))
|
|
|
|
{
|
2016-06-24 23:53:38 +00:00
|
|
|
preferredLanguage = NormalizeLanguage(preferredLanguage);
|
|
|
|
|
2014-10-06 23:30:05 +00:00
|
|
|
languages.Add(preferredLanguage);
|
2016-06-24 23:53:38 +00:00
|
|
|
|
|
|
|
if (preferredLanguage.Length == 5) // like en-US
|
|
|
|
{
|
|
|
|
// Currenty, TMDB supports 2-letter language codes only
|
|
|
|
// They are planning to change this in the future, thus we're
|
|
|
|
// supplying both codes if we're having a 5-letter code.
|
|
|
|
languages.Add(preferredLanguage.Substring(0, 2));
|
|
|
|
}
|
2014-10-06 23:30:05 +00:00
|
|
|
}
|
2016-06-24 23:53:38 +00:00
|
|
|
|
2014-10-06 23:30:05 +00:00
|
|
|
languages.Add("null");
|
2016-06-24 23:53:38 +00:00
|
|
|
|
2014-10-06 23:30:05 +00:00
|
|
|
if (!string.Equals(preferredLanguage, "en", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
languages.Add("en");
|
|
|
|
}
|
|
|
|
|
2018-12-28 15:48:26 +00:00
|
|
|
return string.Join(",", languages.ToArray());
|
2014-10-06 23:30:05 +00:00
|
|
|
}
|
|
|
|
|
2016-03-12 15:14:17 +00:00
|
|
|
public static string NormalizeLanguage(string language)
|
|
|
|
{
|
2016-06-24 23:53:38 +00:00
|
|
|
if (!string.IsNullOrEmpty(language))
|
2016-03-12 15:14:17 +00:00
|
|
|
{
|
2016-06-24 23:53:38 +00:00
|
|
|
// They require this to be uppercase
|
2018-12-30 21:08:54 +00:00
|
|
|
// Everything after the hyphen must be written in uppercase due to a way TMDB wrote their api.
|
|
|
|
// See here: https://www.themoviedb.org/talk/5119221d760ee36c642af4ad?page=3#56e372a0c3a3685a9e0019ab
|
2016-06-24 23:53:38 +00:00
|
|
|
var parts = language.Split('-');
|
|
|
|
|
|
|
|
if (parts.Length == 2)
|
|
|
|
{
|
|
|
|
language = parts[0] + "-" + parts[1].ToUpper();
|
|
|
|
}
|
2016-03-12 15:14:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return language;
|
|
|
|
}
|
|
|
|
|
2016-06-24 23:53:38 +00:00
|
|
|
public static string AdjustImageLanguage(string imageLanguage, string requestLanguage)
|
|
|
|
{
|
2018-12-11 06:31:08 +00:00
|
|
|
if (!string.IsNullOrEmpty(imageLanguage)
|
|
|
|
&& !string.IsNullOrEmpty(requestLanguage)
|
|
|
|
&& requestLanguage.Length > 2
|
2016-06-24 23:53:38 +00:00
|
|
|
&& imageLanguage.Length == 2
|
|
|
|
&& requestLanguage.StartsWith(imageLanguage, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return requestLanguage;
|
|
|
|
}
|
|
|
|
|
|
|
|
return imageLanguage;
|
|
|
|
}
|
|
|
|
|
2013-10-14 17:34:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Fetches the main result.
|
|
|
|
/// </summary>
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <param name="id">The id.</param>
|
2014-09-28 20:49:43 +00:00
|
|
|
/// <param name="isTmdbId">if set to <c>true</c> [is TMDB identifier].</param>
|
2013-10-22 19:03:21 +00:00
|
|
|
/// <param name="language">The language.</param>
|
2013-03-03 16:05:17 +00:00
|
|
|
/// <param name="cancellationToken">The cancellation token</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <returns>Task{CompleteMovieData}.</returns>
|
2014-09-28 20:49:43 +00:00
|
|
|
internal async Task<CompleteMovieData> FetchMainResult(string id, bool isTmdbId, string language, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2014-01-30 21:23:54 +00:00
|
|
|
var url = string.Format(GetMovieInfo3, id, ApiKey);
|
2013-10-22 19:52:33 +00:00
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(language))
|
|
|
|
{
|
2016-03-12 15:14:17 +00:00
|
|
|
url += string.Format("&language={0}", NormalizeLanguage(language));
|
2013-10-22 19:52:33 +00:00
|
|
|
|
2016-03-04 17:38:51 +00:00
|
|
|
// Get images in english and with no language
|
|
|
|
url += "&include_image_language=" + GetImageLanguagesParam(language);
|
|
|
|
}
|
2014-02-17 21:35:08 +00:00
|
|
|
|
2013-03-03 16:05:17 +00:00
|
|
|
CompleteMovieData mainResult;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
2014-09-28 20:49:43 +00:00
|
|
|
// Cache if not using a tmdbId because we won't have the tmdb cache directory structure. So use the lower level cache.
|
2014-10-02 00:28:16 +00:00
|
|
|
var cacheMode = isTmdbId ? CacheMode.None : CacheMode.Unconditional;
|
2014-09-28 20:49:43 +00:00
|
|
|
var cacheLength = TimeSpan.FromDays(3);
|
|
|
|
|
2015-10-26 05:29:32 +00:00
|
|
|
try
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-10-20 16:16:56 +00:00
|
|
|
using (var response = await GetMovieDbResponse(new HttpRequestOptions
|
2015-10-26 05:29:32 +00:00
|
|
|
{
|
|
|
|
Url = url,
|
|
|
|
CancellationToken = cancellationToken,
|
|
|
|
AcceptHeader = AcceptHeader,
|
|
|
|
CacheMode = cacheMode,
|
|
|
|
CacheLength = cacheLength
|
2013-05-04 04:15:39 +00:00
|
|
|
|
2015-10-26 05:29:32 +00:00
|
|
|
}).ConfigureAwait(false))
|
|
|
|
{
|
2017-10-20 16:16:56 +00:00
|
|
|
using (var json = response.Content)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
mainResult = await _jsonSerializer.DeserializeFromStreamAsync<CompleteMovieData>(json).ConfigureAwait(false);
|
2017-10-20 16:16:56 +00:00
|
|
|
}
|
2015-10-26 05:29:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (HttpException ex)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2015-10-26 05:29:32 +00:00
|
|
|
// Return null so that callers know there is no metadata for this id
|
|
|
|
if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.NotFound)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
2015-01-31 03:19:41 +00:00
|
|
|
// If the language preference isn't english, then have the overview fallback to english if it's blank
|
|
|
|
if (mainResult != null &&
|
2015-10-26 05:29:32 +00:00
|
|
|
string.IsNullOrEmpty(mainResult.overview) &&
|
|
|
|
!string.IsNullOrEmpty(language) &&
|
2015-01-31 03:19:41 +00:00
|
|
|
!string.Equals(language, "en", StringComparison.OrdinalIgnoreCase))
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2018-12-13 13:18:25 +00:00
|
|
|
_logger.LogInformation("MovieDbProvider couldn't find meta for language " + language + ". Trying English...");
|
2013-05-06 22:52:13 +00:00
|
|
|
|
2016-03-04 17:38:51 +00:00
|
|
|
url = string.Format(GetMovieInfo3, id, ApiKey) + "&language=en";
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(language))
|
|
|
|
{
|
|
|
|
// Get images in english and with no language
|
|
|
|
url += "&include_image_language=" + GetImageLanguagesParam(language);
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2017-10-20 16:16:56 +00:00
|
|
|
using (var response = await GetMovieDbResponse(new HttpRequestOptions
|
2015-01-31 03:19:41 +00:00
|
|
|
{
|
|
|
|
Url = url,
|
|
|
|
CancellationToken = cancellationToken,
|
|
|
|
AcceptHeader = AcceptHeader,
|
|
|
|
CacheMode = cacheMode,
|
|
|
|
CacheLength = cacheLength
|
2013-05-04 04:15:39 +00:00
|
|
|
|
2015-01-31 03:19:41 +00:00
|
|
|
}).ConfigureAwait(false))
|
|
|
|
{
|
2017-10-20 16:16:56 +00:00
|
|
|
using (var json = response.Content)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
var englishResult = await _jsonSerializer.DeserializeFromStreamAsync<CompleteMovieData>(json).ConfigureAwait(false);
|
2015-01-31 03:19:41 +00:00
|
|
|
|
2017-10-20 16:16:56 +00:00
|
|
|
mainResult.overview = englishResult.overview;
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-05 03:17:24 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
return mainResult;
|
|
|
|
}
|
|
|
|
|
2015-12-28 17:27:37 +00:00
|
|
|
private static long _lastRequestTicks;
|
2016-01-09 17:57:12 +00:00
|
|
|
// The limit is 40 requests per 10 seconds
|
|
|
|
private static int requestIntervalMs = 300;
|
2015-12-28 17:27:37 +00:00
|
|
|
|
2013-05-19 18:42:58 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the movie db response.
|
|
|
|
/// </summary>
|
2017-10-20 16:16:56 +00:00
|
|
|
internal async Task<HttpResponseInfo> GetMovieDbResponse(HttpRequestOptions options)
|
2013-05-19 18:42:58 +00:00
|
|
|
{
|
2015-12-28 17:27:37 +00:00
|
|
|
var delayTicks = (requestIntervalMs * 10000) - (DateTime.UtcNow.Ticks - _lastRequestTicks);
|
|
|
|
var delayMs = Math.Min(delayTicks / 10000, requestIntervalMs);
|
|
|
|
|
|
|
|
if (delayMs > 0)
|
|
|
|
{
|
2018-12-13 13:18:25 +00:00
|
|
|
_logger.LogDebug("Throttling Tmdb by {0} ms", delayMs);
|
2015-12-28 17:27:37 +00:00
|
|
|
await Task.Delay(Convert.ToInt32(delayMs)).ConfigureAwait(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
_lastRequestTicks = DateTime.UtcNow.Ticks;
|
2013-05-19 18:42:58 +00:00
|
|
|
|
2016-10-31 18:39:41 +00:00
|
|
|
options.BufferContent = true;
|
2019-01-20 00:12:44 +00:00
|
|
|
options.UserAgent = _appHost.ApplicationUserAgent;
|
2016-01-23 01:58:22 +00:00
|
|
|
|
2017-10-20 16:16:56 +00:00
|
|
|
return await _httpClient.SendAsync(options, "GET").ConfigureAwait(false);
|
2013-05-19 18:42:58 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2013-05-06 22:52:13 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Class TmdbTitle
|
|
|
|
/// </summary>
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class TmdbTitle
|
2013-05-06 22:52:13 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the iso_3166_1.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The iso_3166_1.</value>
|
|
|
|
public string iso_3166_1 { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the title.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The title.</value>
|
|
|
|
public string title { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Class TmdbAltTitleResults
|
|
|
|
/// </summary>
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class TmdbAltTitleResults
|
2013-05-06 22:52:13 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the id.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The id.</value>
|
|
|
|
public int id { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the titles.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The titles.</value>
|
|
|
|
public List<TmdbTitle> titles { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class BelongsToCollection
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public int id { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
public string poster_path { get; set; }
|
|
|
|
public string backdrop_path { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class GenreItem
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public int id { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class ProductionCompany
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public string name { get; set; }
|
|
|
|
public int id { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class ProductionCountry
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public string iso_3166_1 { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class SpokenLanguage
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public string iso_639_1 { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Cast
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public int id { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
public string character { get; set; }
|
|
|
|
public int order { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public int cast_id { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
public string profile_path { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Crew
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public int id { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
public string department { get; set; }
|
|
|
|
public string job { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public string profile_path { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Casts
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-05-06 22:52:13 +00:00
|
|
|
public List<Cast> cast { get; set; }
|
|
|
|
public List<Crew> crew { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Country
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public string iso_3166_1 { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public string certification { get; set; }
|
|
|
|
public DateTime release_date { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Releases
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-05-06 22:52:13 +00:00
|
|
|
public List<Country> countries { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Backdrop
|
|
|
|
{
|
|
|
|
public string file_path { get; set; }
|
|
|
|
public int width { get; set; }
|
|
|
|
public int height { get; set; }
|
|
|
|
public object iso_639_1 { get; set; }
|
|
|
|
public double aspect_ratio { get; set; }
|
|
|
|
public double vote_average { get; set; }
|
|
|
|
public int vote_count { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class Poster
|
|
|
|
{
|
|
|
|
public string file_path { get; set; }
|
|
|
|
public int width { get; set; }
|
|
|
|
public int height { get; set; }
|
|
|
|
public string iso_639_1 { get; set; }
|
|
|
|
public double aspect_ratio { get; set; }
|
|
|
|
public double vote_average { get; set; }
|
|
|
|
public int vote_count { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class Images
|
|
|
|
{
|
|
|
|
public List<Backdrop> backdrops { get; set; }
|
|
|
|
public List<Poster> posters { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class Keyword
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public int id { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public string name { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Keywords
|
2013-05-06 22:52:13 +00:00
|
|
|
{
|
|
|
|
public List<Keyword> keywords { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 19:52:33 +00:00
|
|
|
internal class Youtube
|
|
|
|
{
|
|
|
|
public string name { get; set; }
|
|
|
|
public string size { get; set; }
|
|
|
|
public string source { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class Trailers
|
|
|
|
{
|
|
|
|
public List<object> quicktime { get; set; }
|
|
|
|
public List<Youtube> youtube { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class CompleteMovieData
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
public bool adult { get; set; }
|
|
|
|
public string backdrop_path { get; set; }
|
|
|
|
public BelongsToCollection belongs_to_collection { get; set; }
|
|
|
|
public int budget { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public List<GenreItem> genres { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
public string homepage { get; set; }
|
|
|
|
public int id { get; set; }
|
|
|
|
public string imdb_id { get; set; }
|
|
|
|
public string original_title { get; set; }
|
2015-03-10 01:30:20 +00:00
|
|
|
public string original_name { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
public string overview { get; set; }
|
|
|
|
public double popularity { get; set; }
|
|
|
|
public string poster_path { get; set; }
|
|
|
|
public List<ProductionCompany> production_companies { get; set; }
|
|
|
|
public List<ProductionCountry> production_countries { get; set; }
|
2014-03-02 18:01:46 +00:00
|
|
|
public string release_date { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
public int revenue { get; set; }
|
|
|
|
public int runtime { get; set; }
|
|
|
|
public List<SpokenLanguage> spoken_languages { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public string status { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
public string tagline { get; set; }
|
|
|
|
public string title { get; set; }
|
2013-10-22 19:52:33 +00:00
|
|
|
public string name { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
public double vote_average { get; set; }
|
|
|
|
public int vote_count { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public Casts casts { get; set; }
|
|
|
|
public Releases releases { get; set; }
|
2013-10-22 19:52:33 +00:00
|
|
|
public Images images { get; set; }
|
2013-05-06 22:52:13 +00:00
|
|
|
public Keywords keywords { get; set; }
|
2013-06-27 16:36:41 +00:00
|
|
|
public Trailers trailers { get; set; }
|
2015-03-10 01:30:20 +00:00
|
|
|
|
|
|
|
public string GetOriginalTitle()
|
|
|
|
{
|
|
|
|
return original_name ?? original_title;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string GetTitle()
|
|
|
|
{
|
|
|
|
return name ?? title ?? GetOriginalTitle();
|
|
|
|
}
|
2013-06-27 16:36:41 +00:00
|
|
|
}
|
2014-02-15 16:36:09 +00:00
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
public int Order => 1;
|
2014-02-20 04:53:15 +00:00
|
|
|
|
|
|
|
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
|
|
|
|
{
|
2014-03-01 22:34:27 +00:00
|
|
|
return _httpClient.GetResponse(new HttpRequestOptions
|
|
|
|
{
|
|
|
|
CancellationToken = cancellationToken,
|
2016-10-29 23:49:23 +00:00
|
|
|
Url = url
|
2014-03-01 22:34:27 +00:00
|
|
|
});
|
2014-02-20 04:53:15 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|