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

231 lines
6.9 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
using System.Linq;
2019-10-15 11:49:49 -04:00
using System.Text.Json.Serialization;
2018-12-27 18:27:57 -05:00
using System.Threading;
using System.Threading.Tasks;
2020-05-20 13:07:53 -04:00
using Jellyfin.Data.Entities;
2020-05-12 22:10:35 -04:00
using Jellyfin.Data.Enums;
using Jellyfin.Extensions;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2018-12-27 19:11:04 -05:00
using Microsoft.Extensions.Logging;
2020-06-11 18:28:49 -04:00
using MetadataProvider = MediaBrowser.Model.Entities.MetadataProvider;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Entities.Audio
{
/// <summary>
/// Class MusicArtist.
2018-12-27 18:27:57 -05:00
/// </summary>
public class MusicArtist : Folder, IItemByName, IHasMusicGenres, IHasDualAccess, IHasLookupInfo<ArtistInfo>
{
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public bool IsAccessedByName => ParentId.IsEmpty();
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool IsFolder => !IsAccessedByName;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsInheritedParentImages => false;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsCumulativeRunTimeTicks => true;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool IsDisplayedAsFolder => 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 SupportsPlayedStatus => false;
2018-12-27 18:27:57 -05:00
2021-07-23 19:36:27 -04:00
/// <summary>
/// Gets the folder containing the item.
/// If the item is a folder, it returns the folder itself.
/// </summary>
/// <value>The containing folder path.</value>
[JsonIgnore]
public override string ContainingFolderPath => Path;
[JsonIgnore]
public override IEnumerable<BaseItem> Children
{
get
{
if (IsAccessedByName)
{
2023-06-21 23:01:47 -04:00
return Enumerable.Empty<BaseItem>();
2021-07-23 19:36:27 -04:00
}
return base.Children;
}
}
[JsonIgnore]
public override bool SupportsPeople => false;
public static string GetPath(string name)
{
return GetPath(name, true);
}
2018-12-27 18:27:57 -05:00
public override double GetDefaultPrimaryImageAspectRatio()
{
return 1;
}
public override bool CanDelete()
{
return !IsAccessedByName;
}
public IList<BaseItem> GetTaggedItems(InternalItemsQuery query)
{
if (query.IncludeItemTypes.Length == 0)
{
2021-12-11 21:31:30 -05:00
query.IncludeItemTypes = new[] { BaseItemKind.Audio, BaseItemKind.MusicVideo, BaseItemKind.MusicAlbum };
2018-12-27 18:27:57 -05:00
query.ArtistIds = new[] { Id };
}
return LibraryManager.GetItemList(query);
}
2020-05-20 13:07:53 -04:00
public override int GetChildCount(User user)
2018-12-27 18:27:57 -05:00
{
2020-05-20 13:07:53 -04:00
return IsAccessedByName ? 0 : base.GetChildCount(user);
2018-12-27 18:27:57 -05:00
}
public override bool IsSaveLocalMetadataEnabled()
{
if (IsAccessedByName)
{
return true;
}
return base.IsSaveLocalMetadataEnabled();
}
protected override Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService, CancellationToken cancellationToken)
2018-12-27 18:27:57 -05:00
{
if (IsAccessedByName)
{
// Should never get in here anyway
2018-12-27 16:43:48 -05:00
return Task.CompletedTask;
2018-12-27 18:27:57 -05:00
}
return base.ValidateChildrenInternal(progress, recursive, refreshChildMetadata, refreshOptions, directoryService, cancellationToken);
2018-12-27 18:27:57 -05:00
}
public override List<string> GetUserDataKeys()
{
var list = base.GetUserDataKeys();
list.InsertRange(0, GetUserDataKeys(this));
return list;
}
/// <summary>
/// Gets the user data key.
/// </summary>
/// <param name="item">The item.</param>
/// <returns>System.String.</returns>
private static List<string> GetUserDataKeys(MusicArtist item)
{
var list = new List<string>();
2020-06-06 15:17:49 -04:00
var id = item.GetProviderId(MetadataProvider.MusicBrainzArtist);
2018-12-27 18:27:57 -05:00
if (!string.IsNullOrEmpty(id))
{
list.Add("Artist-Musicbrainz-" + id);
}
list.Add("Artist-" + (item.Name ?? string.Empty).RemoveDiacritics());
return list;
}
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public override string CreatePresentationUniqueKey()
{
return "Artist-" + (Name ?? string.Empty).RemoveDiacritics();
}
2020-05-12 22:10:35 -04:00
2020-05-20 13:07:53 -04:00
protected override bool GetBlockUnratedValue(User user)
2018-12-27 18:27:57 -05:00
{
2020-12-13 10:15:26 -05:00
return user.GetPreferenceValues<UnratedItem>(PreferenceKind.BlockUnratedItems).Contains(UnratedItem.Music);
2018-12-27 18:27:57 -05:00
}
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.Music;
}
public ArtistInfo GetLookupInfo()
{
var info = GetItemLookupInfo<ArtistInfo>();
info.SongInfos = GetRecursiveChildren(i => i is Audio)
.Cast<Audio>()
.Select(i => i.GetLookupInfo())
.ToList();
return info;
}
public static string GetPath(string name, bool normalizeName)
{
// Trim the period at the end because windows will have a hard time with that
var validName = normalizeName ?
FileSystem.GetValidFilename(name).Trim().TrimEnd('.') :
name;
return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.ArtistsPath, validName);
}
private string GetRebasedPath()
{
return GetPath(System.IO.Path.GetFileName(Path), false);
}
public override bool RequiresRefresh()
{
if (IsAccessedByName)
{
var newPath = GetRebasedPath();
if (!string.Equals(Path, newPath, StringComparison.Ordinal))
{
2018-12-27 19:11:04 -05:00
Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath);
2018-12-27 18:27:57 -05:00
return true;
}
}
2020-02-22 01:04:52 -05:00
2018-12-27 18:27:57 -05:00
return base.RequiresRefresh();
}
/// <summary>
/// This is called before any metadata refresh and returns true or false indicating if changes were made.
2018-12-27 18:27:57 -05:00
/// </summary>
2021-07-23 19:36:27 -04:00
/// <param name="replaceAllMetadata">Option to replace metadata.</param>
/// <returns>True if metadata changed.</returns>
public override bool BeforeMetadataRefresh(bool replaceAllMetadata)
2018-12-27 18:27:57 -05:00
{
var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata);
2018-12-27 18:27:57 -05:00
if (IsAccessedByName)
{
var newPath = GetRebasedPath();
if (!string.Equals(Path, newPath, StringComparison.Ordinal))
{
Path = newPath;
hasChanges = true;
}
}
return hasChanges;
}
}
}