< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.Audio.MusicAlbum
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/Audio/MusicAlbum.cs
Line coverage
7%
Covered lines: 4
Uncovered lines: 47
Coverable lines: 51
Total lines: 227
Line coverage: 7.8%
Branch coverage
0%
Covered branches: 0
Total branches: 16
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

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Entities/Audio/MusicAlbum.cs

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CA1721, CA1826, CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7using System.Linq;
 8using System.Text.Json.Serialization;
 9using System.Threading;
 10using System.Threading.Tasks;
 11using Jellyfin.Data;
 12using Jellyfin.Data.Enums;
 13using Jellyfin.Database.Implementations.Entities;
 14using Jellyfin.Database.Implementations.Enums;
 15using MediaBrowser.Controller.Dto;
 16using MediaBrowser.Controller.Library;
 17using MediaBrowser.Controller.Providers;
 18using MediaBrowser.Model.Entities;
 19using MetadataProvider = MediaBrowser.Model.Entities.MetadataProvider;
 20
 21namespace MediaBrowser.Controller.Entities.Audio
 22{
 23    /// <summary>
 24    /// Class MusicAlbum.
 25    /// </summary>
 26    [Common.RequiresSourceSerialisation]
 27    public class MusicAlbum : Folder, IHasAlbumArtist, IHasArtist, IHasMusicGenres, IHasLookupInfo<AlbumInfo>, IMetadata
 28    {
 329        public MusicAlbum()
 30        {
 331            Artists = Array.Empty<string>();
 332            AlbumArtists = Array.Empty<string>();
 333        }
 34
 35        /// <inheritdoc />
 36        public IReadOnlyList<string> AlbumArtists { get; set; }
 37
 38        /// <inheritdoc />
 39        public IReadOnlyList<string> Artists { get; set; }
 40
 41        [JsonIgnore]
 042        public override bool SupportsAddingToPlaylist => true;
 43
 44        [JsonIgnore]
 045        public override bool SupportsInheritedParentImages => true;
 46
 47        [JsonIgnore]
 048        public MusicArtist MusicArtist => GetMusicArtist(new DtoOptions(true));
 49
 50        [JsonIgnore]
 051        public override bool SupportsPlayedStatus => false;
 52
 53        [JsonIgnore]
 054        public override bool SupportsCumulativeRunTimeTicks => true;
 55
 56        [JsonIgnore]
 057        public string AlbumArtist => AlbumArtists.FirstOrDefault();
 58
 59        [JsonIgnore]
 060        public override bool SupportsPeople => true;
 61
 62        /// <summary>
 63        /// Gets the tracks.
 64        /// </summary>
 65        /// <value>The tracks.</value>
 66        [JsonIgnore]
 067        public IEnumerable<Audio> Tracks => GetRecursiveChildren(i => i is Audio).Cast<Audio>();
 68
 69        public MusicArtist GetMusicArtist(DtoOptions options)
 70        {
 071            var parents = GetParents();
 072            foreach (var parent in parents)
 73            {
 074                if (parent is MusicArtist artist)
 75                {
 076                    return artist;
 77                }
 78            }
 79
 080            var name = AlbumArtist;
 081            if (!string.IsNullOrEmpty(name))
 82            {
 083                return LibraryManager.GetArtist(name, options);
 84            }
 85
 086            return null;
 087        }
 88
 89        protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
 90        {
 091            return Tracks;
 92        }
 93
 94        public override double GetDefaultPrimaryImageAspectRatio()
 95        {
 096            return 1;
 97        }
 98
 99        public override List<string> GetUserDataKeys()
 100        {
 0101            var list = base.GetUserDataKeys();
 102
 0103            var albumArtist = AlbumArtist;
 0104            if (!string.IsNullOrEmpty(albumArtist))
 105            {
 0106                list.Insert(0, albumArtist + "-" + Name);
 107            }
 108
 0109            var id = this.GetProviderId(MetadataProvider.MusicBrainzAlbum);
 110
 0111            if (!string.IsNullOrEmpty(id))
 112            {
 0113                list.Insert(0, "MusicAlbum-Musicbrainz-" + id);
 114            }
 115
 0116            id = this.GetProviderId(MetadataProvider.MusicBrainzReleaseGroup);
 117
 0118            if (!string.IsNullOrEmpty(id))
 119            {
 0120                list.Insert(0, "MusicAlbum-MusicBrainzReleaseGroup-" + id);
 121            }
 122
 0123            return list;
 124        }
 125
 126        protected override bool GetBlockUnratedValue(User user)
 127        {
 0128            return user.GetPreferenceValues<UnratedItem>(PreferenceKind.BlockUnratedItems).Contains(UnratedItem.Music);
 129        }
 130
 131        public override UnratedItem GetBlockUnratedType()
 132        {
 0133            return UnratedItem.Music;
 134        }
 135
 136        public AlbumInfo GetLookupInfo()
 137        {
 0138            var id = GetItemLookupInfo<AlbumInfo>();
 139
 0140            id.AlbumArtists = AlbumArtists;
 141
 0142            var artist = GetMusicArtist(new DtoOptions(false));
 143
 0144            if (artist is not null)
 145            {
 0146                id.ArtistProviderIds = artist.ProviderIds;
 147            }
 148
 0149            id.SongInfos = GetRecursiveChildren(i => i is Audio)
 0150                .Cast<Audio>()
 0151                .Select(i => i.GetLookupInfo())
 0152                .ToList();
 153
 0154            var album = id.SongInfos
 0155                .Select(i => i.Album)
 0156                .FirstOrDefault(i => !string.IsNullOrEmpty(i));
 157
 0158            if (!string.IsNullOrEmpty(album))
 159            {
 0160                id.Name = album;
 161            }
 162
 0163            return id;
 164        }
 165
 166        public async Task RefreshAllMetadata(MetadataRefreshOptions refreshOptions, IProgress<double> progress, Cancella
 167        {
 168            var items = GetRecursiveChildren();
 169
 170            var totalItems = items.Count;
 171            var numComplete = 0;
 172
 173            var childUpdateType = ItemUpdateType.None;
 174
 175            foreach (var item in items)
 176            {
 177                cancellationToken.ThrowIfCancellationRequested();
 178
 179                var updateType = await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
 180                childUpdateType = childUpdateType | updateType;
 181
 182                numComplete++;
 183                double percent = numComplete;
 184                percent /= totalItems;
 185                progress.Report(percent * 95);
 186            }
 187
 188            var parentRefreshOptions = refreshOptions;
 189            if (childUpdateType > ItemUpdateType.None)
 190            {
 191                parentRefreshOptions = new MetadataRefreshOptions(refreshOptions)
 192                {
 193                    MetadataRefreshMode = MetadataRefreshMode.FullRefresh
 194                };
 195            }
 196
 197            // Refresh current item
 198            await RefreshMetadata(parentRefreshOptions, cancellationToken).ConfigureAwait(false);
 199
 200            if (!refreshOptions.IsAutomated)
 201            {
 202                await RefreshArtists(refreshOptions, cancellationToken).ConfigureAwait(false);
 203            }
 204        }
 205
 206        private async Task RefreshArtists(MetadataRefreshOptions refreshOptions, CancellationToken cancellationToken)
 207        {
 208            foreach (var i in this.GetAllArtists())
 209            {
 210                // This should not be necessary but we're seeing some cases of it
 211                if (string.IsNullOrEmpty(i))
 212                {
 213                    continue;
 214                }
 215
 216                var artist = LibraryManager.GetArtist(i);
 217
 218                if (!artist.IsAccessedByName)
 219                {
 220                    continue;
 221                }
 222
 223                await artist.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
 224            }
 225        }
 226    }
 227}