| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 | 
							- #nullable disable
 
- #pragma warning disable CA1002, CA1724, CA1826, CS1591
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Globalization;
 
- using System.Linq;
 
- using System.Text.Json.Serialization;
 
- using Jellyfin.Data.Enums;
 
- using MediaBrowser.Controller.Providers;
 
- using MediaBrowser.Model.Dto;
 
- namespace MediaBrowser.Controller.Entities.Audio
 
- {
 
-     /// <summary>
 
-     /// Class Audio.
 
-     /// </summary>
 
-     public class Audio : BaseItem,
 
-         IHasAlbumArtist,
 
-         IHasArtist,
 
-         IHasMusicGenres,
 
-         IHasLookupInfo<SongInfo>,
 
-         IHasMediaSources
 
-     {
 
-         public Audio()
 
-         {
 
-             Artists = Array.Empty<string>();
 
-             AlbumArtists = Array.Empty<string>();
 
-         }
 
-         /// <inheritdoc />
 
-         [JsonIgnore]
 
-         public IReadOnlyList<string> Artists { get; set; }
 
-         /// <inheritdoc />
 
-         [JsonIgnore]
 
-         public IReadOnlyList<string> AlbumArtists { get; set; }
 
-         [JsonIgnore]
 
-         public override bool SupportsPlayedStatus => true;
 
-         [JsonIgnore]
 
-         public override bool SupportsPeople => true;
 
-         [JsonIgnore]
 
-         public override bool SupportsAddingToPlaylist => true;
 
-         [JsonIgnore]
 
-         public override bool SupportsInheritedParentImages => true;
 
-         [JsonIgnore]
 
-         protected override bool SupportsOwnedItems => false;
 
-         [JsonIgnore]
 
-         public override Folder LatestItemsIndexContainer => AlbumEntity;
 
-         [JsonIgnore]
 
-         public MusicAlbum AlbumEntity => FindParent<MusicAlbum>();
 
-         /// <summary>
 
-         /// Gets the type of the media.
 
-         /// </summary>
 
-         /// <value>The type of the media.</value>
 
-         [JsonIgnore]
 
-         public override string MediaType => Model.Entities.MediaType.Audio;
 
-         public override double GetDefaultPrimaryImageAspectRatio()
 
-         {
 
-             return 1;
 
-         }
 
-         public override bool CanDownload()
 
-         {
 
-             return IsFileProtocol;
 
-         }
 
-         /// <summary>
 
-         /// Creates the name of the sort.
 
-         /// </summary>
 
-         /// <returns>System.String.</returns>
 
-         protected override string CreateSortName()
 
-         {
 
-             return (ParentIndexNumber is not null ? ParentIndexNumber.Value.ToString("0000 - ", CultureInfo.InvariantCulture) : string.Empty)
 
-                     + (IndexNumber is not null ? IndexNumber.Value.ToString("0000 - ", CultureInfo.InvariantCulture) : string.Empty) + Name;
 
-         }
 
-         public override List<string> GetUserDataKeys()
 
-         {
 
-             var list = base.GetUserDataKeys();
 
-             var songKey = IndexNumber.HasValue ? IndexNumber.Value.ToString("0000", CultureInfo.InvariantCulture) : string.Empty;
 
-             if (ParentIndexNumber.HasValue)
 
-             {
 
-                 songKey = ParentIndexNumber.Value.ToString("0000", CultureInfo.InvariantCulture) + "-" + songKey;
 
-             }
 
-             songKey += Name;
 
-             if (!string.IsNullOrEmpty(Album))
 
-             {
 
-                 songKey = Album + "-" + songKey;
 
-             }
 
-             var albumArtist = AlbumArtists.FirstOrDefault();
 
-             if (!string.IsNullOrEmpty(albumArtist))
 
-             {
 
-                 songKey = albumArtist + "-" + songKey;
 
-             }
 
-             list.Insert(0, songKey);
 
-             return list;
 
-         }
 
-         public override UnratedItem GetBlockUnratedType()
 
-         {
 
-             if (SourceType == SourceType.Library)
 
-             {
 
-                 return UnratedItem.Music;
 
-             }
 
-             return base.GetBlockUnratedType();
 
-         }
 
-         public SongInfo GetLookupInfo()
 
-         {
 
-             var info = GetItemLookupInfo<SongInfo>();
 
-             info.AlbumArtists = AlbumArtists;
 
-             info.Album = Album;
 
-             info.Artists = Artists;
 
-             return info;
 
-         }
 
-         protected override IEnumerable<(BaseItem Item, MediaSourceType MediaSourceType)> GetAllItemsForMediaSources()
 
-             => new[] { ((BaseItem)this, MediaSourceType.Default) };
 
-     }
 
- }
 
 
  |