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

269 lines
9.8 KiB
C#
Raw Normal View History

2013-04-22 06:38:03 +02:00
using MediaBrowser.Common.Net;
2013-03-05 16:45:59 +01:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
2013-04-22 06:38:03 +02:00
using MediaBrowser.Model.Net;
using System;
2013-04-22 06:38:03 +02:00
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
2013-04-22 06:38:03 +02:00
using System.Xml;
2013-03-05 16:45:59 +01:00
namespace MediaBrowser.Controller.Providers.Music
{
/// <summary>
/// Class FanArtAlbumProvider
/// </summary>
2013-03-05 16:45:59 +01:00
public class FanArtAlbumProvider : FanartBaseProvider
{
/// <summary>
/// The _provider manager
/// </summary>
private readonly IProviderManager _providerManager;
2013-04-22 06:38:03 +02:00
/// <summary>
/// The _music brainz resource pool
/// </summary>
private readonly SemaphoreSlim _musicBrainzResourcePool = new SemaphoreSlim(1, 1);
/// <summary>
/// Gets the HTTP client.
/// </summary>
/// <value>The HTTP client.</value>
2013-04-22 06:38:03 +02:00
protected IHttpClient HttpClient { get; private set; }
/// <summary>
/// Initializes a new instance of the <see cref="FanArtAlbumProvider"/> 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-04-22 06:38:03 +02:00
public FanArtAlbumProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
: base(logManager, configurationManager)
2013-03-05 16:45:59 +01:00
{
_providerManager = providerManager;
2013-04-22 06:38:03 +02:00
HttpClient = httpClient;
2013-03-05 16:45:59 +01:00
}
/// <summary>
/// Supportses the specified item.
/// </summary>
/// <param name="item">The item.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
2013-03-05 16:45:59 +01:00
public override bool Supports(BaseItem item)
{
2013-04-22 06:38:03 +02:00
return item is MusicAlbum;
2013-03-05 16:45:59 +01: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>
2013-05-01 18:06:57 +02:00
protected override bool RefreshOnVersionChange
{
get
{
return true;
}
}
/// <summary>
/// Gets the provider version.
/// </summary>
/// <value>The provider version.</value>
2013-05-01 18:06:57 +02:00
protected override string ProviderVersion
{
get
{
return "11";
2013-05-01 18:06:57 +02:00
}
}
/// <summary>
/// Needses the refresh internal.
/// </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>
protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo)
2013-03-05 16:45:59 +01:00
{
if (string.IsNullOrEmpty(item.GetProviderId(MetadataProviders.Musicbrainz)))
{
return false;
}
if (!ConfigurationManager.Configuration.DownloadMusicAlbumImages.Disc &&
!ConfigurationManager.Configuration.DownloadMusicAlbumImages.Primary)
2013-03-05 16:45:59 +01:00
{
return false;
2013-03-05 16:45:59 +01:00
}
return base.NeedsRefreshInternal(item, providerInfo);
}
/// <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-05 16:45:59 +01:00
cancellationToken.ThrowIfCancellationRequested();
2013-05-03 03:35:50 +02:00
var album = (MusicAlbum)item;
2013-05-03 03:35:50 +02:00
if (string.IsNullOrEmpty(album.MusicBrainzReleaseGroupId))
{
album.MusicBrainzReleaseGroupId = await GetReleaseGroupId(item.GetProviderId(MetadataProviders.Musicbrainz), cancellationToken).ConfigureAwait(false);
}
// If still empty there's nothing more we can do
if (string.IsNullOrEmpty(album.MusicBrainzReleaseGroupId))
{
SetLastRefreshed(item, DateTime.UtcNow);
return true;
}
2013-05-03 03:35:50 +02:00
var url = string.Format("http://api.fanart.tv/webservice/album/{0}/{1}/xml/all/1/1", APIKey, album.MusicBrainzReleaseGroupId);
2013-04-22 06:38:03 +02:00
var doc = new XmlDocument();
2013-03-05 16:45:59 +01:00
2013-04-22 06:38:03 +02:00
try
{
using (var xml = await HttpClient.Get(url, FanArtResourcePool, cancellationToken).ConfigureAwait(false))
{
doc.Load(xml);
}
}
catch (HttpException)
2013-03-05 16:45:59 +01:00
{
}
2013-04-22 06:38:03 +02:00
cancellationToken.ThrowIfCancellationRequested();
2013-04-22 06:38:03 +02:00
if (doc.HasChildNodes)
{
2013-04-22 06:38:03 +02:00
if (ConfigurationManager.Configuration.DownloadMusicAlbumImages.Disc && !item.ResolveArgs.ContainsMetaFileByName(DISC_FILE))
{
2013-05-01 18:06:57 +02:00
var node = doc.SelectSingleNode("//fanart/music/albums/album/cdart/@url");
2013-04-22 06:38:03 +02:00
var path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
{
Logger.Debug("FanArtProvider getting Disc for " + item.Name);
try
{
item.SetImage(ImageType.Disc, await _providerManager.DownloadAndSaveImage(item, path, DISC_FILE, ConfigurationManager.Configuration.SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
}
catch (HttpException)
{
}
catch (IOException)
{
}
}
}
if (ConfigurationManager.Configuration.DownloadMusicAlbumImages.Primary && !item.ResolveArgs.ContainsMetaFileByName(PRIMARY_FILE))
{
2013-05-01 18:06:57 +02:00
var node = doc.SelectSingleNode("//fanart/music/albums/album/albumcover/@url");
2013-04-22 06:38:03 +02:00
var path = node != null ? node.Value : null;
if (!string.IsNullOrEmpty(path))
{
Logger.Debug("FanArtProvider getting albumcover for " + item.Name);
try
{
item.SetImage(ImageType.Primary, await _providerManager.DownloadAndSaveImage(item, path, PRIMARY_FILE, ConfigurationManager.Configuration.SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
}
catch (HttpException)
{
}
catch (IOException)
{
}
}
}
}
2013-04-22 06:38:03 +02:00
SetLastRefreshed(item, DateTime.UtcNow);
return true;
}
/// <summary>
/// The _last music brainz request
/// </summary>
private DateTime _lastMusicBrainzRequest = DateTime.MinValue;
/// <summary>
/// Gets the release group id.
/// </summary>
/// <param name="releaseEntryId">The release entry id.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{System.String}.</returns>
private async Task<string> GetReleaseGroupId(string releaseEntryId, CancellationToken cancellationToken)
{
await _musicBrainzResourcePool.WaitAsync(cancellationToken).ConfigureAwait(false);
try
{
var diff = 1000 - (DateTime.Now - _lastMusicBrainzRequest).TotalMilliseconds;
// MusicBrainz is extremely adamant about limiting to one request per second
if (diff > 0)
{
await Task.Delay(Convert.ToInt32(diff), cancellationToken).ConfigureAwait(false);
}
_lastMusicBrainzRequest = DateTime.Now;
return await GetReleaseGroupIdInternal(releaseEntryId, cancellationToken).ConfigureAwait(false);
}
finally
{
_musicBrainzResourcePool.Release();
}
}
/// <summary>
/// Gets the release group id internal.
/// </summary>
/// <param name="releaseEntryId">The release entry id.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{System.String}.</returns>
private async Task<string> GetReleaseGroupIdInternal(string releaseEntryId, CancellationToken cancellationToken)
{
var url = string.Format("http://www.musicbrainz.org/ws/2/release-group/?query=reid:{0}", releaseEntryId);
var doc = new XmlDocument();
using (var xml = await HttpClient.Get(url, cancellationToken).ConfigureAwait(false))
{
using (var oReader = new StreamReader(xml, Encoding.UTF8))
{
doc.Load(oReader);
}
}
var ns = new XmlNamespaceManager(doc.NameTable);
ns.AddNamespace("mb", "http://musicbrainz.org/ns/mmd-2.0#");
var node = doc.SelectSingleNode("//mb:release-group-list/mb:release-group/@id", ns);
return node != null ? node.Value : null;
}
2013-03-05 16:45:59 +01:00
}
}