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