2013-10-31 14:03:23 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-05 15:45:59 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-06-25 01:22:21 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-06-09 16:47:28 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-03-05 15:45:59 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-11-05 21:07:22 +00:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2013-04-10 15:56:36 +00:00
|
|
|
|
using System;
|
2013-11-05 21:07:22 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-04-22 04:38:03 +00:00
|
|
|
|
using System.IO;
|
2013-11-05 21:07:22 +00:00
|
|
|
|
using System.Linq;
|
2013-04-10 15:56:36 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2013-11-30 06:08:14 +00:00
|
|
|
|
using MediaBrowser.Model.Net;
|
|
|
|
|
using System.Net;
|
2013-03-05 15:45:59 +00:00
|
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
|
namespace MediaBrowser.Providers.Music
|
2013-03-05 15:45:59 +00:00
|
|
|
|
{
|
2013-05-02 22:32:15 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class FanArtAlbumProvider
|
|
|
|
|
/// </summary>
|
2013-03-05 15:45:59 +00:00
|
|
|
|
public class FanArtAlbumProvider : FanartBaseProvider
|
|
|
|
|
{
|
2013-05-02 22:32:15 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _provider manager
|
|
|
|
|
/// </summary>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
2013-04-22 04:38:03 +00:00
|
|
|
|
|
2013-05-02 22:32:15 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP client.</value>
|
2013-04-22 04:38:03 +00:00
|
|
|
|
protected IHttpClient HttpClient { get; private set; }
|
|
|
|
|
|
2013-10-31 14:03:23 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2013-05-05 05:46:17 +00:00
|
|
|
|
|
2013-05-02 22:32:15 +00:00
|
|
|
|
/// <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-10-31 14:03:23 +00:00
|
|
|
|
public FanArtAlbumProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager, IFileSystem fileSystem)
|
2013-03-08 05:08:27 +00:00
|
|
|
|
: base(logManager, configurationManager)
|
2013-03-05 15:45:59 +00:00
|
|
|
|
{
|
2013-03-08 05:08:27 +00:00
|
|
|
|
_providerManager = providerManager;
|
2013-10-31 14:03:23 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2013-04-22 04:38:03 +00:00
|
|
|
|
HttpClient = httpClient;
|
2013-03-05 15:45:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-07 16:00:20 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
|
public override MetadataProviderPriority Priority
|
|
|
|
|
{
|
2013-11-12 17:12:11 +00:00
|
|
|
|
get { return MetadataProviderPriority.Fifth; }
|
2013-08-07 16:00:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 22:32:15 +00: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 15:45:59 +00:00
|
|
|
|
public override bool Supports(BaseItem item)
|
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
return item is MusicAlbum;
|
2013-03-05 15:45:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-25 01:22:21 +00:00
|
|
|
|
public override ItemUpdateType ItemUpdateType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ItemUpdateType.ImageUpdate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 22:32:15 +00: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 16:06:57 +00:00
|
|
|
|
protected override bool RefreshOnVersionChange
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 22:32:15 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the provider version.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The provider version.</value>
|
2013-05-01 16:06:57 +00:00
|
|
|
|
protected override string ProviderVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-11-12 17:12:11 +00:00
|
|
|
|
return "18";
|
2013-05-01 16:06:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-29 14:16:57 +00: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 15:45:59 +00:00
|
|
|
|
{
|
2013-11-05 21:07:22 +00:00
|
|
|
|
if (!ConfigurationManager.Configuration.DownloadMusicAlbumImages.Disc &&
|
|
|
|
|
!ConfigurationManager.Configuration.DownloadMusicAlbumImages.Primary)
|
2013-04-29 14:16:57 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-05 21:07:22 +00:00
|
|
|
|
if (item.HasImage(ImageType.Primary) && item.HasImage(ImageType.Disc))
|
2013-03-05 15:45:59 +00:00
|
|
|
|
{
|
2013-04-29 14:16:57 +00:00
|
|
|
|
return false;
|
2013-03-05 15:45:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-20 14:48:49 +00:00
|
|
|
|
return base.NeedsRefreshInternal(item, providerInfo);
|
|
|
|
|
}
|
2013-05-25 05:17:32 +00:00
|
|
|
|
|
2013-06-20 14:48:49 +00:00
|
|
|
|
protected override DateTime CompareDate(BaseItem item)
|
|
|
|
|
{
|
2013-05-25 05:17:32 +00:00
|
|
|
|
var artistMusicBrainzId = item.Parent.GetProviderId(MetadataProviders.Musicbrainz);
|
2013-06-20 14:48:49 +00:00
|
|
|
|
|
2013-05-25 05:17:32 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(artistMusicBrainzId))
|
|
|
|
|
{
|
|
|
|
|
var artistXmlPath = FanArtArtistProvider.GetArtistDataPath(ConfigurationManager.CommonApplicationPaths, artistMusicBrainzId);
|
|
|
|
|
artistXmlPath = Path.Combine(artistXmlPath, "fanart.xml");
|
|
|
|
|
|
2013-06-20 14:48:49 +00:00
|
|
|
|
var file = new FileInfo(artistXmlPath);
|
2013-05-25 04:26:22 +00:00
|
|
|
|
|
2013-06-20 14:48:49 +00:00
|
|
|
|
if (file.Exists)
|
|
|
|
|
{
|
2013-10-31 14:03:23 +00:00
|
|
|
|
return _fileSystem.GetLastWriteTimeUtc(file);
|
2013-06-20 14:48:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.CompareDate(item);
|
2013-05-25 04:26:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 22:32:15 +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-12-06 20:07:34 +00:00
|
|
|
|
public override async Task<bool> FetchAsync(BaseItem item, bool force, BaseProviderInfo providerInfo, CancellationToken cancellationToken)
|
2013-04-29 14:16:57 +00:00
|
|
|
|
{
|
2013-11-05 21:07:22 +00:00
|
|
|
|
var images = await _providerManager.GetAvailableRemoteImages(item, cancellationToken, ManualFanartAlbumProvider.ProviderName).ConfigureAwait(false);
|
2013-04-13 18:02:30 +00:00
|
|
|
|
|
2013-11-05 21:07:22 +00:00
|
|
|
|
await FetchFromXml(item, images.ToList(), cancellationToken).ConfigureAwait(false);
|
2013-12-06 20:07:34 +00:00
|
|
|
|
|
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow, providerInfo);
|
2013-04-22 04:38:03 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
}
|
2013-05-02 22:32:15 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-11-05 21:07:22 +00:00
|
|
|
|
/// Fetches from XML.
|
2013-05-02 22:32:15 +00:00
|
|
|
|
/// </summary>
|
2013-11-05 21:07:22 +00:00
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="images">The images.</param>
|
2013-05-02 22:32:15 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2013-11-05 21:07:22 +00:00
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
private async Task FetchFromXml(BaseItem item, List<RemoteImageInfo> images, CancellationToken cancellationToken)
|
2013-05-02 22:32:15 +00:00
|
|
|
|
{
|
2013-11-05 21:07:22 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-05-02 22:32:15 +00:00
|
|
|
|
|
2013-11-05 22:29:07 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMusicAlbumImages.Primary && !item.HasImage(ImageType.Primary))
|
2013-05-02 22:32:15 +00:00
|
|
|
|
{
|
2013-11-30 06:08:14 +00:00
|
|
|
|
await SaveImage(item, images, ImageType.Primary, cancellationToken).ConfigureAwait(false);
|
2013-11-05 21:07:22 +00:00
|
|
|
|
}
|
2013-05-02 22:32:15 +00:00
|
|
|
|
|
2013-11-05 21:07:22 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-05-05 05:46:17 +00:00
|
|
|
|
|
2013-11-05 22:29:07 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadMusicAlbumImages.Disc && !item.HasImage(ImageType.Disc))
|
2013-11-05 21:07:22 +00:00
|
|
|
|
{
|
2013-11-30 06:08:14 +00:00
|
|
|
|
await SaveImage(item, images, ImageType.Disc, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-06 01:15:48 +00:00
|
|
|
|
|
2013-11-30 06:08:14 +00:00
|
|
|
|
private async Task SaveImage(BaseItem item, List<RemoteImageInfo> images, ImageType type, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
foreach (var image in images.Where(i => i.Type == type))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
await _providerManager.SaveImage(item, image.Url, FanArtResourcePool, type, null, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
catch (HttpException ex)
|
2013-05-05 05:46:17 +00:00
|
|
|
|
{
|
2013-11-30 06:08:14 +00:00
|
|
|
|
// Sometimes fanart has bad url's in their xml
|
|
|
|
|
if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.NotFound)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2013-05-05 05:46:17 +00:00
|
|
|
|
}
|
2013-05-02 22:32:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-05 15:45:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|