|
|
|
@ -3,6 +3,7 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
@ -508,7 +509,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
/// <returns>The absolute URL.</returns>
|
|
|
|
|
public string GetPosterUrl(string posterPath)
|
|
|
|
|
{
|
|
|
|
|
return GetUrl(_tmDbClient.Config.Images.PosterSizes[^1], posterPath);
|
|
|
|
|
return GetUrl(Plugin.Instance.Configuration.PosterSize, posterPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -518,7 +519,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
/// <returns>The absolute URL.</returns>
|
|
|
|
|
public string GetProfileUrl(string actorProfilePath)
|
|
|
|
|
{
|
|
|
|
|
return GetUrl(_tmDbClient.Config.Images.ProfileSizes[^1], actorProfilePath);
|
|
|
|
|
return GetUrl(Plugin.Instance.Configuration.ProfileSize, actorProfilePath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -529,7 +530,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
/// <param name="results">The collection to add the remote images into.</param>
|
|
|
|
|
public void ConvertPostersToRemoteImageInfo(List<ImageData> images, string requestLanguage, List<RemoteImageInfo> results)
|
|
|
|
|
{
|
|
|
|
|
ConvertToRemoteImageInfo(images, _tmDbClient.Config.Images.PosterSizes[^1], ImageType.Primary, requestLanguage, results);
|
|
|
|
|
ConvertToRemoteImageInfo(images, Plugin.Instance.Configuration.PosterSize, ImageType.Primary, requestLanguage, results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -540,7 +541,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
/// <param name="results">The collection to add the remote images into.</param>
|
|
|
|
|
public void ConvertBackdropsToRemoteImageInfo(List<ImageData> images, string requestLanguage, List<RemoteImageInfo> results)
|
|
|
|
|
{
|
|
|
|
|
ConvertToRemoteImageInfo(images, _tmDbClient.Config.Images.BackdropSizes[^1], ImageType.Backdrop, requestLanguage, results);
|
|
|
|
|
ConvertToRemoteImageInfo(images, Plugin.Instance.Configuration.BackdropSize, ImageType.Backdrop, requestLanguage, results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -551,7 +552,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
/// <param name="results">The collection to add the remote images into.</param>
|
|
|
|
|
public void ConvertProfilesToRemoteImageInfo(List<ImageData> images, string requestLanguage, List<RemoteImageInfo> results)
|
|
|
|
|
{
|
|
|
|
|
ConvertToRemoteImageInfo(images, _tmDbClient.Config.Images.ProfileSizes[^1], ImageType.Primary, requestLanguage, results);
|
|
|
|
|
ConvertToRemoteImageInfo(images, Plugin.Instance.Configuration.ProfileSize, ImageType.Primary, requestLanguage, results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -562,7 +563,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
/// <param name="results">The collection to add the remote images into.</param>
|
|
|
|
|
public void ConvertStillsToRemoteImageInfo(List<ImageData> images, string requestLanguage, List<RemoteImageInfo> results)
|
|
|
|
|
{
|
|
|
|
|
ConvertToRemoteImageInfo(images, _tmDbClient.Config.Images.StillSizes[^1], ImageType.Primary, requestLanguage, results);
|
|
|
|
|
ConvertToRemoteImageInfo(images, Plugin.Instance.Configuration.StillSize, ImageType.Primary, requestLanguage, results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -575,16 +576,51 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
/// <param name="results">The collection to add the remote images into.</param>
|
|
|
|
|
private void ConvertToRemoteImageInfo(List<ImageData> images, string size, ImageType type, string requestLanguage, List<RemoteImageInfo> results)
|
|
|
|
|
{
|
|
|
|
|
int? targetHeight = null;
|
|
|
|
|
int? targetWidth = null;
|
|
|
|
|
var match = Regex.Match(size, @"(?<dimension>[hw])(?<size>[0-9]+)");
|
|
|
|
|
if (match.Success)
|
|
|
|
|
{
|
|
|
|
|
var targetSize = int.Parse(match.Groups["size"].Value, NumberStyles.Integer, CultureInfo.InvariantCulture);
|
|
|
|
|
if (string.Equals(match.Groups["dimension"].Value, "h", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
targetHeight = targetSize;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
targetWidth = targetSize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < images.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
var image = images[i];
|
|
|
|
|
|
|
|
|
|
int width;
|
|
|
|
|
int height;
|
|
|
|
|
if (targetHeight.HasValue)
|
|
|
|
|
{
|
|
|
|
|
width = (int)Math.Round((double)targetHeight.Value / image.Height * image.Width);
|
|
|
|
|
height = targetHeight.Value;
|
|
|
|
|
}
|
|
|
|
|
else if (targetWidth.HasValue)
|
|
|
|
|
{
|
|
|
|
|
height = (int)Math.Round((double)targetWidth.Value / image.Width * image.Height);
|
|
|
|
|
width = targetWidth.Value;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
width = image.Width;
|
|
|
|
|
height = image.Height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
results.Add(new RemoteImageInfo
|
|
|
|
|
{
|
|
|
|
|
Url = GetUrl(size, image.FilePath),
|
|
|
|
|
CommunityRating = image.VoteAverage,
|
|
|
|
|
VoteCount = image.VoteCount,
|
|
|
|
|
Width = image.Width,
|
|
|
|
|
Height = image.Height,
|
|
|
|
|
Width = width,
|
|
|
|
|
Height = height,
|
|
|
|
|
Language = TmdbUtils.AdjustImageLanguage(image.Iso_639_1, requestLanguage),
|
|
|
|
|
ProviderName = TmdbUtils.ProviderName,
|
|
|
|
|
Type = type,
|
|
|
|
@ -593,9 +629,44 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Task EnsureClientConfigAsync()
|
|
|
|
|
private async Task EnsureClientConfigAsync()
|
|
|
|
|
{
|
|
|
|
|
return !_tmDbClient.HasConfig ? _tmDbClient.GetConfigAsync() : Task.CompletedTask;
|
|
|
|
|
if (!_tmDbClient.HasConfig)
|
|
|
|
|
{
|
|
|
|
|
var config = await _tmDbClient.GetConfigAsync().ConfigureAwait(false);
|
|
|
|
|
ValidatePreferences(config);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void ValidatePreferences(TMDbConfig config)
|
|
|
|
|
{
|
|
|
|
|
var imageConfig = config.Images;
|
|
|
|
|
|
|
|
|
|
var pluginConfig = Plugin.Instance.Configuration;
|
|
|
|
|
|
|
|
|
|
pluginConfig.PosterSizeOptions = imageConfig.PosterSizes;
|
|
|
|
|
if (!pluginConfig.PosterSizeOptions.Contains(pluginConfig.PosterSize))
|
|
|
|
|
{
|
|
|
|
|
pluginConfig.PosterSize = pluginConfig.PosterSizeOptions[^1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pluginConfig.BackdropSizeOptions = imageConfig.BackdropSizes;
|
|
|
|
|
if (!pluginConfig.BackdropSizeOptions.Contains(pluginConfig.BackdropSize))
|
|
|
|
|
{
|
|
|
|
|
pluginConfig.BackdropSize = pluginConfig.BackdropSizeOptions[^1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pluginConfig.ProfileSizeOptions = imageConfig.ProfileSizes;
|
|
|
|
|
if (!pluginConfig.ProfileSizeOptions.Contains(pluginConfig.ProfileSize))
|
|
|
|
|
{
|
|
|
|
|
pluginConfig.ProfileSize = pluginConfig.ProfileSizeOptions[^1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pluginConfig.StillSizeOptions = imageConfig.StillSizes;
|
|
|
|
|
if (!pluginConfig.StillSizeOptions.Contains(pluginConfig.StillSize))
|
|
|
|
|
{
|
|
|
|
|
pluginConfig.StillSize = pluginConfig.StillSizeOptions[^1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|