| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Text.Json.Serialization; |
| | 8 | | using Jellyfin.Data.Enums; |
| | 9 | | using Jellyfin.Extensions; |
| | 10 | | using Microsoft.Extensions.Logging; |
| | 11 | |
|
| | 12 | | namespace MediaBrowser.Controller.Entities.Audio |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// Class MusicGenre. |
| | 16 | | /// </summary> |
| | 17 | | [Common.RequiresSourceSerialisation] |
| | 18 | | public class MusicGenre : BaseItem, IItemByName |
| | 19 | | { |
| | 20 | | [JsonIgnore] |
| 0 | 21 | | public override bool SupportsAddingToPlaylist => true; |
| | 22 | |
|
| | 23 | | [JsonIgnore] |
| 0 | 24 | | public override bool SupportsAncestors => false; |
| | 25 | |
|
| | 26 | | [JsonIgnore] |
| 0 | 27 | | public override bool IsDisplayedAsFolder => true; |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Gets the folder containing the item. |
| | 31 | | /// If the item is a folder, it returns the folder itself. |
| | 32 | | /// </summary> |
| | 33 | | /// <value>The containing folder path.</value> |
| | 34 | | [JsonIgnore] |
| 0 | 35 | | public override string ContainingFolderPath => Path; |
| | 36 | |
|
| | 37 | | [JsonIgnore] |
| 0 | 38 | | public override bool SupportsPeople => false; |
| | 39 | |
|
| | 40 | | public override List<string> GetUserDataKeys() |
| | 41 | | { |
| 0 | 42 | | var list = base.GetUserDataKeys(); |
| | 43 | |
|
| 0 | 44 | | list.Insert(0, GetType().Name + "-" + (Name ?? string.Empty).RemoveDiacritics()); |
| 0 | 45 | | return list; |
| | 46 | | } |
| | 47 | |
|
| | 48 | | public override string CreatePresentationUniqueKey() |
| | 49 | | { |
| 0 | 50 | | return GetUserDataKeys()[0]; |
| | 51 | | } |
| | 52 | |
|
| | 53 | | public override double GetDefaultPrimaryImageAspectRatio() |
| | 54 | | { |
| 0 | 55 | | return 1; |
| | 56 | | } |
| | 57 | |
|
| | 58 | | public override bool CanDelete() |
| | 59 | | { |
| 0 | 60 | | return false; |
| | 61 | | } |
| | 62 | |
|
| | 63 | | public override bool IsSaveLocalMetadataEnabled() |
| | 64 | | { |
| 0 | 65 | | return true; |
| | 66 | | } |
| | 67 | |
|
| | 68 | | public IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query) |
| | 69 | | { |
| 0 | 70 | | query.GenreIds = new[] { Id }; |
| 0 | 71 | | query.IncludeItemTypes = new[] { BaseItemKind.MusicVideo, BaseItemKind.Audio, BaseItemKind.MusicAlbum, BaseI |
| | 72 | |
|
| 0 | 73 | | return LibraryManager.GetItemList(query); |
| | 74 | | } |
| | 75 | |
|
| | 76 | | public static string GetPath(string name) |
| | 77 | | { |
| 0 | 78 | | return GetPath(name, true); |
| | 79 | | } |
| | 80 | |
|
| | 81 | | public static string GetPath(string name, bool normalizeName) |
| | 82 | | { |
| | 83 | | // Trim the period at the end because windows will have a hard time with that |
| 0 | 84 | | var validName = normalizeName ? |
| 0 | 85 | | FileSystem.GetValidFilename(name).Trim().TrimEnd('.') : |
| 0 | 86 | | name; |
| | 87 | |
|
| 0 | 88 | | return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.MusicGenrePath, validName); |
| | 89 | | } |
| | 90 | |
|
| | 91 | | private string GetRebasedPath() |
| | 92 | | { |
| 0 | 93 | | return GetPath(System.IO.Path.GetFileName(Path), false); |
| | 94 | | } |
| | 95 | |
|
| | 96 | | public override bool RequiresRefresh() |
| | 97 | | { |
| 0 | 98 | | var newPath = GetRebasedPath(); |
| 0 | 99 | | if (!string.Equals(Path, newPath, StringComparison.Ordinal)) |
| | 100 | | { |
| 0 | 101 | | Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath); |
| 0 | 102 | | return true; |
| | 103 | | } |
| | 104 | |
|
| 0 | 105 | | return base.RequiresRefresh(); |
| | 106 | | } |
| | 107 | |
|
| | 108 | | /// <summary> |
| | 109 | | /// This is called before any metadata refresh and returns true or false indicating if changes were made. |
| | 110 | | /// </summary> |
| | 111 | | /// <param name="replaceAllMetadata">Option to replace metadata.</param> |
| | 112 | | /// <returns>True if metadata changed.</returns> |
| | 113 | | public override bool BeforeMetadataRefresh(bool replaceAllMetadata) |
| | 114 | | { |
| 0 | 115 | | var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata); |
| | 116 | |
|
| 0 | 117 | | var newPath = GetRebasedPath(); |
| 0 | 118 | | if (!string.Equals(Path, newPath, StringComparison.Ordinal)) |
| | 119 | | { |
| 0 | 120 | | Path = newPath; |
| 0 | 121 | | hasChanges = true; |
| | 122 | | } |
| | 123 | |
|
| 0 | 124 | | return hasChanges; |
| | 125 | | } |
| | 126 | | } |
| | 127 | | } |