jellyfin/MediaBrowser.Controller/Entities/Audio/Audio.cs

154 lines
4.3 KiB
C#
Raw Normal View History

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