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