2020-06-19 18:24:13 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:03:10 +00:00
|
|
|
using System.Collections.Generic;
|
2020-08-17 17:55:58 +00:00
|
|
|
using System.Net.Http;
|
2019-01-13 19:26:31 +00:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2020-08-31 17:05:21 +00:00
|
|
|
using MediaBrowser.Common.Net;
|
2014-02-09 21:11:11 +00:00
|
|
|
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;
|
|
|
|
|
2020-03-02 17:07:31 +00:00
|
|
|
namespace MediaBrowser.Providers.Plugins.AudioDb
|
2014-02-09 21:11:11 +00:00
|
|
|
{
|
|
|
|
public class AudioDbAlbumImageProvider : IRemoteImageProvider, IHasOrder
|
|
|
|
{
|
|
|
|
private readonly IServerConfigurationManager _config;
|
2020-08-17 17:55:58 +00:00
|
|
|
private readonly IHttpClientFactory _httpClientFactory;
|
2014-02-09 21:11:11 +00:00
|
|
|
private readonly IJsonSerializer _json;
|
|
|
|
|
2020-08-17 17:55:58 +00:00
|
|
|
public AudioDbAlbumImageProvider(IServerConfigurationManager config, IHttpClientFactory httpClientFactory, IJsonSerializer json)
|
2014-02-09 21:11:11 +00:00
|
|
|
{
|
|
|
|
_config = config;
|
2020-08-17 17:55:58 +00:00
|
|
|
_httpClientFactory = httpClientFactory;
|
2014-02-09 21:11:11 +00:00
|
|
|
_json = json;
|
|
|
|
}
|
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public string Name => "TheAudioDB";
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
// After embedded and fanart
|
|
|
|
public int Order => 2;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2018-09-12 17:26:21 +00:00
|
|
|
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
|
2014-02-09 21:11:11 +00:00
|
|
|
{
|
|
|
|
return new List<ImageType>
|
|
|
|
{
|
2019-01-07 23:27:46 +00:00
|
|
|
ImageType.Primary,
|
2014-02-09 21:11:11 +00:00
|
|
|
ImageType.Disc
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
2018-09-12 17:26:21 +00:00
|
|
|
public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken)
|
2014-02-09 21:11:11 +00:00
|
|
|
{
|
2020-06-06 19:17:49 +00:00
|
|
|
var id = item.GetProviderId(MetadataProvider.MusicBrainzReleaseGroup);
|
2014-02-09 21:11:11 +00:00
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(id))
|
|
|
|
{
|
|
|
|
await AudioDbAlbumProvider.Current.EnsureInfo(id, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
var path = AudioDbAlbumProvider.GetAlbumInfoPath(_config.ApplicationPaths, id);
|
|
|
|
|
|
|
|
var obj = _json.DeserializeFromFile<AudioDbAlbumProvider.RootObject>(path);
|
|
|
|
|
|
|
|
if (obj != null && obj.album != null && obj.album.Count > 0)
|
|
|
|
{
|
|
|
|
return GetImages(obj.album[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new List<RemoteImageInfo>();
|
|
|
|
}
|
|
|
|
|
|
|
|
private IEnumerable<RemoteImageInfo> GetImages(AudioDbAlbumProvider.Album item)
|
|
|
|
{
|
|
|
|
var list = new List<RemoteImageInfo>();
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strAlbumThumb))
|
|
|
|
{
|
|
|
|
list.Add(new RemoteImageInfo
|
|
|
|
{
|
|
|
|
ProviderName = Name,
|
|
|
|
Url = item.strAlbumThumb,
|
|
|
|
Type = ImageType.Primary
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.strAlbumCDart))
|
|
|
|
{
|
|
|
|
list.Add(new RemoteImageInfo
|
|
|
|
{
|
|
|
|
ProviderName = Name,
|
|
|
|
Url = item.strAlbumCDart,
|
|
|
|
Type = ImageType.Disc
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
2019-01-07 23:27:46 +00:00
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-08-17 17:55:58 +00:00
|
|
|
public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
|
2014-02-09 21:11:11 +00:00
|
|
|
{
|
2020-08-31 17:05:21 +00:00
|
|
|
var httpClient = _httpClientFactory.CreateClient(NamedClient.Default);
|
2020-08-17 17:55:58 +00:00
|
|
|
return httpClient.GetAsync(url, cancellationToken);
|
2014-02-09 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-08 03:10:25 +00:00
|
|
|
public bool Supports(BaseItem item)
|
2020-11-28 14:55:56 +00:00
|
|
|
=> item is MusicAlbum;
|
2014-02-09 21:11:11 +00:00
|
|
|
}
|
|
|
|
}
|