< Summary - Jellyfin

Information
Class: MediaBrowser.Providers.Plugins.AudioDb.AudioDbArtistImageProvider
Assembly: MediaBrowser.Providers
File(s): /srv/git/jellyfin/MediaBrowser.Providers/Plugins/AudioDb/AudioDbArtistImageProvider.cs
Line coverage
8%
Covered lines: 5
Uncovered lines: 55
Coverable lines: 60
Total lines: 155
Line coverage: 8.3%
Branch coverage
0%
Covered branches: 0
Total branches: 12
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Name()100%210%
get_Order()100%210%
GetSupportedImages(...)100%210%
GetImages(...)0%156120%
GetImageResponse(...)100%210%
Supports(...)100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Providers/Plugins/AudioDb/AudioDbArtistImageProvider.cs

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591
 4
 5using System.Collections.Generic;
 6using System.IO;
 7using System.Net.Http;
 8using System.Text.Json;
 9using System.Threading;
 10using System.Threading.Tasks;
 11using Jellyfin.Extensions.Json;
 12using MediaBrowser.Common.Net;
 13using MediaBrowser.Controller.Configuration;
 14using MediaBrowser.Controller.Entities;
 15using MediaBrowser.Controller.Entities.Audio;
 16using MediaBrowser.Controller.Providers;
 17using MediaBrowser.Model.Entities;
 18using MediaBrowser.Model.IO;
 19using MediaBrowser.Model.Providers;
 20
 21namespace MediaBrowser.Providers.Plugins.AudioDb
 22{
 23    public class AudioDbArtistImageProvider : IRemoteImageProvider, IHasOrder
 24    {
 25        private readonly IServerConfigurationManager _config;
 26        private readonly IHttpClientFactory _httpClientFactory;
 2127        private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options;
 28
 29        public AudioDbArtistImageProvider(IServerConfigurationManager config, IHttpClientFactory httpClientFactory)
 30        {
 2131            _config = config;
 2132            _httpClientFactory = httpClientFactory;
 2133        }
 34
 35        /// <inheritdoc />
 036        public string Name => "TheAudioDB";
 37
 38        /// <inheritdoc />
 39        // After fanart
 040        public int Order => 1;
 41
 42        /// <inheritdoc />
 43        public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
 44        {
 045            return
 046            [
 047                ImageType.Primary,
 048                ImageType.Logo,
 049                ImageType.Banner,
 050                ImageType.Backdrop
 051            ];
 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        {
 080            var list = new List<RemoteImageInfo>();
 81
 082            if (!string.IsNullOrWhiteSpace(item.strArtistThumb))
 83            {
 084                list.Add(new RemoteImageInfo
 085                {
 086                    ProviderName = Name,
 087                    Url = item.strArtistThumb,
 088                    Type = ImageType.Primary
 089                });
 90            }
 91
 092            if (!string.IsNullOrWhiteSpace(item.strArtistLogo))
 93            {
 094                list.Add(new RemoteImageInfo
 095                {
 096                    ProviderName = Name,
 097                    Url = item.strArtistLogo,
 098                    Type = ImageType.Logo
 099                });
 100            }
 101
 0102            if (!string.IsNullOrWhiteSpace(item.strArtistBanner))
 103            {
 0104                list.Add(new RemoteImageInfo
 0105                {
 0106                    ProviderName = Name,
 0107                    Url = item.strArtistBanner,
 0108                    Type = ImageType.Banner
 0109                });
 110            }
 111
 0112            if (!string.IsNullOrWhiteSpace(item.strArtistFanart))
 113            {
 0114                list.Add(new RemoteImageInfo
 0115                {
 0116                    ProviderName = Name,
 0117                    Url = item.strArtistFanart,
 0118                    Type = ImageType.Backdrop
 0119                });
 120            }
 121
 0122            if (!string.IsNullOrWhiteSpace(item.strArtistFanart2))
 123            {
 0124                list.Add(new RemoteImageInfo
 0125                {
 0126                    ProviderName = Name,
 0127                    Url = item.strArtistFanart2,
 0128                    Type = ImageType.Backdrop
 0129                });
 130            }
 131
 0132            if (!string.IsNullOrWhiteSpace(item.strArtistFanart3))
 133            {
 0134                list.Add(new RemoteImageInfo
 0135                {
 0136                    ProviderName = Name,
 0137                    Url = item.strArtistFanart3,
 0138                    Type = ImageType.Backdrop
 0139                });
 140            }
 141
 0142            return list;
 143        }
 144
 145        public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
 146        {
 0147            var httpClient = _httpClientFactory.CreateClient(NamedClient.Default);
 0148            return httpClient.GetAsync(url, cancellationToken);
 149        }
 150
 151        /// <inheritdoc />
 152        public bool Supports(BaseItem item)
 53153            => item is MusicArtist;
 154    }
 155}