| | 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.Extensions; |
| | 9 | | using MediaBrowser.Controller.Providers; |
| | 10 | | using Microsoft.Extensions.Logging; |
| | 11 | |
|
| | 12 | | namespace MediaBrowser.Controller.Entities |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// This is the full Person object that can be retrieved with all of it's data. |
| | 16 | | /// </summary> |
| | 17 | | [Common.RequiresSourceSerialisation] |
| | 18 | | public class Person : BaseItem, IItemByName, IHasLookupInfo<PersonLookupInfo> |
| | 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 | | /// <summary> |
| | 29 | | /// Gets a value indicating whether to enable alpha numeric sorting. |
| | 30 | | /// </summary> |
| | 31 | | [JsonIgnore] |
| 0 | 32 | | public override bool EnableAlphaNumericSorting => false; |
| | 33 | |
|
| | 34 | | [JsonIgnore] |
| 0 | 35 | | public override bool SupportsPeople => false; |
| | 36 | |
|
| | 37 | | [JsonIgnore] |
| 0 | 38 | | public override bool SupportsAncestors => 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 PersonLookupInfo GetLookupInfo() |
| | 54 | | { |
| 0 | 55 | | return GetItemLookupInfo<PersonLookupInfo>(); |
| | 56 | | } |
| | 57 | |
|
| | 58 | | public override double GetDefaultPrimaryImageAspectRatio() |
| | 59 | | { |
| 0 | 60 | | double value = 2; |
| 0 | 61 | | value /= 3; |
| | 62 | |
|
| 0 | 63 | | return value; |
| | 64 | | } |
| | 65 | |
|
| | 66 | | public IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query) |
| | 67 | | { |
| 0 | 68 | | query.PersonIds = new[] { Id }; |
| | 69 | |
|
| 0 | 70 | | return LibraryManager.GetItemList(query); |
| | 71 | | } |
| | 72 | |
|
| | 73 | | public override bool CanDelete() |
| | 74 | | { |
| 0 | 75 | | return false; |
| | 76 | | } |
| | 77 | |
|
| | 78 | | public override bool IsSaveLocalMetadataEnabled() |
| | 79 | | { |
| 0 | 80 | | return true; |
| | 81 | | } |
| | 82 | |
|
| | 83 | | public static string GetPath(string name) |
| | 84 | | { |
| 1 | 85 | | return GetPath(name, true); |
| | 86 | | } |
| | 87 | |
|
| | 88 | | public static string GetPath(string name, bool normalizeName) |
| | 89 | | { |
| | 90 | | // Trim the period at the end because windows will have a hard time with that |
| 1 | 91 | | var validFilename = normalizeName ? |
| 1 | 92 | | FileSystem.GetValidFilename(name).Trim().TrimEnd('.') : |
| 1 | 93 | | name; |
| | 94 | |
|
| 1 | 95 | | string subFolderPrefix = null; |
| | 96 | |
|
| 3 | 97 | | foreach (char c in validFilename) |
| | 98 | | { |
| 1 | 99 | | if (char.IsLetterOrDigit(c)) |
| | 100 | | { |
| 1 | 101 | | subFolderPrefix = c.ToString(); |
| 1 | 102 | | break; |
| | 103 | | } |
| | 104 | | } |
| | 105 | |
|
| 1 | 106 | | var path = ConfigurationManager.ApplicationPaths.PeoplePath; |
| | 107 | |
|
| 1 | 108 | | return string.IsNullOrEmpty(subFolderPrefix) ? |
| 1 | 109 | | System.IO.Path.Combine(path, validFilename) : |
| 1 | 110 | | System.IO.Path.Combine(path, subFolderPrefix, validFilename); |
| | 111 | | } |
| | 112 | |
|
| | 113 | | private string GetRebasedPath() |
| | 114 | | { |
| 0 | 115 | | return GetPath(System.IO.Path.GetFileName(Path), false); |
| | 116 | | } |
| | 117 | |
|
| | 118 | | public override bool RequiresRefresh() |
| | 119 | | { |
| 0 | 120 | | var newPath = GetRebasedPath(); |
| 0 | 121 | | if (!string.Equals(Path, newPath, StringComparison.Ordinal)) |
| | 122 | | { |
| 0 | 123 | | Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath); |
| 0 | 124 | | return true; |
| | 125 | | } |
| | 126 | |
|
| 0 | 127 | | return base.RequiresRefresh(); |
| | 128 | | } |
| | 129 | |
|
| | 130 | | /// <summary> |
| | 131 | | /// This is called before any metadata refresh and returns true or false indicating if changes were made. |
| | 132 | | /// </summary> |
| | 133 | | /// <param name="replaceAllMetadata"><c>true</c> to replace all metadata, <c>false</c> to not.</param> |
| | 134 | | /// <returns><c>true</c> if changes were made, <c>false</c> if not.</returns> |
| | 135 | | public override bool BeforeMetadataRefresh(bool replaceAllMetadata) |
| | 136 | | { |
| 0 | 137 | | var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata); |
| | 138 | |
|
| 0 | 139 | | var newPath = GetRebasedPath(); |
| 0 | 140 | | if (!string.Equals(Path, newPath, StringComparison.Ordinal)) |
| | 141 | | { |
| 0 | 142 | | Path = newPath; |
| 0 | 143 | | hasChanges = true; |
| | 144 | | } |
| | 145 | |
|
| 0 | 146 | | return hasChanges; |
| | 147 | | } |
| | 148 | | } |
| | 149 | | } |