jellyfin/MediaBrowser.Controller/Providers/Music/FanArtArtistProvider.cs

223 lines
9.6 KiB
C#
Raw Normal View History

2013-05-13 00:57:51 +02:00
using MediaBrowser.Common.Net;
2013-03-04 16:13:03 +01:00
using MediaBrowser.Controller.Configuration;
2013-03-04 15:34:00 +01:00
using MediaBrowser.Controller.Entities;
2013-05-02 16:30:38 +02:00
using MediaBrowser.Controller.Entities.Audio;
2013-03-04 15:34:00 +01:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
using System;
using System.Collections.Generic;
2013-05-13 00:57:51 +02:00
using System.Globalization;
2013-03-04 15:34:00 +01:00
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
namespace MediaBrowser.Controller.Providers.Music
{
/// <summary>
/// Class FanArtArtistProvider
/// </summary>
2013-04-22 06:38:03 +02:00
public class FanArtArtistProvider : FanartBaseProvider
2013-03-04 15:34:00 +01:00
{
/// <summary>
/// Gets the HTTP client.
/// </summary>
/// <value>The HTTP client.</value>
protected IHttpClient HttpClient { get; private set; }
private readonly IProviderManager _providerManager;
public FanArtArtistProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
2013-03-04 16:13:03 +01:00
: base(logManager, configurationManager)
2013-03-04 15:34:00 +01:00
{
if (httpClient == null)
{
throw new ArgumentNullException("httpClient");
}
HttpClient = httpClient;
_providerManager = providerManager;
2013-03-04 15:34:00 +01:00
}
/// <summary>
/// The fan art base URL
/// </summary>
protected string FanArtBaseUrl = "http://api.fanart.tv/webservice/artist/{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-02 16:30:38 +02:00
return item is MusicArtist;
2013-03-04 15:34:00 +01:00
}
2013-04-22 06:38:03 +02:00
protected virtual bool SaveLocalMeta
{
get { return ConfigurationManager.Configuration.SaveLocalMeta; }
}
protected override bool RefreshOnVersionChange
{
get
{
return true;
}
}
protected override string ProviderVersion
{
get
{
2013-05-12 15:13:57 +02:00
return "4";
}
}
2013-03-04 15:34:00 +01:00
/// <summary>
2013-04-29 01:39:17 +02:00
/// Needses the refresh internal.
2013-03-04 15:34:00 +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-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
if (string.IsNullOrEmpty(item.GetProviderId(MetadataProviders.Musicbrainz)))
{
return false;
}
if (!ConfigurationManager.Configuration.DownloadMusicArtistImages.Art &&
!ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops &&
!ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner &&
!ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo &&
!ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary)
{
return false;
}
2013-03-04 15:34:00 +01:00
2013-04-29 01:39:17 +02:00
return base.NeedsRefreshInternal(item, providerInfo);
2013-03-04 15:34:00 +01:00
}
protected readonly CultureInfo UsCulture = new CultureInfo("en-US");
2013-03-04 15:34:00 +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-03-04 15:34:00 +01:00
{
cancellationToken.ThrowIfCancellationRequested();
2013-04-22 06:38:03 +02:00
//var artist = item;
2013-05-19 23:20:47 +02:00
var url = string.Format(FanArtBaseUrl, ApiKey, item.GetProviderId(MetadataProviders.Musicbrainz));
2013-04-29 01:39:17 +02:00
var doc = new XmlDocument();
2013-05-13 00:57:51 +02:00
var status = ProviderRefreshStatus.Success;
using (var xml = await HttpClient.Get(new HttpRequestOptions
{
2013-05-13 00:57:51 +02:00
Url = url,
ResourcePool = FanArtResourcePool,
CancellationToken = cancellationToken
2013-05-13 00:57:51 +02:00
}).ConfigureAwait(false))
2013-04-29 01:39:17 +02:00
{
2013-05-13 00:57:51 +02:00
doc.Load(xml);
2013-04-29 01:39:17 +02:00
}
2013-03-04 15:34:00 +01:00
2013-04-29 01:39:17 +02:00
cancellationToken.ThrowIfCancellationRequested();
2013-03-04 15:34:00 +01:00
2013-04-29 01:39:17 +02:00
if (doc.HasChildNodes)
{
string path;
var hd = ConfigurationManager.Configuration.DownloadHDFanArt ? "hd" : "";
2013-05-19 23:20:47 +02:00
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo && !item.ResolveArgs.ContainsMetaFileByName(LogoFile))
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
var node =
doc.SelectSingleNode("//fanart/music/musiclogos/" + hd + "musiclogo/@url") ??
doc.SelectSingleNode("//fanart/music/musiclogos/musiclogo/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
Logger.Debug("FanArtProvider getting ClearLogo for " + item.Name);
2013-05-19 23:20:47 +02:00
item.SetImage(ImageType.Logo, await _providerManager.DownloadAndSaveImage(item, path, LogoFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-03-04 15:34:00 +01:00
}
2013-04-29 01:39:17 +02:00
}
cancellationToken.ThrowIfCancellationRequested();
2013-03-04 15:34:00 +01:00
2013-05-19 23:20:47 +02:00
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops && !item.ResolveArgs.ContainsMetaFileByName(BackdropFile))
2013-04-29 01:39:17 +02:00
{
var nodes = doc.SelectNodes("//fanart/music/artistbackgrounds//@url");
if (nodes != null)
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
var numBackdrops = 0;
item.BackdropImagePaths = new List<string>();
foreach (XmlNode node in nodes)
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
path = node.Value;
if (!string.IsNullOrEmpty(path))
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
Logger.Debug("FanArtProvider getting Backdrop for " + item.Name);
item.BackdropImagePaths.Add(await _providerManager.DownloadAndSaveImage(item, path, ("Backdrop" + (numBackdrops > 0 ? numBackdrops.ToString(UsCulture) : "") + ".jpg"), SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
numBackdrops++;
if (numBackdrops >= ConfigurationManager.Configuration.MaxBackdrops) break;
2013-03-04 15:34:00 +01:00
}
}
}
2013-04-29 01:39:17 +02:00
}
cancellationToken.ThrowIfCancellationRequested();
2013-03-04 15:34:00 +01:00
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Art && !item.HasImage(ImageType.Art))
2013-04-29 01:39:17 +02:00
{
var node =
doc.SelectSingleNode("//fanart/music/musicarts/" + hd + "musicart/@url") ??
doc.SelectSingleNode("//fanart/music/musicarts/musicart/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
Logger.Debug("FanArtProvider getting ClearArt for " + item.Name);
2013-05-19 23:20:47 +02:00
item.SetImage(ImageType.Art, await _providerManager.DownloadAndSaveImage(item, path, ArtFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-03-04 15:34:00 +01:00
}
2013-04-29 01:39:17 +02:00
}
cancellationToken.ThrowIfCancellationRequested();
2013-03-04 15:34:00 +01:00
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner && !item.HasImage(ImageType.Banner))
2013-04-29 01:39:17 +02:00
{
var node = doc.SelectSingleNode("//fanart/music/musicbanners/" + hd + "musicbanner/@url") ??
doc.SelectSingleNode("//fanart/music/musicbanners/musicbanner/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
Logger.Debug("FanArtProvider getting Banner for " + item.Name);
2013-05-19 23:20:47 +02:00
item.SetImage(ImageType.Banner, await _providerManager.DownloadAndSaveImage(item, path, BannerFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-03-04 15:34:00 +01:00
}
2013-04-29 01:39:17 +02:00
}
2013-03-04 15:34:00 +01:00
2013-04-29 01:39:17 +02:00
cancellationToken.ThrowIfCancellationRequested();
2013-03-04 15:34:00 +01:00
2013-04-29 01:39:17 +02:00
// Artist thumbs are actually primary images (they are square/portrait)
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary && !item.HasImage(ImageType.Primary))
2013-04-29 01:39:17 +02:00
{
var node = doc.SelectSingleNode("//fanart/music/artistthumbs/artistthumb/@url");
path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
2013-03-04 15:34:00 +01:00
{
2013-04-29 01:39:17 +02:00
Logger.Debug("FanArtProvider getting Primary image for " + item.Name);
2013-05-19 23:20:47 +02:00
item.SetImage(ImageType.Primary, await _providerManager.DownloadAndSaveImage(item, path, PrimaryFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
2013-03-04 15:34:00 +01:00
}
}
}
2013-04-29 01:39:17 +02:00
2013-05-13 00:57:51 +02:00
SetLastRefreshed(item, DateTime.UtcNow, status);
2013-03-04 15:34:00 +01:00
return true;
}
}
}