2021-05-06 15:39:20 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2021-07-23 16:36:27 -07:00
|
|
|
#pragma warning disable CA1002, CA1724, CA1826, CS1591
|
2020-08-22 12:56:24 -07:00
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2019-01-13 12:25:32 -07:00
|
|
|
using System.Collections.Generic;
|
2021-06-06 08:16:41 -07:00
|
|
|
using System.Globalization;
|
2019-08-29 13:28:33 -07:00
|
|
|
using System.Linq;
|
2019-10-15 08:49:49 -07:00
|
|
|
using System.Text.Json.Serialization;
|
2020-05-12 19:10:35 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 12:25:32 -07:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2018-12-27 16:27:57 -07:00
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// Class Audio.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public class Audio : BaseItem,
|
|
|
|
IHasAlbumArtist,
|
|
|
|
IHasArtist,
|
|
|
|
IHasMusicGenres,
|
|
|
|
IHasLookupInfo<SongInfo>,
|
|
|
|
IHasMediaSources
|
|
|
|
{
|
2021-07-23 16:36:27 -07:00
|
|
|
public Audio()
|
|
|
|
{
|
|
|
|
Artists = Array.Empty<string>();
|
|
|
|
AlbumArtists = Array.Empty<string>();
|
|
|
|
}
|
|
|
|
|
2019-08-29 13:28:33 -07:00
|
|
|
/// <inheritdoc />
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-08-29 13:28:33 -07:00
|
|
|
public IReadOnlyList<string> Artists { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-08-29 13:28:33 -07:00
|
|
|
/// <inheritdoc />
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-08-29 13:28:33 -07:00
|
|
|
public IReadOnlyList<string> AlbumArtists { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override bool SupportsPlayedStatus => true;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2021-07-27 05:02:49 -07:00
|
|
|
public override bool SupportsPeople => true;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override bool SupportsAddingToPlaylist => true;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override bool SupportsInheritedParentImages => true;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
protected override bool SupportsOwnedItems => false;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override Folder LatestItemsIndexContainer => AlbumEntity;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public MusicAlbum AlbumEntity => FindParent<MusicAlbum>();
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the type of the media.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the media.</value>
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override string MediaType => Model.Entities.MediaType.Audio;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2021-07-23 16:36:27 -07:00
|
|
|
public override double GetDefaultPrimaryImageAspectRatio()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool CanDownload()
|
|
|
|
{
|
|
|
|
return IsFileProtocol;
|
|
|
|
}
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Creates the name of the sort.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
protected override string CreateSortName()
|
|
|
|
{
|
2021-06-06 08:16:41 -07:00
|
|
|
return (ParentIndexNumber != null ? ParentIndexNumber.Value.ToString("0000 - ", CultureInfo.InvariantCulture) : string.Empty)
|
|
|
|
+ (IndexNumber != null ? IndexNumber.Value.ToString("0000 - ", CultureInfo.InvariantCulture) : string.Empty) + Name;
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public override List<string> GetUserDataKeys()
|
|
|
|
{
|
|
|
|
var list = base.GetUserDataKeys();
|
|
|
|
|
2021-06-06 08:16:41 -07:00
|
|
|
var songKey = IndexNumber.HasValue ? IndexNumber.Value.ToString("0000", CultureInfo.InvariantCulture) : string.Empty;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
if (ParentIndexNumber.HasValue)
|
|
|
|
{
|
2021-06-06 08:16:41 -07:00
|
|
|
songKey = ParentIndexNumber.Value.ToString("0000", CultureInfo.InvariantCulture) + "-" + songKey;
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
songKey += Name;
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(Album))
|
|
|
|
{
|
|
|
|
songKey = Album + "-" + songKey;
|
|
|
|
}
|
|
|
|
|
2019-08-29 13:28:33 -07:00
|
|
|
var albumArtist = AlbumArtists.FirstOrDefault();
|
2018-12-27 16:27:57 -07:00
|
|
|
if (!string.IsNullOrEmpty(albumArtist))
|
|
|
|
{
|
|
|
|
songKey = albumArtist + "-" + songKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
list.Insert(0, songKey);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
|
|
|
{
|
|
|
|
if (SourceType == SourceType.Library)
|
|
|
|
{
|
|
|
|
return UnratedItem.Music;
|
|
|
|
}
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
return base.GetBlockUnratedType();
|
|
|
|
}
|
|
|
|
|
|
|
|
public SongInfo GetLookupInfo()
|
|
|
|
{
|
|
|
|
var info = GetItemLookupInfo<SongInfo>();
|
|
|
|
|
|
|
|
info.AlbumArtists = AlbumArtists;
|
|
|
|
info.Album = Album;
|
|
|
|
info.Artists = Artists;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2021-12-24 14:18:24 -07:00
|
|
|
protected override IEnumerable<(BaseItem Item, MediaSourceType MediaSourceType)> GetAllItemsForMediaSources()
|
2021-11-16 08:31:57 -07:00
|
|
|
=> new[] { ((BaseItem)this, MediaSourceType.Default) };
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|