| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CA1002, CA1721, CA1819, CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Collections.Immutable; |
| | 8 | | using System.IO; |
| | 9 | | using System.Linq; |
| | 10 | | using System.Security; |
| | 11 | | using System.Text.Json.Serialization; |
| | 12 | | using System.Threading; |
| | 13 | | using System.Threading.Tasks; |
| | 14 | | using System.Threading.Tasks.Dataflow; |
| | 15 | | using J2N.Collections.Generic.Extensions; |
| | 16 | | using Jellyfin.Data; |
| | 17 | | using Jellyfin.Data.Enums; |
| | 18 | | using Jellyfin.Database.Implementations.Entities; |
| | 19 | | using Jellyfin.Database.Implementations.Enums; |
| | 20 | | using Jellyfin.Extensions; |
| | 21 | | using MediaBrowser.Controller.Channels; |
| | 22 | | using MediaBrowser.Controller.Collections; |
| | 23 | | using MediaBrowser.Controller.Configuration; |
| | 24 | | using MediaBrowser.Controller.Dto; |
| | 25 | | using MediaBrowser.Controller.Entities.Audio; |
| | 26 | | using MediaBrowser.Controller.Entities.Movies; |
| | 27 | | using MediaBrowser.Controller.Library; |
| | 28 | | using MediaBrowser.Controller.Providers; |
| | 29 | | using MediaBrowser.Model.Dto; |
| | 30 | | using MediaBrowser.Model.IO; |
| | 31 | | using MediaBrowser.Model.Querying; |
| | 32 | | using Microsoft.Extensions.Logging; |
| | 33 | | using Episode = MediaBrowser.Controller.Entities.TV.Episode; |
| | 34 | | using MusicAlbum = MediaBrowser.Controller.Entities.Audio.MusicAlbum; |
| | 35 | | using Season = MediaBrowser.Controller.Entities.TV.Season; |
| | 36 | | using Series = MediaBrowser.Controller.Entities.TV.Series; |
| | 37 | |
|
| | 38 | | namespace MediaBrowser.Controller.Entities |
| | 39 | | { |
| | 40 | | /// <summary> |
| | 41 | | /// Class Folder. |
| | 42 | | /// </summary> |
| | 43 | | public class Folder : BaseItem |
| | 44 | | { |
| 388 | 45 | | public Folder() |
| | 46 | | { |
| 388 | 47 | | LinkedChildren = Array.Empty<LinkedChild>(); |
| 388 | 48 | | } |
| | 49 | |
|
| | 50 | | public static IUserViewManager UserViewManager { get; set; } |
| | 51 | |
|
| | 52 | | /// <summary> |
| | 53 | | /// Gets or sets a value indicating whether this instance is root. |
| | 54 | | /// </summary> |
| | 55 | | /// <value><c>true</c> if this instance is root; otherwise, <c>false</c>.</value> |
| | 56 | | public bool IsRoot { get; set; } |
| | 57 | |
|
| | 58 | | public LinkedChild[] LinkedChildren { get; set; } |
| | 59 | |
|
| | 60 | | [JsonIgnore] |
| | 61 | | public DateTime? DateLastMediaAdded { get; set; } |
| | 62 | |
|
| | 63 | | [JsonIgnore] |
| 0 | 64 | | public override bool SupportsThemeMedia => true; |
| | 65 | |
|
| | 66 | | [JsonIgnore] |
| 0 | 67 | | public virtual bool IsPreSorted => false; |
| | 68 | |
|
| | 69 | | [JsonIgnore] |
| 10 | 70 | | public virtual bool IsPhysicalRoot => false; |
| | 71 | |
|
| | 72 | | [JsonIgnore] |
| 0 | 73 | | public override bool SupportsInheritedParentImages => true; |
| | 74 | |
|
| | 75 | | [JsonIgnore] |
| 0 | 76 | | public override bool SupportsPlayedStatus => true; |
| | 77 | |
|
| | 78 | | /// <summary> |
| | 79 | | /// Gets a value indicating whether this instance is folder. |
| | 80 | | /// </summary> |
| | 81 | | /// <value><c>true</c> if this instance is folder; otherwise, <c>false</c>.</value> |
| | 82 | | [JsonIgnore] |
| 692 | 83 | | public override bool IsFolder => true; |
| | 84 | |
|
| | 85 | | [JsonIgnore] |
| 0 | 86 | | public override bool IsDisplayedAsFolder => true; |
| | 87 | |
|
| | 88 | | [JsonIgnore] |
| 82 | 89 | | public virtual bool SupportsCumulativeRunTimeTicks => false; |
| | 90 | |
|
| | 91 | | [JsonIgnore] |
| 29 | 92 | | public virtual bool SupportsDateLastMediaAdded => false; |
| | 93 | |
|
| | 94 | | [JsonIgnore] |
| | 95 | | public override string FileNameWithoutExtension |
| | 96 | | { |
| | 97 | | get |
| | 98 | | { |
| 283 | 99 | | if (IsFileProtocol) |
| | 100 | | { |
| 283 | 101 | | return System.IO.Path.GetFileName(Path); |
| | 102 | | } |
| | 103 | |
|
| 0 | 104 | | return null; |
| | 105 | | } |
| | 106 | | } |
| | 107 | |
|
| | 108 | | /// <summary> |
| | 109 | | /// Gets the actual children. |
| | 110 | | /// </summary> |
| | 111 | | /// <value>The actual children.</value> |
| | 112 | | [JsonIgnore] |
| 861 | 113 | | public virtual IEnumerable<BaseItem> Children => LoadChildren(); |
| | 114 | |
|
| | 115 | | /// <summary> |
| | 116 | | /// Gets thread-safe access to all recursive children of this folder - without regard to user. |
| | 117 | | /// </summary> |
| | 118 | | /// <value>The recursive children.</value> |
| | 119 | | [JsonIgnore] |
| 0 | 120 | | public IEnumerable<BaseItem> RecursiveChildren => GetRecursiveChildren(); |
| | 121 | |
|
| | 122 | | [JsonIgnore] |
| 22 | 123 | | protected virtual bool SupportsShortcutChildren => false; |
| | 124 | |
|
| 10 | 125 | | protected virtual bool FilterLinkedChildrenPerUser => false; |
| | 126 | |
|
| | 127 | | [JsonIgnore] |
| 84 | 128 | | protected override bool SupportsOwnedItems => base.SupportsOwnedItems || SupportsShortcutChildren; |
| | 129 | |
|
| | 130 | | [JsonIgnore] |
| | 131 | | public virtual bool SupportsUserDataFromChildren |
| | 132 | | { |
| | 133 | | get |
| | 134 | | { |
| | 135 | | // These are just far too slow. |
| 9 | 136 | | if (this is ICollectionFolder) |
| | 137 | | { |
| 3 | 138 | | return false; |
| | 139 | | } |
| | 140 | |
|
| 6 | 141 | | if (this is UserView) |
| | 142 | | { |
| 0 | 143 | | return false; |
| | 144 | | } |
| | 145 | |
|
| 6 | 146 | | if (this is UserRootFolder) |
| | 147 | | { |
| 6 | 148 | | return false; |
| | 149 | | } |
| | 150 | |
|
| 0 | 151 | | if (this is Channel) |
| | 152 | | { |
| 0 | 153 | | return false; |
| | 154 | | } |
| | 155 | |
|
| 0 | 156 | | if (SourceType != SourceType.Library) |
| | 157 | | { |
| 0 | 158 | | return false; |
| | 159 | | } |
| | 160 | |
|
| 0 | 161 | | if (this is IItemByName) |
| | 162 | | { |
| 0 | 163 | | if (this is not IHasDualAccess hasDualAccess || hasDualAccess.IsAccessedByName) |
| | 164 | | { |
| 0 | 165 | | return false; |
| | 166 | | } |
| | 167 | | } |
| | 168 | |
|
| 0 | 169 | | return true; |
| | 170 | | } |
| | 171 | | } |
| | 172 | |
|
| | 173 | | public static ICollectionManager CollectionManager { get; set; } |
| | 174 | |
|
| | 175 | | public override bool CanDelete() |
| | 176 | | { |
| 6 | 177 | | if (IsRoot) |
| | 178 | | { |
| 6 | 179 | | return false; |
| | 180 | | } |
| | 181 | |
|
| 0 | 182 | | return base.CanDelete(); |
| | 183 | | } |
| | 184 | |
|
| | 185 | | public override bool RequiresRefresh() |
| | 186 | | { |
| 53 | 187 | | var baseResult = base.RequiresRefresh(); |
| | 188 | |
|
| 53 | 189 | | if (SupportsCumulativeRunTimeTicks && !RunTimeTicks.HasValue) |
| | 190 | | { |
| 0 | 191 | | baseResult = true; |
| | 192 | | } |
| | 193 | |
|
| 53 | 194 | | return baseResult; |
| | 195 | | } |
| | 196 | |
|
| | 197 | | /// <summary> |
| | 198 | | /// Adds the child. |
| | 199 | | /// </summary> |
| | 200 | | /// <param name="item">The item.</param> |
| | 201 | | /// <exception cref="InvalidOperationException">Unable to add + item.Name.</exception> |
| | 202 | | public void AddChild(BaseItem item) |
| | 203 | | { |
| 0 | 204 | | item.SetParent(this); |
| | 205 | |
|
| 0 | 206 | | if (item.Id.IsEmpty()) |
| | 207 | | { |
| 0 | 208 | | item.Id = LibraryManager.GetNewItemId(item.Path, item.GetType()); |
| | 209 | | } |
| | 210 | |
|
| 0 | 211 | | if (item.DateCreated == DateTime.MinValue) |
| | 212 | | { |
| 0 | 213 | | item.DateCreated = DateTime.UtcNow; |
| | 214 | | } |
| | 215 | |
|
| 0 | 216 | | if (item.DateModified == DateTime.MinValue) |
| | 217 | | { |
| 0 | 218 | | item.DateModified = DateTime.UtcNow; |
| | 219 | | } |
| | 220 | |
|
| 0 | 221 | | LibraryManager.CreateItem(item, this); |
| 0 | 222 | | } |
| | 223 | |
|
| | 224 | | public override bool IsVisible(User user, bool skipAllowedTagsCheck = false) |
| | 225 | | { |
| 13 | 226 | | if (this is ICollectionFolder && this is not BasePluginFolder) |
| | 227 | | { |
| 0 | 228 | | var blockedMediaFolders = user.GetPreferenceValues<Guid>(PreferenceKind.BlockedMediaFolders); |
| 0 | 229 | | if (blockedMediaFolders.Length > 0) |
| | 230 | | { |
| 0 | 231 | | if (blockedMediaFolders.Contains(Id)) |
| | 232 | | { |
| 0 | 233 | | return false; |
| | 234 | | } |
| | 235 | | } |
| | 236 | | else |
| | 237 | | { |
| 0 | 238 | | if (!user.HasPermission(PermissionKind.EnableAllFolders) |
| 0 | 239 | | && !user.GetPreferenceValues<Guid>(PreferenceKind.EnabledFolders).Contains(Id)) |
| | 240 | | { |
| 0 | 241 | | return false; |
| | 242 | | } |
| | 243 | | } |
| | 244 | | } |
| | 245 | |
|
| 13 | 246 | | return base.IsVisible(user, skipAllowedTagsCheck); |
| | 247 | | } |
| | 248 | |
|
| | 249 | | /// <summary> |
| | 250 | | /// Loads our children. Validation will occur externally. |
| | 251 | | /// We want this synchronous. |
| | 252 | | /// </summary> |
| | 253 | | /// <returns>Returns children.</returns> |
| | 254 | | protected virtual IReadOnlyList<BaseItem> LoadChildren() |
| | 255 | | { |
| | 256 | | // logger.LogDebug("Loading children from {0} {1} {2}", GetType().Name, Id, Path); |
| | 257 | | // just load our children from the repo - the library will be validated and maintained in other processes |
| 142 | 258 | | return GetCachedChildren(); |
| | 259 | | } |
| | 260 | |
|
| | 261 | | public override double? GetRefreshProgress() |
| | 262 | | { |
| 0 | 263 | | return ProviderManager.GetRefreshProgress(Id); |
| | 264 | | } |
| | 265 | |
|
| | 266 | | public Task ValidateChildren(IProgress<double> progress, CancellationToken cancellationToken) |
| | 267 | | { |
| 0 | 268 | | return ValidateChildren(progress, new MetadataRefreshOptions(new DirectoryService(FileSystem)), cancellation |
| | 269 | | } |
| | 270 | |
|
| | 271 | | /// <summary> |
| | 272 | | /// Validates that the children of the folder still exist. |
| | 273 | | /// </summary> |
| | 274 | | /// <param name="progress">The progress.</param> |
| | 275 | | /// <param name="metadataRefreshOptions">The metadata refresh options.</param> |
| | 276 | | /// <param name="recursive">if set to <c>true</c> [recursive].</param> |
| | 277 | | /// <param name="allowRemoveRoot">remove item even this folder is root.</param> |
| | 278 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 279 | | /// <returns>Task.</returns> |
| | 280 | | public Task ValidateChildren(IProgress<double> progress, MetadataRefreshOptions metadataRefreshOptions, bool rec |
| | 281 | | { |
| 47 | 282 | | return ValidateChildrenInternal(progress, recursive, true, allowRemoveRoot, metadataRefreshOptions, metadata |
| | 283 | | } |
| | 284 | |
|
| | 285 | | private Dictionary<Guid, BaseItem> GetActualChildrenDictionary() |
| | 286 | | { |
| 40 | 287 | | var dictionary = new Dictionary<Guid, BaseItem>(); |
| | 288 | |
|
| 40 | 289 | | var childrenList = Children.ToList(); |
| | 290 | |
|
| 142 | 291 | | foreach (var child in childrenList) |
| | 292 | | { |
| 32 | 293 | | var id = child.Id; |
| 32 | 294 | | if (dictionary.ContainsKey(id)) |
| | 295 | | { |
| 0 | 296 | | Logger.LogError( |
| 0 | 297 | | "Found folder containing items with duplicate id. Path: {Path}, Child Name: {ChildName}", |
| 0 | 298 | | Path ?? Name, |
| 0 | 299 | | child.Path ?? child.Name); |
| | 300 | | } |
| | 301 | | else |
| | 302 | | { |
| 32 | 303 | | dictionary[id] = child; |
| | 304 | | } |
| | 305 | | } |
| | 306 | |
|
| 39 | 307 | | return dictionary; |
| | 308 | | } |
| | 309 | |
|
| | 310 | | /// <summary> |
| | 311 | | /// Validates the children internal. |
| | 312 | | /// </summary> |
| | 313 | | /// <param name="progress">The progress.</param> |
| | 314 | | /// <param name="recursive">if set to <c>true</c> [recursive].</param> |
| | 315 | | /// <param name="refreshChildMetadata">if set to <c>true</c> [refresh child metadata].</param> |
| | 316 | | /// <param name="allowRemoveRoot">remove item even this folder is root.</param> |
| | 317 | | /// <param name="refreshOptions">The refresh options.</param> |
| | 318 | | /// <param name="directoryService">The directory service.</param> |
| | 319 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 320 | | /// <returns>Task.</returns> |
| | 321 | | protected virtual async Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshCh |
| | 322 | | { |
| | 323 | | if (recursive) |
| | 324 | | { |
| | 325 | | ProviderManager.OnRefreshStart(this); |
| | 326 | | } |
| | 327 | |
|
| | 328 | | try |
| | 329 | | { |
| | 330 | | await ValidateChildrenInternal2(progress, recursive, refreshChildMetadata, allowRemoveRoot, refreshOptio |
| | 331 | | } |
| | 332 | | finally |
| | 333 | | { |
| | 334 | | if (recursive) |
| | 335 | | { |
| | 336 | | ProviderManager.OnRefreshComplete(this); |
| | 337 | | } |
| | 338 | | } |
| | 339 | | } |
| | 340 | |
|
| | 341 | | private static bool IsLibraryFolderAccessible(IDirectoryService directoryService, BaseItem item, bool checkColle |
| | 342 | | { |
| 80 | 343 | | if (!checkCollection && (item is BoxSet || string.Equals(item.FileNameWithoutExtension, "collections", Strin |
| | 344 | | { |
| 0 | 345 | | return true; |
| | 346 | | } |
| | 347 | |
|
| | 348 | | // For top parents i.e. Library folders, skip the validation if it's empty or inaccessible |
| 80 | 349 | | if (item.IsTopParent && !directoryService.IsAccessible(item.ContainingFolderPath)) |
| | 350 | | { |
| 25 | 351 | | Logger.LogWarning("Library folder {LibraryFolderPath} is inaccessible or empty, skipping", item.Containi |
| 25 | 352 | | return false; |
| | 353 | | } |
| | 354 | |
|
| 55 | 355 | | return true; |
| | 356 | | } |
| | 357 | |
|
| | 358 | | private async Task ValidateChildrenInternal2(IProgress<double> progress, bool recursive, bool refreshChildMetada |
| | 359 | | { |
| | 360 | | if (!IsLibraryFolderAccessible(directoryService, this, allowRemoveRoot)) |
| | 361 | | { |
| | 362 | | return; |
| | 363 | | } |
| | 364 | |
|
| | 365 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 366 | |
|
| | 367 | | var validChildren = new List<BaseItem>(); |
| | 368 | | var validChildrenNeedGeneration = false; |
| | 369 | |
|
| | 370 | | if (IsFileProtocol) |
| | 371 | | { |
| | 372 | | IEnumerable<BaseItem> nonCachedChildren = []; |
| | 373 | |
|
| | 374 | | try |
| | 375 | | { |
| | 376 | | nonCachedChildren = GetNonCachedChildren(directoryService); |
| | 377 | | } |
| | 378 | | catch (IOException ex) |
| | 379 | | { |
| | 380 | | Logger.LogError(ex, "Error retrieving children from file system"); |
| | 381 | | } |
| | 382 | | catch (SecurityException ex) |
| | 383 | | { |
| | 384 | | Logger.LogError(ex, "Error retrieving children from file system"); |
| | 385 | | } |
| | 386 | | catch (Exception ex) |
| | 387 | | { |
| | 388 | | Logger.LogError(ex, "Error retrieving children"); |
| | 389 | | return; |
| | 390 | | } |
| | 391 | |
|
| | 392 | | progress.Report(ProgressHelpers.RetrievedChildren); |
| | 393 | |
|
| | 394 | | if (recursive) |
| | 395 | | { |
| | 396 | | ProviderManager.OnRefreshProgress(this, ProgressHelpers.RetrievedChildren); |
| | 397 | | } |
| | 398 | |
|
| | 399 | | // Build a dictionary of the current children we have now by Id so we can compare quickly and easily |
| | 400 | | var currentChildren = GetActualChildrenDictionary(); |
| | 401 | |
|
| | 402 | | // Create a list for our validated children |
| | 403 | | var newItems = new List<BaseItem>(); |
| | 404 | |
|
| | 405 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 406 | |
|
| | 407 | | foreach (var child in nonCachedChildren) |
| | 408 | | { |
| | 409 | | if (!IsLibraryFolderAccessible(directoryService, child, allowRemoveRoot)) |
| | 410 | | { |
| | 411 | | continue; |
| | 412 | | } |
| | 413 | |
|
| | 414 | | if (currentChildren.TryGetValue(child.Id, out BaseItem currentChild)) |
| | 415 | | { |
| | 416 | | validChildren.Add(currentChild); |
| | 417 | |
|
| | 418 | | if (currentChild.UpdateFromResolvedItem(child) > ItemUpdateType.None) |
| | 419 | | { |
| | 420 | | await currentChild.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, cancellationToken) |
| | 421 | | } |
| | 422 | | else |
| | 423 | | { |
| | 424 | | // metadata is up-to-date; make sure DB has correct images dimensions and hash |
| | 425 | | await LibraryManager.UpdateImagesAsync(currentChild).ConfigureAwait(false); |
| | 426 | | } |
| | 427 | |
|
| | 428 | | continue; |
| | 429 | | } |
| | 430 | |
|
| | 431 | | // Brand new item - needs to be added |
| | 432 | | child.SetParent(this); |
| | 433 | | newItems.Add(child); |
| | 434 | | validChildren.Add(child); |
| | 435 | | } |
| | 436 | |
|
| | 437 | | // That's all the new and changed ones - now see if any have been removed and need cleanup |
| | 438 | | var itemsRemoved = currentChildren.Values.Except(validChildren).ToList(); |
| | 439 | | var shouldRemove = !IsRoot || allowRemoveRoot; |
| | 440 | | // If it's an AggregateFolder, don't remove |
| | 441 | | if (shouldRemove && itemsRemoved.Count > 0) |
| | 442 | | { |
| | 443 | | foreach (var item in itemsRemoved) |
| | 444 | | { |
| | 445 | | if (item.IsFileProtocol) |
| | 446 | | { |
| | 447 | | Logger.LogDebug("Removed item: {Path}", item.Path); |
| | 448 | |
|
| | 449 | | item.SetParent(null); |
| | 450 | | LibraryManager.DeleteItem(item, new DeleteOptions { DeleteFileLocation = false }, this, fals |
| | 451 | | } |
| | 452 | | } |
| | 453 | | } |
| | 454 | |
|
| | 455 | | if (newItems.Count > 0) |
| | 456 | | { |
| | 457 | | LibraryManager.CreateItems(newItems, this, cancellationToken); |
| | 458 | | } |
| | 459 | | } |
| | 460 | | else |
| | 461 | | { |
| | 462 | | validChildrenNeedGeneration = true; |
| | 463 | | } |
| | 464 | |
|
| | 465 | | progress.Report(ProgressHelpers.UpdatedChildItems); |
| | 466 | |
|
| | 467 | | if (recursive) |
| | 468 | | { |
| | 469 | | ProviderManager.OnRefreshProgress(this, ProgressHelpers.UpdatedChildItems); |
| | 470 | | } |
| | 471 | |
|
| | 472 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 473 | |
|
| | 474 | | if (recursive) |
| | 475 | | { |
| | 476 | | var folder = this; |
| | 477 | | var innerProgress = new Progress<double>(innerPercent => |
| | 478 | | { |
| | 479 | | var percent = ProgressHelpers.GetProgress(ProgressHelpers.UpdatedChildItems, ProgressHelpers.Scanned |
| | 480 | |
|
| | 481 | | progress.Report(percent); |
| | 482 | |
|
| | 483 | | ProviderManager.OnRefreshProgress(folder, percent); |
| | 484 | | }); |
| | 485 | |
|
| | 486 | | if (validChildrenNeedGeneration) |
| | 487 | | { |
| | 488 | | validChildren = Children.ToList(); |
| | 489 | | validChildrenNeedGeneration = false; |
| | 490 | | } |
| | 491 | |
|
| | 492 | | await ValidateSubFolders(validChildren.OfType<Folder>().ToList(), directoryService, innerProgress, cance |
| | 493 | | } |
| | 494 | |
|
| | 495 | | if (refreshChildMetadata) |
| | 496 | | { |
| | 497 | | progress.Report(ProgressHelpers.ScannedSubfolders); |
| | 498 | |
|
| | 499 | | if (recursive) |
| | 500 | | { |
| | 501 | | ProviderManager.OnRefreshProgress(this, ProgressHelpers.ScannedSubfolders); |
| | 502 | | } |
| | 503 | |
|
| | 504 | | var container = this as IMetadataContainer; |
| | 505 | |
|
| | 506 | | var folder = this; |
| | 507 | | var innerProgress = new Progress<double>(innerPercent => |
| | 508 | | { |
| | 509 | | var percent = ProgressHelpers.GetProgress(ProgressHelpers.ScannedSubfolders, ProgressHelpers.Refresh |
| | 510 | |
|
| | 511 | | progress.Report(percent); |
| | 512 | |
|
| | 513 | | if (recursive) |
| | 514 | | { |
| | 515 | | ProviderManager.OnRefreshProgress(folder, percent); |
| | 516 | | } |
| | 517 | | }); |
| | 518 | |
|
| | 519 | | if (container is not null) |
| | 520 | | { |
| | 521 | | await RefreshAllMetadataForContainer(container, refreshOptions, innerProgress, cancellationToken).Co |
| | 522 | | } |
| | 523 | | else |
| | 524 | | { |
| | 525 | | if (validChildrenNeedGeneration) |
| | 526 | | { |
| | 527 | | validChildren = Children.ToList(); |
| | 528 | | } |
| | 529 | |
|
| | 530 | | await RefreshMetadataRecursive(validChildren, refreshOptions, recursive, innerProgress, cancellation |
| | 531 | | } |
| | 532 | | } |
| | 533 | | } |
| | 534 | |
|
| | 535 | | private async Task RefreshMetadataRecursive(IList<BaseItem> children, MetadataRefreshOptions refreshOptions, boo |
| | 536 | | { |
| | 537 | | await RunTasks( |
| | 538 | | (baseItem, innerProgress) => RefreshChildMetadata(baseItem, refreshOptions, recursive && baseItem.IsFold |
| | 539 | | children, |
| | 540 | | progress, |
| | 541 | | cancellationToken).ConfigureAwait(false); |
| | 542 | | } |
| | 543 | |
|
| | 544 | | private async Task RefreshAllMetadataForContainer(IMetadataContainer container, MetadataRefreshOptions refreshOp |
| | 545 | | { |
| | 546 | | if (container is Series series) |
| | 547 | | { |
| | 548 | | await series.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false); |
| | 549 | | } |
| | 550 | |
|
| | 551 | | await container.RefreshAllMetadata(refreshOptions, progress, cancellationToken).ConfigureAwait(false); |
| | 552 | | } |
| | 553 | |
|
| | 554 | | private async Task RefreshChildMetadata(BaseItem child, MetadataRefreshOptions refreshOptions, bool recursive, I |
| | 555 | | { |
| | 556 | | if (child is IMetadataContainer container) |
| | 557 | | { |
| | 558 | | await RefreshAllMetadataForContainer(container, refreshOptions, progress, cancellationToken).ConfigureAw |
| | 559 | | } |
| | 560 | | else |
| | 561 | | { |
| | 562 | | if (refreshOptions.RefreshItem(child)) |
| | 563 | | { |
| | 564 | | await child.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false); |
| | 565 | | } |
| | 566 | |
|
| | 567 | | if (recursive && child is Folder folder) |
| | 568 | | { |
| | 569 | | await folder.RefreshMetadataRecursive(folder.Children.ToList(), refreshOptions, true, progress, canc |
| | 570 | | } |
| | 571 | | } |
| | 572 | | } |
| | 573 | |
|
| | 574 | | /// <summary> |
| | 575 | | /// Refreshes the children. |
| | 576 | | /// </summary> |
| | 577 | | /// <param name="children">The children.</param> |
| | 578 | | /// <param name="directoryService">The directory service.</param> |
| | 579 | | /// <param name="progress">The progress.</param> |
| | 580 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 581 | | /// <returns>Task.</returns> |
| | 582 | | private async Task ValidateSubFolders(IList<Folder> children, IDirectoryService directoryService, IProgress<doub |
| | 583 | | { |
| | 584 | | await RunTasks( |
| | 585 | | (folder, innerProgress) => folder.ValidateChildrenInternal(innerProgress, true, false, false, null, dire |
| | 586 | | children, |
| | 587 | | progress, |
| | 588 | | cancellationToken).ConfigureAwait(false); |
| | 589 | | } |
| | 590 | |
|
| | 591 | | /// <summary> |
| | 592 | | /// Runs an action block on a list of children. |
| | 593 | | /// </summary> |
| | 594 | | /// <param name="task">The task to run for each child.</param> |
| | 595 | | /// <param name="children">The list of children.</param> |
| | 596 | | /// <param name="progress">The progress.</param> |
| | 597 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 598 | | /// <returns>Task.</returns> |
| | 599 | | private async Task RunTasks<T>(Func<T, IProgress<double>, Task> task, IList<T> children, IProgress<double> progr |
| | 600 | | { |
| | 601 | | var childrenCount = children.Count; |
| | 602 | | var childrenProgress = new double[childrenCount]; |
| | 603 | |
|
| | 604 | | void UpdateProgress() |
| | 605 | | { |
| | 606 | | progress.Report(childrenProgress.Average()); |
| | 607 | | } |
| | 608 | |
|
| | 609 | | var fanoutConcurrency = ConfigurationManager.Configuration.LibraryScanFanoutConcurrency; |
| | 610 | | var parallelism = fanoutConcurrency > 0 ? fanoutConcurrency : Environment.ProcessorCount; |
| | 611 | |
|
| | 612 | | var actionBlock = new ActionBlock<int>( |
| | 613 | | async i => |
| | 614 | | { |
| | 615 | | var innerProgress = new Progress<double>(innerPercent => |
| | 616 | | { |
| | 617 | | // round the percent and only update progress if it changed to prevent excessive UpdateProgress |
| | 618 | | var innerPercentRounded = Math.Round(innerPercent); |
| | 619 | | if (childrenProgress[i] != innerPercentRounded) |
| | 620 | | { |
| | 621 | | childrenProgress[i] = innerPercentRounded; |
| | 622 | | UpdateProgress(); |
| | 623 | | } |
| | 624 | | }); |
| | 625 | |
|
| | 626 | | await task(children[i], innerProgress).ConfigureAwait(false); |
| | 627 | |
|
| | 628 | | childrenProgress[i] = 100; |
| | 629 | |
|
| | 630 | | UpdateProgress(); |
| | 631 | | }, |
| | 632 | | new ExecutionDataflowBlockOptions |
| | 633 | | { |
| | 634 | | MaxDegreeOfParallelism = parallelism, |
| | 635 | | CancellationToken = cancellationToken, |
| | 636 | | }); |
| | 637 | |
|
| | 638 | | for (var i = 0; i < childrenCount; i++) |
| | 639 | | { |
| | 640 | | await actionBlock.SendAsync(i, cancellationToken).ConfigureAwait(false); |
| | 641 | | } |
| | 642 | |
|
| | 643 | | actionBlock.Complete(); |
| | 644 | |
|
| | 645 | | await actionBlock.Completion.ConfigureAwait(false); |
| | 646 | | } |
| | 647 | |
|
| | 648 | | /// <summary> |
| | 649 | | /// Get the children of this folder from the actual file system. |
| | 650 | | /// </summary> |
| | 651 | | /// <returns>IEnumerable{BaseItem}.</returns> |
| | 652 | | /// <param name="directoryService">The directory service to use for operation.</param> |
| | 653 | | /// <returns>Returns set of base items.</returns> |
| | 654 | | protected virtual IEnumerable<BaseItem> GetNonCachedChildren(IDirectoryService directoryService) |
| | 655 | | { |
| 40 | 656 | | var collectionType = LibraryManager.GetContentType(this); |
| 40 | 657 | | var libraryOptions = LibraryManager.GetLibraryOptions(this); |
| | 658 | |
|
| 40 | 659 | | return LibraryManager.ResolvePaths(GetFileSystemChildren(directoryService), directoryService, this, libraryO |
| | 660 | | } |
| | 661 | |
|
| | 662 | | /// <summary> |
| | 663 | | /// Get our children from the repo - stubbed for now. |
| | 664 | | /// </summary> |
| | 665 | | /// <returns>IEnumerable{BaseItem}.</returns> |
| | 666 | | protected IReadOnlyList<BaseItem> GetCachedChildren() |
| | 667 | | { |
| 142 | 668 | | return ItemRepository.GetItemList(new InternalItemsQuery |
| 142 | 669 | | { |
| 142 | 670 | | Parent = this, |
| 142 | 671 | | GroupByPresentationUniqueKey = false, |
| 142 | 672 | | DtoOptions = new DtoOptions(true) |
| 142 | 673 | | }); |
| | 674 | | } |
| | 675 | |
|
| | 676 | | public virtual int GetChildCount(User user) |
| | 677 | | { |
| 0 | 678 | | if (LinkedChildren.Length > 0) |
| | 679 | | { |
| 0 | 680 | | if (this is not ICollectionFolder) |
| | 681 | | { |
| 0 | 682 | | return GetChildren(user, true).Count; |
| | 683 | | } |
| | 684 | | } |
| | 685 | |
|
| 0 | 686 | | var result = GetItems(new InternalItemsQuery(user) |
| 0 | 687 | | { |
| 0 | 688 | | Recursive = false, |
| 0 | 689 | | Limit = 0, |
| 0 | 690 | | Parent = this, |
| 0 | 691 | | DtoOptions = new DtoOptions(false) |
| 0 | 692 | | { |
| 0 | 693 | | EnableImages = false |
| 0 | 694 | | } |
| 0 | 695 | | }); |
| | 696 | |
|
| 0 | 697 | | return result.TotalRecordCount; |
| | 698 | | } |
| | 699 | |
|
| | 700 | | public virtual int GetRecursiveChildCount(User user) |
| | 701 | | { |
| 0 | 702 | | return GetItems(new InternalItemsQuery(user) |
| 0 | 703 | | { |
| 0 | 704 | | Recursive = true, |
| 0 | 705 | | IsFolder = false, |
| 0 | 706 | | IsVirtualItem = false, |
| 0 | 707 | | EnableTotalRecordCount = true, |
| 0 | 708 | | Limit = 0, |
| 0 | 709 | | DtoOptions = new DtoOptions(false) |
| 0 | 710 | | { |
| 0 | 711 | | EnableImages = false |
| 0 | 712 | | } |
| 0 | 713 | | }).TotalRecordCount; |
| | 714 | | } |
| | 715 | |
|
| | 716 | | public QueryResult<BaseItem> QueryRecursive(InternalItemsQuery query) |
| | 717 | | { |
| 16 | 718 | | var user = query.User; |
| | 719 | |
|
| 16 | 720 | | if (!query.ForceDirect && RequiresPostFiltering(query)) |
| | 721 | | { |
| | 722 | | IEnumerable<BaseItem> items; |
| 0 | 723 | | Func<BaseItem, bool> filter = i => UserViewBuilder.Filter(i, user, query, UserDataManager, LibraryManage |
| | 724 | |
|
| 0 | 725 | | if (query.User is null) |
| | 726 | | { |
| 0 | 727 | | items = GetRecursiveChildren(filter); |
| | 728 | | } |
| | 729 | | else |
| | 730 | | { |
| 0 | 731 | | items = GetRecursiveChildren(user, query); |
| | 732 | | } |
| | 733 | |
|
| 0 | 734 | | return PostFilterAndSort(items, query, true); |
| | 735 | | } |
| | 736 | |
|
| 16 | 737 | | if (this is not UserRootFolder |
| 16 | 738 | | && this is not AggregateFolder |
| 16 | 739 | | && query.ParentId.IsEmpty()) |
| | 740 | | { |
| 16 | 741 | | query.Parent = this; |
| | 742 | | } |
| | 743 | |
|
| 16 | 744 | | if (RequiresPostFiltering2(query)) |
| | 745 | | { |
| 0 | 746 | | return QueryWithPostFiltering2(query); |
| | 747 | | } |
| | 748 | |
|
| 16 | 749 | | return LibraryManager.GetItemsResult(query); |
| | 750 | | } |
| | 751 | |
|
| | 752 | | protected QueryResult<BaseItem> QueryWithPostFiltering2(InternalItemsQuery query) |
| | 753 | | { |
| 1 | 754 | | var startIndex = query.StartIndex; |
| 1 | 755 | | var limit = query.Limit; |
| | 756 | |
|
| 1 | 757 | | query.StartIndex = null; |
| 1 | 758 | | query.Limit = null; |
| | 759 | |
|
| 1 | 760 | | IEnumerable<BaseItem> itemsList = LibraryManager.GetItemList(query); |
| 1 | 761 | | var user = query.User; |
| | 762 | |
|
| 1 | 763 | | if (user is not null) |
| | 764 | | { |
| | 765 | | // needed for boxsets |
| 1 | 766 | | itemsList = itemsList.Where(i => i.IsVisibleStandalone(query.User)); |
| | 767 | | } |
| | 768 | |
|
| | 769 | | IEnumerable<BaseItem> returnItems; |
| 1 | 770 | | int totalCount = 0; |
| | 771 | |
|
| 1 | 772 | | if (query.EnableTotalRecordCount) |
| | 773 | | { |
| 0 | 774 | | var itemArray = itemsList.ToArray(); |
| 0 | 775 | | totalCount = itemArray.Length; |
| 0 | 776 | | returnItems = itemArray; |
| | 777 | | } |
| | 778 | | else |
| | 779 | | { |
| 1 | 780 | | returnItems = itemsList; |
| | 781 | | } |
| | 782 | |
|
| 1 | 783 | | if (limit.HasValue) |
| | 784 | | { |
| 0 | 785 | | returnItems = returnItems.Skip(startIndex ?? 0).Take(limit.Value); |
| | 786 | | } |
| 1 | 787 | | else if (startIndex.HasValue) |
| | 788 | | { |
| 0 | 789 | | returnItems = returnItems.Skip(startIndex.Value); |
| | 790 | | } |
| | 791 | |
|
| 1 | 792 | | return new QueryResult<BaseItem>( |
| 1 | 793 | | query.StartIndex, |
| 1 | 794 | | totalCount, |
| 1 | 795 | | returnItems.ToArray()); |
| | 796 | | } |
| | 797 | |
|
| | 798 | | private bool RequiresPostFiltering2(InternalItemsQuery query) |
| | 799 | | { |
| 16 | 800 | | if (query.IncludeItemTypes.Length == 1 && query.IncludeItemTypes[0] == BaseItemKind.BoxSet) |
| | 801 | | { |
| 0 | 802 | | Logger.LogDebug("Query requires post-filtering due to BoxSet query"); |
| 0 | 803 | | return true; |
| | 804 | | } |
| | 805 | |
|
| 16 | 806 | | return false; |
| | 807 | | } |
| | 808 | |
|
| | 809 | | private bool RequiresPostFiltering(InternalItemsQuery query) |
| | 810 | | { |
| 16 | 811 | | if (LinkedChildren.Length > 0) |
| | 812 | | { |
| 0 | 813 | | if (this is not ICollectionFolder) |
| | 814 | | { |
| 0 | 815 | | Logger.LogDebug("{Type}: Query requires post-filtering due to LinkedChildren.", GetType().Name); |
| 0 | 816 | | return true; |
| | 817 | | } |
| | 818 | | } |
| | 819 | |
|
| | 820 | | // Filter by Video3DFormat |
| 16 | 821 | | if (query.Is3D.HasValue) |
| | 822 | | { |
| 0 | 823 | | Logger.LogDebug("Query requires post-filtering due to Is3D"); |
| 0 | 824 | | return true; |
| | 825 | | } |
| | 826 | |
|
| 16 | 827 | | if (query.HasOfficialRating.HasValue) |
| | 828 | | { |
| 0 | 829 | | Logger.LogDebug("Query requires post-filtering due to HasOfficialRating"); |
| 0 | 830 | | return true; |
| | 831 | | } |
| | 832 | |
|
| 16 | 833 | | if (query.IsPlaceHolder.HasValue) |
| | 834 | | { |
| 0 | 835 | | Logger.LogDebug("Query requires post-filtering due to IsPlaceHolder"); |
| 0 | 836 | | return true; |
| | 837 | | } |
| | 838 | |
|
| 16 | 839 | | if (query.HasSpecialFeature.HasValue) |
| | 840 | | { |
| 0 | 841 | | Logger.LogDebug("Query requires post-filtering due to HasSpecialFeature"); |
| 0 | 842 | | return true; |
| | 843 | | } |
| | 844 | |
|
| 16 | 845 | | if (query.HasSubtitles.HasValue) |
| | 846 | | { |
| 0 | 847 | | Logger.LogDebug("Query requires post-filtering due to HasSubtitles"); |
| 0 | 848 | | return true; |
| | 849 | | } |
| | 850 | |
|
| 16 | 851 | | if (query.HasTrailer.HasValue) |
| | 852 | | { |
| 0 | 853 | | Logger.LogDebug("Query requires post-filtering due to HasTrailer"); |
| 0 | 854 | | return true; |
| | 855 | | } |
| | 856 | |
|
| 16 | 857 | | if (query.HasThemeSong.HasValue) |
| | 858 | | { |
| 0 | 859 | | Logger.LogDebug("Query requires post-filtering due to HasThemeSong"); |
| 0 | 860 | | return true; |
| | 861 | | } |
| | 862 | |
|
| 16 | 863 | | if (query.HasThemeVideo.HasValue) |
| | 864 | | { |
| 0 | 865 | | Logger.LogDebug("Query requires post-filtering due to HasThemeVideo"); |
| 0 | 866 | | return true; |
| | 867 | | } |
| | 868 | |
|
| | 869 | | // Filter by VideoType |
| 16 | 870 | | if (query.VideoTypes.Length > 0) |
| | 871 | | { |
| 0 | 872 | | Logger.LogDebug("Query requires post-filtering due to VideoTypes"); |
| 0 | 873 | | return true; |
| | 874 | | } |
| | 875 | |
|
| 16 | 876 | | if (CollapseBoxSetItems(query, this, query.User, ConfigurationManager)) |
| | 877 | | { |
| 0 | 878 | | Logger.LogDebug("Query requires post-filtering due to CollapseBoxSetItems"); |
| 0 | 879 | | return true; |
| | 880 | | } |
| | 881 | |
|
| 16 | 882 | | if (!query.AdjacentTo.IsNullOrEmpty()) |
| | 883 | | { |
| 0 | 884 | | Logger.LogDebug("Query requires post-filtering due to AdjacentTo"); |
| 0 | 885 | | return true; |
| | 886 | | } |
| | 887 | |
|
| 16 | 888 | | if (query.SeriesStatuses.Length > 0) |
| | 889 | | { |
| 0 | 890 | | Logger.LogDebug("Query requires post-filtering due to SeriesStatuses"); |
| 0 | 891 | | return true; |
| | 892 | | } |
| | 893 | |
|
| 16 | 894 | | if (query.AiredDuringSeason.HasValue) |
| | 895 | | { |
| 0 | 896 | | Logger.LogDebug("Query requires post-filtering due to AiredDuringSeason"); |
| 0 | 897 | | return true; |
| | 898 | | } |
| | 899 | |
|
| 16 | 900 | | if (query.IsPlayed.HasValue) |
| | 901 | | { |
| 0 | 902 | | if (query.IncludeItemTypes.Length == 1 && query.IncludeItemTypes.Contains(BaseItemKind.Series)) |
| | 903 | | { |
| 0 | 904 | | Logger.LogDebug("Query requires post-filtering due to IsPlayed"); |
| 0 | 905 | | return true; |
| | 906 | | } |
| | 907 | | } |
| | 908 | |
|
| 16 | 909 | | return false; |
| | 910 | | } |
| | 911 | |
|
| | 912 | | private static BaseItem[] SortItemsByRequest(InternalItemsQuery query, IReadOnlyList<BaseItem> items) |
| | 913 | | { |
| 0 | 914 | | return items.OrderBy(i => Array.IndexOf(query.ItemIds, i.Id)).ToArray(); |
| | 915 | | } |
| | 916 | |
|
| | 917 | | public QueryResult<BaseItem> GetItems(InternalItemsQuery query) |
| | 918 | | { |
| 0 | 919 | | if (query.ItemIds.Length > 0) |
| | 920 | | { |
| 0 | 921 | | var result = LibraryManager.GetItemsResult(query); |
| | 922 | |
|
| 0 | 923 | | if (query.OrderBy.Count == 0 && query.ItemIds.Length > 1) |
| | 924 | | { |
| 0 | 925 | | result.Items = SortItemsByRequest(query, result.Items); |
| | 926 | | } |
| | 927 | |
|
| 0 | 928 | | return result; |
| | 929 | | } |
| | 930 | |
|
| 0 | 931 | | return GetItemsInternal(query); |
| | 932 | | } |
| | 933 | |
|
| | 934 | | public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query) |
| | 935 | | { |
| 17 | 936 | | query.EnableTotalRecordCount = false; |
| | 937 | |
|
| 17 | 938 | | if (query.ItemIds.Length > 0) |
| | 939 | | { |
| 0 | 940 | | var result = LibraryManager.GetItemList(query); |
| | 941 | |
|
| 0 | 942 | | if (query.OrderBy.Count == 0 && query.ItemIds.Length > 1) |
| | 943 | | { |
| 0 | 944 | | return SortItemsByRequest(query, result); |
| | 945 | | } |
| | 946 | |
|
| 0 | 947 | | return result; |
| | 948 | | } |
| | 949 | |
|
| 17 | 950 | | return GetItemsInternal(query).Items; |
| | 951 | | } |
| | 952 | |
|
| | 953 | | protected virtual QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query) |
| | 954 | | { |
| 16 | 955 | | if (SourceType == SourceType.Channel) |
| | 956 | | { |
| | 957 | | try |
| | 958 | | { |
| 0 | 959 | | query.Parent = this; |
| 0 | 960 | | query.ChannelIds = new[] { ChannelId }; |
| | 961 | |
|
| | 962 | | // Don't blow up here because it could cause parent screens with other content to fail |
| 0 | 963 | | return ChannelManager.GetChannelItemsInternal(query, new Progress<double>(), CancellationToken.None) |
| | 964 | | } |
| 0 | 965 | | catch |
| | 966 | | { |
| | 967 | | // Already logged at lower levels |
| 0 | 968 | | return new QueryResult<BaseItem>(); |
| | 969 | | } |
| | 970 | | } |
| | 971 | |
|
| 16 | 972 | | if (query.Recursive) |
| | 973 | | { |
| 16 | 974 | | return QueryRecursive(query); |
| | 975 | | } |
| | 976 | |
|
| 0 | 977 | | var user = query.User; |
| | 978 | |
|
| 0 | 979 | | Func<BaseItem, bool> filter = i => UserViewBuilder.Filter(i, user, query, UserDataManager, LibraryManager); |
| | 980 | |
|
| | 981 | | IEnumerable<BaseItem> items; |
| | 982 | |
|
| 0 | 983 | | if (query.User is null) |
| | 984 | | { |
| 0 | 985 | | items = Children.Where(filter); |
| | 986 | | } |
| | 987 | | else |
| | 988 | | { |
| | 989 | | // need to pass this param to the children. |
| 0 | 990 | | var childQuery = new InternalItemsQuery |
| 0 | 991 | | { |
| 0 | 992 | | DisplayAlbumFolders = query.DisplayAlbumFolders |
| 0 | 993 | | }; |
| | 994 | |
|
| 0 | 995 | | items = GetChildren(user, true, childQuery).Where(filter); |
| | 996 | | } |
| | 997 | |
|
| 0 | 998 | | return PostFilterAndSort(items, query, true); |
| 0 | 999 | | } |
| | 1000 | |
|
| | 1001 | | protected QueryResult<BaseItem> PostFilterAndSort(IEnumerable<BaseItem> items, InternalItemsQuery query, bool en |
| | 1002 | | { |
| 0 | 1003 | | var user = query.User; |
| | 1004 | |
|
| | 1005 | | // Check recursive - don't substitute in plain folder views |
| 0 | 1006 | | if (user is not null) |
| | 1007 | | { |
| 0 | 1008 | | items = CollapseBoxSetItemsIfNeeded(items, query, this, user, ConfigurationManager, CollectionManager); |
| | 1009 | | } |
| | 1010 | |
|
| | 1011 | | #pragma warning disable CA1309 |
| 0 | 1012 | | if (!string.IsNullOrEmpty(query.NameStartsWithOrGreater)) |
| | 1013 | | { |
| 0 | 1014 | | items = items.Where(i => string.Compare(query.NameStartsWithOrGreater, i.SortName, StringComparison.Inva |
| | 1015 | | } |
| | 1016 | |
|
| 0 | 1017 | | if (!string.IsNullOrEmpty(query.NameStartsWith)) |
| | 1018 | | { |
| 0 | 1019 | | items = items.Where(i => i.SortName.StartsWith(query.NameStartsWith, StringComparison.InvariantCultureIg |
| | 1020 | | } |
| | 1021 | |
|
| 0 | 1022 | | if (!string.IsNullOrEmpty(query.NameLessThan)) |
| | 1023 | | { |
| 0 | 1024 | | items = items.Where(i => string.Compare(query.NameLessThan, i.SortName, StringComparison.InvariantCultur |
| | 1025 | | } |
| | 1026 | | #pragma warning restore CA1309 |
| | 1027 | |
|
| | 1028 | | // This must be the last filter |
| 0 | 1029 | | if (!query.AdjacentTo.IsNullOrEmpty()) |
| | 1030 | | { |
| 0 | 1031 | | items = UserViewBuilder.FilterForAdjacency(items.ToList(), query.AdjacentTo.Value); |
| | 1032 | | } |
| | 1033 | |
|
| 0 | 1034 | | return UserViewBuilder.SortAndPage(items, null, query, LibraryManager, enableSorting); |
| | 1035 | | } |
| | 1036 | |
|
| | 1037 | | private static IEnumerable<BaseItem> CollapseBoxSetItemsIfNeeded( |
| | 1038 | | IEnumerable<BaseItem> items, |
| | 1039 | | InternalItemsQuery query, |
| | 1040 | | BaseItem queryParent, |
| | 1041 | | User user, |
| | 1042 | | IServerConfigurationManager configurationManager, |
| | 1043 | | ICollectionManager collectionManager) |
| | 1044 | | { |
| 0 | 1045 | | ArgumentNullException.ThrowIfNull(items); |
| | 1046 | |
|
| 0 | 1047 | | if (CollapseBoxSetItems(query, queryParent, user, configurationManager)) |
| | 1048 | | { |
| 0 | 1049 | | items = collectionManager.CollapseItemsWithinBoxSets(items, user); |
| | 1050 | | } |
| | 1051 | |
|
| 0 | 1052 | | return items; |
| | 1053 | | } |
| | 1054 | |
|
| | 1055 | | private static bool CollapseBoxSetItems( |
| | 1056 | | InternalItemsQuery query, |
| | 1057 | | BaseItem queryParent, |
| | 1058 | | User user, |
| | 1059 | | IServerConfigurationManager configurationManager) |
| | 1060 | | { |
| | 1061 | | // Could end up stuck in a loop like this |
| 16 | 1062 | | if (queryParent is BoxSet) |
| | 1063 | | { |
| 0 | 1064 | | return false; |
| | 1065 | | } |
| | 1066 | |
|
| 16 | 1067 | | if (queryParent is Season) |
| | 1068 | | { |
| 0 | 1069 | | return false; |
| | 1070 | | } |
| | 1071 | |
|
| 16 | 1072 | | if (queryParent is MusicAlbum) |
| | 1073 | | { |
| 0 | 1074 | | return false; |
| | 1075 | | } |
| | 1076 | |
|
| 16 | 1077 | | if (queryParent is MusicArtist) |
| | 1078 | | { |
| 0 | 1079 | | return false; |
| | 1080 | | } |
| | 1081 | |
|
| 16 | 1082 | | var param = query.CollapseBoxSetItems; |
| | 1083 | |
|
| 16 | 1084 | | if (!param.HasValue) |
| | 1085 | | { |
| 0 | 1086 | | if (user is not null && query.IncludeItemTypes.Any(type => |
| 0 | 1087 | | (type == BaseItemKind.Movie && !configurationManager.Configuration.EnableGroupingMoviesIntoCollectio |
| 0 | 1088 | | (type == BaseItemKind.Series && !configurationManager.Configuration.EnableGroupingShowsIntoCollectio |
| | 1089 | | { |
| 0 | 1090 | | return false; |
| | 1091 | | } |
| | 1092 | |
|
| 0 | 1093 | | if (query.IncludeItemTypes.Length == 0 |
| 0 | 1094 | | || query.IncludeItemTypes.Any(type => type == BaseItemKind.Movie || type == BaseItemKind.Series)) |
| | 1095 | | { |
| 0 | 1096 | | param = true; |
| | 1097 | | } |
| | 1098 | | } |
| | 1099 | |
|
| 16 | 1100 | | return param.HasValue && param.Value && AllowBoxSetCollapsing(query); |
| | 1101 | | } |
| | 1102 | |
|
| | 1103 | | private static bool AllowBoxSetCollapsing(InternalItemsQuery request) |
| | 1104 | | { |
| 0 | 1105 | | if (request.IsFavorite.HasValue) |
| | 1106 | | { |
| 0 | 1107 | | return false; |
| | 1108 | | } |
| | 1109 | |
|
| 0 | 1110 | | if (request.IsFavoriteOrLiked.HasValue) |
| | 1111 | | { |
| 0 | 1112 | | return false; |
| | 1113 | | } |
| | 1114 | |
|
| 0 | 1115 | | if (request.IsLiked.HasValue) |
| | 1116 | | { |
| 0 | 1117 | | return false; |
| | 1118 | | } |
| | 1119 | |
|
| 0 | 1120 | | if (request.IsPlayed.HasValue) |
| | 1121 | | { |
| 0 | 1122 | | return false; |
| | 1123 | | } |
| | 1124 | |
|
| 0 | 1125 | | if (request.IsResumable.HasValue) |
| | 1126 | | { |
| 0 | 1127 | | return false; |
| | 1128 | | } |
| | 1129 | |
|
| 0 | 1130 | | if (request.IsFolder.HasValue) |
| | 1131 | | { |
| 0 | 1132 | | return false; |
| | 1133 | | } |
| | 1134 | |
|
| 0 | 1135 | | if (request.Genres.Count > 0) |
| | 1136 | | { |
| 0 | 1137 | | return false; |
| | 1138 | | } |
| | 1139 | |
|
| 0 | 1140 | | if (request.GenreIds.Count > 0) |
| | 1141 | | { |
| 0 | 1142 | | return false; |
| | 1143 | | } |
| | 1144 | |
|
| 0 | 1145 | | if (request.HasImdbId.HasValue) |
| | 1146 | | { |
| 0 | 1147 | | return false; |
| | 1148 | | } |
| | 1149 | |
|
| 0 | 1150 | | if (request.HasOfficialRating.HasValue) |
| | 1151 | | { |
| 0 | 1152 | | return false; |
| | 1153 | | } |
| | 1154 | |
|
| 0 | 1155 | | if (request.HasOverview.HasValue) |
| | 1156 | | { |
| 0 | 1157 | | return false; |
| | 1158 | | } |
| | 1159 | |
|
| 0 | 1160 | | if (request.HasParentalRating.HasValue) |
| | 1161 | | { |
| 0 | 1162 | | return false; |
| | 1163 | | } |
| | 1164 | |
|
| 0 | 1165 | | if (request.HasSpecialFeature.HasValue) |
| | 1166 | | { |
| 0 | 1167 | | return false; |
| | 1168 | | } |
| | 1169 | |
|
| 0 | 1170 | | if (request.HasSubtitles.HasValue) |
| | 1171 | | { |
| 0 | 1172 | | return false; |
| | 1173 | | } |
| | 1174 | |
|
| 0 | 1175 | | if (request.HasThemeSong.HasValue) |
| | 1176 | | { |
| 0 | 1177 | | return false; |
| | 1178 | | } |
| | 1179 | |
|
| 0 | 1180 | | if (request.HasThemeVideo.HasValue) |
| | 1181 | | { |
| 0 | 1182 | | return false; |
| | 1183 | | } |
| | 1184 | |
|
| 0 | 1185 | | if (request.HasTmdbId.HasValue) |
| | 1186 | | { |
| 0 | 1187 | | return false; |
| | 1188 | | } |
| | 1189 | |
|
| 0 | 1190 | | if (request.HasTrailer.HasValue) |
| | 1191 | | { |
| 0 | 1192 | | return false; |
| | 1193 | | } |
| | 1194 | |
|
| 0 | 1195 | | if (request.ImageTypes.Length > 0) |
| | 1196 | | { |
| 0 | 1197 | | return false; |
| | 1198 | | } |
| | 1199 | |
|
| 0 | 1200 | | if (request.Is3D.HasValue) |
| | 1201 | | { |
| 0 | 1202 | | return false; |
| | 1203 | | } |
| | 1204 | |
|
| 0 | 1205 | | if (request.Is4K.HasValue) |
| | 1206 | | { |
| 0 | 1207 | | return false; |
| | 1208 | | } |
| | 1209 | |
|
| 0 | 1210 | | if (request.IsHD.HasValue) |
| | 1211 | | { |
| 0 | 1212 | | return false; |
| | 1213 | | } |
| | 1214 | |
|
| 0 | 1215 | | if (request.IsLocked.HasValue) |
| | 1216 | | { |
| 0 | 1217 | | return false; |
| | 1218 | | } |
| | 1219 | |
|
| 0 | 1220 | | if (request.IsPlaceHolder.HasValue) |
| | 1221 | | { |
| 0 | 1222 | | return false; |
| | 1223 | | } |
| | 1224 | |
|
| 0 | 1225 | | if (request.IsPlayed.HasValue) |
| | 1226 | | { |
| 0 | 1227 | | return false; |
| | 1228 | | } |
| | 1229 | |
|
| 0 | 1230 | | if (!string.IsNullOrWhiteSpace(request.Person)) |
| | 1231 | | { |
| 0 | 1232 | | return false; |
| | 1233 | | } |
| | 1234 | |
|
| 0 | 1235 | | if (request.PersonIds.Length > 0) |
| | 1236 | | { |
| 0 | 1237 | | return false; |
| | 1238 | | } |
| | 1239 | |
|
| 0 | 1240 | | if (request.ItemIds.Length > 0) |
| | 1241 | | { |
| 0 | 1242 | | return false; |
| | 1243 | | } |
| | 1244 | |
|
| 0 | 1245 | | if (request.StudioIds.Length > 0) |
| | 1246 | | { |
| 0 | 1247 | | return false; |
| | 1248 | | } |
| | 1249 | |
|
| 0 | 1250 | | if (request.VideoTypes.Length > 0) |
| | 1251 | | { |
| 0 | 1252 | | return false; |
| | 1253 | | } |
| | 1254 | |
|
| 0 | 1255 | | if (request.Years.Length > 0) |
| | 1256 | | { |
| 0 | 1257 | | return false; |
| | 1258 | | } |
| | 1259 | |
|
| 0 | 1260 | | if (request.Tags.Length > 0) |
| | 1261 | | { |
| 0 | 1262 | | return false; |
| | 1263 | | } |
| | 1264 | |
|
| 0 | 1265 | | if (request.OfficialRatings.Length > 0) |
| | 1266 | | { |
| 0 | 1267 | | return false; |
| | 1268 | | } |
| | 1269 | |
|
| 0 | 1270 | | if (request.MinCommunityRating.HasValue) |
| | 1271 | | { |
| 0 | 1272 | | return false; |
| | 1273 | | } |
| | 1274 | |
|
| 0 | 1275 | | if (request.MinCriticRating.HasValue) |
| | 1276 | | { |
| 0 | 1277 | | return false; |
| | 1278 | | } |
| | 1279 | |
|
| 0 | 1280 | | if (request.MinIndexNumber.HasValue) |
| | 1281 | | { |
| 0 | 1282 | | return false; |
| | 1283 | | } |
| | 1284 | |
|
| 0 | 1285 | | return true; |
| | 1286 | | } |
| | 1287 | |
|
| | 1288 | | public IReadOnlyList<BaseItem> GetChildren(User user, bool includeLinkedChildren) |
| | 1289 | | { |
| 10 | 1290 | | ArgumentNullException.ThrowIfNull(user); |
| | 1291 | |
|
| 10 | 1292 | | return GetChildren(user, includeLinkedChildren, new InternalItemsQuery(user)); |
| | 1293 | | } |
| | 1294 | |
|
| | 1295 | | public virtual IReadOnlyList<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery que |
| | 1296 | | { |
| 10 | 1297 | | ArgumentNullException.ThrowIfNull(user); |
| | 1298 | |
|
| | 1299 | | // the true root should return our users root folder children |
| 10 | 1300 | | if (IsPhysicalRoot) |
| | 1301 | | { |
| 0 | 1302 | | return LibraryManager.GetUserRootFolder().GetChildren(user, includeLinkedChildren); |
| | 1303 | | } |
| | 1304 | |
|
| 10 | 1305 | | var result = new Dictionary<Guid, BaseItem>(); |
| | 1306 | |
|
| 10 | 1307 | | AddChildren(user, includeLinkedChildren, result, false, query); |
| | 1308 | |
|
| 10 | 1309 | | return result.Values.ToArray(); |
| | 1310 | | } |
| | 1311 | |
|
| | 1312 | | protected virtual IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user) |
| | 1313 | | { |
| 10 | 1314 | | return Children; |
| | 1315 | | } |
| | 1316 | |
|
| | 1317 | | /// <summary> |
| | 1318 | | /// Adds the children to list. |
| | 1319 | | /// </summary> |
| | 1320 | | private void AddChildren(User user, bool includeLinkedChildren, Dictionary<Guid, BaseItem> result, bool recursiv |
| | 1321 | | { |
| | 1322 | | // Prevent infinite recursion of nested folders |
| 10 | 1323 | | visitedFolders ??= new HashSet<Folder>(); |
| 10 | 1324 | | if (!visitedFolders.Add(this)) |
| | 1325 | | { |
| 0 | 1326 | | return; |
| | 1327 | | } |
| | 1328 | |
|
| | 1329 | | // If Query.AlbumFolders is set, then enforce the format as per the db in that it permits sub-folders in mus |
| 10 | 1330 | | IEnumerable<BaseItem> children = null; |
| 10 | 1331 | | if ((query?.DisplayAlbumFolders ?? false) && (this is MusicAlbum)) |
| | 1332 | | { |
| 0 | 1333 | | children = Children; |
| 0 | 1334 | | query = null; |
| | 1335 | | } |
| | 1336 | |
|
| | 1337 | | // If there are not sub-folders, proceed as normal. |
| 10 | 1338 | | if (children is null) |
| | 1339 | | { |
| 10 | 1340 | | children = GetEligibleChildrenForRecursiveChildren(user); |
| | 1341 | | } |
| | 1342 | |
|
| 10 | 1343 | | AddChildrenFromCollection(children, user, includeLinkedChildren, result, recursive, query, visitedFolders); |
| | 1344 | |
|
| 10 | 1345 | | if (includeLinkedChildren) |
| | 1346 | | { |
| 10 | 1347 | | AddChildrenFromCollection(GetLinkedChildren(user), user, includeLinkedChildren, result, recursive, query |
| | 1348 | | } |
| 10 | 1349 | | } |
| | 1350 | |
|
| | 1351 | | private void AddChildrenFromCollection(IEnumerable<BaseItem> children, User user, bool includeLinkedChildren, Di |
| | 1352 | | { |
| 60 | 1353 | | foreach (var child in children) |
| | 1354 | | { |
| 10 | 1355 | | if (!child.IsVisible(user)) |
| | 1356 | | { |
| | 1357 | | continue; |
| | 1358 | | } |
| | 1359 | |
|
| 10 | 1360 | | if (query is null || UserViewBuilder.FilterItem(child, query)) |
| | 1361 | | { |
| 10 | 1362 | | result[child.Id] = child; |
| | 1363 | | } |
| | 1364 | |
|
| 10 | 1365 | | if (recursive && child.IsFolder) |
| | 1366 | | { |
| 0 | 1367 | | var folder = (Folder)child; |
| | 1368 | |
|
| 0 | 1369 | | folder.AddChildren(user, includeLinkedChildren, result, true, query, visitedFolders); |
| | 1370 | | } |
| | 1371 | | } |
| 20 | 1372 | | } |
| | 1373 | |
|
| | 1374 | | public virtual IReadOnlyList<BaseItem> GetRecursiveChildren(User user, InternalItemsQuery query) |
| | 1375 | | { |
| 0 | 1376 | | ArgumentNullException.ThrowIfNull(user); |
| | 1377 | |
|
| 0 | 1378 | | var result = new Dictionary<Guid, BaseItem>(); |
| | 1379 | |
|
| 0 | 1380 | | AddChildren(user, true, result, true, query); |
| | 1381 | |
|
| 0 | 1382 | | return result.Values.ToArray(); |
| | 1383 | | } |
| | 1384 | |
|
| | 1385 | | /// <summary> |
| | 1386 | | /// Gets the recursive children. |
| | 1387 | | /// </summary> |
| | 1388 | | /// <returns>IList{BaseItem}.</returns> |
| | 1389 | | public IReadOnlyList<BaseItem> GetRecursiveChildren() |
| | 1390 | | { |
| 0 | 1391 | | return GetRecursiveChildren(true); |
| | 1392 | | } |
| | 1393 | |
|
| | 1394 | | public IReadOnlyList<BaseItem> GetRecursiveChildren(bool includeLinkedChildren) |
| | 1395 | | { |
| 2 | 1396 | | return GetRecursiveChildren(i => true, includeLinkedChildren); |
| | 1397 | | } |
| | 1398 | |
|
| | 1399 | | public IReadOnlyList<BaseItem> GetRecursiveChildren(Func<BaseItem, bool> filter) |
| | 1400 | | { |
| 0 | 1401 | | return GetRecursiveChildren(filter, true); |
| | 1402 | | } |
| | 1403 | |
|
| | 1404 | | public IReadOnlyList<BaseItem> GetRecursiveChildren(Func<BaseItem, bool> filter, bool includeLinkedChildren) |
| | 1405 | | { |
| 2 | 1406 | | var result = new Dictionary<Guid, BaseItem>(); |
| | 1407 | |
|
| 2 | 1408 | | AddChildrenToList(result, includeLinkedChildren, true, filter); |
| | 1409 | |
|
| 2 | 1410 | | return result.Values.ToArray(); |
| | 1411 | | } |
| | 1412 | |
|
| | 1413 | | /// <summary> |
| | 1414 | | /// Adds the children to list. |
| | 1415 | | /// </summary> |
| | 1416 | | private void AddChildrenToList(Dictionary<Guid, BaseItem> result, bool includeLinkedChildren, bool recursive, Fu |
| | 1417 | | { |
| 4 | 1418 | | foreach (var child in Children) |
| | 1419 | | { |
| 0 | 1420 | | if (filter is null || filter(child)) |
| | 1421 | | { |
| 0 | 1422 | | result[child.Id] = child; |
| | 1423 | | } |
| | 1424 | |
|
| 0 | 1425 | | if (recursive && child.IsFolder) |
| | 1426 | | { |
| 0 | 1427 | | var folder = (Folder)child; |
| | 1428 | |
|
| | 1429 | | // We can only support includeLinkedChildren for the first folder, or we might end up stuck in a loo |
| 0 | 1430 | | folder.AddChildrenToList(result, false, true, filter); |
| | 1431 | | } |
| | 1432 | | } |
| | 1433 | |
|
| 2 | 1434 | | if (includeLinkedChildren) |
| | 1435 | | { |
| 0 | 1436 | | foreach (var child in GetLinkedChildren()) |
| | 1437 | | { |
| 0 | 1438 | | if (filter is null || filter(child)) |
| | 1439 | | { |
| 0 | 1440 | | result[child.Id] = child; |
| | 1441 | | } |
| | 1442 | | } |
| | 1443 | | } |
| 2 | 1444 | | } |
| | 1445 | |
|
| | 1446 | | /// <summary> |
| | 1447 | | /// Gets the linked children. |
| | 1448 | | /// </summary> |
| | 1449 | | /// <returns>IEnumerable{BaseItem}.</returns> |
| | 1450 | | public List<BaseItem> GetLinkedChildren() |
| | 1451 | | { |
| 10 | 1452 | | var linkedChildren = LinkedChildren; |
| 10 | 1453 | | var list = new List<BaseItem>(linkedChildren.Length); |
| | 1454 | |
|
| 20 | 1455 | | foreach (var i in linkedChildren) |
| | 1456 | | { |
| 0 | 1457 | | var child = GetLinkedChild(i); |
| | 1458 | |
|
| 0 | 1459 | | if (child is not null) |
| | 1460 | | { |
| 0 | 1461 | | list.Add(child); |
| | 1462 | | } |
| | 1463 | | } |
| | 1464 | |
|
| 10 | 1465 | | return list; |
| | 1466 | | } |
| | 1467 | |
|
| | 1468 | | public bool ContainsLinkedChildByItemId(Guid itemId) |
| | 1469 | | { |
| 0 | 1470 | | var linkedChildren = LinkedChildren; |
| 0 | 1471 | | foreach (var i in linkedChildren) |
| | 1472 | | { |
| 0 | 1473 | | if (i.ItemId.HasValue) |
| | 1474 | | { |
| 0 | 1475 | | if (i.ItemId.Value.Equals(itemId)) |
| | 1476 | | { |
| 0 | 1477 | | return true; |
| | 1478 | | } |
| | 1479 | |
|
| | 1480 | | continue; |
| | 1481 | | } |
| | 1482 | |
|
| 0 | 1483 | | var child = GetLinkedChild(i); |
| | 1484 | |
|
| 0 | 1485 | | if (child is not null && child.Id.Equals(itemId)) |
| | 1486 | | { |
| 0 | 1487 | | return true; |
| | 1488 | | } |
| | 1489 | | } |
| | 1490 | |
|
| 0 | 1491 | | return false; |
| | 1492 | | } |
| | 1493 | |
|
| | 1494 | | public List<BaseItem> GetLinkedChildren(User user) |
| | 1495 | | { |
| 10 | 1496 | | if (!FilterLinkedChildrenPerUser || user is null) |
| | 1497 | | { |
| 10 | 1498 | | return GetLinkedChildren(); |
| | 1499 | | } |
| | 1500 | |
|
| 0 | 1501 | | var linkedChildren = LinkedChildren; |
| 0 | 1502 | | var list = new List<BaseItem>(linkedChildren.Length); |
| | 1503 | |
|
| 0 | 1504 | | if (linkedChildren.Length == 0) |
| | 1505 | | { |
| 0 | 1506 | | return list; |
| | 1507 | | } |
| | 1508 | |
|
| 0 | 1509 | | var allUserRootChildren = LibraryManager.GetUserRootFolder() |
| 0 | 1510 | | .GetChildren(user, true) |
| 0 | 1511 | | .OfType<Folder>() |
| 0 | 1512 | | .ToList(); |
| | 1513 | |
|
| 0 | 1514 | | var collectionFolderIds = allUserRootChildren |
| 0 | 1515 | | .Select(i => i.Id) |
| 0 | 1516 | | .ToList(); |
| | 1517 | |
|
| 0 | 1518 | | foreach (var i in linkedChildren) |
| | 1519 | | { |
| 0 | 1520 | | var child = GetLinkedChild(i); |
| | 1521 | |
|
| 0 | 1522 | | if (child is null) |
| | 1523 | | { |
| | 1524 | | continue; |
| | 1525 | | } |
| | 1526 | |
|
| 0 | 1527 | | var childOwner = child.GetOwner() ?? child; |
| | 1528 | |
|
| 0 | 1529 | | if (child is not IItemByName) |
| | 1530 | | { |
| 0 | 1531 | | var childProtocol = childOwner.PathProtocol; |
| 0 | 1532 | | if (!childProtocol.HasValue || childProtocol.Value != Model.MediaInfo.MediaProtocol.File) |
| | 1533 | | { |
| 0 | 1534 | | if (!childOwner.IsVisibleStandalone(user)) |
| | 1535 | | { |
| 0 | 1536 | | continue; |
| | 1537 | | } |
| | 1538 | | } |
| | 1539 | | else |
| | 1540 | | { |
| 0 | 1541 | | var itemCollectionFolderIds = |
| 0 | 1542 | | LibraryManager.GetCollectionFolders(childOwner, allUserRootChildren).Select(f => f.Id); |
| | 1543 | |
|
| 0 | 1544 | | if (!itemCollectionFolderIds.Any(collectionFolderIds.Contains)) |
| | 1545 | | { |
| | 1546 | | continue; |
| | 1547 | | } |
| | 1548 | | } |
| | 1549 | | } |
| | 1550 | |
|
| 0 | 1551 | | list.Add(child); |
| | 1552 | | } |
| | 1553 | |
|
| 0 | 1554 | | return list; |
| | 1555 | | } |
| | 1556 | |
|
| | 1557 | | /// <summary> |
| | 1558 | | /// Gets the linked children. |
| | 1559 | | /// </summary> |
| | 1560 | | /// <returns>IEnumerable{BaseItem}.</returns> |
| | 1561 | | public IReadOnlyList<Tuple<LinkedChild, BaseItem>> GetLinkedChildrenInfos() |
| | 1562 | | { |
| 0 | 1563 | | return LinkedChildren |
| 0 | 1564 | | .Select(i => new Tuple<LinkedChild, BaseItem>(i, GetLinkedChild(i))) |
| 0 | 1565 | | .Where(i => i.Item2 is not null) |
| 0 | 1566 | | .ToArray(); |
| | 1567 | | } |
| | 1568 | |
|
| | 1569 | | protected override async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, IReadOnlyList<FileSystem |
| | 1570 | | { |
| | 1571 | | var changesFound = false; |
| | 1572 | |
|
| | 1573 | | if (IsFileProtocol) |
| | 1574 | | { |
| | 1575 | | if (RefreshLinkedChildren(fileSystemChildren)) |
| | 1576 | | { |
| | 1577 | | changesFound = true; |
| | 1578 | | } |
| | 1579 | | } |
| | 1580 | |
|
| | 1581 | | var baseHasChanges = await base.RefreshedOwnedItems(options, fileSystemChildren, cancellationToken).Configur |
| | 1582 | |
|
| | 1583 | | return baseHasChanges || changesFound; |
| | 1584 | | } |
| | 1585 | |
|
| | 1586 | | /// <summary> |
| | 1587 | | /// Refreshes the linked children. |
| | 1588 | | /// </summary> |
| | 1589 | | /// <param name="fileSystemChildren">The enumerable of file system metadata.</param> |
| | 1590 | | /// <returns><c>true</c> if the linked children were updated, <c>false</c> otherwise.</returns> |
| | 1591 | | protected virtual bool RefreshLinkedChildren(IEnumerable<FileSystemMetadata> fileSystemChildren) |
| | 1592 | | { |
| 15 | 1593 | | if (SupportsShortcutChildren) |
| | 1594 | | { |
| 15 | 1595 | | var newShortcutLinks = fileSystemChildren |
| 15 | 1596 | | .Where(i => !i.IsDirectory && FileSystem.IsShortcut(i.FullName)) |
| 15 | 1597 | | .Select(i => |
| 15 | 1598 | | { |
| 15 | 1599 | | try |
| 15 | 1600 | | { |
| 15 | 1601 | | Logger.LogDebug("Found shortcut at {0}", i.FullName); |
| 15 | 1602 | |
|
| 15 | 1603 | | var resolvedPath = CollectionFolder.ApplicationHost.ExpandVirtualPath(FileSystem.ResolveShor |
| 15 | 1604 | |
|
| 15 | 1605 | | if (!string.IsNullOrEmpty(resolvedPath)) |
| 15 | 1606 | | { |
| 15 | 1607 | | return new LinkedChild |
| 15 | 1608 | | { |
| 15 | 1609 | | Path = resolvedPath, |
| 15 | 1610 | | Type = LinkedChildType.Shortcut |
| 15 | 1611 | | }; |
| 15 | 1612 | | } |
| 15 | 1613 | |
|
| 15 | 1614 | | Logger.LogError("Error resolving shortcut {0}", i.FullName); |
| 15 | 1615 | |
|
| 15 | 1616 | | return null; |
| 15 | 1617 | | } |
| 15 | 1618 | | catch (IOException ex) |
| 15 | 1619 | | { |
| 15 | 1620 | | Logger.LogError(ex, "Error resolving shortcut {0}", i.FullName); |
| 15 | 1621 | | return null; |
| 15 | 1622 | | } |
| 15 | 1623 | | }) |
| 15 | 1624 | | .Where(i => i is not null) |
| 15 | 1625 | | .ToList(); |
| | 1626 | |
|
| 15 | 1627 | | var currentShortcutLinks = LinkedChildren.Where(i => i.Type == LinkedChildType.Shortcut).ToList(); |
| | 1628 | |
|
| 15 | 1629 | | if (!newShortcutLinks.SequenceEqual(currentShortcutLinks, new LinkedChildComparer(FileSystem))) |
| | 1630 | | { |
| 0 | 1631 | | Logger.LogInformation("Shortcut links have changed for {0}", Path); |
| | 1632 | |
|
| 0 | 1633 | | newShortcutLinks.AddRange(LinkedChildren.Where(i => i.Type == LinkedChildType.Manual)); |
| 0 | 1634 | | LinkedChildren = newShortcutLinks.ToArray(); |
| 0 | 1635 | | return true; |
| | 1636 | | } |
| | 1637 | | } |
| | 1638 | |
|
| 30 | 1639 | | foreach (var child in LinkedChildren) |
| | 1640 | | { |
| | 1641 | | // Reset the cached value |
| 0 | 1642 | | child.ItemId = null; |
| | 1643 | | } |
| | 1644 | |
|
| 15 | 1645 | | return false; |
| | 1646 | | } |
| | 1647 | |
|
| | 1648 | | /// <summary> |
| | 1649 | | /// Marks the played. |
| | 1650 | | /// </summary> |
| | 1651 | | /// <param name="user">The user.</param> |
| | 1652 | | /// <param name="datePlayed">The date played.</param> |
| | 1653 | | /// <param name="resetPosition">if set to <c>true</c> [reset position].</param> |
| | 1654 | | public override void MarkPlayed( |
| | 1655 | | User user, |
| | 1656 | | DateTime? datePlayed, |
| | 1657 | | bool resetPosition) |
| | 1658 | | { |
| 0 | 1659 | | var query = new InternalItemsQuery |
| 0 | 1660 | | { |
| 0 | 1661 | | User = user, |
| 0 | 1662 | | Recursive = true, |
| 0 | 1663 | | IsFolder = false, |
| 0 | 1664 | | EnableTotalRecordCount = false |
| 0 | 1665 | | }; |
| | 1666 | |
|
| 0 | 1667 | | if (!user.DisplayMissingEpisodes) |
| | 1668 | | { |
| 0 | 1669 | | query.IsVirtualItem = false; |
| | 1670 | | } |
| | 1671 | |
|
| 0 | 1672 | | var itemsResult = GetItemList(query); |
| | 1673 | |
|
| | 1674 | | // Sweep through recursively and update status |
| 0 | 1675 | | foreach (var item in itemsResult) |
| | 1676 | | { |
| 0 | 1677 | | if (item.IsVirtualItem) |
| | 1678 | | { |
| | 1679 | | // The querying doesn't support virtual unaired |
| 0 | 1680 | | var episode = item as Episode; |
| 0 | 1681 | | if (episode is not null && episode.IsUnaired) |
| | 1682 | | { |
| | 1683 | | continue; |
| | 1684 | | } |
| | 1685 | | } |
| | 1686 | |
|
| 0 | 1687 | | item.MarkPlayed(user, datePlayed, resetPosition); |
| | 1688 | | } |
| 0 | 1689 | | } |
| | 1690 | |
|
| | 1691 | | /// <summary> |
| | 1692 | | /// Marks the unplayed. |
| | 1693 | | /// </summary> |
| | 1694 | | /// <param name="user">The user.</param> |
| | 1695 | | public override void MarkUnplayed(User user) |
| | 1696 | | { |
| 0 | 1697 | | var itemsResult = GetItemList(new InternalItemsQuery |
| 0 | 1698 | | { |
| 0 | 1699 | | User = user, |
| 0 | 1700 | | Recursive = true, |
| 0 | 1701 | | IsFolder = false, |
| 0 | 1702 | | EnableTotalRecordCount = false |
| 0 | 1703 | | }); |
| | 1704 | |
|
| | 1705 | | // Sweep through recursively and update status |
| 0 | 1706 | | foreach (var item in itemsResult) |
| | 1707 | | { |
| 0 | 1708 | | item.MarkUnplayed(user); |
| | 1709 | | } |
| 0 | 1710 | | } |
| | 1711 | |
|
| | 1712 | | public override bool IsPlayed(User user) |
| | 1713 | | { |
| 0 | 1714 | | var itemsResult = GetItemList(new InternalItemsQuery(user) |
| 0 | 1715 | | { |
| 0 | 1716 | | Recursive = true, |
| 0 | 1717 | | IsFolder = false, |
| 0 | 1718 | | IsVirtualItem = false, |
| 0 | 1719 | | EnableTotalRecordCount = false |
| 0 | 1720 | | }); |
| | 1721 | |
|
| 0 | 1722 | | return itemsResult |
| 0 | 1723 | | .All(i => i.IsPlayed(user)); |
| | 1724 | | } |
| | 1725 | |
|
| | 1726 | | public override bool IsUnplayed(User user) |
| | 1727 | | { |
| 0 | 1728 | | return !IsPlayed(user); |
| | 1729 | | } |
| | 1730 | |
|
| | 1731 | | public override void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, BaseItemDto itemDto, User |
| | 1732 | | { |
| 9 | 1733 | | if (!SupportsUserDataFromChildren) |
| | 1734 | | { |
| 9 | 1735 | | return; |
| | 1736 | | } |
| | 1737 | |
|
| 0 | 1738 | | if (itemDto is not null && fields.ContainsField(ItemFields.RecursiveItemCount)) |
| | 1739 | | { |
| 0 | 1740 | | itemDto.RecursiveItemCount = GetRecursiveChildCount(user); |
| | 1741 | | } |
| | 1742 | |
|
| 0 | 1743 | | if (SupportsPlayedStatus) |
| | 1744 | | { |
| 0 | 1745 | | var unplayedQueryResult = GetItems(new InternalItemsQuery(user) |
| 0 | 1746 | | { |
| 0 | 1747 | | Recursive = true, |
| 0 | 1748 | | IsFolder = false, |
| 0 | 1749 | | IsVirtualItem = false, |
| 0 | 1750 | | EnableTotalRecordCount = true, |
| 0 | 1751 | | Limit = 0, |
| 0 | 1752 | | IsPlayed = false, |
| 0 | 1753 | | DtoOptions = new DtoOptions(false) |
| 0 | 1754 | | { |
| 0 | 1755 | | EnableImages = false |
| 0 | 1756 | | } |
| 0 | 1757 | | }).TotalRecordCount; |
| | 1758 | |
|
| 0 | 1759 | | dto.UnplayedItemCount = unplayedQueryResult; |
| | 1760 | |
|
| 0 | 1761 | | if (itemDto?.RecursiveItemCount > 0) |
| | 1762 | | { |
| 0 | 1763 | | var unplayedPercentage = ((double)unplayedQueryResult / itemDto.RecursiveItemCount.Value) * 100; |
| 0 | 1764 | | dto.PlayedPercentage = 100 - unplayedPercentage; |
| 0 | 1765 | | dto.Played = dto.PlayedPercentage.Value >= 100; |
| | 1766 | | } |
| | 1767 | | else |
| | 1768 | | { |
| 0 | 1769 | | dto.Played = (dto.UnplayedItemCount ?? 0) == 0; |
| | 1770 | | } |
| | 1771 | | } |
| 0 | 1772 | | } |
| | 1773 | |
|
| | 1774 | | /// <summary> |
| | 1775 | | /// Contains constants used when reporting scan progress. |
| | 1776 | | /// </summary> |
| | 1777 | | private static class ProgressHelpers |
| | 1778 | | { |
| | 1779 | | /// <summary> |
| | 1780 | | /// Reported after the folders immediate children are retrieved. |
| | 1781 | | /// </summary> |
| | 1782 | | public const int RetrievedChildren = 5; |
| | 1783 | |
|
| | 1784 | | /// <summary> |
| | 1785 | | /// Reported after add, updating, or deleting child items from the LibraryManager. |
| | 1786 | | /// </summary> |
| | 1787 | | public const int UpdatedChildItems = 10; |
| | 1788 | |
|
| | 1789 | | /// <summary> |
| | 1790 | | /// Reported once subfolders are scanned. |
| | 1791 | | /// When scanning subfolders, the progress will be between [UpdatedItems, ScannedSubfolders]. |
| | 1792 | | /// </summary> |
| | 1793 | | public const int ScannedSubfolders = 50; |
| | 1794 | |
|
| | 1795 | | /// <summary> |
| | 1796 | | /// Reported once metadata is refreshed. |
| | 1797 | | /// When refreshing metadata, the progress will be between [ScannedSubfolders, MetadataRefreshed]. |
| | 1798 | | /// </summary> |
| | 1799 | | public const int RefreshedMetadata = 100; |
| | 1800 | |
|
| | 1801 | | /// <summary> |
| | 1802 | | /// Gets the current progress given the previous step, next step, and progress in between. |
| | 1803 | | /// </summary> |
| | 1804 | | /// <param name="previousProgressStep">The previous progress step.</param> |
| | 1805 | | /// <param name="nextProgressStep">The next progress step.</param> |
| | 1806 | | /// <param name="currentProgress">The current progress step.</param> |
| | 1807 | | /// <returns>The progress.</returns> |
| | 1808 | | public static double GetProgress(int previousProgressStep, int nextProgressStep, double currentProgress) |
| | 1809 | | { |
| 8 | 1810 | | return previousProgressStep + ((nextProgressStep - previousProgressStep) * (currentProgress / 100)); |
| | 1811 | | } |
| | 1812 | | } |
| | 1813 | | } |
| | 1814 | | } |