jellyfin/MediaBrowser.Providers/Music/MusicBrainzArtistProvider.cs

289 lines
10 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2016-10-27 23:05:25 +02:00
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Entities.Audio;
2016-10-27 09:58:33 +02:00
using MediaBrowser.Controller.Extensions;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
namespace MediaBrowser.Providers.Music
{
2014-02-07 04:10:13 +01:00
public class MusicBrainzArtistProvider : IRemoteMetadataProvider<MusicArtist, ArtistInfo>
{
public MusicBrainzArtistProvider()
2016-10-27 23:05:25 +02:00
{
2016-10-27 23:05:25 +02:00
}
public async Task<IEnumerable<RemoteSearchResult>> GetSearchResults(ArtistInfo searchInfo, CancellationToken cancellationToken)
{
2014-03-14 04:23:58 +01:00
var musicBrainzId = searchInfo.GetMusicBrainzArtistId();
if (!string.IsNullOrWhiteSpace(musicBrainzId))
{
2016-06-15 21:52:38 +02:00
var url = string.Format("/ws/2/artist/?query=arid:{0}", musicBrainzId);
using (var response = await MusicBrainzAlbumProvider.Current.GetMusicBrainzResponse(url, cancellationToken).ConfigureAwait(false))
2016-10-27 21:03:23 +02:00
{
2017-10-20 18:16:56 +02:00
using (var stream = response.Content)
{
return GetResultsFromResponse(stream);
}
2016-10-27 21:03:23 +02:00
}
}
2014-03-14 04:23:58 +01:00
else
{
// They seem to throw bad request failures on any term with a slash
var nameToSearch = searchInfo.Name.Replace('/', ' ');
var url = string.Format("/ws/2/artist/?query=\"{0}\"&dismax=true", UrlEncode(nameToSearch));
2014-03-14 04:23:58 +01:00
using (var response = await MusicBrainzAlbumProvider.Current.GetMusicBrainzResponse(url, cancellationToken).ConfigureAwait(false))
2014-03-14 04:23:58 +01:00
{
2017-10-20 18:16:56 +02:00
using (var stream = response.Content)
2016-10-27 21:03:23 +02:00
{
2019-03-13 22:32:52 +01:00
var results = GetResultsFromResponse(stream).ToList();
2017-10-20 18:16:56 +02:00
if (results.Count > 0)
{
return results;
}
2016-10-27 21:03:23 +02:00
}
2014-03-14 04:23:58 +01:00
}
2014-03-14 04:23:58 +01:00
if (HasDiacritics(searchInfo.Name))
{
// Try again using the search with accent characters url
url = string.Format("/ws/2/artist/?query=artistaccent:\"{0}\"", UrlEncode(nameToSearch));
2014-03-14 04:23:58 +01:00
using (var response = await MusicBrainzAlbumProvider.Current.GetMusicBrainzResponse(url, cancellationToken).ConfigureAwait(false))
2016-10-27 21:03:23 +02:00
{
2017-10-20 18:16:56 +02:00
using (var stream = response.Content)
{
return GetResultsFromResponse(stream);
}
2016-10-27 21:03:23 +02:00
}
2014-03-14 04:23:58 +01:00
}
}
2019-03-13 22:32:52 +01:00
return Enumerable.Empty<RemoteSearchResult>();
2014-03-14 04:23:58 +01:00
}
2019-03-13 22:32:52 +01:00
private IEnumerable<RemoteSearchResult> GetResultsFromResponse(Stream stream)
2014-03-14 04:23:58 +01:00
{
2016-10-27 23:05:25 +02:00
using (var oReader = new StreamReader(stream, Encoding.UTF8))
2016-05-09 05:13:38 +02:00
{
var settings = new XmlReaderSettings()
{
ValidationType = ValidationType.None,
CheckCharacters = false,
IgnoreProcessingInstructions = true,
IgnoreComments = true
};
2016-10-27 23:05:25 +02:00
using (var reader = XmlReader.Create(oReader, settings))
2016-10-27 21:03:23 +02:00
{
2016-10-27 23:05:25 +02:00
reader.MoveToContent();
2016-11-02 18:08:20 +01:00
reader.Read();
2016-10-27 23:05:25 +02:00
// Loop through each element
2016-12-03 22:46:06 +01:00
while (!reader.EOF && reader.ReadState == ReadState.Interactive)
2016-10-27 23:05:25 +02:00
{
if (reader.NodeType == XmlNodeType.Element)
2016-10-27 21:03:23 +02:00
{
2016-10-27 23:05:25 +02:00
switch (reader.Name)
2016-10-27 21:03:23 +02:00
{
2016-10-27 23:05:25 +02:00
case "artist-list":
{
2016-12-04 00:57:34 +01:00
if (reader.IsEmptyElement)
{
reader.Read();
continue;
}
2016-10-27 23:05:25 +02:00
using (var subReader = reader.ReadSubtree())
{
return ParseArtistList(subReader);
}
}
default:
{
reader.Skip();
break;
}
2016-10-27 21:03:23 +02:00
}
}
2016-10-31 19:59:58 +01:00
else
{
reader.Read();
}
2016-10-27 23:05:25 +02:00
}
2019-03-13 22:32:52 +01:00
return Enumerable.Empty<RemoteSearchResult>();
2016-10-27 21:03:23 +02:00
}
2016-05-09 05:13:38 +02:00
}
2016-10-27 21:03:23 +02:00
}
2019-03-13 22:32:52 +01:00
private IEnumerable<RemoteSearchResult> ParseArtistList(XmlReader reader)
2016-10-27 21:03:23 +02:00
{
reader.MoveToContent();
2016-11-02 18:08:20 +01:00
reader.Read();
2014-03-14 04:23:58 +01:00
2016-10-27 21:03:23 +02:00
// Loop through each element
2016-12-03 22:46:06 +01:00
while (!reader.EOF && reader.ReadState == ReadState.Interactive)
{
2016-10-27 23:05:25 +02:00
if (reader.NodeType == XmlNodeType.Element)
2014-03-14 04:23:58 +01:00
{
2016-10-27 23:05:25 +02:00
switch (reader.Name)
{
case "artist":
2016-10-08 20:51:07 +02:00
{
2016-12-04 00:57:34 +01:00
if (reader.IsEmptyElement)
{
reader.Read();
continue;
}
2016-10-27 23:05:25 +02:00
var mbzId = reader.GetAttribute("id");
using (var subReader = reader.ReadSubtree())
{
var artist = ParseArtist(subReader, mbzId);
if (artist != null)
{
2019-03-13 22:32:52 +01:00
yield return artist;
2016-10-27 23:05:25 +02:00
}
}
break;
2016-05-09 05:13:38 +02:00
}
2016-10-27 23:05:25 +02:00
default:
{
reader.Skip();
break;
}
}
2016-10-27 21:03:23 +02:00
}
2016-10-31 19:59:58 +01:00
else
{
reader.Read();
}
2016-10-27 21:03:23 +02:00
}
}
private RemoteSearchResult ParseArtist(XmlReader reader, string artistId)
{
var result = new RemoteSearchResult();
2014-03-14 04:23:58 +01:00
2016-10-27 21:03:23 +02:00
reader.MoveToContent();
2016-10-27 23:05:25 +02:00
reader.Read();
// http://stackoverflow.com/questions/2299632/why-does-xmlreader-skip-every-other-element-if-there-is-no-whitespace-separator
2014-03-14 04:23:58 +01:00
2016-10-27 21:03:23 +02:00
// Loop through each element
2016-12-03 22:46:06 +01:00
while (!reader.EOF && reader.ReadState == ReadState.Interactive)
2016-10-27 21:03:23 +02:00
{
2016-10-27 23:05:25 +02:00
if (reader.NodeType == XmlNodeType.Element)
2016-10-27 21:03:23 +02:00
{
2016-10-27 23:05:25 +02:00
switch (reader.Name)
{
case "name":
{
result.Name = reader.ReadElementContentAsString();
break;
}
case "annotation":
{
result.Overview = reader.ReadElementContentAsString();
break;
}
default:
{
// there is sort-name if ever needed
reader.Skip();
break;
}
}
}
else
{
reader.Read();
2014-03-14 04:23:58 +01:00
}
}
2016-10-27 21:03:23 +02:00
result.SetProviderId(MetadataProviders.MusicBrainzArtist, artistId);
if (string.IsNullOrWhiteSpace(artistId) || string.IsNullOrWhiteSpace(result.Name))
{
return null;
}
return result;
2014-03-14 04:23:58 +01:00
}
public async Task<MetadataResult<MusicArtist>> GetMetadata(ArtistInfo id, CancellationToken cancellationToken)
{
var result = new MetadataResult<MusicArtist>
{
2014-03-14 04:23:58 +01:00
Item = new MusicArtist()
};
2014-03-14 04:23:58 +01:00
var musicBrainzId = id.GetMusicBrainzArtistId();
2014-03-14 04:23:58 +01:00
if (string.IsNullOrWhiteSpace(musicBrainzId))
{
var searchResults = await GetSearchResults(id, cancellationToken).ConfigureAwait(false);
var singleResult = searchResults.FirstOrDefault();
2014-03-14 04:23:58 +01:00
if (singleResult != null)
{
2014-03-14 04:23:58 +01:00
musicBrainzId = singleResult.GetProviderId(MetadataProviders.MusicBrainzArtist);
2015-04-26 05:25:07 +02:00
//result.Item.Name = singleResult.Name;
2016-10-08 20:51:07 +02:00
result.Item.Overview = singleResult.Overview;
}
}
2014-03-14 04:23:58 +01:00
if (!string.IsNullOrWhiteSpace(musicBrainzId))
{
result.HasMetadata = true;
result.Item.SetProviderId(MetadataProviders.MusicBrainzArtist, musicBrainzId);
}
return result;
}
/// <summary>
/// Determines whether the specified text has diacritics.
/// </summary>
/// <param name="text">The text.</param>
/// <returns><c>true</c> if the specified text has diacritics; otherwise, <c>false</c>.</returns>
private bool HasDiacritics(string text)
{
return !string.Equals(text, text.RemoveDiacritics(), StringComparison.Ordinal);
}
/// <summary>
/// Encodes an URL.
/// </summary>
/// <param name="name">The name.</param>
/// <returns>System.String.</returns>
2019-03-13 22:32:52 +01:00
private static string UrlEncode(string name)
{
return WebUtility.UrlEncode(name);
}
public string Name => "MusicBrainz";
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}
}