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;
|
2019-08-18 11:20:52 +00:00
|
|
|
using MediaBrowser.Providers.Tmdb.Models.Movies;
|
2019-01-13 19:26:31 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
namespace MediaBrowser.Providers.Tmdb.Movies
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class MovieDbProvider
|
|
|
|
/// </summary>
|
2019-08-18 11:20:52 +00:00
|
|
|
public class TmdbMovieProvider : IRemoteMetadataProvider<Movie, MovieInfo>, IHasOrder
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-08-18 11:20:52 +00:00
|
|
|
internal static TmdbMovieProvider Current { get; private set; }
|
2013-03-04 05:43:06 +00:00
|
|
|
|
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
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
public TmdbMovieProvider(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);
|
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
var obj = _jsonSerializer.DeserializeFromFile<MovieResult>(dataFilePath);
|
2014-03-02 17:09:35 +00:00
|
|
|
|
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,
|
2019-08-18 12:44:13 +00:00
|
|
|
ImageUrl = string.IsNullOrWhiteSpace(obj.Poster_Path) ? null : tmdbImageUrl + obj.Poster_Path
|
2014-03-02 17:09:35 +00:00
|
|
|
};
|
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
if (!string.IsNullOrWhiteSpace(obj.Release_Date))
|
2014-03-02 18:01:46 +00:00
|
|
|
{
|
|
|
|
// These dates are always in this exact format
|
2019-08-18 12:44:13 +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
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
remoteResult.SetProviderId(MetadataProviders.Tmdb, obj.Id.ToString(_usCulture));
|
2014-03-02 17:09:35 +00:00
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
if (!string.IsNullOrWhiteSpace(obj.Imdb_Id))
|
2014-03-02 17:09:35 +00:00
|
|
|
{
|
2019-08-18 12:44:13 +00:00
|
|
|
remoteResult.SetProviderId(MetadataProviders.Imdb, obj.Imdb_Id);
|
2014-03-02 17:09:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return new[] { remoteResult };
|
|
|
|
}
|
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
return await new TmdbSearch(_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
|
|
|
{
|
2019-08-18 11:20:52 +00:00
|
|
|
var movieDb = new GenericTmdbMovieInfo<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-08-18 11:20:52 +00:00
|
|
|
public string Name => TmdbUtils.ProviderName;
|
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
|
|
|
{
|
2019-08-18 11:20:52 +00:00
|
|
|
Url = string.Format(TmdbConfigUrl, TmdbUtils.ApiKey),
|
2014-04-13 17:27:13 +00:00
|
|
|
CancellationToken = cancellationToken,
|
2019-08-18 11:20:52 +00:00
|
|
|
AcceptHeader = TmdbUtils.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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-18 11:34:44 +00:00
|
|
|
private const string TmdbConfigUrl = TmdbUtils.BaseTmdbApiUrl + "3/configuration?api_key={0}";
|
|
|
|
private const string GetMovieInfo3 = TmdbUtils.BaseTmdbApiUrl + @"3/movie/{0}?api_key={1}&append_to_response=casts,releases,images,keywords,trailers";
|
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
|
|
|
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(Path.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)
|
|
|
|
{
|
2019-01-27 11:03:43 +00:00
|
|
|
language = parts[0] + "-" + parts[1].ToUpperInvariant();
|
2016-06-24 23:53:38 +00:00
|
|
|
}
|
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>
|
2019-08-18 11:20:52 +00:00
|
|
|
internal async Task<MovieResult> FetchMainResult(string id, bool isTmdbId, string language, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-08-18 11:20:52 +00:00
|
|
|
var url = string.Format(GetMovieInfo3, id, TmdbUtils.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
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
MovieResult 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,
|
2019-08-18 11:20:52 +00:00
|
|
|
AcceptHeader = TmdbUtils.AcceptHeader,
|
2015-10-26 05:29:32 +00:00
|
|
|
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)
|
|
|
|
{
|
2019-08-18 11:20:52 +00:00
|
|
|
mainResult = await _jsonSerializer.DeserializeFromStreamAsync<MovieResult>(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 &&
|
2019-08-18 12:44:13 +00:00
|
|
|
string.IsNullOrEmpty(mainResult.Overview) &&
|
2015-10-26 05:29:32 +00:00
|
|
|
!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
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
url = string.Format(GetMovieInfo3, id, TmdbUtils.ApiKey) + "&language=en";
|
2016-03-04 17:38:51 +00:00
|
|
|
|
|
|
|
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,
|
2019-08-18 11:20:52 +00:00
|
|
|
AcceptHeader = TmdbUtils.AcceptHeader,
|
2015-01-31 03:19:41 +00:00
|
|
|
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)
|
|
|
|
{
|
2019-08-18 11:20:52 +00:00
|
|
|
var englishResult = await _jsonSerializer.DeserializeFromStreamAsync<MovieResult>(json).ConfigureAwait(false);
|
2015-01-31 03:19:41 +00:00
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
mainResult.Overview = englishResult.Overview;
|
2017-10-20 16:16:56 +00:00
|
|
|
}
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|