| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Net.Http; |
| | 5 | | using System.Threading; |
| | 6 | | using System.Threading.Tasks; |
| | 7 | | using Jellyfin.Extensions; |
| | 8 | | using MediaBrowser.Controller.Entities.Audio; |
| | 9 | | using MediaBrowser.Controller.Providers; |
| | 10 | | using MediaBrowser.Model.Entities; |
| | 11 | | using MediaBrowser.Model.Plugins; |
| | 12 | | using MediaBrowser.Model.Providers; |
| | 13 | | using MediaBrowser.Providers.Music; |
| | 14 | | using MediaBrowser.Providers.Plugins.MusicBrainz.Configuration; |
| | 15 | | using MetaBrainz.MusicBrainz; |
| | 16 | | using MetaBrainz.MusicBrainz.Interfaces.Entities; |
| | 17 | | using MetaBrainz.MusicBrainz.Interfaces.Searches; |
| | 18 | | using Microsoft.Extensions.Logging; |
| | 19 | |
|
| | 20 | | namespace MediaBrowser.Providers.Plugins.MusicBrainz; |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// MusicBrainz artist provider. |
| | 24 | | /// </summary> |
| | 25 | | public class MusicBrainzArtistProvider : IRemoteMetadataProvider<MusicArtist, ArtistInfo>, IDisposable |
| | 26 | | { |
| | 27 | | private readonly ILogger<MusicBrainzArtistProvider> _logger; |
| | 28 | | private Query _musicBrainzQuery; |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Initializes a new instance of the <see cref="MusicBrainzArtistProvider"/> class. |
| | 32 | | /// </summary> |
| | 33 | | /// <param name="logger">The logger.</param> |
| | 34 | | public MusicBrainzArtistProvider(ILogger<MusicBrainzArtistProvider> logger) |
| | 35 | | { |
| 21 | 36 | | _logger = logger; |
| 21 | 37 | | _musicBrainzQuery = new Query(); |
| 21 | 38 | | ReloadConfig(null, MusicBrainz.Plugin.Instance!.Configuration); |
| 21 | 39 | | MusicBrainz.Plugin.Instance!.ConfigurationChanged += ReloadConfig; |
| 21 | 40 | | } |
| | 41 | |
|
| | 42 | | /// <inheritdoc /> |
| 0 | 43 | | public string Name => "MusicBrainz"; |
| | 44 | |
|
| | 45 | | private void ReloadConfig(object? sender, BasePluginConfiguration e) |
| | 46 | | { |
| 21 | 47 | | var configuration = (PluginConfiguration)e; |
| 21 | 48 | | if (Uri.TryCreate(configuration.Server, UriKind.Absolute, out var server)) |
| | 49 | | { |
| 21 | 50 | | Query.DefaultServer = server.DnsSafeHost; |
| 21 | 51 | | Query.DefaultPort = server.Port; |
| 21 | 52 | | Query.DefaultUrlScheme = server.Scheme; |
| | 53 | | } |
| | 54 | | else |
| | 55 | | { |
| | 56 | | // Fallback to official server |
| 0 | 57 | | _logger.LogWarning("Invalid MusicBrainz server specified, falling back to official server"); |
| 0 | 58 | | var defaultServer = new Uri(PluginConfiguration.DefaultServer); |
| 0 | 59 | | Query.DefaultServer = defaultServer.Host; |
| 0 | 60 | | Query.DefaultPort = defaultServer.Port; |
| 0 | 61 | | Query.DefaultUrlScheme = defaultServer.Scheme; |
| | 62 | | } |
| | 63 | |
|
| 21 | 64 | | Query.DelayBetweenRequests = configuration.RateLimit; |
| 21 | 65 | | _musicBrainzQuery = new Query(); |
| 21 | 66 | | } |
| | 67 | |
|
| | 68 | | /// <inheritdoc /> |
| | 69 | | public async Task<IEnumerable<RemoteSearchResult>> GetSearchResults(ArtistInfo searchInfo, CancellationToken cancell |
| | 70 | | { |
| | 71 | | var artistId = searchInfo.GetMusicBrainzArtistId(); |
| | 72 | |
|
| | 73 | | if (!string.IsNullOrWhiteSpace(artistId)) |
| | 74 | | { |
| | 75 | | var artistResult = await _musicBrainzQuery.LookupArtistAsync(new Guid(artistId), Include.Aliases, null, null |
| | 76 | | return GetResultFromResponse(artistResult).SingleItemAsEnumerable(); |
| | 77 | | } |
| | 78 | |
|
| | 79 | | var artistSearchResults = await _musicBrainzQuery.FindArtistsAsync($"\"{searchInfo.Name}\"", null, null, false, |
| | 80 | | .ConfigureAwait(false); |
| | 81 | | if (artistSearchResults.Results.Count > 0) |
| | 82 | | { |
| | 83 | | return GetResultsFromResponse(artistSearchResults.Results); |
| | 84 | | } |
| | 85 | |
|
| | 86 | | if (searchInfo.Name.HasDiacritics()) |
| | 87 | | { |
| | 88 | | // Try again using the search with an accented characters query |
| | 89 | | var artistAccentsSearchResults = await _musicBrainzQuery.FindArtistsAsync($"artistaccent:\"{searchInfo.Name} |
| | 90 | | .ConfigureAwait(false); |
| | 91 | | if (artistAccentsSearchResults.Results.Count > 0) |
| | 92 | | { |
| | 93 | | return GetResultsFromResponse(artistAccentsSearchResults.Results); |
| | 94 | | } |
| | 95 | | } |
| | 96 | |
|
| | 97 | | return Enumerable.Empty<RemoteSearchResult>(); |
| | 98 | | } |
| | 99 | |
|
| | 100 | | private IEnumerable<RemoteSearchResult> GetResultsFromResponse(IEnumerable<ISearchResult<IArtist>>? releaseSearchRes |
| | 101 | | { |
| | 102 | | if (releaseSearchResults is null) |
| | 103 | | { |
| | 104 | | yield break; |
| | 105 | | } |
| | 106 | |
|
| | 107 | | foreach (var result in releaseSearchResults) |
| | 108 | | { |
| | 109 | | yield return GetResultFromResponse(result.Item); |
| | 110 | | } |
| | 111 | | } |
| | 112 | |
|
| | 113 | | private RemoteSearchResult GetResultFromResponse(IArtist artist) |
| | 114 | | { |
| 0 | 115 | | var searchResult = new RemoteSearchResult |
| 0 | 116 | | { |
| 0 | 117 | | Name = artist.Name, |
| 0 | 118 | | ProductionYear = artist.LifeSpan?.Begin?.Year, |
| 0 | 119 | | PremiereDate = artist.LifeSpan?.Begin?.NearestDate, |
| 0 | 120 | | SearchProviderName = Name, |
| 0 | 121 | | }; |
| | 122 | |
|
| 0 | 123 | | searchResult.SetProviderId(MetadataProvider.MusicBrainzArtist, artist.Id.ToString()); |
| | 124 | |
|
| 0 | 125 | | return searchResult; |
| | 126 | | } |
| | 127 | |
|
| | 128 | | /// <inheritdoc /> |
| | 129 | | public async Task<MetadataResult<MusicArtist>> GetMetadata(ArtistInfo info, CancellationToken cancellationToken) |
| | 130 | | { |
| | 131 | | var result = new MetadataResult<MusicArtist> { Item = new MusicArtist() }; |
| | 132 | |
|
| | 133 | | var musicBrainzId = info.GetMusicBrainzArtistId(); |
| | 134 | |
|
| | 135 | | if (string.IsNullOrWhiteSpace(musicBrainzId)) |
| | 136 | | { |
| | 137 | | var searchResults = await GetSearchResults(info, cancellationToken).ConfigureAwait(false); |
| | 138 | |
|
| | 139 | | var singleResult = searchResults.FirstOrDefault(); |
| | 140 | |
|
| | 141 | | if (singleResult is not null) |
| | 142 | | { |
| | 143 | | musicBrainzId = singleResult.GetProviderId(MetadataProvider.MusicBrainzArtist); |
| | 144 | | result.Item.Overview = singleResult.Overview; |
| | 145 | |
|
| | 146 | | if (Plugin.Instance!.Configuration.ReplaceArtistName) |
| | 147 | | { |
| | 148 | | result.Item.Name = singleResult.Name; |
| | 149 | | } |
| | 150 | | } |
| | 151 | | } |
| | 152 | |
|
| | 153 | | if (!string.IsNullOrWhiteSpace(musicBrainzId)) |
| | 154 | | { |
| | 155 | | result.HasMetadata = true; |
| | 156 | | result.Item.SetProviderId(MetadataProvider.MusicBrainzArtist, musicBrainzId); |
| | 157 | | } |
| | 158 | |
|
| | 159 | | return result; |
| | 160 | | } |
| | 161 | |
|
| | 162 | | /// <inheritdoc /> |
| | 163 | | public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken) |
| | 164 | | { |
| 0 | 165 | | throw new NotImplementedException(); |
| | 166 | | } |
| | 167 | |
|
| | 168 | | /// <inheritdoc /> |
| | 169 | | public void Dispose() |
| | 170 | | { |
| 21 | 171 | | Dispose(true); |
| 21 | 172 | | GC.SuppressFinalize(this); |
| 21 | 173 | | } |
| | 174 | |
|
| | 175 | | /// <summary> |
| | 176 | | /// Dispose all resources. |
| | 177 | | /// </summary> |
| | 178 | | /// <param name="disposing">Whether to dispose.</param> |
| | 179 | | protected virtual void Dispose(bool disposing) |
| | 180 | | { |
| 21 | 181 | | if (disposing) |
| | 182 | | { |
| 21 | 183 | | _musicBrainzQuery.Dispose(); |
| | 184 | | } |
| 21 | 185 | | } |
| | 186 | | } |