You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
4.7 KiB
150 lines
4.7 KiB
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Common.Net;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.AudioDb
|
|
{
|
|
public class AudioDbArtistImageProvider : IRemoteImageProvider, IHasOrder
|
|
{
|
|
private readonly IServerConfigurationManager _config;
|
|
private readonly IHttpClientFactory _httpClientFactory;
|
|
private readonly IJsonSerializer _json;
|
|
|
|
public AudioDbArtistImageProvider(IServerConfigurationManager config, IJsonSerializer json, IHttpClientFactory httpClientFactory)
|
|
{
|
|
_config = config;
|
|
_json = json;
|
|
_httpClientFactory = httpClientFactory;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public string Name => "TheAudioDB";
|
|
|
|
/// <inheritdoc />
|
|
// After fanart
|
|
public int Order => 1;
|
|
|
|
/// <inheritdoc />
|
|
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
|
|
{
|
|
return new List<ImageType>
|
|
{
|
|
ImageType.Primary,
|
|
ImageType.Logo,
|
|
ImageType.Banner,
|
|
ImageType.Backdrop
|
|
};
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken)
|
|
{
|
|
var id = item.GetProviderId(MetadataProvider.MusicBrainzArtist);
|
|
|
|
if (!string.IsNullOrWhiteSpace(id))
|
|
{
|
|
await AudioDbArtistProvider.Current.EnsureArtistInfo(id, cancellationToken).ConfigureAwait(false);
|
|
|
|
var path = AudioDbArtistProvider.GetArtistInfoPath(_config.ApplicationPaths, id);
|
|
|
|
var obj = _json.DeserializeFromFile<AudioDbArtistProvider.RootObject>(path);
|
|
|
|
if (obj != null && obj.artists != null && obj.artists.Count > 0)
|
|
{
|
|
return GetImages(obj.artists[0]);
|
|
}
|
|
}
|
|
|
|
return new List<RemoteImageInfo>();
|
|
}
|
|
|
|
private IEnumerable<RemoteImageInfo> GetImages(AudioDbArtistProvider.Artist item)
|
|
{
|
|
var list = new List<RemoteImageInfo>();
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strArtistThumb))
|
|
{
|
|
list.Add(new RemoteImageInfo
|
|
{
|
|
ProviderName = Name,
|
|
Url = item.strArtistThumb,
|
|
Type = ImageType.Primary
|
|
});
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strArtistLogo))
|
|
{
|
|
list.Add(new RemoteImageInfo
|
|
{
|
|
ProviderName = Name,
|
|
Url = item.strArtistLogo,
|
|
Type = ImageType.Logo
|
|
});
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strArtistBanner))
|
|
{
|
|
list.Add(new RemoteImageInfo
|
|
{
|
|
ProviderName = Name,
|
|
Url = item.strArtistBanner,
|
|
Type = ImageType.Banner
|
|
});
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strArtistFanart))
|
|
{
|
|
list.Add(new RemoteImageInfo
|
|
{
|
|
ProviderName = Name,
|
|
Url = item.strArtistFanart,
|
|
Type = ImageType.Backdrop
|
|
});
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strArtistFanart2))
|
|
{
|
|
list.Add(new RemoteImageInfo
|
|
{
|
|
ProviderName = Name,
|
|
Url = item.strArtistFanart2,
|
|
Type = ImageType.Backdrop
|
|
});
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strArtistFanart3))
|
|
{
|
|
list.Add(new RemoteImageInfo
|
|
{
|
|
ProviderName = Name,
|
|
Url = item.strArtistFanart3,
|
|
Type = ImageType.Backdrop
|
|
});
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
|
|
{
|
|
var httpClient = _httpClientFactory.CreateClient(NamedClient.Default);
|
|
return httpClient.GetAsync(url, cancellationToken);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(BaseItem item)
|
|
=> Plugin.Instance.Configuration.Enable && item is MusicArtist;
|
|
}
|
|
}
|