| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CA1721, CA1826, CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Linq; |
| | 8 | | using System.Text.Json.Serialization; |
| | 9 | | using System.Threading; |
| | 10 | | using System.Threading.Tasks; |
| | 11 | | using Jellyfin.Data; |
| | 12 | | using Jellyfin.Data.Enums; |
| | 13 | | using Jellyfin.Database.Implementations.Entities; |
| | 14 | | using Jellyfin.Database.Implementations.Enums; |
| | 15 | | using MediaBrowser.Controller.Dto; |
| | 16 | | using MediaBrowser.Controller.Library; |
| | 17 | | using MediaBrowser.Controller.Providers; |
| | 18 | | using MediaBrowser.Model.Entities; |
| | 19 | | using MetadataProvider = MediaBrowser.Model.Entities.MetadataProvider; |
| | 20 | |
|
| | 21 | | namespace 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 | | { |
| 3 | 29 | | public MusicAlbum() |
| | 30 | | { |
| 3 | 31 | | Artists = Array.Empty<string>(); |
| 3 | 32 | | AlbumArtists = Array.Empty<string>(); |
| 3 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <inheritdoc /> |
| | 36 | | public IReadOnlyList<string> AlbumArtists { get; set; } |
| | 37 | |
|
| | 38 | | /// <inheritdoc /> |
| | 39 | | public IReadOnlyList<string> Artists { get; set; } |
| | 40 | |
|
| | 41 | | [JsonIgnore] |
| 0 | 42 | | public override bool SupportsAddingToPlaylist => true; |
| | 43 | |
|
| | 44 | | [JsonIgnore] |
| 0 | 45 | | public override bool SupportsInheritedParentImages => true; |
| | 46 | |
|
| | 47 | | [JsonIgnore] |
| 0 | 48 | | public MusicArtist MusicArtist => GetMusicArtist(new DtoOptions(true)); |
| | 49 | |
|
| | 50 | | [JsonIgnore] |
| 0 | 51 | | public override bool SupportsPlayedStatus => false; |
| | 52 | |
|
| | 53 | | [JsonIgnore] |
| 0 | 54 | | public override bool SupportsCumulativeRunTimeTicks => true; |
| | 55 | |
|
| | 56 | | [JsonIgnore] |
| 0 | 57 | | public string AlbumArtist => AlbumArtists.FirstOrDefault(); |
| | 58 | |
|
| | 59 | | [JsonIgnore] |
| 0 | 60 | | public override bool SupportsPeople => true; |
| | 61 | |
|
| | 62 | | /// <summary> |
| | 63 | | /// Gets the tracks. |
| | 64 | | /// </summary> |
| | 65 | | /// <value>The tracks.</value> |
| | 66 | | [JsonIgnore] |
| 0 | 67 | | public IEnumerable<Audio> Tracks => GetRecursiveChildren(i => i is Audio).Cast<Audio>(); |
| | 68 | |
|
| | 69 | | public MusicArtist GetMusicArtist(DtoOptions options) |
| | 70 | | { |
| 0 | 71 | | var parents = GetParents(); |
| 0 | 72 | | foreach (var parent in parents) |
| | 73 | | { |
| 0 | 74 | | if (parent is MusicArtist artist) |
| | 75 | | { |
| 0 | 76 | | return artist; |
| | 77 | | } |
| | 78 | | } |
| | 79 | |
|
| 0 | 80 | | var name = AlbumArtist; |
| 0 | 81 | | if (!string.IsNullOrEmpty(name)) |
| | 82 | | { |
| 0 | 83 | | return LibraryManager.GetArtist(name, options); |
| | 84 | | } |
| | 85 | |
|
| 0 | 86 | | return null; |
| 0 | 87 | | } |
| | 88 | |
|
| | 89 | | protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user) |
| | 90 | | { |
| 0 | 91 | | return Tracks; |
| | 92 | | } |
| | 93 | |
|
| | 94 | | public override double GetDefaultPrimaryImageAspectRatio() |
| | 95 | | { |
| 0 | 96 | | return 1; |
| | 97 | | } |
| | 98 | |
|
| | 99 | | public override List<string> GetUserDataKeys() |
| | 100 | | { |
| 0 | 101 | | var list = base.GetUserDataKeys(); |
| | 102 | |
|
| 0 | 103 | | var albumArtist = AlbumArtist; |
| 0 | 104 | | if (!string.IsNullOrEmpty(albumArtist)) |
| | 105 | | { |
| 0 | 106 | | list.Insert(0, albumArtist + "-" + Name); |
| | 107 | | } |
| | 108 | |
|
| 0 | 109 | | var id = this.GetProviderId(MetadataProvider.MusicBrainzAlbum); |
| | 110 | |
|
| 0 | 111 | | if (!string.IsNullOrEmpty(id)) |
| | 112 | | { |
| 0 | 113 | | list.Insert(0, "MusicAlbum-Musicbrainz-" + id); |
| | 114 | | } |
| | 115 | |
|
| 0 | 116 | | id = this.GetProviderId(MetadataProvider.MusicBrainzReleaseGroup); |
| | 117 | |
|
| 0 | 118 | | if (!string.IsNullOrEmpty(id)) |
| | 119 | | { |
| 0 | 120 | | list.Insert(0, "MusicAlbum-MusicBrainzReleaseGroup-" + id); |
| | 121 | | } |
| | 122 | |
|
| 0 | 123 | | return list; |
| | 124 | | } |
| | 125 | |
|
| | 126 | | protected override bool GetBlockUnratedValue(User user) |
| | 127 | | { |
| 0 | 128 | | return user.GetPreferenceValues<UnratedItem>(PreferenceKind.BlockUnratedItems).Contains(UnratedItem.Music); |
| | 129 | | } |
| | 130 | |
|
| | 131 | | public override UnratedItem GetBlockUnratedType() |
| | 132 | | { |
| 0 | 133 | | return UnratedItem.Music; |
| | 134 | | } |
| | 135 | |
|
| | 136 | | public AlbumInfo GetLookupInfo() |
| | 137 | | { |
| 0 | 138 | | var id = GetItemLookupInfo<AlbumInfo>(); |
| | 139 | |
|
| 0 | 140 | | id.AlbumArtists = AlbumArtists; |
| | 141 | |
|
| 0 | 142 | | var artist = GetMusicArtist(new DtoOptions(false)); |
| | 143 | |
|
| 0 | 144 | | if (artist is not null) |
| | 145 | | { |
| 0 | 146 | | id.ArtistProviderIds = artist.ProviderIds; |
| | 147 | | } |
| | 148 | |
|
| 0 | 149 | | id.SongInfos = GetRecursiveChildren(i => i is Audio) |
| 0 | 150 | | .Cast<Audio>() |
| 0 | 151 | | .Select(i => i.GetLookupInfo()) |
| 0 | 152 | | .ToList(); |
| | 153 | |
|
| 0 | 154 | | var album = id.SongInfos |
| 0 | 155 | | .Select(i => i.Album) |
| 0 | 156 | | .FirstOrDefault(i => !string.IsNullOrEmpty(i)); |
| | 157 | |
|
| 0 | 158 | | if (!string.IsNullOrEmpty(album)) |
| | 159 | | { |
| 0 | 160 | | id.Name = album; |
| | 161 | | } |
| | 162 | |
|
| 0 | 163 | | 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 | | } |