jellyfin/MediaBrowser.Providers/Plugins/MusicBrainz/ArtistProvider.cs

272 lines
9.5 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Collections.Generic;
2019-09-10 22:37:53 +02:00
using System.Globalization;
2016-10-27 23:05:25 +02:00
using System.IO;
using System.Linq;
using System.Net;
2020-08-17 21:10:02 +02:00
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
using Diacritics.Extensions;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
2020-02-22 07:04:52 +01:00
using MediaBrowser.Providers.Plugins.MusicBrainz;
namespace MediaBrowser.Providers.Music
{
2014-02-07 04:10:13 +01:00
public class MusicBrainzArtistProvider : IRemoteMetadataProvider<MusicArtist, ArtistInfo>
{
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
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))
{
2019-09-10 22:37:53 +02:00
var url = "/ws/2/artist/?query=arid:{0}" + musicBrainzId.ToString(CultureInfo.InvariantCulture);
2020-08-17 21:10:02 +02:00
using var response = await MusicBrainzAlbumProvider.Current.GetMusicBrainzResponse(url, cancellationToken).ConfigureAwait(false);
2020-11-17 19:43:00 +01:00
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2020-08-17 21:10:02 +02:00
return GetResultsFromResponse(stream);
}
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('/', ' ');
2020-08-07 19:26:28 +02:00
var url = string.Format(CultureInfo.InvariantCulture, "/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))
2020-11-17 19:43:00 +01:00
await using (var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false))
2014-03-14 04:23:58 +01:00
{
2019-09-10 22:37:53 +02:00
var results = GetResultsFromResponse(stream).ToList();
2017-10-20 18:16:56 +02:00
2019-09-10 22:37:53 +02:00
if (results.Count > 0)
{
return results;
2016-10-27 21:03:23 +02:00
}
2014-03-14 04:23:58 +01:00
}
if (searchInfo.Name.HasDiacritics())
2014-03-14 04:23:58 +01:00
{
// Try again using the search with accent characters url
2020-08-07 19:26:28 +02:00
url = string.Format(CultureInfo.InvariantCulture, "/ws/2/artist/?query=artistaccent:\"{0}\"", UrlEncode(nameToSearch));
2014-03-14 04:23:58 +01:00
2020-08-17 21:10:02 +02:00
using var response = await MusicBrainzAlbumProvider.Current.GetMusicBrainzResponse(url, cancellationToken).ConfigureAwait(false);
2020-11-17 19:43:00 +01:00
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2020-08-17 21:10:02 +02:00
return GetResultsFromResponse(stream);
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
{
using var oReader = new StreamReader(stream, Encoding.UTF8);
var settings = new XmlReaderSettings()
2016-05-09 05:13:38 +02:00
{
ValidationType = ValidationType.None,
CheckCharacters = false,
IgnoreProcessingInstructions = true,
IgnoreComments = true
};
2016-10-27 23:05:25 +02:00
using var reader = XmlReader.Create(oReader, settings);
reader.MoveToContent();
reader.Read();
2016-10-27 23:05:25 +02:00
// Loop through each element
while (!reader.EOF && reader.ReadState == ReadState.Interactive)
{
if (reader.NodeType == XmlNodeType.Element)
{
switch (reader.Name)
2016-10-27 23:05:25 +02:00
{
case "artist-list":
2016-10-27 21:03:23 +02:00
{
if (reader.IsEmptyElement)
2016-10-27 21:03:23 +02:00
{
reader.Read();
continue;
2016-10-27 21:03:23 +02:00
}
using var subReader = reader.ReadSubtree();
return ParseArtistList(subReader).ToList();
2016-10-27 21:03:23 +02:00
}
default:
2016-10-31 19:59:58 +01:00
{
reader.Skip();
break;
2016-10-31 19:59:58 +01:00
}
2016-10-27 23:05:25 +02:00
}
}
else
{
reader.Read();
2016-10-27 21:03:23 +02:00
}
2016-05-09 05:13:38 +02:00
}
return Enumerable.Empty<RemoteSearchResult>();
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;
}
2020-06-15 23:43:52 +02:00
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)
2016-10-27 23:05:25 +02:00
{
yield return artist;
2016-10-27 23:05:25 +02:00
}
2020-06-15 23:43:52 +02:00
2016-10-27 23:05:25 +02:00
break;
2016-05-09 05:13:38 +02:00
}
2020-06-15 23:43:52 +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;
}
2020-09-28 22:04:31 +02:00
2016-10-27 23:05:25 +02:00
case "annotation":
{
result.Overview = reader.ReadElementContentAsString();
break;
}
2020-06-15 23:43:52 +02:00
2016-10-27 23:05:25 +02:00
default:
{
// there is sort-name if ever needed
reader.Skip();
break;
}
}
}
else
{
reader.Read();
2014-03-14 04:23:58 +01:00
}
}
2020-06-06 21:17:49 +02:00
result.SetProviderId(MetadataProvider.MusicBrainzArtist, artistId);
2016-10-27 21:03:23 +02:00
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)
{
2020-06-06 21:17:49 +02:00
musicBrainzId = singleResult.GetProviderId(MetadataProvider.MusicBrainzArtist);
2016-10-08 20:51:07 +02:00
result.Item.Overview = singleResult.Overview;
2020-02-22 07:04:52 +01:00
if (Plugin.Instance.Configuration.ReplaceArtistName)
{
result.Item.Name = singleResult.Name;
}
}
}
2014-03-14 04:23:58 +01:00
if (!string.IsNullOrWhiteSpace(musicBrainzId))
{
result.HasMetadata = true;
2020-06-06 21:17:49 +02:00
result.Item.SetProviderId(MetadataProvider.MusicBrainzArtist, musicBrainzId);
2014-03-14 04:23:58 +01:00
}
return result;
}
/// <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";
2020-08-17 21:10:02 +02:00
public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}
}