jellyfin/MediaBrowser.Controller/Providers/Movies/FanArtMovieProvider.cs

304 lines
12 KiB
C#
Raw Normal View History

2013-05-13 00:57:51 +02:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.Net;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Model.Entities;
2013-03-02 18:59:15 +01:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Net;
using System;
2013-05-13 00:57:51 +02:00
using System.Collections.Generic;
using System.Globalization;
2013-02-21 02:33:05 +01:00
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
namespace MediaBrowser.Controller.Providers.Movies
{
/// <summary>
/// Class FanArtMovieProvider
/// </summary>
class FanArtMovieProvider : FanartBaseProvider, IDisposable
2013-02-21 02:33:05 +01:00
{
2013-02-25 01:13:45 +01:00
/// <summary>
/// Gets the HTTP client.
/// </summary>
/// <value>The HTTP client.</value>
protected IHttpClient HttpClient { get; private set; }
private readonly IProviderManager _providerManager;
2013-05-13 00:57:51 +02:00
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
2013-03-04 06:43:06 +01: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>
/// <param name="providerManager">The provider manager.</param>
2013-03-04 06:43:06 +01:00
/// <exception cref="System.ArgumentNullException">httpClient</exception>
public FanArtMovieProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
2013-03-04 06:43:06 +01:00
: base(logManager, configurationManager)
2013-02-25 01:13:45 +01:00
{
if (httpClient == null)
{
throw new ArgumentNullException("httpClient");
}
HttpClient = httpClient;
_providerManager = providerManager;
2013-02-25 01:13:45 +01:00
}
2013-03-04 06:43:06 +01:00
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool dispose)
2013-03-04 06:43:06 +01:00
{
if (dispose)
{
FanArtResourcePool.Dispose();
}
}
2013-04-29 01:39:17 +02:00
2013-05-13 00:57:51 +02: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
{
return "12";
}
}
2013-05-24 18:05:53 +02:00
2013-02-21 02:33:05 +01: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 17:49:14 +02:00
var trailer = item as Trailer;
if (trailer != null)
{
return !trailer.IsLocalTrailer;
}
2013-02-21 02:33:05 +01:00
return item is Movie || item is BoxSet;
}
/// <summary>
2013-04-29 01:39:17 +02:00
/// Needses the refresh internal.
2013-02-21 02:33:05 +01: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-29 01:39:17 +02:00
protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo)
2013-02-21 02:33:05 +01:00
{
2013-04-29 01:39:17 +02:00
if (string.IsNullOrEmpty(item.GetProviderId(MetadataProviders.Tmdb)))
{
return false;
}
2013-05-24 18:05:53 +02:00
2013-04-29 01:39:17 +02:00
if (!ConfigurationManager.Configuration.DownloadMovieImages.Art &&
!ConfigurationManager.Configuration.DownloadMovieImages.Logo &&
2013-05-13 00:57:51 +02:00
!ConfigurationManager.Configuration.DownloadMovieImages.Disc &&
!ConfigurationManager.Configuration.DownloadMovieImages.Backdrops &&
!ConfigurationManager.Configuration.DownloadMovieImages.Banner &&
!ConfigurationManager.Configuration.DownloadMovieImages.Thumb)
2013-04-29 01:39:17 +02:00
{
return false;
}
// Refresh if tmdb id has changed
if (providerInfo.Data != GetComparisonData(item.GetProviderId(MetadataProviders.Tmdb)))
{
return true;
}
2013-04-29 01:39:17 +02:00
return base.NeedsRefreshInternal(item, providerInfo);
2013-02-21 02:33:05 +01:00
}
2013-05-13 00:57:51 +02:00
/// <summary>
/// Gets the comparison data.
/// </summary>
/// <returns>Guid.</returns>
private Guid GetComparisonData(string id)
{
return string.IsNullOrEmpty(id) ? Guid.Empty : id.GetMD5();
}
2013-02-21 02:33:05 +01: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>
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
cancellationToken.ThrowIfCancellationRequested();
2013-05-13 00:57:51 +02:00
BaseProviderInfo data;
if (!item.ProviderData.TryGetValue(Id, out data))
{
data = new BaseProviderInfo();
item.ProviderData[Id] = data;
}
var status = ProviderRefreshStatus.Success;
2013-05-24 18:05:53 +02:00
2013-02-21 02:33:05 +01:00
var movie = item;
2013-04-29 01:39:17 +02:00
var language = ConfigurationManager.Configuration.PreferredMetadataLanguage.ToLower();
2013-05-19 23:20:47 +02:00
var url = string.Format(FanArtBaseUrl, ApiKey, movie.GetProviderId(MetadataProviders.Tmdb));
2013-04-29 01:39:17 +02:00
var doc = new XmlDocument();
2013-05-13 00:57:51 +02:00
using (var xml = await HttpClient.Get(new HttpRequestOptions
{
2013-05-13 00:57:51 +02:00
Url = url,
ResourcePool = FanArtResourcePool,
CancellationToken = cancellationToken,
EnableResponseCache = true
2013-05-13 00:57:51 +02:00
}).ConfigureAwait(false))
2013-02-21 02:33:05 +01:00
{
2013-05-13 00:57:51 +02:00
doc.Load(xml);
2013-04-29 01:39:17 +02:00
}
cancellationToken.ThrowIfCancellationRequested();
2013-02-21 02:33:05 +01:00
2013-05-06 17:49:14 +02:00
var saveLocal = ConfigurationManager.Configuration.SaveLocalMeta &&
item.LocationType == LocationType.FileSystem;
2013-05-24 18:05:53 +02:00
string path;
var hd = ConfigurationManager.Configuration.DownloadHDFanArt ? "hd" : "";
2013-05-06 17:49:14 +02:00
2013-05-24 18:05:53 +02:00
if (ConfigurationManager.Configuration.DownloadMovieImages.Logo && !item.HasImage(ImageType.Logo))
{
var node =
doc.SelectSingleNode("//fanart/movie/movielogos/" + hd + "movielogo[@lang = \"" + language + "\"]/@url") ??
doc.SelectSingleNode("//fanart/movie/movielogos/movielogo[@lang = \"" + language + "\"]/@url");
if (node == null && language != "en")
2013-02-21 02:33:05 +01:00
{
2013-05-24 18:05:53 +02:00
//maybe just couldn't find language - try just first one
node = doc.SelectSingleNode("//fanart/movie/movielogos/" + hd + "movielogo/@url");
2013-04-29 01:39:17 +02:00
}
2013-05-24 18:05:53 +02:00
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-04-29 01:39:17 +02:00
{
2013-05-24 18:05:53 +02:00
movie.SetImage(ImageType.Logo, await _providerManager.DownloadAndSaveImage(movie, path, LogoFile, saveLocal, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-04-29 01:39:17 +02:00
}
2013-05-24 18:05:53 +02:00
}
cancellationToken.ThrowIfCancellationRequested();
2013-05-06 17:49:14 +02:00
2013-05-24 18:05:53 +02:00
if (ConfigurationManager.Configuration.DownloadMovieImages.Art && !item.HasImage(ImageType.Art))
{
var node =
doc.SelectSingleNode("//fanart/movie/moviearts/" + hd + "movieart[@lang = \"" + language + "\"]/@url") ??
doc.SelectSingleNode("//fanart/movie/moviearts/" + hd + "movieart/@url") ??
doc.SelectSingleNode("//fanart/movie/moviearts/movieart[@lang = \"" + language + "\"]/@url") ??
doc.SelectSingleNode("//fanart/movie/moviearts/movieart/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-04-29 01:39:17 +02:00
{
2013-05-24 18:05:53 +02:00
movie.SetImage(ImageType.Art, await _providerManager.DownloadAndSaveImage(movie, path, ArtFile, saveLocal, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-04-29 01:39:17 +02:00
}
2013-05-24 18:05:53 +02:00
}
cancellationToken.ThrowIfCancellationRequested();
2013-02-21 02:33:05 +01:00
2013-05-24 18:05:53 +02:00
if (ConfigurationManager.Configuration.DownloadMovieImages.Disc && !item.HasImage(ImageType.Disc))
{
var node = doc.SelectSingleNode("//fanart/movie/moviediscs/moviedisc[@lang = \"" + language + "\"]/@url") ??
doc.SelectSingleNode("//fanart/movie/moviediscs/moviedisc/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
{
movie.SetImage(ImageType.Disc, await _providerManager.DownloadAndSaveImage(movie, path, DiscFile, saveLocal, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
}
}
2013-02-25 01:13:45 +01:00
2013-05-24 18:05:53 +02:00
cancellationToken.ThrowIfCancellationRequested();
2013-05-06 17:49:14 +02:00
2013-05-24 18:05:53 +02:00
if (ConfigurationManager.Configuration.DownloadMovieImages.Banner && !item.HasImage(ImageType.Banner))
{
var node = doc.SelectSingleNode("//fanart/movie/moviebanners/moviebanner[@lang = \"" + language + "\"]/@url") ??
doc.SelectSingleNode("//fanart/movie/moviebanners/moviebanner/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-04-29 01:39:17 +02:00
{
2013-05-24 18:05:53 +02:00
movie.SetImage(ImageType.Banner, await _providerManager.DownloadAndSaveImage(movie, path, BannerFile, saveLocal, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-04-29 01:39:17 +02:00
}
2013-05-24 18:05:53 +02:00
}
2013-02-21 02:33:05 +01:00
2013-05-24 18:05:53 +02:00
cancellationToken.ThrowIfCancellationRequested();
2013-05-06 17:49:14 +02:00
2013-05-24 18:05:53 +02:00
if (ConfigurationManager.Configuration.DownloadMovieImages.Thumb && !item.HasImage(ImageType.Thumb))
{
var node = doc.SelectSingleNode("//fanart/movie/moviethumbs/moviethumb[@lang = \"" + language + "\"]/@url") ??
doc.SelectSingleNode("//fanart/movie/moviethumbs/moviethumb/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-04-29 01:39:17 +02:00
{
2013-05-24 18:05:53 +02:00
movie.SetImage(ImageType.Thumb, await _providerManager.DownloadAndSaveImage(movie, path, ThumbFile, saveLocal, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-05-13 00:57:51 +02:00
}
2013-05-24 18:05:53 +02:00
}
2013-05-13 00:57:51 +02:00
2013-05-24 18:05:53 +02:00
if (ConfigurationManager.Configuration.DownloadMovieImages.Backdrops && item.BackdropImagePaths.Count < ConfigurationManager.Configuration.MaxBackdrops)
{
var nodes = doc.SelectNodes("//fanart/movie/moviebackgrounds//@url");
2013-02-21 02:33:05 +01:00
2013-05-24 18:05:53 +02:00
if (nodes != null)
2013-05-13 00:57:51 +02:00
{
2013-05-24 18:05:53 +02:00
var numBackdrops = item.BackdropImagePaths.Count;
foreach (XmlNode node in nodes)
2013-05-13 00:57:51 +02:00
{
2013-05-24 18:05:53 +02:00
path = node.Value;
if (!string.IsNullOrEmpty(path))
2013-05-13 00:57:51 +02:00
{
2013-05-24 18:05:53 +02:00
item.BackdropImagePaths.Add(await _providerManager.DownloadAndSaveImage(item, path, ("backdrop" + (numBackdrops > 0 ? numBackdrops.ToString(UsCulture) : "") + ".jpg"), saveLocal, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
numBackdrops++;
2013-05-13 00:57:51 +02:00
2013-05-24 18:05:53 +02:00
if (item.BackdropImagePaths.Count >= ConfigurationManager.Configuration.MaxBackdrops) break;
}
2013-02-21 02:33:05 +01:00
}
2013-05-13 00:57:51 +02:00
2013-02-21 02:33:05 +01:00
}
}
2013-05-13 00:57:51 +02:00
data.Data = GetComparisonData(item.GetProviderId(MetadataProviders.Tmdb));
SetLastRefreshed(movie, DateTime.UtcNow, status);
2013-02-21 02:33:05 +01:00
return true;
}
public void Dispose()
{
Dispose(true);
}
2013-02-21 02:33:05 +01:00
}
}