| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable 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 Jellyfin.Extensions; |
| | 16 | | using MediaBrowser.Controller.Providers; |
| | 17 | | using MediaBrowser.Model.Entities; |
| | 18 | | using Microsoft.Extensions.Logging; |
| | 19 | | using MetadataProvider = MediaBrowser.Model.Entities.MetadataProvider; |
| | 20 | |
|
| | 21 | | namespace MediaBrowser.Controller.Entities.Audio |
| | 22 | | { |
| | 23 | | /// <summary> |
| | 24 | | /// Class MusicArtist. |
| | 25 | | /// </summary> |
| | 26 | | [Common.RequiresSourceSerialisation] |
| | 27 | | public class MusicArtist : Folder, IItemByName, IHasMusicGenres, IHasDualAccess, IHasLookupInfo<ArtistInfo> |
| | 28 | | { |
| | 29 | | [JsonIgnore] |
| 1 | 30 | | public bool IsAccessedByName => ParentId.IsEmpty(); |
| | 31 | |
|
| | 32 | | [JsonIgnore] |
| 1 | 33 | | public override bool IsFolder => !IsAccessedByName; |
| | 34 | |
|
| | 35 | | [JsonIgnore] |
| 0 | 36 | | public override bool SupportsInheritedParentImages => false; |
| | 37 | |
|
| | 38 | | [JsonIgnore] |
| 0 | 39 | | public override bool SupportsCumulativeRunTimeTicks => true; |
| | 40 | |
|
| | 41 | | [JsonIgnore] |
| 0 | 42 | | public override bool IsDisplayedAsFolder => true; |
| | 43 | |
|
| | 44 | | [JsonIgnore] |
| 0 | 45 | | public override bool SupportsAddingToPlaylist => true; |
| | 46 | |
|
| | 47 | | [JsonIgnore] |
| 0 | 48 | | public override bool SupportsPlayedStatus => false; |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Gets the folder containing the item. |
| | 52 | | /// If the item is a folder, it returns the folder itself. |
| | 53 | | /// </summary> |
| | 54 | | /// <value>The containing folder path.</value> |
| | 55 | | [JsonIgnore] |
| 0 | 56 | | public override string ContainingFolderPath => Path; |
| | 57 | |
|
| | 58 | | [JsonIgnore] |
| | 59 | | public override IEnumerable<BaseItem> Children |
| | 60 | | { |
| | 61 | | get |
| | 62 | | { |
| 0 | 63 | | if (IsAccessedByName) |
| | 64 | | { |
| 0 | 65 | | return Enumerable.Empty<BaseItem>(); |
| | 66 | | } |
| | 67 | |
|
| 0 | 68 | | return base.Children; |
| | 69 | | } |
| | 70 | | } |
| | 71 | |
|
| | 72 | | [JsonIgnore] |
| 0 | 73 | | public override bool SupportsPeople => false; |
| | 74 | |
|
| | 75 | | public static string GetPath(string name) |
| | 76 | | { |
| 0 | 77 | | return GetPath(name, true); |
| | 78 | | } |
| | 79 | |
|
| | 80 | | public override double GetDefaultPrimaryImageAspectRatio() |
| | 81 | | { |
| 0 | 82 | | return 1; |
| | 83 | | } |
| | 84 | |
|
| | 85 | | public override bool CanDelete() |
| | 86 | | { |
| 0 | 87 | | return !IsAccessedByName; |
| | 88 | | } |
| | 89 | |
|
| | 90 | | public IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query) |
| | 91 | | { |
| 0 | 92 | | if (query.IncludeItemTypes.Length == 0) |
| | 93 | | { |
| 0 | 94 | | query.IncludeItemTypes = new[] { BaseItemKind.Audio, BaseItemKind.MusicVideo, BaseItemKind.MusicAlbum }; |
| 0 | 95 | | query.ArtistIds = new[] { Id }; |
| | 96 | | } |
| | 97 | |
|
| 0 | 98 | | return LibraryManager.GetItemList(query); |
| | 99 | | } |
| | 100 | |
|
| | 101 | | public override int GetChildCount(User user) |
| | 102 | | { |
| 0 | 103 | | return IsAccessedByName ? 0 : base.GetChildCount(user); |
| | 104 | | } |
| | 105 | |
|
| | 106 | | public override bool IsSaveLocalMetadataEnabled() |
| | 107 | | { |
| 0 | 108 | | if (IsAccessedByName) |
| | 109 | | { |
| 0 | 110 | | return true; |
| | 111 | | } |
| | 112 | |
|
| 0 | 113 | | return base.IsSaveLocalMetadataEnabled(); |
| | 114 | | } |
| | 115 | |
|
| | 116 | | protected override async Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshC |
| | 117 | | { |
| | 118 | | if (IsAccessedByName) |
| | 119 | | { |
| | 120 | | // Should never get in here anyway |
| | 121 | | return; |
| | 122 | | } |
| | 123 | |
|
| | 124 | | await base.ValidateChildrenInternal(progress, recursive, refreshChildMetadata, false, refreshOptions, direct |
| | 125 | | } |
| | 126 | |
|
| | 127 | | public override List<string> GetUserDataKeys() |
| | 128 | | { |
| 0 | 129 | | var list = base.GetUserDataKeys(); |
| | 130 | |
|
| 0 | 131 | | list.InsertRange(0, GetUserDataKeys(this)); |
| 0 | 132 | | return list; |
| | 133 | | } |
| | 134 | |
|
| | 135 | | /// <summary> |
| | 136 | | /// Gets the user data key. |
| | 137 | | /// </summary> |
| | 138 | | /// <param name="item">The item.</param> |
| | 139 | | /// <returns>System.String.</returns> |
| | 140 | | private static List<string> GetUserDataKeys(MusicArtist item) |
| | 141 | | { |
| 0 | 142 | | var list = new List<string>(); |
| 0 | 143 | | if (item.TryGetProviderId(MetadataProvider.MusicBrainzArtist, out var externalId)) |
| | 144 | | { |
| 0 | 145 | | list.Add("Artist-Musicbrainz-" + externalId); |
| | 146 | | } |
| | 147 | |
|
| 0 | 148 | | list.Add("Artist-" + (item.Name ?? string.Empty).RemoveDiacritics()); |
| 0 | 149 | | return list; |
| | 150 | | } |
| | 151 | |
|
| | 152 | | public override string CreatePresentationUniqueKey() |
| | 153 | | { |
| 0 | 154 | | return "Artist-" + (Name ?? string.Empty).RemoveDiacritics(); |
| | 155 | | } |
| | 156 | |
|
| | 157 | | protected override bool GetBlockUnratedValue(User user) |
| | 158 | | { |
| 0 | 159 | | return user.GetPreferenceValues<UnratedItem>(PreferenceKind.BlockUnratedItems).Contains(UnratedItem.Music); |
| | 160 | | } |
| | 161 | |
|
| | 162 | | public override UnratedItem GetBlockUnratedType() |
| | 163 | | { |
| 0 | 164 | | return UnratedItem.Music; |
| | 165 | | } |
| | 166 | |
|
| | 167 | | public ArtistInfo GetLookupInfo() |
| | 168 | | { |
| 0 | 169 | | var info = GetItemLookupInfo<ArtistInfo>(); |
| | 170 | |
|
| 0 | 171 | | info.SongInfos = GetRecursiveChildren(i => i is Audio) |
| 0 | 172 | | .Cast<Audio>() |
| 0 | 173 | | .Select(i => i.GetLookupInfo()) |
| 0 | 174 | | .ToList(); |
| | 175 | |
|
| 0 | 176 | | return info; |
| | 177 | | } |
| | 178 | |
|
| | 179 | | public static string GetPath(string name, bool normalizeName) |
| | 180 | | { |
| | 181 | | // Trim the period at the end because windows will have a hard time with that |
| 0 | 182 | | var validName = normalizeName ? |
| 0 | 183 | | FileSystem.GetValidFilename(name).Trim().TrimEnd('.') : |
| 0 | 184 | | name; |
| | 185 | |
|
| 0 | 186 | | return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.ArtistsPath, validName); |
| | 187 | | } |
| | 188 | |
|
| | 189 | | private string GetRebasedPath() |
| | 190 | | { |
| 0 | 191 | | return GetPath(System.IO.Path.GetFileName(Path), false); |
| | 192 | | } |
| | 193 | |
|
| | 194 | | public override bool RequiresRefresh() |
| | 195 | | { |
| 0 | 196 | | if (IsAccessedByName) |
| | 197 | | { |
| 0 | 198 | | var newPath = GetRebasedPath(); |
| 0 | 199 | | if (!string.Equals(Path, newPath, StringComparison.Ordinal)) |
| | 200 | | { |
| 0 | 201 | | Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath); |
| 0 | 202 | | return true; |
| | 203 | | } |
| | 204 | | } |
| | 205 | |
|
| 0 | 206 | | return base.RequiresRefresh(); |
| | 207 | | } |
| | 208 | |
|
| | 209 | | /// <summary> |
| | 210 | | /// This is called before any metadata refresh and returns true or false indicating if changes were made. |
| | 211 | | /// </summary> |
| | 212 | | /// <param name="replaceAllMetadata">Option to replace metadata.</param> |
| | 213 | | /// <returns>True if metadata changed.</returns> |
| | 214 | | public override bool BeforeMetadataRefresh(bool replaceAllMetadata) |
| | 215 | | { |
| 0 | 216 | | var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata); |
| | 217 | |
|
| 0 | 218 | | if (IsAccessedByName) |
| | 219 | | { |
| 0 | 220 | | var newPath = GetRebasedPath(); |
| 0 | 221 | | if (!string.Equals(Path, newPath, StringComparison.Ordinal)) |
| | 222 | | { |
| 0 | 223 | | Path = newPath; |
| 0 | 224 | | hasChanges = true; |
| | 225 | | } |
| | 226 | | } |
| | 227 | |
|
| 0 | 228 | | return hasChanges; |
| | 229 | | } |
| | 230 | | } |
| | 231 | | } |