| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836 | #nullable disable#pragma warning disable CA1002, CA1721, CA1819, CS1591using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text.Json.Serialization;using System.Threading;using System.Threading.Tasks;using System.Threading.Tasks.Dataflow;using Jellyfin.Data.Entities;using Jellyfin.Data.Enums;using MediaBrowser.Common.Progress;using MediaBrowser.Controller.Channels;using MediaBrowser.Controller.Collections;using MediaBrowser.Controller.Configuration;using MediaBrowser.Controller.Dto;using MediaBrowser.Controller.Entities.Audio;using MediaBrowser.Controller.Entities.Movies;using MediaBrowser.Controller.Library;using MediaBrowser.Controller.Providers;using MediaBrowser.Model.Dto;using MediaBrowser.Model.IO;using MediaBrowser.Model.Querying;using Microsoft.Extensions.Logging;using Episode = MediaBrowser.Controller.Entities.TV.Episode;using MusicAlbum = MediaBrowser.Controller.Entities.Audio.MusicAlbum;using Season = MediaBrowser.Controller.Entities.TV.Season;using Series = MediaBrowser.Controller.Entities.TV.Series;namespace MediaBrowser.Controller.Entities{    /// <summary>    /// Class Folder.    /// </summary>    public class Folder : BaseItem    {        public Folder()        {            LinkedChildren = Array.Empty<LinkedChild>();        }        public static IUserViewManager UserViewManager { get; set; }        /// <summary>        /// Gets or sets a value indicating whether this instance is root.        /// </summary>        /// <value><c>true</c> if this instance is root; otherwise, <c>false</c>.</value>        public bool IsRoot { get; set; }        public LinkedChild[] LinkedChildren { get; set; }        [JsonIgnore]        public DateTime? DateLastMediaAdded { get; set; }        [JsonIgnore]        public override bool SupportsThemeMedia => true;        [JsonIgnore]        public virtual bool IsPreSorted => false;        [JsonIgnore]        public virtual bool IsPhysicalRoot => false;        [JsonIgnore]        public override bool SupportsInheritedParentImages => true;        [JsonIgnore]        public override bool SupportsPlayedStatus => true;        /// <summary>        /// Gets a value indicating whether this instance is folder.        /// </summary>        /// <value><c>true</c> if this instance is folder; otherwise, <c>false</c>.</value>        [JsonIgnore]        public override bool IsFolder => true;        [JsonIgnore]        public override bool IsDisplayedAsFolder => true;        [JsonIgnore]        public virtual bool SupportsCumulativeRunTimeTicks => false;        [JsonIgnore]        public virtual bool SupportsDateLastMediaAdded => false;        [JsonIgnore]        public override string FileNameWithoutExtension        {            get            {                if (IsFileProtocol)                {                    return System.IO.Path.GetFileName(Path);                }                return null;            }        }        /// <summary>        /// Gets the actual children.        /// </summary>        /// <value>The actual children.</value>        [JsonIgnore]        public virtual IEnumerable<BaseItem> Children => LoadChildren();        /// <summary>        /// Gets thread-safe access to all recursive children of this folder - without regard to user.        /// </summary>        /// <value>The recursive children.</value>        [JsonIgnore]        public IEnumerable<BaseItem> RecursiveChildren => GetRecursiveChildren();        [JsonIgnore]        protected virtual bool SupportsShortcutChildren => false;        protected virtual bool FilterLinkedChildrenPerUser => false;        [JsonIgnore]        protected override bool SupportsOwnedItems => base.SupportsOwnedItems || SupportsShortcutChildren;        [JsonIgnore]        public virtual bool SupportsUserDataFromChildren        {            get            {                // These are just far too slow.                if (this is ICollectionFolder)                {                    return false;                }                if (this is UserView)                {                    return false;                }                if (this is UserRootFolder)                {                    return false;                }                if (this is Channel)                {                    return false;                }                if (SourceType != SourceType.Library)                {                    return false;                }                if (this is IItemByName)                {                    if (this is not IHasDualAccess hasDualAccess || hasDualAccess.IsAccessedByName)                    {                        return false;                    }                }                return true;            }        }        public static ICollectionManager CollectionManager { get; set; }        public override bool CanDelete()        {            if (IsRoot)            {                return false;            }            return base.CanDelete();        }        public override bool RequiresRefresh()        {            var baseResult = base.RequiresRefresh();            if (SupportsCumulativeRunTimeTicks && !RunTimeTicks.HasValue)            {                baseResult = true;            }            return baseResult;        }        protected override bool IsAllowTagFilterEnforced()        {            if (this is ICollectionFolder)            {                return false;            }            if (this is UserView)            {                return false;            }            return true;        }        /// <summary>        /// Adds the child.        /// </summary>        /// <param name="item">The item.</param>        /// <exception cref="InvalidOperationException">Unable to add  + item.Name.</exception>        public void AddChild(BaseItem item)        {            item.SetParent(this);            if (item.Id.Equals(Guid.Empty))            {                item.Id = LibraryManager.GetNewItemId(item.Path, item.GetType());            }            if (item.DateCreated == DateTime.MinValue)            {                item.DateCreated = DateTime.UtcNow;            }            if (item.DateModified == DateTime.MinValue)            {                item.DateModified = DateTime.UtcNow;            }            LibraryManager.CreateItem(item, this);        }        public override bool IsVisible(User user)        {            if (this is ICollectionFolder && this is not BasePluginFolder)            {                var blockedMediaFolders = user.GetPreferenceValues<Guid>(PreferenceKind.BlockedMediaFolders);                if (blockedMediaFolders.Length > 0)                {                    if (blockedMediaFolders.Contains(Id))                    {                        return false;                    }                }                else                {                    if (!user.HasPermission(PermissionKind.EnableAllFolders)                        && !user.GetPreferenceValues<Guid>(PreferenceKind.EnabledFolders).Contains(Id))                    {                        return false;                    }                }            }            return base.IsVisible(user);        }        /// <summary>        /// Loads our children.  Validation will occur externally.        /// We want this synchronous.        /// </summary>        /// <returns>Returns children.</returns>        protected virtual List<BaseItem> LoadChildren()        {            // logger.LogDebug("Loading children from {0} {1} {2}", GetType().Name, Id, Path);            // just load our children from the repo - the library will be validated and maintained in other processes            return GetCachedChildren();        }        public override double? GetRefreshProgress()        {            return ProviderManager.GetRefreshProgress(Id);        }        public Task ValidateChildren(IProgress<double> progress, CancellationToken cancellationToken)        {            return ValidateChildren(progress, new MetadataRefreshOptions(new DirectoryService(FileSystem)), cancellationToken: cancellationToken);        }        /// <summary>        /// Validates that the children of the folder still exist.        /// </summary>        /// <param name="progress">The progress.</param>        /// <param name="metadataRefreshOptions">The metadata refresh options.</param>        /// <param name="recursive">if set to <c>true</c> [recursive].</param>        /// <param name="cancellationToken">The cancellation token.</param>        /// <returns>Task.</returns>        public Task ValidateChildren(IProgress<double> progress, MetadataRefreshOptions metadataRefreshOptions, bool recursive = true,  CancellationToken cancellationToken = default)        {            return ValidateChildrenInternal(progress, recursive, true, metadataRefreshOptions, metadataRefreshOptions.DirectoryService, cancellationToken);        }        private Dictionary<Guid, BaseItem> GetActualChildrenDictionary()        {            var dictionary = new Dictionary<Guid, BaseItem>();            var childrenList = Children.ToList();            foreach (var child in childrenList)            {                var id = child.Id;                if (dictionary.ContainsKey(id))                {                    Logger.LogError(                        "Found folder containing items with duplicate id. Path: {Path}, Child Name: {ChildName}",                        Path ?? Name,                        child.Path ?? child.Name);                }                else                {                    dictionary[id] = child;                }            }            return dictionary;        }        protected override void TriggerOnRefreshStart()        {        }        protected override void TriggerOnRefreshComplete()        {        }        /// <summary>        /// Validates the children internal.        /// </summary>        /// <param name="progress">The progress.</param>        /// <param name="recursive">if set to <c>true</c> [recursive].</param>        /// <param name="refreshChildMetadata">if set to <c>true</c> [refresh child metadata].</param>        /// <param name="refreshOptions">The refresh options.</param>        /// <param name="directoryService">The directory service.</param>        /// <param name="cancellationToken">The cancellation token.</param>        /// <returns>Task.</returns>        protected virtual async Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService, CancellationToken cancellationToken)        {            if (recursive)            {                ProviderManager.OnRefreshStart(this);            }            try            {                await ValidateChildrenInternal2(progress, recursive, refreshChildMetadata, refreshOptions, directoryService, cancellationToken).ConfigureAwait(false);            }            finally            {                if (recursive)                {                    ProviderManager.OnRefreshComplete(this);                }            }        }        private async Task ValidateChildrenInternal2(IProgress<double> progress, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService, CancellationToken cancellationToken)        {            cancellationToken.ThrowIfCancellationRequested();            var validChildren = new List<BaseItem>();            var validChildrenNeedGeneration = false;            if (IsFileProtocol)            {                IEnumerable<BaseItem> nonCachedChildren;                try                {                    nonCachedChildren = GetNonCachedChildren(directoryService);                }                catch (Exception ex)                {                    Logger.LogError(ex, "Error retrieving children folder");                    return;                }                progress.Report(ProgressHelpers.RetrievedChildren);                if (recursive)                {                    ProviderManager.OnRefreshProgress(this, ProgressHelpers.RetrievedChildren);                }                // Build a dictionary of the current children we have now by Id so we can compare quickly and easily                var currentChildren = GetActualChildrenDictionary();                // Create a list for our validated children                var newItems = new List<BaseItem>();                cancellationToken.ThrowIfCancellationRequested();                foreach (var child in nonCachedChildren)                {                    if (currentChildren.TryGetValue(child.Id, out BaseItem currentChild))                    {                        validChildren.Add(currentChild);                        if (currentChild.UpdateFromResolvedItem(child) > ItemUpdateType.None)                        {                            await currentChild.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, cancellationToken).ConfigureAwait(false);                        }                        else                        {                            // metadata is up-to-date; make sure DB has correct images dimensions and hash                            await LibraryManager.UpdateImagesAsync(currentChild).ConfigureAwait(false);                        }                        continue;                    }                    // Brand new item - needs to be added                    child.SetParent(this);                    newItems.Add(child);                    validChildren.Add(child);                }                // If any items were added or removed....                if (newItems.Count > 0 || currentChildren.Count != validChildren.Count)                {                    // That's all the new and changed ones - now see if there are any that are missing                    var itemsRemoved = currentChildren.Values.Except(validChildren).ToList();                    foreach (var item in itemsRemoved)                    {                        if (item.IsFileProtocol)                        {                            Logger.LogDebug("Removed item: {Path}", item.Path);                            item.SetParent(null);                            LibraryManager.DeleteItem(item, new DeleteOptions { DeleteFileLocation = false }, this, false);                        }                    }                    LibraryManager.CreateItems(newItems, this, cancellationToken);                }            }            else            {                validChildrenNeedGeneration = true;            }            progress.Report(ProgressHelpers.UpdatedChildItems);            if (recursive)            {                ProviderManager.OnRefreshProgress(this, ProgressHelpers.UpdatedChildItems);            }            cancellationToken.ThrowIfCancellationRequested();            if (recursive)            {                var innerProgress = new ActionableProgress<double>();                var folder = this;                innerProgress.RegisterAction(innerPercent =>                {                    var percent = ProgressHelpers.GetProgress(ProgressHelpers.UpdatedChildItems, ProgressHelpers.ScannedSubfolders, innerPercent);                    progress.Report(percent);                    ProviderManager.OnRefreshProgress(folder, percent);                });                if (validChildrenNeedGeneration)                {                    validChildren = Children.ToList();                    validChildrenNeedGeneration = false;                }                await ValidateSubFolders(validChildren.OfType<Folder>().ToList(), directoryService, innerProgress, cancellationToken).ConfigureAwait(false);            }            if (refreshChildMetadata)            {                progress.Report(ProgressHelpers.ScannedSubfolders);                if (recursive)                {                    ProviderManager.OnRefreshProgress(this, ProgressHelpers.ScannedSubfolders);                }                var container = this as IMetadataContainer;                var innerProgress = new ActionableProgress<double>();                var folder = this;                innerProgress.RegisterAction(innerPercent =>                {                    var percent = ProgressHelpers.GetProgress(ProgressHelpers.ScannedSubfolders, ProgressHelpers.RefreshedMetadata, innerPercent);                    progress.Report(percent);                    if (recursive)                    {                        ProviderManager.OnRefreshProgress(folder, percent);                    }                });                if (container != null)                {                    await RefreshAllMetadataForContainer(container, refreshOptions, innerProgress, cancellationToken).ConfigureAwait(false);                }                else                {                    if (validChildrenNeedGeneration)                    {                        validChildren = Children.ToList();                    }                    await RefreshMetadataRecursive(validChildren, refreshOptions, recursive, innerProgress, cancellationToken).ConfigureAwait(false);                }            }        }        private Task RefreshMetadataRecursive(IList<BaseItem> children, MetadataRefreshOptions refreshOptions, bool recursive, IProgress<double> progress, CancellationToken cancellationToken)        {            return RunTasks(                (baseItem, innerProgress) => RefreshChildMetadata(baseItem, refreshOptions, recursive && baseItem.IsFolder, innerProgress, cancellationToken),                children,                progress,                cancellationToken);        }        private async Task RefreshAllMetadataForContainer(IMetadataContainer container, MetadataRefreshOptions refreshOptions, IProgress<double> progress, CancellationToken cancellationToken)        {            // limit the amount of concurrent metadata refreshes            await ProviderManager.RunMetadataRefresh(                async () =>                {                    var series = container as Series;                    if (series != null)                    {                        await series.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);                    }                    await container.RefreshAllMetadata(refreshOptions, progress, cancellationToken).ConfigureAwait(false);                },                cancellationToken).ConfigureAwait(false);        }        private async Task RefreshChildMetadata(BaseItem child, MetadataRefreshOptions refreshOptions, bool recursive, IProgress<double> progress, CancellationToken cancellationToken)        {            var container = child as IMetadataContainer;            if (container != null)            {                await RefreshAllMetadataForContainer(container, refreshOptions, progress, cancellationToken).ConfigureAwait(false);            }            else            {                if (refreshOptions.RefreshItem(child))                {                    // limit the amount of concurrent metadata refreshes                    await ProviderManager.RunMetadataRefresh(                        async () => await child.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false),                        cancellationToken).ConfigureAwait(false);                }                if (recursive && child is Folder folder)                {                    await folder.RefreshMetadataRecursive(folder.Children.ToList(), refreshOptions, true, progress, cancellationToken).ConfigureAwait(false);                }            }        }        /// <summary>        /// Refreshes the children.        /// </summary>        /// <param name="children">The children.</param>        /// <param name="directoryService">The directory service.</param>        /// <param name="progress">The progress.</param>        /// <param name="cancellationToken">The cancellation token.</param>        /// <returns>Task.</returns>        private Task ValidateSubFolders(IList<Folder> children, IDirectoryService directoryService, IProgress<double> progress, CancellationToken cancellationToken)        {            return RunTasks(                (folder, innerProgress) => folder.ValidateChildrenInternal(innerProgress, true, false, null, directoryService, cancellationToken),                children,                progress,                cancellationToken);        }        /// <summary>        /// Runs an action block on a list of children.        /// </summary>        /// <param name="task">The task to run for each child.</param>        /// <param name="children">The list of children.</param>        /// <param name="progress">The progress.</param>        /// <param name="cancellationToken">The cancellation token.</param>        /// <returns>Task.</returns>        private async Task RunTasks<T>(Func<T, IProgress<double>, Task> task, IList<T> children, IProgress<double> progress, CancellationToken cancellationToken)        {            var childrenCount = children.Count;            var childrenProgress = new double[childrenCount];            void UpdateProgress()            {                progress.Report(childrenProgress.Average());            }            var fanoutConcurrency = ConfigurationManager.Configuration.LibraryScanFanoutConcurrency;            var parallelism = fanoutConcurrency == 0 ? Environment.ProcessorCount : fanoutConcurrency;            var actionBlock = new ActionBlock<int>(                async i =>                {                    var innerProgress = new ActionableProgress<double>();                    innerProgress.RegisterAction(innerPercent =>                    {                        // round the percent and only update progress if it changed to prevent excessive UpdateProgress calls                        var innerPercentRounded = Math.Round(innerPercent);                        if (childrenProgress[i] != innerPercentRounded)                        {                            childrenProgress[i] = innerPercentRounded;                            UpdateProgress();                        }                    });                    await task(children[i], innerProgress).ConfigureAwait(false);                    childrenProgress[i] = 100;                    UpdateProgress();                },                new ExecutionDataflowBlockOptions                {                    MaxDegreeOfParallelism = parallelism,                    CancellationToken = cancellationToken,                });            for (var i = 0; i < childrenCount; i++)            {                actionBlock.Post(i);            }            actionBlock.Complete();            await actionBlock.Completion.ConfigureAwait(false);        }        /// <summary>        /// Get the children of this folder from the actual file system.        /// </summary>        /// <returns>IEnumerable{BaseItem}.</returns>        /// <param name="directoryService">The directory service to use for operation.</param>        /// <returns>Returns set of base items.</returns>        protected virtual IEnumerable<BaseItem> GetNonCachedChildren(IDirectoryService directoryService)        {            var collectionType = LibraryManager.GetContentType(this);            var libraryOptions = LibraryManager.GetLibraryOptions(this);            return LibraryManager.ResolvePaths(GetFileSystemChildren(directoryService), directoryService, this, libraryOptions, collectionType);        }        /// <summary>        /// Get our children from the repo - stubbed for now.        /// </summary>        /// <returns>IEnumerable{BaseItem}.</returns>        protected List<BaseItem> GetCachedChildren()        {            return ItemRepository.GetItemList(new InternalItemsQuery            {                Parent = this,                GroupByPresentationUniqueKey = false,                DtoOptions = new DtoOptions(true)            });        }        public virtual int GetChildCount(User user)        {            if (LinkedChildren.Length > 0)            {                if (this is not ICollectionFolder)                {                    return GetChildren(user, true).Count;                }            }            var result = GetItems(new InternalItemsQuery(user)            {                Recursive = false,                Limit = 0,                Parent = this,                DtoOptions = new DtoOptions(false)                {                    EnableImages = false                }            });            return result.TotalRecordCount;        }        public virtual int GetRecursiveChildCount(User user)        {            return GetItems(new InternalItemsQuery(user)            {                Recursive = true,                IsFolder = false,                IsVirtualItem = false,                EnableTotalRecordCount = true,                Limit = 0,                DtoOptions = new DtoOptions(false)                {                    EnableImages = false                }            }).TotalRecordCount;        }        public QueryResult<BaseItem> QueryRecursive(InternalItemsQuery query)        {            var user = query.User;            if (!query.ForceDirect && RequiresPostFiltering(query))            {                IEnumerable<BaseItem> items;                Func<BaseItem, bool> filter = i => UserViewBuilder.Filter(i, user, query, UserDataManager, LibraryManager);                if (query.User == null)                {                    items = GetRecursiveChildren(filter);                }                else                {                    items = GetRecursiveChildren(user, query);                }                return PostFilterAndSort(items, query, true);            }            if (this is not UserRootFolder && this is not AggregateFolder && query.ParentId == Guid.Empty)            {                query.Parent = this;            }            if (RequiresPostFiltering2(query))            {                return QueryWithPostFiltering2(query);            }            return LibraryManager.GetItemsResult(query);        }        private QueryResult<BaseItem> QueryWithPostFiltering2(InternalItemsQuery query)        {            var startIndex = query.StartIndex;            var limit = query.Limit;            query.StartIndex = null;            query.Limit = null;            IEnumerable<BaseItem> itemsList = LibraryManager.GetItemList(query);            var user = query.User;            if (user != null)            {                // needed for boxsets                itemsList = itemsList.Where(i => i.IsVisibleStandalone(query.User));            }            IEnumerable<BaseItem> returnItems;            int totalCount = 0;            if (query.EnableTotalRecordCount)            {                var itemArray = itemsList.ToArray();                totalCount = itemArray.Length;                returnItems = itemArray;            }            else            {                returnItems = itemsList;            }            if (limit.HasValue)            {                returnItems = returnItems.Skip(startIndex ?? 0).Take(limit.Value);            }            else if (startIndex.HasValue)            {                returnItems = returnItems.Skip(startIndex.Value);            }            return new QueryResult<BaseItem>(                query.StartIndex,                totalCount,                returnItems.ToArray());        }        private bool RequiresPostFiltering2(InternalItemsQuery query)        {            if (query.IncludeItemTypes.Length == 1 && query.IncludeItemTypes[0] == BaseItemKind.BoxSet)            {                Logger.LogDebug("Query requires post-filtering due to BoxSet query");                return true;            }            return false;        }        private bool RequiresPostFiltering(InternalItemsQuery query)        {            if (LinkedChildren.Length > 0)            {                if (this is not ICollectionFolder)                {                    Logger.LogDebug("{Type}: Query requires post-filtering due to LinkedChildren.", GetType().Name);                    return true;                }            }            // Filter by Video3DFormat            if (query.Is3D.HasValue)            {                Logger.LogDebug("Query requires post-filtering due to Is3D");                return true;            }            if (query.HasOfficialRating.HasValue)            {                Logger.LogDebug("Query requires post-filtering due to HasOfficialRating");                return true;            }            if (query.IsPlaceHolder.HasValue)            {                Logger.LogDebug("Query requires post-filtering due to IsPlaceHolder");                return true;            }            if (query.HasSpecialFeature.HasValue)            {                Logger.LogDebug("Query requires post-filtering due to HasSpecialFeature");                return true;            }            if (query.HasSubtitles.HasValue)            {                Logger.LogDebug("Query requires post-filtering due to HasSubtitles");                return true;            }            if (query.HasTrailer.HasValue)            {                Logger.LogDebug("Query requires post-filtering due to HasTrailer");                return true;            }            // Filter by VideoType            if (query.VideoTypes.Length > 0)            {                Logger.LogDebug("Query requires post-filtering due to VideoTypes");                return true;            }            if (CollapseBoxSetItems(query, this, query.User, ConfigurationManager))            {                Logger.LogDebug("Query requires post-filtering due to CollapseBoxSetItems");                return true;            }            if (!string.IsNullOrEmpty(query.AdjacentTo))            {                Logger.LogDebug("Query requires post-filtering due to AdjacentTo");                return true;            }            if (query.SeriesStatuses.Length > 0)            {                Logger.LogDebug("Query requires post-filtering due to SeriesStatuses");                return true;            }            if (query.AiredDuringSeason.HasValue)            {                Logger.LogDebug("Query requires post-filtering due to AiredDuringSeason");                return true;            }            if (query.IsPlayed.HasValue)            {                if (query.IncludeItemTypes.Length == 1 && query.IncludeItemTypes.Contains(BaseItemKind.Series))                {                    Logger.LogDebug("Query requires post-filtering due to IsPlayed");                    return true;                }            }            return false;        }        private static BaseItem[] SortItemsByRequest(InternalItemsQuery query, IReadOnlyList<BaseItem> items)        {            var ids = query.ItemIds;            int size = items.Count;            // ids can potentially contain non-unique guids, but query result cannot,            // so we include only first occurrence of each guid            var positions = new Dictionary<Guid, int>(size);            int index = 0;            for (int i = 0; i < ids.Length; i++)            {                if (positions.TryAdd(ids[i], index))                {                    index++;                }            }            var newItems = new BaseItem[size];            for (int i = 0; i < size; i++)            {                var item = items[i];                newItems[positions[item.Id]] = item;            }            return newItems;        }        public QueryResult<BaseItem> GetItems(InternalItemsQuery query)        {            if (query.ItemIds.Length > 0)            {                var result = LibraryManager.GetItemsResult(query);                if (query.OrderBy.Count == 0 && query.ItemIds.Length > 1)                {                    result.Items = SortItemsByRequest(query, result.Items);                }                return result;            }            return GetItemsInternal(query);        }        public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query)        {            query.EnableTotalRecordCount = false;            if (query.ItemIds.Length > 0)            {                var result = LibraryManager.GetItemList(query);                if (query.OrderBy.Count == 0 && query.ItemIds.Length > 1)                {                    return SortItemsByRequest(query, result);                }                return result;            }            return GetItemsInternal(query).Items;        }        protected virtual QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query)        {            if (SourceType == SourceType.Channel)            {                try                {                    query.Parent = this;                    query.ChannelIds = new[] { ChannelId };                    // Don't blow up here because it could cause parent screens with other content to fail                    return ChannelManager.GetChannelItemsInternal(query, new SimpleProgress<double>(), CancellationToken.None).GetAwaiter().GetResult();                }                catch                {                    // Already logged at lower levels                    return new QueryResult<BaseItem>();                }            }            if (query.Recursive)            {                return QueryRecursive(query);            }            var user = query.User;            Func<BaseItem, bool> filter = i => UserViewBuilder.Filter(i, user, query, UserDataManager, LibraryManager);            IEnumerable<BaseItem> items;            if (query.User == null)            {                items = Children.Where(filter);            }            else            {                // need to pass this param to the children.                var childQuery = new InternalItemsQuery                {                    DisplayAlbumFolders = query.DisplayAlbumFolders                };                items = GetChildren(user, true, childQuery).Where(filter);            }            return PostFilterAndSort(items, query, true);        }        protected QueryResult<BaseItem> PostFilterAndSort(IEnumerable<BaseItem> items, InternalItemsQuery query, bool enableSorting)        {            var user = query.User;            // Check recursive - don't substitute in plain folder views            if (user != null)            {                items = CollapseBoxSetItemsIfNeeded(items, query, this, user, ConfigurationManager, CollectionManager);            }            #pragma warning disable CA1309            if (!string.IsNullOrEmpty(query.NameStartsWithOrGreater))            {                items = items.Where(i => string.Compare(query.NameStartsWithOrGreater, i.SortName, StringComparison.InvariantCultureIgnoreCase) < 1);            }            if (!string.IsNullOrEmpty(query.NameStartsWith))            {                items = items.Where(i => i.SortName.StartsWith(query.NameStartsWith, StringComparison.InvariantCultureIgnoreCase));            }            if (!string.IsNullOrEmpty(query.NameLessThan))            {                items = items.Where(i => string.Compare(query.NameLessThan, i.SortName, StringComparison.InvariantCultureIgnoreCase) == 1);            }            #pragma warning restore CA1309            // This must be the last filter            if (!string.IsNullOrEmpty(query.AdjacentTo))            {                items = UserViewBuilder.FilterForAdjacency(items.ToList(), query.AdjacentTo);            }            return UserViewBuilder.SortAndPage(items, null, query, LibraryManager, enableSorting);        }        private static IEnumerable<BaseItem> CollapseBoxSetItemsIfNeeded(            IEnumerable<BaseItem> items,            InternalItemsQuery query,            BaseItem queryParent,            User user,            IServerConfigurationManager configurationManager,            ICollectionManager collectionManager)        {            if (items == null)            {                throw new ArgumentNullException(nameof(items));            }            if (CollapseBoxSetItems(query, queryParent, user, configurationManager))            {                items = collectionManager.CollapseItemsWithinBoxSets(items, user);            }            return items;        }        private static bool CollapseBoxSetItems(            InternalItemsQuery query,            BaseItem queryParent,            User user,            IServerConfigurationManager configurationManager)        {            // Could end up stuck in a loop like this            if (queryParent is BoxSet)            {                return false;            }            if (queryParent is Series)            {                return false;            }            if (queryParent is Season)            {                return false;            }            if (queryParent is MusicAlbum)            {                return false;            }            if (queryParent is MusicArtist)            {                return false;            }            var param = query.CollapseBoxSetItems;            if (!param.HasValue)            {                if (user != null && !configurationManager.Configuration.EnableGroupingIntoCollections)                {                    return false;                }                if (query.IncludeItemTypes.Length == 0 || query.IncludeItemTypes.Contains(BaseItemKind.Movie))                {                    param = true;                }            }            return param.HasValue && param.Value && AllowBoxSetCollapsing(query);        }        private static bool AllowBoxSetCollapsing(InternalItemsQuery request)        {            if (request.IsFavorite.HasValue)            {                return false;            }            if (request.IsFavoriteOrLiked.HasValue)            {                return false;            }            if (request.IsLiked.HasValue)            {                return false;            }            if (request.IsPlayed.HasValue)            {                return false;            }            if (request.IsResumable.HasValue)            {                return false;            }            if (request.IsFolder.HasValue)            {                return false;            }            if (request.Genres.Count > 0)            {                return false;            }            if (request.GenreIds.Count > 0)            {                return false;            }            if (request.HasImdbId.HasValue)            {                return false;            }            if (request.HasOfficialRating.HasValue)            {                return false;            }            if (request.HasOverview.HasValue)            {                return false;            }            if (request.HasParentalRating.HasValue)            {                return false;            }            if (request.HasSpecialFeature.HasValue)            {                return false;            }            if (request.HasSubtitles.HasValue)            {                return false;            }            if (request.HasThemeSong.HasValue)            {                return false;            }            if (request.HasThemeVideo.HasValue)            {                return false;            }            if (request.HasTmdbId.HasValue)            {                return false;            }            if (request.HasTrailer.HasValue)            {                return false;            }            if (request.ImageTypes.Length > 0)            {                return false;            }            if (request.Is3D.HasValue)            {                return false;            }            if (request.IsHD.HasValue)            {                return false;            }            if (request.IsLocked.HasValue)            {                return false;            }            if (request.IsPlaceHolder.HasValue)            {                return false;            }            if (request.IsPlayed.HasValue)            {                return false;            }            if (!string.IsNullOrWhiteSpace(request.Person))            {                return false;            }            if (request.PersonIds.Length > 0)            {                return false;            }            if (request.ItemIds.Length > 0)            {                return false;            }            if (request.StudioIds.Length > 0)            {                return false;            }            if (request.GenreIds.Count > 0)            {                return false;            }            if (request.VideoTypes.Length > 0)            {                return false;            }            if (request.Years.Length > 0)            {                return false;            }            if (request.Tags.Length > 0)            {                return false;            }            if (request.OfficialRatings.Length > 0)            {                return false;            }            if (request.MinCommunityRating.HasValue)            {                return false;            }            if (request.MinCriticRating.HasValue)            {                return false;            }            if (request.MinIndexNumber.HasValue)            {                return false;            }            return true;        }        public List<BaseItem> GetChildren(User user, bool includeLinkedChildren)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            return GetChildren(user, includeLinkedChildren, null);        }        public virtual List<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery query)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            // the true root should return our users root folder children            if (IsPhysicalRoot)            {                return LibraryManager.GetUserRootFolder().GetChildren(user, includeLinkedChildren);            }            var result = new Dictionary<Guid, BaseItem>();            AddChildren(user, includeLinkedChildren, result, false, query);            return result.Values.ToList();        }        protected virtual IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)        {            return Children;        }        /// <summary>        /// Adds the children to list.        /// </summary>        private void AddChildren(User user, bool includeLinkedChildren, Dictionary<Guid, BaseItem> result, bool recursive, InternalItemsQuery query)        {            // If Query.AlbumFolders is set, then enforce the format as per the db in that it permits sub-folders in music albums.            IEnumerable<BaseItem> children = null;            if ((query?.DisplayAlbumFolders ?? false) && (this is MusicAlbum))            {                children = Children;                query = null;            }            // If there are not sub-folders, proceed as normal.            if (children == null)            {                children = GetEligibleChildrenForRecursiveChildren(user);            }            foreach (var child in children)            {                bool? isVisibleToUser = null;                if (query == null || UserViewBuilder.FilterItem(child, query))                {                    isVisibleToUser = child.IsVisible(user);                    if (isVisibleToUser.Value)                    {                        result[child.Id] = child;                    }                }                if (isVisibleToUser ?? child.IsVisible(user))                {                    if (recursive && child.IsFolder)                    {                        var folder = (Folder)child;                        folder.AddChildren(user, includeLinkedChildren, result, true, query);                    }                }            }            if (includeLinkedChildren)            {                foreach (var child in GetLinkedChildren(user))                {                    if (query == null || UserViewBuilder.FilterItem(child, query))                    {                        if (child.IsVisible(user))                        {                            result[child.Id] = child;                        }                    }                }            }        }        public virtual IEnumerable<BaseItem> GetRecursiveChildren(User user, InternalItemsQuery query)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            var result = new Dictionary<Guid, BaseItem>();            AddChildren(user, true, result, true, query);            return result.Values;        }        /// <summary>        /// Gets the recursive children.        /// </summary>        /// <returns>IList{BaseItem}.</returns>        public IList<BaseItem> GetRecursiveChildren()        {            return GetRecursiveChildren(true);        }        public IList<BaseItem> GetRecursiveChildren(bool includeLinkedChildren)        {            return GetRecursiveChildren(i => true, includeLinkedChildren);        }        public IList<BaseItem> GetRecursiveChildren(Func<BaseItem, bool> filter)        {            return GetRecursiveChildren(filter, true);        }        public IList<BaseItem> GetRecursiveChildren(Func<BaseItem, bool> filter, bool includeLinkedChildren)        {            var result = new Dictionary<Guid, BaseItem>();            AddChildrenToList(result, includeLinkedChildren, true, filter);            return result.Values.ToList();        }        /// <summary>        /// Adds the children to list.        /// </summary>        private void AddChildrenToList(Dictionary<Guid, BaseItem> result, bool includeLinkedChildren, bool recursive, Func<BaseItem, bool> filter)        {            foreach (var child in Children)            {                if (filter == null || filter(child))                {                    result[child.Id] = child;                }                if (recursive && child.IsFolder)                {                    var folder = (Folder)child;                    // We can only support includeLinkedChildren for the first folder, or we might end up stuck in a loop of linked items                    folder.AddChildrenToList(result, false, true, filter);                }            }            if (includeLinkedChildren)            {                foreach (var child in GetLinkedChildren())                {                    if (filter == null || filter(child))                    {                        result[child.Id] = child;                    }                }            }        }        /// <summary>        /// Gets the linked children.        /// </summary>        /// <returns>IEnumerable{BaseItem}.</returns>        public List<BaseItem> GetLinkedChildren()        {            var linkedChildren = LinkedChildren;            var list = new List<BaseItem>(linkedChildren.Length);            foreach (var i in linkedChildren)            {                var child = GetLinkedChild(i);                if (child != null)                {                    list.Add(child);                }            }            return list;        }        public bool ContainsLinkedChildByItemId(Guid itemId)        {            var linkedChildren = LinkedChildren;            foreach (var i in linkedChildren)            {                if (i.ItemId.HasValue)                {                    if (i.ItemId.Value == itemId)                    {                        return true;                    }                    continue;                }                var child = GetLinkedChild(i);                if (child != null && child.Id == itemId)                {                    return true;                }            }            return false;        }        public List<BaseItem> GetLinkedChildren(User user)        {            if (!FilterLinkedChildrenPerUser || user == null)            {                return GetLinkedChildren();            }            var linkedChildren = LinkedChildren;            var list = new List<BaseItem>(linkedChildren.Length);            if (linkedChildren.Length == 0)            {                return list;            }            var allUserRootChildren = LibraryManager.GetUserRootFolder()                .GetChildren(user, true)                .OfType<Folder>()                .ToList();            var collectionFolderIds = allUserRootChildren                .Select(i => i.Id)                .ToList();            foreach (var i in linkedChildren)            {                var child = GetLinkedChild(i);                if (child == null)                {                    continue;                }                var childOwner = child.GetOwner() ?? child;                if (child is not IItemByName)                {                    var childProtocol = childOwner.PathProtocol;                    if (!childProtocol.HasValue || childProtocol.Value != Model.MediaInfo.MediaProtocol.File)                    {                        if (!childOwner.IsVisibleStandalone(user))                        {                            continue;                        }                    }                    else                    {                        var itemCollectionFolderIds =                            LibraryManager.GetCollectionFolders(childOwner, allUserRootChildren).Select(f => f.Id);                        if (!itemCollectionFolderIds.Any(collectionFolderIds.Contains))                        {                            continue;                        }                    }                }                list.Add(child);            }            return list;        }        /// <summary>        /// Gets the linked children.        /// </summary>        /// <returns>IEnumerable{BaseItem}.</returns>        public IEnumerable<Tuple<LinkedChild, BaseItem>> GetLinkedChildrenInfos()        {            return LinkedChildren                .Select(i => new Tuple<LinkedChild, BaseItem>(i, GetLinkedChild(i)))                .Where(i => i.Item2 != null);        }        protected override async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, IReadOnlyList<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)        {            var changesFound = false;            if (IsFileProtocol)            {                if (RefreshLinkedChildren(fileSystemChildren))                {                    changesFound = true;                }            }            var baseHasChanges = await base.RefreshedOwnedItems(options, fileSystemChildren, cancellationToken).ConfigureAwait(false);            return baseHasChanges || changesFound;        }        /// <summary>        /// Refreshes the linked children.        /// </summary>        /// <param name="fileSystemChildren">The enumerable of file system metadata.</param>        /// <returns><c>true</c> if the linked children were updated, <c>false</c> otherwise.</returns>        protected virtual bool RefreshLinkedChildren(IEnumerable<FileSystemMetadata> fileSystemChildren)        {            if (SupportsShortcutChildren)            {                var newShortcutLinks = fileSystemChildren                    .Where(i => !i.IsDirectory && FileSystem.IsShortcut(i.FullName))                    .Select(i =>                    {                        try                        {                            Logger.LogDebug("Found shortcut at {0}", i.FullName);                            var resolvedPath = CollectionFolder.ApplicationHost.ExpandVirtualPath(FileSystem.ResolveShortcut(i.FullName));                            if (!string.IsNullOrEmpty(resolvedPath))                            {                                return new LinkedChild                                {                                    Path = resolvedPath,                                    Type = LinkedChildType.Shortcut                                };                            }                            Logger.LogError("Error resolving shortcut {0}", i.FullName);                            return null;                        }                        catch (IOException ex)                        {                            Logger.LogError(ex, "Error resolving shortcut {0}", i.FullName);                            return null;                        }                    })                    .Where(i => i != null)                    .ToList();                var currentShortcutLinks = LinkedChildren.Where(i => i.Type == LinkedChildType.Shortcut).ToList();                if (!newShortcutLinks.SequenceEqual(currentShortcutLinks, new LinkedChildComparer(FileSystem)))                {                    Logger.LogInformation("Shortcut links have changed for {0}", Path);                    newShortcutLinks.AddRange(LinkedChildren.Where(i => i.Type == LinkedChildType.Manual));                    LinkedChildren = newShortcutLinks.ToArray();                    return true;                }            }            foreach (var child in LinkedChildren)            {                // Reset the cached value                child.ItemId = null;            }            return false;        }        /// <summary>        /// Marks the played.        /// </summary>        /// <param name="user">The user.</param>        /// <param name="datePlayed">The date played.</param>        /// <param name="resetPosition">if set to <c>true</c> [reset position].</param>        public override void MarkPlayed(            User user,            DateTime? datePlayed,            bool resetPosition)        {            var query = new InternalItemsQuery            {                User = user,                Recursive = true,                IsFolder = false,                EnableTotalRecordCount = false            };            if (!user.DisplayMissingEpisodes)            {                query.IsVirtualItem = false;            }            var itemsResult = GetItemList(query);            // Sweep through recursively and update status            foreach (var item in itemsResult)            {                if (item.IsVirtualItem)                {                    // The querying doesn't support virtual unaired                    var episode = item as Episode;                    if (episode != null && episode.IsUnaired)                    {                        continue;                    }                }                item.MarkPlayed(user, datePlayed, resetPosition);            }        }        /// <summary>        /// Marks the unplayed.        /// </summary>        /// <param name="user">The user.</param>        public override void MarkUnplayed(User user)        {            var itemsResult = GetItemList(new InternalItemsQuery            {                User = user,                Recursive = true,                IsFolder = false,                EnableTotalRecordCount = false            });            // Sweep through recursively and update status            foreach (var item in itemsResult)            {                item.MarkUnplayed(user);            }        }        public override bool IsPlayed(User user)        {            var itemsResult = GetItemList(new InternalItemsQuery(user)            {                Recursive = true,                IsFolder = false,                IsVirtualItem = false,                EnableTotalRecordCount = false            });            return itemsResult                .All(i => i.IsPlayed(user));        }        public override bool IsUnplayed(User user)        {            return !IsPlayed(user);        }        public override void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, BaseItemDto itemDto, User user, DtoOptions fields)        {            if (!SupportsUserDataFromChildren)            {                return;            }            if (itemDto != null)            {                if (fields.ContainsField(ItemFields.RecursiveItemCount))                {                    itemDto.RecursiveItemCount = GetRecursiveChildCount(user);                }            }            if (SupportsPlayedStatus)            {                var unplayedQueryResult = GetItems(new InternalItemsQuery(user)                {                    Recursive = true,                    IsFolder = false,                    IsVirtualItem = false,                    EnableTotalRecordCount = true,                    Limit = 0,                    IsPlayed = false,                    DtoOptions = new DtoOptions(false)                    {                        EnableImages = false                    }                }).TotalRecordCount;                dto.UnplayedItemCount = unplayedQueryResult;                if (itemDto?.RecursiveItemCount > 0)                {                    var unplayedPercentage = ((double)unplayedQueryResult / itemDto.RecursiveItemCount.Value) * 100;                    dto.PlayedPercentage = 100 - unplayedPercentage;                    dto.Played = dto.PlayedPercentage.Value >= 100;                }                else                {                    dto.Played = (dto.UnplayedItemCount ?? 0) == 0;                }            }        }        /// <summary>        /// Contains constants used when reporting scan progress.        /// </summary>        private static class ProgressHelpers        {            /// <summary>            /// Reported after the folders immediate children are retrieved.            /// </summary>            public const int RetrievedChildren = 5;            /// <summary>            /// Reported after add, updating, or deleting child items from the LibraryManager.            /// </summary>            public const int UpdatedChildItems = 10;            /// <summary>            /// Reported once subfolders are scanned.            /// When scanning subfolders, the progress will be between [UpdatedItems, ScannedSubfolders].            /// </summary>            public const int ScannedSubfolders = 50;            /// <summary>            /// Reported once metadata is refreshed.            /// When refreshing metadata, the progress will be between [ScannedSubfolders, MetadataRefreshed].            /// </summary>            public const int RefreshedMetadata = 100;            /// <summary>            /// Gets the current progress given the previous step, next step, and progress in between.            /// </summary>            /// <param name="previousProgressStep">The previous progress step.</param>            /// <param name="nextProgressStep">The next progress step.</param>            /// <param name="currentProgress">The current progress step.</param>            /// <returns>The progress.</returns>            public static double GetProgress(int previousProgressStep, int nextProgressStep, double currentProgress)            {                return previousProgressStep + ((nextProgressStep - previousProgressStep) * (currentProgress / 100));            }        }    }}
 |