| | 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.Enums; |
| | 12 | | using Jellyfin.Database.Implementations.Entities; |
| | 13 | | using Jellyfin.Extensions; |
| | 14 | | using MediaBrowser.Controller.Providers; |
| | 15 | | using MediaBrowser.Controller.TV; |
| | 16 | | using MediaBrowser.Model.Querying; |
| | 17 | |
|
| | 18 | | namespace MediaBrowser.Controller.Entities |
| | 19 | | { |
| | 20 | | public class UserView : Folder, IHasCollectionType |
| | 21 | | { |
| 1 | 22 | | private static readonly CollectionType?[] _viewTypesEligibleForGrouping = |
| 1 | 23 | | { |
| 1 | 24 | | Jellyfin.Data.Enums.CollectionType.movies, |
| 1 | 25 | | Jellyfin.Data.Enums.CollectionType.tvshows, |
| 1 | 26 | | null |
| 1 | 27 | | }; |
| | 28 | |
|
| 1 | 29 | | private static readonly CollectionType?[] _originalFolderViewTypes = |
| 1 | 30 | | { |
| 1 | 31 | | Jellyfin.Data.Enums.CollectionType.books, |
| 1 | 32 | | Jellyfin.Data.Enums.CollectionType.musicvideos, |
| 1 | 33 | | Jellyfin.Data.Enums.CollectionType.homevideos, |
| 1 | 34 | | Jellyfin.Data.Enums.CollectionType.photos, |
| 1 | 35 | | Jellyfin.Data.Enums.CollectionType.music, |
| 1 | 36 | | Jellyfin.Data.Enums.CollectionType.boxsets |
| 1 | 37 | | }; |
| | 38 | |
|
| | 39 | | public static ITVSeriesManager TVSeriesManager { get; set; } |
| | 40 | |
|
| | 41 | | /// <summary> |
| | 42 | | /// Gets or sets the view type. |
| | 43 | | /// </summary> |
| | 44 | | public CollectionType? ViewType { get; set; } |
| | 45 | |
|
| | 46 | | /// <summary> |
| | 47 | | /// Gets or sets the display parent id. |
| | 48 | | /// </summary> |
| | 49 | | public new Guid DisplayParentId { get; set; } |
| | 50 | |
|
| | 51 | | /// <summary> |
| | 52 | | /// Gets or sets the user id. |
| | 53 | | /// </summary> |
| | 54 | | public Guid? UserId { get; set; } |
| | 55 | |
|
| | 56 | | /// <inheritdoc /> |
| | 57 | | [JsonIgnore] |
| 0 | 58 | | public CollectionType? CollectionType => ViewType; |
| | 59 | |
|
| | 60 | | /// <inheritdoc /> |
| | 61 | | [JsonIgnore] |
| 0 | 62 | | public override bool SupportsInheritedParentImages => false; |
| | 63 | |
|
| | 64 | | /// <inheritdoc /> |
| | 65 | | [JsonIgnore] |
| 0 | 66 | | public override bool SupportsPlayedStatus => false; |
| | 67 | |
|
| | 68 | | /// <inheritdoc /> |
| | 69 | | [JsonIgnore] |
| 0 | 70 | | public override bool SupportsPeople => false; |
| | 71 | |
|
| | 72 | | /// <inheritdoc /> |
| | 73 | | public override IEnumerable<Guid> GetIdsForAncestorQuery() |
| | 74 | | { |
| | 75 | | if (!DisplayParentId.IsEmpty()) |
| | 76 | | { |
| | 77 | | yield return DisplayParentId; |
| | 78 | | } |
| | 79 | | else if (!ParentId.IsEmpty()) |
| | 80 | | { |
| | 81 | | yield return ParentId; |
| | 82 | | } |
| | 83 | | else |
| | 84 | | { |
| | 85 | | yield return Id; |
| | 86 | | } |
| | 87 | | } |
| | 88 | |
|
| | 89 | | /// <inheritdoc /> |
| | 90 | | public override int GetChildCount(User user) |
| | 91 | | { |
| 0 | 92 | | return GetChildren(user, true).Count; |
| | 93 | | } |
| | 94 | |
|
| | 95 | | /// <inheritdoc /> |
| | 96 | | protected override QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query) |
| | 97 | | { |
| 0 | 98 | | var parent = this as Folder; |
| | 99 | |
|
| 0 | 100 | | if (!DisplayParentId.IsEmpty()) |
| | 101 | | { |
| 0 | 102 | | parent = LibraryManager.GetItemById(DisplayParentId) as Folder ?? parent; |
| | 103 | | } |
| 0 | 104 | | else if (!ParentId.IsEmpty()) |
| | 105 | | { |
| 0 | 106 | | parent = LibraryManager.GetItemById(ParentId) as Folder ?? parent; |
| | 107 | | } |
| | 108 | |
|
| 0 | 109 | | return new UserViewBuilder(UserViewManager, LibraryManager, Logger, UserDataManager, TVSeriesManager) |
| 0 | 110 | | .GetUserItems(parent, this, CollectionType, query); |
| | 111 | | } |
| | 112 | |
|
| | 113 | | /// <inheritdoc /> |
| | 114 | | public override List<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery query) |
| | 115 | | { |
| 0 | 116 | | query ??= new InternalItemsQuery(user); |
| | 117 | |
|
| 0 | 118 | | query.EnableTotalRecordCount = false; |
| 0 | 119 | | var result = GetItemList(query); |
| | 120 | |
|
| 0 | 121 | | return result.ToList(); |
| | 122 | | } |
| | 123 | |
|
| | 124 | | /// <inheritdoc /> |
| | 125 | | public override bool CanDelete() |
| | 126 | | { |
| 0 | 127 | | return false; |
| | 128 | | } |
| | 129 | |
|
| | 130 | | /// <inheritdoc /> |
| | 131 | | public override bool IsSaveLocalMetadataEnabled() |
| | 132 | | { |
| 0 | 133 | | return true; |
| | 134 | | } |
| | 135 | |
|
| | 136 | | /// <inheritdoc /> |
| | 137 | | public override IReadOnlyList<BaseItem> GetRecursiveChildren(User user, InternalItemsQuery query) |
| | 138 | | { |
| 0 | 139 | | query.SetUser(user); |
| 0 | 140 | | query.Recursive = true; |
| 0 | 141 | | query.EnableTotalRecordCount = false; |
| 0 | 142 | | query.ForceDirect = true; |
| | 143 | |
|
| 0 | 144 | | return GetItemList(query); |
| | 145 | | } |
| | 146 | |
|
| | 147 | | /// <inheritdoc /> |
| | 148 | | protected override IReadOnlyList<BaseItem> GetEligibleChildrenForRecursiveChildren(User user) |
| | 149 | | { |
| 0 | 150 | | return GetChildren(user, false); |
| | 151 | | } |
| | 152 | |
|
| | 153 | | public static bool IsUserSpecific(Folder folder) |
| | 154 | | { |
| 0 | 155 | | if (folder is not ICollectionFolder collectionFolder) |
| | 156 | | { |
| 0 | 157 | | return false; |
| | 158 | | } |
| | 159 | |
|
| 0 | 160 | | if (folder is ISupportsUserSpecificView supportsUserSpecific |
| 0 | 161 | | && supportsUserSpecific.EnableUserSpecificView) |
| | 162 | | { |
| 0 | 163 | | return true; |
| | 164 | | } |
| | 165 | |
|
| 0 | 166 | | return collectionFolder.CollectionType == Jellyfin.Data.Enums.CollectionType.playlists; |
| | 167 | | } |
| | 168 | |
|
| | 169 | | public static bool IsEligibleForGrouping(Folder folder) |
| | 170 | | { |
| 0 | 171 | | return folder is ICollectionFolder collectionFolder |
| 0 | 172 | | && IsEligibleForGrouping(collectionFolder.CollectionType); |
| | 173 | | } |
| | 174 | |
|
| | 175 | | public static bool IsEligibleForGrouping(CollectionType? viewType) |
| | 176 | | { |
| 0 | 177 | | return _viewTypesEligibleForGrouping.Contains(viewType); |
| | 178 | | } |
| | 179 | |
|
| | 180 | | public static bool EnableOriginalFolder(CollectionType? viewType) |
| | 181 | | { |
| 0 | 182 | | return _originalFolderViewTypes.Contains(viewType); |
| | 183 | | } |
| | 184 | |
|
| | 185 | | protected override Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshChildMe |
| | 186 | | { |
| 0 | 187 | | return Task.CompletedTask; |
| | 188 | | } |
| | 189 | | } |
| | 190 | | } |