|
@@ -1,5 +1,4 @@
|
|
|
-using System.IO;
|
|
|
-using MediaBrowser.Common.Configuration;
|
|
|
+using MediaBrowser.Common.Configuration;
|
|
|
using MediaBrowser.Common.Extensions;
|
|
|
using MediaBrowser.Common.IO;
|
|
|
using MediaBrowser.Common.Net;
|
|
@@ -11,6 +10,8 @@ using MediaBrowser.Model.Logging;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Globalization;
|
|
|
+using System.IO;
|
|
|
+using System.Linq;
|
|
|
using System.Threading;
|
|
|
using System.Threading.Tasks;
|
|
|
using System.Xml;
|
|
@@ -28,8 +29,21 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
/// <value>The HTTP client.</value>
|
|
|
protected IHttpClient HttpClient { get; private set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// The _provider manager
|
|
|
+ /// </summary>
|
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
|
|
+ internal static FanArtArtistProvider Current;
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Initializes a new instance of the <see cref="FanArtArtistProvider"/> 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>
|
|
|
+ /// <exception cref="System.ArgumentNullException">httpClient</exception>
|
|
|
public FanArtArtistProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
|
|
|
: base(logManager, configurationManager)
|
|
|
{
|
|
@@ -39,6 +53,8 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
}
|
|
|
HttpClient = httpClient;
|
|
|
_providerManager = providerManager;
|
|
|
+
|
|
|
+ Current = this;
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
@@ -56,11 +72,19 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
return item is MusicArtist;
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// Gets a value indicating whether [save local meta].
|
|
|
+ /// </summary>
|
|
|
+ /// <value><c>true</c> if [save local meta]; otherwise, <c>false</c>.</value>
|
|
|
protected virtual bool SaveLocalMeta
|
|
|
{
|
|
|
get { return ConfigurationManager.Configuration.SaveLocalMeta; }
|
|
|
}
|
|
|
|
|
|
+ /// <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
|
|
@@ -69,11 +93,15 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// Gets the provider version.
|
|
|
+ /// </summary>
|
|
|
+ /// <value>The provider version.</value>
|
|
|
protected override string ProviderVersion
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return "5";
|
|
|
+ return "7";
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -91,17 +119,57 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
}
|
|
|
|
|
|
if (!ConfigurationManager.Configuration.DownloadMusicArtistImages.Art &&
|
|
|
- !ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops &&
|
|
|
- !ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner &&
|
|
|
- !ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo &&
|
|
|
- !ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary)
|
|
|
+ !ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops &&
|
|
|
+ !ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner &&
|
|
|
+ !ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo &&
|
|
|
+ !ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary &&
|
|
|
+
|
|
|
+ // The fanart album provider depends on xml downloaded here, so honor it's settings too
|
|
|
+ !ConfigurationManager.Configuration.DownloadMusicAlbumImages.Disc &&
|
|
|
+ !ConfigurationManager.Configuration.DownloadMusicAlbumImages.Primary)
|
|
|
{
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+ if (GetComparisonData(item) != providerInfo.Data)
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
return base.NeedsRefreshInternal(item, providerInfo);
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// Gets the comparison data.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="item">The item.</param>
|
|
|
+ /// <returns>Guid.</returns>
|
|
|
+ private Guid GetComparisonData(BaseItem item)
|
|
|
+ {
|
|
|
+ var musicBrainzId = item.GetProviderId(MetadataProviders.Musicbrainz);
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(musicBrainzId))
|
|
|
+ {
|
|
|
+ // Process images
|
|
|
+ var path = GetArtistDataPath(ConfigurationManager.ApplicationPaths, musicBrainzId);
|
|
|
+
|
|
|
+ var files = new DirectoryInfo(path)
|
|
|
+ .EnumerateFiles("*.xml", SearchOption.TopDirectoryOnly)
|
|
|
+ .Select(i => i.FullName + i.LastWriteTimeUtc.Ticks)
|
|
|
+ .ToArray();
|
|
|
+
|
|
|
+ if (files.Length > 0)
|
|
|
+ {
|
|
|
+ return string.Join(string.Empty, files).GetMD5();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return Guid.Empty;
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// The us culture
|
|
|
+ /// </summary>
|
|
|
protected readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
|
|
|
|
|
/// <summary>
|
|
@@ -138,7 +206,7 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
|
|
|
return dataPath;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// Fetches metadata and returns true or false indicating if any work that requires persistence was done
|
|
|
/// </summary>
|
|
@@ -150,15 +218,57 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
{
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
- //var artist = item;
|
|
|
-
|
|
|
var musicBrainzId = item.GetProviderId(MetadataProviders.Musicbrainz);
|
|
|
- var url = string.Format(FanArtBaseUrl, ApiKey, musicBrainzId);
|
|
|
|
|
|
- var status = ProviderRefreshStatus.Success;
|
|
|
+ var artistDataPath = GetArtistDataPath(ConfigurationManager.ApplicationPaths, musicBrainzId);
|
|
|
+ var xmlPath = Path.Combine(artistDataPath, "fanart.xml");
|
|
|
+
|
|
|
+ // Only download the xml if it doesn't already exist. The prescan task will take care of getting updates
|
|
|
+ if (!File.Exists(xmlPath))
|
|
|
+ {
|
|
|
+ await DownloadArtistXml(artistDataPath, musicBrainzId, cancellationToken).ConfigureAwait(false);
|
|
|
+ }
|
|
|
|
|
|
- var xmlPath = Path.Combine(GetArtistDataPath(ConfigurationManager.ApplicationPaths, musicBrainzId), "fanart.xml");
|
|
|
+ if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Art ||
|
|
|
+ ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops ||
|
|
|
+ ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner ||
|
|
|
+ ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo ||
|
|
|
+ ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary)
|
|
|
+ {
|
|
|
+ if (File.Exists(xmlPath))
|
|
|
+ {
|
|
|
+ await FetchFromXml(item, xmlPath, cancellationToken).ConfigureAwait(false);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ BaseProviderInfo data;
|
|
|
+ if (!item.ProviderData.TryGetValue(Id, out data))
|
|
|
+ {
|
|
|
+ data = new BaseProviderInfo();
|
|
|
+ item.ProviderData[Id] = data;
|
|
|
+ }
|
|
|
+
|
|
|
+ data.Data = GetComparisonData(item);
|
|
|
|
|
|
+ SetLastRefreshed(item, DateTime.UtcNow);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Downloads the artist XML.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="artistPath">The artist path.</param>
|
|
|
+ /// <param name="musicBrainzId">The music brainz id.</param>
|
|
|
+ /// <param name="cancellationToken">The cancellation token.</param>
|
|
|
+ /// <returns>Task{System.Boolean}.</returns>
|
|
|
+ internal async Task DownloadArtistXml(string artistPath, string musicBrainzId, CancellationToken cancellationToken)
|
|
|
+ {
|
|
|
+ cancellationToken.ThrowIfCancellationRequested();
|
|
|
+
|
|
|
+ var url = string.Format(FanArtBaseUrl, ApiKey, musicBrainzId);
|
|
|
+
|
|
|
+ var xmlPath = Path.Combine(artistPath, "fanart.xml");
|
|
|
+
|
|
|
using (var response = await HttpClient.Get(new HttpRequestOptions
|
|
|
{
|
|
|
Url = url,
|
|
@@ -172,98 +282,97 @@ namespace MediaBrowser.Controller.Providers.Music
|
|
|
await response.CopyToAsync(xmlFileStream).ConfigureAwait(false);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Fetches from XML.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="item">The item.</param>
|
|
|
+ /// <param name="xmlFilePath">The XML file path.</param>
|
|
|
+ /// <param name="cancellationToken">The cancellation token.</param>
|
|
|
+ /// <returns>Task.</returns>
|
|
|
+ private async Task FetchFromXml(BaseItem item, string xmlFilePath, CancellationToken cancellationToken)
|
|
|
+ {
|
|
|
var doc = new XmlDocument();
|
|
|
- doc.Load(xmlPath);
|
|
|
+ doc.Load(xmlFilePath);
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
- if (doc.HasChildNodes)
|
|
|
+ string path;
|
|
|
+ var hd = ConfigurationManager.Configuration.DownloadHDFanArt ? "hd" : "";
|
|
|
+ if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo && !item.HasImage(ImageType.Logo))
|
|
|
{
|
|
|
- string path;
|
|
|
- var hd = ConfigurationManager.Configuration.DownloadHDFanArt ? "hd" : "";
|
|
|
- if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Logo && !item.HasImage(ImageType.Logo))
|
|
|
+ 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))
|
|
|
{
|
|
|
- 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))
|
|
|
- {
|
|
|
- Logger.Debug("FanArtProvider getting ClearLogo for " + item.Name);
|
|
|
- item.SetImage(ImageType.Logo, await _providerManager.DownloadAndSaveImage(item, path, LogoFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
- }
|
|
|
+ item.SetImage(ImageType.Logo, await _providerManager.DownloadAndSaveImage(item, path, LogoFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
}
|
|
|
- cancellationToken.ThrowIfCancellationRequested();
|
|
|
+ }
|
|
|
+ cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
- if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops && item.BackdropImagePaths.Count == 0)
|
|
|
+ if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Backdrops && item.BackdropImagePaths.Count == 0)
|
|
|
+ {
|
|
|
+ var nodes = doc.SelectNodes("//fanart/music/artistbackgrounds//@url");
|
|
|
+ if (nodes != null)
|
|
|
{
|
|
|
- var nodes = doc.SelectNodes("//fanart/music/artistbackgrounds//@url");
|
|
|
- if (nodes != null)
|
|
|
+ var numBackdrops = 0;
|
|
|
+ item.BackdropImagePaths = new List<string>();
|
|
|
+ foreach (XmlNode node in nodes)
|
|
|
{
|
|
|
- var numBackdrops = 0;
|
|
|
- item.BackdropImagePaths = new List<string>();
|
|
|
- foreach (XmlNode node in nodes)
|
|
|
+ path = node.Value;
|
|
|
+ if (!string.IsNullOrEmpty(path))
|
|
|
{
|
|
|
- path = node.Value;
|
|
|
- if (!string.IsNullOrEmpty(path))
|
|
|
- {
|
|
|
- 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;
|
|
|
- }
|
|
|
+ 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;
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
- cancellationToken.ThrowIfCancellationRequested();
|
|
|
+ }
|
|
|
+
|
|
|
+ cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
- if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Art && !item.HasImage(ImageType.Art))
|
|
|
+ if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Art && !item.HasImage(ImageType.Art))
|
|
|
+ {
|
|
|
+ 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))
|
|
|
{
|
|
|
- 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))
|
|
|
- {
|
|
|
- Logger.Debug("FanArtProvider getting ClearArt for " + item.Name);
|
|
|
- item.SetImage(ImageType.Art, await _providerManager.DownloadAndSaveImage(item, path, ArtFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
- }
|
|
|
+ item.SetImage(ImageType.Art, await _providerManager.DownloadAndSaveImage(item, path, ArtFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
}
|
|
|
- cancellationToken.ThrowIfCancellationRequested();
|
|
|
+ }
|
|
|
+ cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
- if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner && !item.HasImage(ImageType.Banner))
|
|
|
+ if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Banner && !item.HasImage(ImageType.Banner))
|
|
|
+ {
|
|
|
+ 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))
|
|
|
{
|
|
|
- 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))
|
|
|
- {
|
|
|
- Logger.Debug("FanArtProvider getting Banner for " + item.Name);
|
|
|
- item.SetImage(ImageType.Banner, await _providerManager.DownloadAndSaveImage(item, path, BannerFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
- }
|
|
|
+ item.SetImage(ImageType.Banner, await _providerManager.DownloadAndSaveImage(item, path, BannerFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- cancellationToken.ThrowIfCancellationRequested();
|
|
|
+ cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
- // Artist thumbs are actually primary images (they are square/portrait)
|
|
|
- if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary && !item.HasImage(ImageType.Primary))
|
|
|
+ // Artist thumbs are actually primary images (they are square/portrait)
|
|
|
+ if (ConfigurationManager.Configuration.DownloadMusicArtistImages.Primary && !item.HasImage(ImageType.Primary))
|
|
|
+ {
|
|
|
+ var node = doc.SelectSingleNode("//fanart/music/artistthumbs/artistthumb/@url");
|
|
|
+ path = node != null ? node.Value : null;
|
|
|
+ if (!string.IsNullOrEmpty(path))
|
|
|
{
|
|
|
- var node = doc.SelectSingleNode("//fanart/music/artistthumbs/artistthumb/@url");
|
|
|
- path = node != null ? node.Value : null;
|
|
|
- if (!string.IsNullOrEmpty(path))
|
|
|
- {
|
|
|
- Logger.Debug("FanArtProvider getting Primary image for " + item.Name);
|
|
|
- item.SetImage(ImageType.Primary, await _providerManager.DownloadAndSaveImage(item, path, PrimaryFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
- }
|
|
|
+ item.SetImage(ImageType.Primary, await _providerManager.DownloadAndSaveImage(item, path, PrimaryFile, SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- SetLastRefreshed(item, DateTime.UtcNow, status);
|
|
|
- return true;
|
|
|
}
|
|
|
}
|
|
|
}
|