2013-05-27 22:25:04 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Common.IO;
|
2013-05-12 22:57:51 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
2013-06-25 01:22:21 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-06-09 16:47:28 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-03-02 17:59:15 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-11-01 15:55:25 +00:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
2013-11-01 15:55:25 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-05-27 22:25:04 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
|
namespace MediaBrowser.Providers.Movies
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class FanArtMovieProvider
|
|
|
|
|
/// </summary>
|
2013-05-27 22:25:04 +00:00
|
|
|
|
class FanArtMovieProvider : FanartBaseProvider
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-25 00:13:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP client.</value>
|
|
|
|
|
protected IHttpClient HttpClient { get; private set; }
|
|
|
|
|
|
2013-05-27 22:25:04 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _provider manager
|
|
|
|
|
/// </summary>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
2013-04-10 15:56:36 +00:00
|
|
|
|
|
2013-05-27 22:25:04 +00:00
|
|
|
|
internal static FanArtMovieProvider Current { get; private set; }
|
2013-10-31 14:03:23 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2013-05-27 22:25:04 +00:00
|
|
|
|
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="FanArtMovieProvider" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="httpClient">The HTTP client.</param>
|
|
|
|
|
/// <param name="logManager">The log manager.</param>
|
|
|
|
|
/// <param name="configurationManager">The configuration manager.</param>
|
2013-04-10 15:56:36 +00:00
|
|
|
|
/// <param name="providerManager">The provider manager.</param>
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// <exception cref="System.ArgumentNullException">httpClient</exception>
|
2013-10-31 14:03:23 +00:00
|
|
|
|
public FanArtMovieProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager, IFileSystem fileSystem)
|
2013-03-04 05:43:06 +00:00
|
|
|
|
: base(logManager, configurationManager)
|
2013-02-25 00:13:45 +00:00
|
|
|
|
{
|
|
|
|
|
if (httpClient == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("httpClient");
|
|
|
|
|
}
|
|
|
|
|
HttpClient = httpClient;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
_providerManager = providerManager;
|
2013-10-31 14:03:23 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2013-05-27 22:25:04 +00:00
|
|
|
|
Current = this;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
|
2013-06-25 01:22:21 +00:00
|
|
|
|
public override ItemUpdateType ItemUpdateType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ItemUpdateType.ImageUpdate;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-10-13 19:22:55 +00:00
|
|
|
|
|
2013-05-12 22:57:51 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [refresh on version change].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [refresh on version change]; otherwise, <c>false</c>.</value>
|
|
|
|
|
protected override bool RefreshOnVersionChange
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the provider version.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The provider version.</value>
|
|
|
|
|
protected override string ProviderVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-05-27 22:25:04 +00:00
|
|
|
|
return "13";
|
2013-05-12 22:57:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-24 16:05:53 +00:00
|
|
|
|
|
2013-06-13 18:45:58 +00:00
|
|
|
|
public override MetadataProviderPriority Priority
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-10-21 14:38:48 +00:00
|
|
|
|
return MetadataProviderPriority.Fifth;
|
2013-06-13 18:45:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The fan art base URL
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected string FanArtBaseUrl = "http://api.fanart.tv/webservice/movie/{0}/{1}/xml/all/1/1";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Supportses the specified item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
|
|
|
|
public override bool Supports(BaseItem item)
|
|
|
|
|
{
|
2013-05-06 15:49:14 +00:00
|
|
|
|
var trailer = item as Trailer;
|
|
|
|
|
|
|
|
|
|
if (trailer != null)
|
|
|
|
|
{
|
|
|
|
|
return !trailer.IsLocalTrailer;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-28 01:59:26 +00:00
|
|
|
|
return item is Movie || item is BoxSet || item is MusicVideo;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-04-28 23:39:17 +00:00
|
|
|
|
/// Needses the refresh internal.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="providerInfo">The provider info.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
2013-04-28 23:39:17 +00:00
|
|
|
|
protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
if (string.IsNullOrEmpty(item.GetProviderId(MetadataProviders.Tmdb)))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-05-24 16:05:53 +00:00
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
return base.NeedsRefreshInternal(item, providerInfo);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-13 19:22:55 +00:00
|
|
|
|
protected override bool NeedsRefreshBasedOnCompareDate(BaseItem item, BaseProviderInfo providerInfo)
|
2013-05-12 22:57:51 +00:00
|
|
|
|
{
|
2013-06-21 13:43:34 +00:00
|
|
|
|
var id = item.GetProviderId(MetadataProviders.Tmdb);
|
|
|
|
|
|
2013-05-27 22:25:04 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(id))
|
|
|
|
|
{
|
|
|
|
|
// Process images
|
2013-11-01 01:48:14 +00:00
|
|
|
|
var xmlPath = GetFanartXmlPath(id);
|
2013-05-27 22:25:04 +00:00
|
|
|
|
|
2013-11-01 01:48:14 +00:00
|
|
|
|
var fileInfo = new FileInfo(xmlPath);
|
|
|
|
|
|
|
|
|
|
return !fileInfo.Exists || _fileSystem.GetLastWriteTimeUtc(fileInfo) > providerInfo.LastRefreshed;
|
2013-05-27 22:25:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-13 19:22:55 +00:00
|
|
|
|
return base.NeedsRefreshBasedOnCompareDate(item, providerInfo);
|
2013-05-27 22:25:04 +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>
|
|
|
|
|
internal static string GetMovieDataPath(IApplicationPaths appPaths, string tmdbId)
|
|
|
|
|
{
|
|
|
|
|
var dataPath = Path.Combine(GetMoviesDataPath(appPaths), tmdbId);
|
|
|
|
|
|
|
|
|
|
return dataPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the movie data path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="appPaths">The app paths.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
internal static string GetMoviesDataPath(IApplicationPaths appPaths)
|
|
|
|
|
{
|
|
|
|
|
var dataPath = Path.Combine(appPaths.DataPath, "fanart-movies");
|
|
|
|
|
|
|
|
|
|
return dataPath;
|
2013-05-12 22:57:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches metadata and returns true or false indicating if any work that requires persistence was done
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="force">if set to <c>true</c> [force].</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{System.Boolean}.</returns>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2013-05-27 22:25:04 +00:00
|
|
|
|
var movieId = item.GetProviderId(MetadataProviders.Tmdb);
|
2013-05-24 16:05:53 +00:00
|
|
|
|
|
2013-08-20 12:20:12 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(movieId))
|
2013-05-27 22:25:04 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var xmlPath = GetFanartXmlPath(movieId);
|
2013-05-27 22:25:04 +00:00
|
|
|
|
|
2013-08-20 12:20:12 +00:00
|
|
|
|
// Only download the xml if it doesn't already exist. The prescan task will take care of getting updates
|
|
|
|
|
if (!File.Exists(xmlPath))
|
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await DownloadMovieXml(movieId, cancellationToken).ConfigureAwait(false);
|
2013-08-20 12:20:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-01 19:54:25 +00:00
|
|
|
|
var images = await _providerManager.GetAvailableRemoteImages(item, cancellationToken, ManualFanartMovieImageProvider.ProviderName).ConfigureAwait(false);
|
2013-11-01 15:55:25 +00:00
|
|
|
|
|
2013-11-01 19:54:25 +00:00
|
|
|
|
await FetchImages(item, images.ToList(), cancellationToken).ConfigureAwait(false);
|
2013-05-27 22:25:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-11-01 01:48:14 +00:00
|
|
|
|
|
|
|
|
|
public string GetFanartXmlPath(string tmdbId)
|
|
|
|
|
{
|
|
|
|
|
var movieDataPath = GetMovieDataPath(ConfigurationManager.ApplicationPaths, tmdbId);
|
|
|
|
|
return Path.Combine(movieDataPath, "fanart.xml");
|
|
|
|
|
}
|
2013-05-27 22:25:04 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Downloads the movie XML.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="tmdbId">The TMDB id.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-11-01 15:55:25 +00:00
|
|
|
|
internal async Task DownloadMovieXml(string tmdbId, CancellationToken cancellationToken)
|
2013-05-27 22:25:04 +00:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var url = string.Format(FanArtBaseUrl, ApiKey, tmdbId);
|
2013-04-13 18:02:30 +00:00
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var xmlPath = GetFanartXmlPath(tmdbId);
|
2013-05-27 22:25:04 +00:00
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(xmlPath));
|
2013-10-04 15:22:03 +00:00
|
|
|
|
|
2013-05-27 22:25:04 +00:00
|
|
|
|
using (var response = await HttpClient.Get(new HttpRequestOptions
|
2013-04-13 18:02:30 +00:00
|
|
|
|
{
|
2013-05-12 22:57:51 +00:00
|
|
|
|
Url = url,
|
|
|
|
|
ResourcePool = FanArtResourcePool,
|
2013-05-24 16:51:42 +00:00
|
|
|
|
CancellationToken = cancellationToken
|
2013-05-06 19:31:57 +00:00
|
|
|
|
|
2013-05-12 22:57:51 +00:00
|
|
|
|
}).ConfigureAwait(false))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-10-31 14:03:23 +00:00
|
|
|
|
using (var xmlFileStream = _fileSystem.GetFileStream(xmlPath, FileMode.Create, FileAccess.Write, FileShare.Read, true))
|
2013-05-27 22:25:04 +00:00
|
|
|
|
{
|
|
|
|
|
await response.CopyToAsync(xmlFileStream).ConfigureAwait(false);
|
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
2013-05-27 22:25:04 +00:00
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
private async Task FetchImages(BaseItem item, List<RemoteImageInfo> images, CancellationToken cancellationToken)
|
2013-05-27 22:25:04 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-10-29 18:47:47 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMovieImages.Primary && !item.HasImage(ImageType.Primary))
|
2013-10-21 14:38:48 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var image = images.FirstOrDefault(i => i.Type == ImageType.Primary);
|
|
|
|
|
|
|
|
|
|
if (image != null)
|
2013-10-21 14:38:48 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, ImageType.Primary, null, cancellationToken).ConfigureAwait(false);
|
2013-10-21 14:38:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-10-16 14:39:33 +00:00
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-11-01 15:55:25 +00:00
|
|
|
|
|
2013-06-19 13:54:45 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMovieImages.Logo && !item.HasImage(ImageType.Logo))
|
2013-05-24 16:05:53 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var image = images.FirstOrDefault(i => i.Type == ImageType.Logo);
|
|
|
|
|
|
|
|
|
|
if (image != null)
|
2013-04-28 23:39:17 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, ImageType.Logo, null, cancellationToken).ConfigureAwait(false);
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
2013-05-24 16:05:53 +00:00
|
|
|
|
}
|
2013-11-01 15:55:25 +00:00
|
|
|
|
|
2013-05-24 16:05:53 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-05-06 15:49:14 +00:00
|
|
|
|
|
2013-06-19 13:54:45 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMovieImages.Art && !item.HasImage(ImageType.Art))
|
2013-05-24 16:05:53 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var image = images.FirstOrDefault(i => i.Type == ImageType.Art);
|
|
|
|
|
|
|
|
|
|
if (image != null)
|
2013-04-28 23:39:17 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, ImageType.Art, null, cancellationToken).ConfigureAwait(false);
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
2013-05-24 16:05:53 +00:00
|
|
|
|
}
|
2013-11-01 15:55:25 +00:00
|
|
|
|
|
2013-05-24 16:05:53 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-06-19 13:54:45 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMovieImages.Disc && !item.HasImage(ImageType.Disc))
|
2013-05-24 16:05:53 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var image = images.FirstOrDefault(i => i.Type == ImageType.Disc);
|
|
|
|
|
|
|
|
|
|
if (image != null)
|
2013-05-24 16:05:53 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, ImageType.Disc, null, cancellationToken).ConfigureAwait(false);
|
2013-05-24 16:05:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-25 00:13:45 +00:00
|
|
|
|
|
2013-05-24 16:05:53 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-05-06 15:49:14 +00:00
|
|
|
|
|
2013-06-19 13:54:45 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMovieImages.Banner && !item.HasImage(ImageType.Banner))
|
2013-05-24 16:05:53 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var image = images.FirstOrDefault(i => i.Type == ImageType.Banner);
|
|
|
|
|
|
|
|
|
|
if (image != null)
|
2013-04-28 23:39:17 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, ImageType.Banner, null, cancellationToken).ConfigureAwait(false);
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
2013-05-24 16:05:53 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-24 16:05:53 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-05-06 15:49:14 +00:00
|
|
|
|
|
2013-06-19 13:54:45 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMovieImages.Thumb && !item.HasImage(ImageType.Thumb))
|
2013-05-24 16:05:53 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var image = images.FirstOrDefault(i => i.Type == ImageType.Thumb);
|
|
|
|
|
|
|
|
|
|
if (image != null)
|
2013-04-28 23:39:17 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, ImageType.Thumb, null, cancellationToken).ConfigureAwait(false);
|
2013-05-12 22:57:51 +00:00
|
|
|
|
}
|
2013-05-24 16:05:53 +00:00
|
|
|
|
}
|
2013-05-12 22:57:51 +00:00
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2013-10-22 19:03:21 +00:00
|
|
|
|
var backdropLimit = ConfigurationManager.Configuration.MaxBackdrops;
|
2013-11-01 15:55:25 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMovieImages.Backdrops &&
|
|
|
|
|
item.BackdropImagePaths.Count < backdropLimit)
|
2013-05-24 16:05:53 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
var numBackdrops = item.BackdropImagePaths.Count;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
foreach (var image in images.Where(i => i.Type == ImageType.Backdrop))
|
2013-05-12 22:57:51 +00:00
|
|
|
|
{
|
2013-11-01 15:55:25 +00:00
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, ImageType.Backdrop, numBackdrops, cancellationToken)
|
|
|
|
|
.ConfigureAwait(false);
|
2013-05-12 22:57:51 +00:00
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
numBackdrops++;
|
2013-05-12 22:57:51 +00:00
|
|
|
|
|
2013-11-01 15:55:25 +00:00
|
|
|
|
if (item.BackdropImagePaths.Count >= backdropLimit) break;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-08 05:08:27 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|