mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
further reduce music brainz requests
This commit is contained in:
parent
bbe5b7b82a
commit
46c0c3a87d
@ -6,6 +6,8 @@ using MediaBrowser.Common.Net;
|
|||||||
using MediaBrowser.Controller.Configuration;
|
using MediaBrowser.Controller.Configuration;
|
||||||
using MediaBrowser.Controller.Entities;
|
using MediaBrowser.Controller.Entities;
|
||||||
using MediaBrowser.Controller.Entities.Audio;
|
using MediaBrowser.Controller.Entities.Audio;
|
||||||
|
using MediaBrowser.Controller.Library;
|
||||||
|
using MediaBrowser.Model.Entities;
|
||||||
using MediaBrowser.Model.Logging;
|
using MediaBrowser.Model.Logging;
|
||||||
using MediaBrowser.Model.Net;
|
using MediaBrowser.Model.Net;
|
||||||
using MediaBrowser.Model.Serialization;
|
using MediaBrowser.Model.Serialization;
|
||||||
@ -14,13 +16,15 @@ using System.Linq;
|
|||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Xml;
|
using System.Xml;
|
||||||
|
using Mediabrowser.Model.Entities;
|
||||||
|
|
||||||
namespace MediaBrowser.Controller.Providers.Music
|
namespace MediaBrowser.Controller.Providers.Music
|
||||||
{
|
{
|
||||||
public class LastfmArtistProvider : LastfmBaseProvider
|
public class LastfmArtistProvider : LastfmBaseProvider
|
||||||
{
|
{
|
||||||
private readonly IProviderManager _providerManager;
|
private readonly IProviderManager _providerManager;
|
||||||
|
private readonly ILibraryManager _libraryManager;
|
||||||
|
|
||||||
public LastfmArtistProvider(IJsonSerializer jsonSerializer, IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
|
public LastfmArtistProvider(IJsonSerializer jsonSerializer, IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
|
||||||
: base(jsonSerializer, httpClient, logManager, configurationManager)
|
: base(jsonSerializer, httpClient, logManager, configurationManager)
|
||||||
{
|
{
|
||||||
@ -28,8 +32,25 @@ namespace MediaBrowser.Controller.Providers.Music
|
|||||||
LocalMetaFileName = LastfmHelper.LocalArtistMetaFileName;
|
LocalMetaFileName = LastfmHelper.LocalArtistMetaFileName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Finds the id.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="item">The item.</param>
|
||||||
|
/// <param name="cancellationToken">The cancellation token.</param>
|
||||||
|
/// <returns>Task{System.String}.</returns>
|
||||||
protected override async Task<string> FindId(BaseItem item, CancellationToken cancellationToken)
|
protected override async Task<string> FindId(BaseItem item, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
|
if (item is Artist)
|
||||||
|
{
|
||||||
|
// Since MusicArtists are refreshed first, try to find it from one of them
|
||||||
|
var id = FindIdFromMusicArtistEntity(item);
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(id))
|
||||||
|
{
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Try to find the id using last fm
|
// Try to find the id using last fm
|
||||||
var result = await FindIdFromLastFm(item, cancellationToken).ConfigureAwait(false);
|
var result = await FindIdFromLastFm(item, cancellationToken).ConfigureAwait(false);
|
||||||
|
|
||||||
@ -61,6 +82,14 @@ namespace MediaBrowser.Controller.Providers.Music
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private string FindIdFromMusicArtistEntity(BaseItem item)
|
||||||
|
{
|
||||||
|
var artist = _libraryManager.RootFolder.RecursiveChildren.OfType<MusicArtist>()
|
||||||
|
.FirstOrDefault(i => string.Equals(i.Name, item.Name, StringComparison.OrdinalIgnoreCase));
|
||||||
|
|
||||||
|
return artist != null ? artist.GetProviderId(MetadataProviders.Musicbrainz) : null;
|
||||||
|
}
|
||||||
|
|
||||||
private async Task<Tuple<string,bool>> FindIdFromLastFm(BaseItem item, CancellationToken cancellationToken)
|
private async Task<Tuple<string,bool>> FindIdFromLastFm(BaseItem item, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
//Execute the Artist search against our name and assume first one is the one we want
|
//Execute the Artist search against our name and assume first one is the one we want
|
||||||
|
Loading…
x
Reference in New Issue
Block a user