2013-04-10 15:56:36 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-04 06:06:38 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-03-03 20:55:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-03-04 01:46:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-03-03 20:55:30 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-04-10 15:56:36 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2013-05-05 05:46:17 +00:00
|
|
|
|
using System.Xml;
|
2013-03-03 20:55:30 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers.Music
|
|
|
|
|
{
|
2013-03-04 20:03:36 +00:00
|
|
|
|
public class LastfmArtistProvider : LastfmBaseProvider
|
2013-03-03 20:55:30 +00:00
|
|
|
|
{
|
2013-03-08 05:08:27 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
|
|
|
|
|
|
public LastfmArtistProvider(IJsonSerializer jsonSerializer, IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
|
2013-03-04 06:06:38 +00:00
|
|
|
|
: base(jsonSerializer, httpClient, logManager, configurationManager)
|
2013-03-03 20:55:30 +00:00
|
|
|
|
{
|
2013-03-08 05:08:27 +00:00
|
|
|
|
_providerManager = providerManager;
|
2013-03-04 20:03:36 +00:00
|
|
|
|
LocalMetaFileName = LastfmHelper.LocalArtistMetaFileName;
|
2013-03-03 20:55:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-05 05:46:17 +00:00
|
|
|
|
protected override async Task<string> FindId(BaseItem item, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2013-05-05 13:27:20 +00:00
|
|
|
|
var url = string.Format("http://www.musicbrainz.org/ws/2/artist/?query=artist:{0}", UrlEncode(item.Name));
|
2013-03-04 01:46:06 +00:00
|
|
|
|
|
2013-05-05 05:46:17 +00:00
|
|
|
|
var doc = await FanArtAlbumProvider.Current.GetMusicBrainzResponse(url, cancellationToken).ConfigureAwait(false);
|
2013-05-02 15:18:28 +00:00
|
|
|
|
|
2013-05-05 05:46:17 +00:00
|
|
|
|
var ns = new XmlNamespaceManager(doc.NameTable);
|
|
|
|
|
ns.AddNamespace("mb", "http://musicbrainz.org/ns/mmd-2.0#");
|
2013-05-05 13:27:20 +00:00
|
|
|
|
var node = doc.SelectSingleNode("//mb:artist-list/mb:artist[@type='Group']/@id", ns);
|
|
|
|
|
|
|
|
|
|
if (node != null && node.Value != null)
|
|
|
|
|
{
|
|
|
|
|
return node.Value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try again using the search with accent characters url
|
|
|
|
|
url = string.Format("http://www.musicbrainz.org/ws/2/artist/?query=artistaccent:{0}", UrlEncode(item.Name));
|
|
|
|
|
|
|
|
|
|
doc = await FanArtAlbumProvider.Current.GetMusicBrainzResponse(url, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
ns = new XmlNamespaceManager(doc.NameTable);
|
|
|
|
|
ns.AddNamespace("mb", "http://musicbrainz.org/ns/mmd-2.0#");
|
|
|
|
|
node = doc.SelectSingleNode("//mb:artist-list/mb:artist[@type='Group']/@id", ns);
|
|
|
|
|
|
|
|
|
|
if (node != null && node.Value != null)
|
|
|
|
|
{
|
|
|
|
|
return node.Value;
|
|
|
|
|
}
|
2013-03-04 01:46:06 +00:00
|
|
|
|
|
2013-05-05 13:27:20 +00:00
|
|
|
|
return null;
|
2013-03-04 01:46:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task FetchLastfmData(BaseItem item, string id, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
// Get artist info with provided id
|
|
|
|
|
var url = RootUrl + string.Format("method=artist.getInfo&mbid={0}&api_key={1}&format=json", UrlEncode(id), ApiKey);
|
|
|
|
|
|
2013-04-22 04:38:03 +00:00
|
|
|
|
LastfmGetArtistResult result;
|
2013-03-04 01:46:06 +00:00
|
|
|
|
|
2013-04-22 04:38:03 +00:00
|
|
|
|
using (var json = await HttpClient.Get(url, LastfmResourcePool, cancellationToken).ConfigureAwait(false))
|
2013-03-04 01:46:06 +00:00
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
result = JsonSerializer.DeserializeFromStream<LastfmGetArtistResult>(json);
|
2013-03-04 01:46:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result != null && result.artist != null)
|
|
|
|
|
{
|
2013-03-04 20:03:36 +00:00
|
|
|
|
LastfmHelper.ProcessArtistData(item, result.artist);
|
|
|
|
|
//And save locally if indicated
|
2013-04-22 04:38:03 +00:00
|
|
|
|
if (SaveLocalMeta)
|
2013-03-04 20:03:36 +00:00
|
|
|
|
{
|
|
|
|
|
var ms = new MemoryStream();
|
|
|
|
|
JsonSerializer.SerializeToStream(result.artist, ms);
|
|
|
|
|
|
2013-04-25 17:27:36 +00:00
|
|
|
|
if (cancellationToken.IsCancellationRequested)
|
|
|
|
|
{
|
|
|
|
|
ms.Dispose();
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
}
|
2013-03-04 20:03:36 +00:00
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
await _providerManager.SaveToLibraryFilesystem(item, Path.Combine(item.MetaLocation, LocalMetaFileName), ms, cancellationToken).ConfigureAwait(false);
|
2013-03-04 20:03:36 +00:00
|
|
|
|
|
|
|
|
|
}
|
2013-03-04 01:46:06 +00:00
|
|
|
|
}
|
2013-03-03 20:55:30 +00:00
|
|
|
|
}
|
2013-03-04 20:03:36 +00:00
|
|
|
|
|
2013-04-10 15:56:36 +00:00
|
|
|
|
public override bool Supports(BaseItem item)
|
2013-03-04 20:03:36 +00:00
|
|
|
|
{
|
2013-05-02 14:30:38 +00:00
|
|
|
|
return item is MusicArtist;
|
2013-03-04 20:03:36 +00:00
|
|
|
|
}
|
2013-03-03 20:55:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|