| | 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 AudioDbArtistImageProvider : IRemoteImageProvider, IHasOrder |
| | 24 | | { |
| | 25 | | private readonly IServerConfigurationManager _config; |
| | 26 | | private readonly IHttpClientFactory _httpClientFactory; |
| 21 | 27 | | private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options; |
| | 28 | |
|
| | 29 | | public AudioDbArtistImageProvider(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 fanart |
| 0 | 40 | | public int Order => 1; |
| | 41 | |
|
| | 42 | | /// <inheritdoc /> |
| | 43 | | public IEnumerable<ImageType> GetSupportedImages(BaseItem item) |
| | 44 | | { |
| 0 | 45 | | return |
| 0 | 46 | | [ |
| 0 | 47 | | ImageType.Primary, |
| 0 | 48 | | ImageType.Logo, |
| 0 | 49 | | ImageType.Banner, |
| 0 | 50 | | ImageType.Backdrop |
| 0 | 51 | | ]; |
| | 52 | | } |
| | 53 | |
|
| | 54 | | /// <inheritdoc /> |
| | 55 | | public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken) |
| | 56 | | { |
| | 57 | | if (item.TryGetProviderId(MetadataProvider.MusicBrainzArtist, out var id)) |
| | 58 | | { |
| | 59 | | await AudioDbArtistProvider.Current.EnsureArtistInfo(id, cancellationToken).ConfigureAwait(false); |
| | 60 | |
|
| | 61 | | var path = AudioDbArtistProvider.GetArtistInfoPath(_config.ApplicationPaths, id); |
| | 62 | |
|
| | 63 | | FileStream jsonStream = AsyncFile.OpenRead(path); |
| | 64 | | await using (jsonStream.ConfigureAwait(false)) |
| | 65 | | { |
| | 66 | | var obj = await JsonSerializer.DeserializeAsync<AudioDbArtistProvider.RootObject>(jsonStream, _jsonO |
| | 67 | |
|
| | 68 | | if (obj is not null && obj.artists is not null && obj.artists.Count > 0) |
| | 69 | | { |
| | 70 | | return GetImages(obj.artists[0]); |
| | 71 | | } |
| | 72 | | } |
| | 73 | | } |
| | 74 | |
|
| | 75 | | return []; |
| | 76 | | } |
| | 77 | |
|
| | 78 | | private List<RemoteImageInfo> GetImages(AudioDbArtistProvider.Artist item) |
| | 79 | | { |
| 0 | 80 | | var list = new List<RemoteImageInfo>(); |
| | 81 | |
|
| 0 | 82 | | if (!string.IsNullOrWhiteSpace(item.strArtistThumb)) |
| | 83 | | { |
| 0 | 84 | | list.Add(new RemoteImageInfo |
| 0 | 85 | | { |
| 0 | 86 | | ProviderName = Name, |
| 0 | 87 | | Url = item.strArtistThumb, |
| 0 | 88 | | Type = ImageType.Primary |
| 0 | 89 | | }); |
| | 90 | | } |
| | 91 | |
|
| 0 | 92 | | if (!string.IsNullOrWhiteSpace(item.strArtistLogo)) |
| | 93 | | { |
| 0 | 94 | | list.Add(new RemoteImageInfo |
| 0 | 95 | | { |
| 0 | 96 | | ProviderName = Name, |
| 0 | 97 | | Url = item.strArtistLogo, |
| 0 | 98 | | Type = ImageType.Logo |
| 0 | 99 | | }); |
| | 100 | | } |
| | 101 | |
|
| 0 | 102 | | if (!string.IsNullOrWhiteSpace(item.strArtistBanner)) |
| | 103 | | { |
| 0 | 104 | | list.Add(new RemoteImageInfo |
| 0 | 105 | | { |
| 0 | 106 | | ProviderName = Name, |
| 0 | 107 | | Url = item.strArtistBanner, |
| 0 | 108 | | Type = ImageType.Banner |
| 0 | 109 | | }); |
| | 110 | | } |
| | 111 | |
|
| 0 | 112 | | if (!string.IsNullOrWhiteSpace(item.strArtistFanart)) |
| | 113 | | { |
| 0 | 114 | | list.Add(new RemoteImageInfo |
| 0 | 115 | | { |
| 0 | 116 | | ProviderName = Name, |
| 0 | 117 | | Url = item.strArtistFanart, |
| 0 | 118 | | Type = ImageType.Backdrop |
| 0 | 119 | | }); |
| | 120 | | } |
| | 121 | |
|
| 0 | 122 | | if (!string.IsNullOrWhiteSpace(item.strArtistFanart2)) |
| | 123 | | { |
| 0 | 124 | | list.Add(new RemoteImageInfo |
| 0 | 125 | | { |
| 0 | 126 | | ProviderName = Name, |
| 0 | 127 | | Url = item.strArtistFanart2, |
| 0 | 128 | | Type = ImageType.Backdrop |
| 0 | 129 | | }); |
| | 130 | | } |
| | 131 | |
|
| 0 | 132 | | if (!string.IsNullOrWhiteSpace(item.strArtistFanart3)) |
| | 133 | | { |
| 0 | 134 | | list.Add(new RemoteImageInfo |
| 0 | 135 | | { |
| 0 | 136 | | ProviderName = Name, |
| 0 | 137 | | Url = item.strArtistFanart3, |
| 0 | 138 | | Type = ImageType.Backdrop |
| 0 | 139 | | }); |
| | 140 | | } |
| | 141 | |
|
| 0 | 142 | | return list; |
| | 143 | | } |
| | 144 | |
|
| | 145 | | public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken) |
| | 146 | | { |
| 0 | 147 | | var httpClient = _httpClientFactory.CreateClient(NamedClient.Default); |
| 0 | 148 | | return httpClient.GetAsync(url, cancellationToken); |
| | 149 | | } |
| | 150 | |
|
| | 151 | | /// <inheritdoc /> |
| | 152 | | public bool Supports(BaseItem item) |
| 53 | 153 | | => item is MusicArtist; |
| | 154 | | } |
| | 155 | | } |