| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.IO; |
| | 7 | | using System.Net.Http; |
| | 8 | | using System.Text.Json; |
| | 9 | | using System.Threading; |
| | 10 | | using System.Threading.Tasks; |
| | 11 | | using Jellyfin.Extensions.Json; |
| | 12 | | using MediaBrowser.Common.Net; |
| | 13 | | using MediaBrowser.Controller.Configuration; |
| | 14 | | using MediaBrowser.Controller.Entities; |
| | 15 | | using MediaBrowser.Controller.Entities.Audio; |
| | 16 | | using MediaBrowser.Controller.Providers; |
| | 17 | | using MediaBrowser.Model.Entities; |
| | 18 | | using MediaBrowser.Model.IO; |
| | 19 | | using MediaBrowser.Model.Providers; |
| | 20 | |
|
| | 21 | | namespace MediaBrowser.Providers.Plugins.AudioDb |
| | 22 | | { |
| | 23 | | public class AudioDbAlbumImageProvider : IRemoteImageProvider, IHasOrder |
| | 24 | | { |
| | 25 | | private readonly IServerConfigurationManager _config; |
| | 26 | | private readonly IHttpClientFactory _httpClientFactory; |
| 21 | 27 | | private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options; |
| | 28 | |
|
| | 29 | | public AudioDbAlbumImageProvider(IServerConfigurationManager config, IHttpClientFactory httpClientFactory) |
| | 30 | | { |
| 21 | 31 | | _config = config; |
| 21 | 32 | | _httpClientFactory = httpClientFactory; |
| 21 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <inheritdoc /> |
| 0 | 36 | | public string Name => "TheAudioDB"; |
| | 37 | |
|
| | 38 | | /// <inheritdoc /> |
| | 39 | | // After embedded and fanart |
| 0 | 40 | | public int Order => 2; |
| | 41 | |
|
| | 42 | | /// <inheritdoc /> |
| | 43 | | public IEnumerable<ImageType> GetSupportedImages(BaseItem item) |
| | 44 | | { |
| | 45 | | yield return ImageType.Primary; |
| | 46 | | yield return ImageType.Disc; |
| | 47 | | } |
| | 48 | |
|
| | 49 | | /// <inheritdoc /> |
| | 50 | | public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken) |
| | 51 | | { |
| | 52 | | if (item.TryGetProviderId(MetadataProvider.MusicBrainzReleaseGroup, out var id)) |
| | 53 | | { |
| | 54 | | await AudioDbAlbumProvider.Current.EnsureInfo(id, cancellationToken).ConfigureAwait(false); |
| | 55 | |
|
| | 56 | | var path = AudioDbAlbumProvider.GetAlbumInfoPath(_config.ApplicationPaths, id); |
| | 57 | |
|
| | 58 | | FileStream jsonStream = AsyncFile.OpenRead(path); |
| | 59 | | await using (jsonStream.ConfigureAwait(false)) |
| | 60 | | { |
| | 61 | | var obj = await JsonSerializer.DeserializeAsync<AudioDbAlbumProvider.RootObject>(jsonStream, _jsonOp |
| | 62 | |
|
| | 63 | | if (obj is not null && obj.album is not null && obj.album.Count > 0) |
| | 64 | | { |
| | 65 | | return GetImages(obj.album[0]); |
| | 66 | | } |
| | 67 | | } |
| | 68 | | } |
| | 69 | |
|
| | 70 | | return []; |
| | 71 | | } |
| | 72 | |
|
| | 73 | | private List<RemoteImageInfo> GetImages(AudioDbAlbumProvider.Album item) |
| | 74 | | { |
| 0 | 75 | | var list = new List<RemoteImageInfo>(); |
| | 76 | |
|
| 0 | 77 | | if (!string.IsNullOrWhiteSpace(item.strAlbumThumb)) |
| | 78 | | { |
| 0 | 79 | | list.Add(new RemoteImageInfo |
| 0 | 80 | | { |
| 0 | 81 | | ProviderName = Name, |
| 0 | 82 | | Url = item.strAlbumThumb, |
| 0 | 83 | | Type = ImageType.Primary |
| 0 | 84 | | }); |
| | 85 | | } |
| | 86 | |
|
| 0 | 87 | | if (!string.IsNullOrWhiteSpace(item.strAlbumCDart)) |
| | 88 | | { |
| 0 | 89 | | list.Add(new RemoteImageInfo |
| 0 | 90 | | { |
| 0 | 91 | | ProviderName = Name, |
| 0 | 92 | | Url = item.strAlbumCDart, |
| 0 | 93 | | Type = ImageType.Disc |
| 0 | 94 | | }); |
| | 95 | | } |
| | 96 | |
|
| 0 | 97 | | return list; |
| | 98 | | } |
| | 99 | |
|
| | 100 | | /// <inheritdoc /> |
| | 101 | | public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken) |
| | 102 | | { |
| 0 | 103 | | var httpClient = _httpClientFactory.CreateClient(NamedClient.Default); |
| 0 | 104 | | return httpClient.GetAsync(url, cancellationToken); |
| | 105 | | } |
| | 106 | |
|
| | 107 | | /// <inheritdoc /> |
| | 108 | | public bool Supports(BaseItem item) |
| 53 | 109 | | => item is MusicAlbum; |
| | 110 | | } |
| | 111 | | } |