2013-05-25 04:26:22 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Common.Extensions;
|
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-04 15:13:03 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-03-04 14:34:00 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-05-02 14:30:38 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-03-04 14:34:00 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using System;
|
2013-04-10 15:56:36 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-05-12 22:57:51 +00:00
|
|
|
|
using System.Globalization;
|
2013-03-04 14:34:00 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers.Music
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class FanArtArtistProvider
|
|
|
|
|
/// </summary>
|
2013-04-22 04:38:03 +00:00
|
|
|
|
public class FanArtArtistProvider : FanartBaseProvider
|
2013-03-04 14:34:00 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP client.</value>
|
|
|
|
|
protected IHttpClient HttpClient { get; private set; }
|
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
|
|
|
|
|
|
public FanArtArtistProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
|
2013-03-04 15:13:03 +00:00
|
|
|
|
: base(logManager, configurationManager)
|
2013-03-04 14:34:00 +00:00
|
|
|
|
{
|
|
|
|
|
if (httpClient == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("httpClient");
|
|
|
|
|
}
|
|
|
|
|
HttpClient = httpClient;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
_providerManager = providerManager;
|
2013-03-04 14:34:00 +00: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 14:30:38 +00:00
|
|
|
|
return item is MusicArtist;
|
2013-03-04 14:34:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 04:38:03 +00:00
|
|
|
|
protected virtual bool SaveLocalMeta
|
|
|
|
|
{
|
|
|
|
|
get { return ConfigurationManager.Configuration.SaveLocalMeta; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 22:32:15 +00:00
|
|
|
|
protected override bool RefreshOnVersionChange
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string ProviderVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-05-25 04:26:22 +00:00
|
|
|
|
return "5";
|
2013-05-02 22:32:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-04 14:34:00 +00:00
|
|
|
|
/// <summary>
|
2013-04-28 23:39:17 +00:00
|
|
|
|
/// Needses the refresh internal.
|
2013-03-04 14:34:00 +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-03-04 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00: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 14:34:00 +00:00
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
return base.NeedsRefreshInternal(item, providerInfo);
|
2013-03-04 14:34:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-07 03:46:14 +00:00
|
|
|
|
protected readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
2013-05-25 04:26:22 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the series data path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="appPaths">The app paths.</param>
|
|
|
|
|
/// <param name="musicBrainzArtistId">The music brainz artist id.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
internal static string GetArtistDataPath(IApplicationPaths appPaths, string musicBrainzArtistId)
|
|
|
|
|
{
|
|
|
|
|
var seriesDataPath = Path.Combine(GetArtistDataPath(appPaths), musicBrainzArtistId);
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(seriesDataPath))
|
|
|
|
|
{
|
|
|
|
|
Directory.CreateDirectory(seriesDataPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return seriesDataPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the series data path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="appPaths">The app paths.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
internal static string GetArtistDataPath(IApplicationPaths appPaths)
|
|
|
|
|
{
|
|
|
|
|
var dataPath = Path.Combine(appPaths.DataPath, "fanart-music");
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(dataPath))
|
|
|
|
|
{
|
|
|
|
|
Directory.CreateDirectory(dataPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dataPath;
|
|
|
|
|
}
|
2013-05-07 03:46:14 +00:00
|
|
|
|
|
2013-03-04 14:34:00 +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-03-04 14:34:00 +00:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2013-04-22 04:38:03 +00:00
|
|
|
|
//var artist = item;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
|
2013-05-25 04:26:22 +00:00
|
|
|
|
var musicBrainzId = item.GetProviderId(MetadataProviders.Musicbrainz);
|
|
|
|
|
var url = string.Format(FanArtBaseUrl, ApiKey, musicBrainzId);
|
2013-04-13 18:02:30 +00:00
|
|
|
|
|
2013-05-12 22:57:51 +00:00
|
|
|
|
var status = ProviderRefreshStatus.Success;
|
2013-05-25 04:26:22 +00:00
|
|
|
|
|
|
|
|
|
var xmlPath = Path.Combine(GetArtistDataPath(ConfigurationManager.ApplicationPaths, musicBrainzId), "fanart.xml");
|
2013-05-12 22:57:51 +00:00
|
|
|
|
|
2013-05-25 04:26:22 +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-04-28 23:39:17 +00:00
|
|
|
|
{
|
2013-05-25 04:26:22 +00:00
|
|
|
|
using (var xmlFileStream = new FileStream(xmlPath, FileMode.Create, FileAccess.Write, FileShare.Read, StreamDefaults.DefaultFileStreamBufferSize, FileOptions.Asynchronous))
|
|
|
|
|
{
|
|
|
|
|
await response.CopyToAsync(xmlFileStream).ConfigureAwait(false);
|
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
2013-03-04 14:34:00 +00:00
|
|
|
|
|
2013-05-25 04:26:22 +00:00
|
|
|
|
var doc = new XmlDocument();
|
|
|
|
|
doc.Load(xmlPath);
|
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-03-04 14:34:00 +00:00
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
if (doc.HasChildNodes)
|
|
|
|
|
{
|
|
|
|
|
string path;
|
|
|
|
|
var hd = ConfigurationManager.Configuration.DownloadHDFanArt ? "hd" : "";
|
2013-05-25 04:26:22 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo && !item.HasImage(ImageType.Logo))
|
2013-03-04 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00: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 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
Logger.Debug("FanArtProvider getting ClearLogo for " + item.Name);
|
2013-05-19 21:20:47 +00:00
|
|
|
|
item.SetImage(ImageType.Logo, await _providerManager.DownloadAndSaveImage(item, path, LogoFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
2013-03-04 14:34:00 +00:00
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-03-04 14:34:00 +00:00
|
|
|
|
|
2013-05-25 04:26:22 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops && item.BackdropImagePaths.Count == 0)
|
2013-04-28 23:39:17 +00:00
|
|
|
|
{
|
|
|
|
|
var nodes = doc.SelectNodes("//fanart/music/artistbackgrounds//@url");
|
|
|
|
|
if (nodes != null)
|
2013-03-04 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
var numBackdrops = 0;
|
|
|
|
|
item.BackdropImagePaths = new List<string>();
|
|
|
|
|
foreach (XmlNode node in nodes)
|
2013-03-04 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
path = node.Value;
|
|
|
|
|
if (!string.IsNullOrEmpty(path))
|
2013-03-04 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
Logger.Debug("FanArtProvider getting Backdrop for " + item.Name);
|
2013-05-19 19:37:52 +00:00
|
|
|
|
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 14:34:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-03-04 14:34:00 +00:00
|
|
|
|
|
2013-05-24 16:51:42 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Art && !item.HasImage(ImageType.Art))
|
2013-04-28 23:39:17 +00: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 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
Logger.Debug("FanArtProvider getting ClearArt for " + item.Name);
|
2013-05-19 21:20:47 +00:00
|
|
|
|
item.SetImage(ImageType.Art, await _providerManager.DownloadAndSaveImage(item, path, ArtFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
2013-03-04 14:34:00 +00:00
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-03-04 14:34:00 +00:00
|
|
|
|
|
2013-05-24 16:51:42 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner && !item.HasImage(ImageType.Banner))
|
2013-04-28 23:39:17 +00: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 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
Logger.Debug("FanArtProvider getting Banner for " + item.Name);
|
2013-05-19 21:20:47 +00:00
|
|
|
|
item.SetImage(ImageType.Banner, await _providerManager.DownloadAndSaveImage(item, path, BannerFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
2013-03-04 14:34:00 +00:00
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
}
|
2013-03-04 14:34:00 +00:00
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-03-04 14:34:00 +00:00
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
// Artist thumbs are actually primary images (they are square/portrait)
|
2013-05-24 16:51:42 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary && !item.HasImage(ImageType.Primary))
|
2013-04-28 23:39:17 +00:00
|
|
|
|
{
|
|
|
|
|
var node = doc.SelectSingleNode("//fanart/music/artistthumbs/artistthumb/@url");
|
|
|
|
|
path = node != null ? node.Value : null;
|
|
|
|
|
if (!string.IsNullOrEmpty(path))
|
2013-03-04 14:34:00 +00:00
|
|
|
|
{
|
2013-04-28 23:39:17 +00:00
|
|
|
|
Logger.Debug("FanArtProvider getting Primary image for " + item.Name);
|
2013-05-19 21:20:47 +00:00
|
|
|
|
item.SetImage(ImageType.Primary, await _providerManager.DownloadAndSaveImage(item, path, PrimaryFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
2013-03-04 14:34:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-04-28 23:39:17 +00:00
|
|
|
|
|
2013-05-12 22:57:51 +00:00
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow, status);
|
2013-03-04 14:34:00 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|