| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009 | #pragma warning disable CS1591using System;using System.Collections.Generic;using System.Globalization;using System.IO;using System.Linq;using System.Text;using System.Text.Json.Serialization;using System.Threading;using System.Threading.Tasks;using Jellyfin.Data.Entities;using Jellyfin.Data.Enums;using MediaBrowser.Common.Extensions;using MediaBrowser.Controller.Channels;using MediaBrowser.Controller.Configuration;using MediaBrowser.Controller.Dto;using MediaBrowser.Controller.Extensions;using MediaBrowser.Controller.Library;using MediaBrowser.Controller.Persistence;using MediaBrowser.Controller.Providers;using MediaBrowser.Model.Configuration;using MediaBrowser.Model.Dto;using MediaBrowser.Model.Entities;using MediaBrowser.Model.Globalization;using MediaBrowser.Model.IO;using MediaBrowser.Model.Library;using MediaBrowser.Model.LiveTv;using MediaBrowser.Model.MediaInfo;using MediaBrowser.Model.Providers;using Microsoft.Extensions.Logging;namespace MediaBrowser.Controller.Entities{    /// <summary>    /// Class BaseItem.    /// </summary>    public abstract class BaseItem : IHasProviderIds, IHasLookupInfo<ItemLookupInfo>, IEquatable<BaseItem>    {        /// <summary>        /// The supported image extensions.        /// </summary>        public static readonly string[] SupportedImageExtensions            = new[] { ".png", ".jpg", ".jpeg", ".tbn", ".gif" };        private static readonly List<string> _supportedExtensions = new List<string>(SupportedImageExtensions)        {            ".nfo",            ".xml",            ".srt",            ".vtt",            ".sub",            ".idx",            ".txt",            ".edl",            ".bif",            ".smi",            ".ttml"        };        protected BaseItem()        {            Tags = Array.Empty<string>();            Genres = Array.Empty<string>();            Studios = Array.Empty<string>();            ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);            LockedFields = Array.Empty<MetadataField>();            ImageInfos = Array.Empty<ItemImageInfo>();            ProductionLocations = Array.Empty<string>();            RemoteTrailers = Array.Empty<MediaUrl>();            ExtraIds = Array.Empty<Guid>();        }        public static readonly char[] SlugReplaceChars = { '?', '/', '&' };        public static char SlugChar = '-';        /// <summary>        /// The trailer folder name.        /// </summary>        public const string TrailerFolderName = "trailers";        public const string ThemeSongsFolderName = "theme-music";        public const string ThemeSongFilename = "theme";        public const string ThemeVideosFolderName = "backdrops";        public const string ExtrasFolderName = "extras";        public const string BehindTheScenesFolderName = "behind the scenes";        public const string DeletedScenesFolderName = "deleted scenes";        public const string InterviewFolderName = "interviews";        public const string SceneFolderName = "scenes";        public const string SampleFolderName = "samples";        public const string ShortsFolderName = "shorts";        public const string FeaturettesFolderName = "featurettes";        public static readonly string[] AllExtrasTypesFolderNames = {            ExtrasFolderName,            BehindTheScenesFolderName,            DeletedScenesFolderName,            InterviewFolderName,            SceneFolderName,            SampleFolderName,            ShortsFolderName,            FeaturettesFolderName        };        [JsonIgnore]        public Guid[] ThemeSongIds        {            get            {                if (_themeSongIds == null)                {                    _themeSongIds = GetExtras()                        .Where(extra => extra.ExtraType == Model.Entities.ExtraType.ThemeSong)                        .Select(song => song.Id)                        .ToArray();                }                return _themeSongIds;            }            private set            {                _themeSongIds = value;            }        }        [JsonIgnore]        public Guid[] ThemeVideoIds        {            get            {                if (_themeVideoIds == null)                {                    _themeVideoIds = GetExtras()                        .Where(extra => extra.ExtraType == Model.Entities.ExtraType.ThemeVideo)                        .Select(song => song.Id)                        .ToArray();                }                return _themeVideoIds;            }            private set            {                _themeVideoIds = value;            }        }        [JsonIgnore]        public string PreferredMetadataCountryCode { get; set; }        [JsonIgnore]        public string PreferredMetadataLanguage { get; set; }        public long? Size { get; set; }        public string Container { get; set; }        [JsonIgnore]        public string Tagline { get; set; }        [JsonIgnore]        public virtual ItemImageInfo[] ImageInfos { get; set; }        [JsonIgnore]        public bool IsVirtualItem { get; set; }        /// <summary>        /// Gets or sets the album.        /// </summary>        /// <value>The album.</value>        [JsonIgnore]        public string Album { get; set; }        /// <summary>        /// Gets or sets the channel identifier.        /// </summary>        /// <value>The channel identifier.</value>        [JsonIgnore]        public Guid ChannelId { get; set; }        [JsonIgnore]        public virtual bool SupportsAddingToPlaylist => false;        [JsonIgnore]        public virtual bool AlwaysScanInternalMetadataPath => false;        /// <summary>        /// Gets a value indicating whether this instance is in mixed folder.        /// </summary>        /// <value><c>true</c> if this instance is in mixed folder; otherwise, <c>false</c>.</value>        [JsonIgnore]        public bool IsInMixedFolder { get; set; }        [JsonIgnore]        public virtual bool SupportsPlayedStatus => false;        [JsonIgnore]        public virtual bool SupportsPositionTicksResume => false;        [JsonIgnore]        public virtual bool SupportsRemoteImageDownloading => true;        private string _name;        /// <summary>        /// Gets or sets the name.        /// </summary>        /// <value>The name.</value>        [JsonIgnore]        public virtual string Name        {            get => _name;            set            {                _name = value;                // lazy load this again                _sortName = null;            }        }        [JsonIgnore]        public bool IsUnaired => PremiereDate.HasValue && PremiereDate.Value.ToLocalTime().Date >= DateTime.Now.Date;        [JsonIgnore]        public int? TotalBitrate { get; set; }        [JsonIgnore]        public ExtraType? ExtraType { get; set; }        [JsonIgnore]        public bool IsThemeMedia => ExtraType.HasValue && (ExtraType.Value == Model.Entities.ExtraType.ThemeSong || ExtraType.Value == Model.Entities.ExtraType.ThemeVideo);        [JsonIgnore]        public string OriginalTitle { get; set; }        /// <summary>        /// Gets or sets the id.        /// </summary>        /// <value>The id.</value>        [JsonIgnore]        public Guid Id { get; set; }        [JsonIgnore]        public Guid OwnerId { get; set; }        /// <summary>        /// Gets or sets the audio.        /// </summary>        /// <value>The audio.</value>        [JsonIgnore]        public ProgramAudio? Audio { get; set; }        /// <summary>        /// Return the id that should be used to key display prefs for this item.        /// Default is based on the type for everything except actual generic folders.        /// </summary>        /// <value>The display prefs id.</value>        [JsonIgnore]        public virtual Guid DisplayPreferencesId        {            get            {                var thisType = GetType();                return thisType == typeof(Folder) ? Id : thisType.FullName.GetMD5();            }        }        /// <summary>        /// Gets or sets the path.        /// </summary>        /// <value>The path.</value>        [JsonIgnore]        public virtual string Path { get; set; }        [JsonIgnore]        public virtual SourceType SourceType        {            get            {                if (!ChannelId.Equals(Guid.Empty))                {                    return SourceType.Channel;                }                return SourceType.Library;            }        }        /// <summary>        /// Returns the folder containing the item.        /// If the item is a folder, it returns the folder itself.        /// </summary>        [JsonIgnore]        public virtual string ContainingFolderPath        {            get            {                if (IsFolder)                {                    return Path;                }                return System.IO.Path.GetDirectoryName(Path);            }        }        /// <summary>        /// Gets or sets the name of the service.        /// </summary>        /// <value>The name of the service.</value>        [JsonIgnore]        public string ServiceName { get; set; }        /// <summary>        /// If this content came from an external service, the id of the content on that service.        /// </summary>        [JsonIgnore]        public string ExternalId { get; set; }        [JsonIgnore]        public string ExternalSeriesId { get; set; }        /// <summary>        /// Gets or sets the etag.        /// </summary>        /// <value>The etag.</value>        [JsonIgnore]        public string ExternalEtag { get; set; }        [JsonIgnore]        public virtual bool IsHidden => false;        public BaseItem GetOwner()        {            var ownerId = OwnerId;            return ownerId.Equals(Guid.Empty) ? null : LibraryManager.GetItemById(ownerId);        }        /// <summary>        /// Gets or sets the type of the location.        /// </summary>        /// <value>The type of the location.</value>        [JsonIgnore]        public virtual LocationType LocationType        {            get            {                // if (IsOffline)                //{                //    return LocationType.Offline;                //}                var path = Path;                if (string.IsNullOrEmpty(path))                {                    if (SourceType == SourceType.Channel)                    {                        return LocationType.Remote;                    }                    return LocationType.Virtual;                }                return FileSystem.IsPathFile(path) ? LocationType.FileSystem : LocationType.Remote;            }        }        [JsonIgnore]        public MediaProtocol? PathProtocol        {            get            {                var path = Path;                if (string.IsNullOrEmpty(path))                {                    return null;                }                return MediaSourceManager.GetPathProtocol(path);            }        }        public bool IsPathProtocol(MediaProtocol protocol)        {            var current = PathProtocol;            return current.HasValue && current.Value == protocol;        }        [JsonIgnore]        public bool IsFileProtocol => IsPathProtocol(MediaProtocol.File);        [JsonIgnore]        public bool HasPathProtocol => PathProtocol.HasValue;        [JsonIgnore]        public virtual bool SupportsLocalMetadata        {            get            {                if (SourceType == SourceType.Channel)                {                    return false;                }                return IsFileProtocol;            }        }        [JsonIgnore]        public virtual string FileNameWithoutExtension        {            get            {                if (IsFileProtocol)                {                    return System.IO.Path.GetFileNameWithoutExtension(Path);                }                return null;            }        }        [JsonIgnore]        public virtual bool EnableAlphaNumericSorting => true;        private List<Tuple<StringBuilder, bool>> GetSortChunks(string s1)        {            var list = new List<Tuple<StringBuilder, bool>>();            int thisMarker = 0;            while (thisMarker < s1.Length)            {                char thisCh = s1[thisMarker];                var thisChunk = new StringBuilder();                bool isNumeric = char.IsDigit(thisCh);                while (thisMarker < s1.Length && char.IsDigit(thisCh) == isNumeric)                {                    thisChunk.Append(thisCh);                    thisMarker++;                    if (thisMarker < s1.Length)                    {                        thisCh = s1[thisMarker];                    }                }                list.Add(new Tuple<StringBuilder, bool>(thisChunk, isNumeric));            }            return list;        }        /// <summary>        /// This is just a helper for convenience.        /// </summary>        /// <value>The primary image path.</value>        [JsonIgnore]        public string PrimaryImagePath => this.GetImagePath(ImageType.Primary);        public virtual bool CanDelete()        {            if (SourceType == SourceType.Channel)            {                return ChannelManager.CanDelete(this);            }            return IsFileProtocol;        }        public virtual bool IsAuthorizedToDelete(User user, List<Folder> allCollectionFolders)        {            if (user.HasPermission(PermissionKind.EnableContentDeletion))            {                return true;            }            var allowed = user.GetPreferenceValues<Guid>(PreferenceKind.EnableContentDeletionFromFolders);            if (SourceType == SourceType.Channel)            {                return allowed.Contains(ChannelId);            }            else            {                var collectionFolders = LibraryManager.GetCollectionFolders(this, allCollectionFolders);                foreach (var folder in collectionFolders)                {                    if (allowed.Contains(folder.Id))                    {                        return true;                    }                }            }            return false;        }        public bool CanDelete(User user, List<Folder> allCollectionFolders)        {            return CanDelete() && IsAuthorizedToDelete(user, allCollectionFolders);        }        public bool CanDelete(User user)        {            var allCollectionFolders = LibraryManager.GetUserRootFolder().Children.OfType<Folder>().ToList();            return CanDelete(user, allCollectionFolders);        }        public virtual bool CanDownload()        {            return false;        }        public virtual bool IsAuthorizedToDownload(User user)        {            return user.HasPermission(PermissionKind.EnableContentDownloading);        }        public bool CanDownload(User user)        {            return CanDownload() && IsAuthorizedToDownload(user);        }        /// <summary>        /// Gets or sets the date created.        /// </summary>        /// <value>The date created.</value>        [JsonIgnore]        public DateTime DateCreated { get; set; }        /// <summary>        /// Gets or sets the date modified.        /// </summary>        /// <value>The date modified.</value>        [JsonIgnore]        public DateTime DateModified { get; set; }        public DateTime DateLastSaved { get; set; }        [JsonIgnore]        public DateTime DateLastRefreshed { get; set; }        /// <summary>        /// The logger.        /// </summary>        public static ILogger<BaseItem> Logger { get; set; }        public static ILibraryManager LibraryManager { get; set; }        public static IServerConfigurationManager ConfigurationManager { get; set; }        public static IProviderManager ProviderManager { get; set; }        public static ILocalizationManager LocalizationManager { get; set; }        public static IItemRepository ItemRepository { get; set; }        public static IFileSystem FileSystem { get; set; }        public static IUserDataManager UserDataManager { get; set; }        public static IChannelManager ChannelManager { get; set; }        public static IMediaSourceManager MediaSourceManager { get; set; }        /// <summary>        /// Returns a <see cref="string" /> that represents this instance.        /// </summary>        /// <returns>A <see cref="string" /> that represents this instance.</returns>        public override string ToString()        {            return Name;        }        [JsonIgnore]        public bool IsLocked { get; set; }        /// <summary>        /// Gets or sets the locked fields.        /// </summary>        /// <value>The locked fields.</value>        [JsonIgnore]        public MetadataField[] LockedFields { get; set; }        /// <summary>        /// Gets the type of the media.        /// </summary>        /// <value>The type of the media.</value>        [JsonIgnore]        public virtual string MediaType => null;        [JsonIgnore]        public virtual string[] PhysicalLocations        {            get            {                if (!IsFileProtocol)                {                    return Array.Empty<string>();                }                return new[] { Path };            }        }        private string _forcedSortName;        /// <summary>        /// Gets or sets the name of the forced sort.        /// </summary>        /// <value>The name of the forced sort.</value>        [JsonIgnore]        public string ForcedSortName        {            get => _forcedSortName;            set { _forcedSortName = value; _sortName = null; }        }        private string _sortName;        private Guid[] _themeSongIds;        private Guid[] _themeVideoIds;        /// <summary>        /// Gets the name of the sort.        /// </summary>        /// <value>The name of the sort.</value>        [JsonIgnore]        public string SortName        {            get            {                if (_sortName == null)                {                    if (!string.IsNullOrEmpty(ForcedSortName))                    {                        // Need the ToLower because that's what CreateSortName does                        _sortName = ModifySortChunks(ForcedSortName).ToLowerInvariant();                    }                    else                    {                        _sortName = CreateSortName();                    }                }                return _sortName;            }            set => _sortName = value;        }        public string GetInternalMetadataPath()        {            var basePath = ConfigurationManager.ApplicationPaths.InternalMetadataPath;            return GetInternalMetadataPath(basePath);        }        protected virtual string GetInternalMetadataPath(string basePath)        {            if (SourceType == SourceType.Channel)            {                return System.IO.Path.Combine(basePath, "channels", ChannelId.ToString("N", CultureInfo.InvariantCulture), Id.ToString("N", CultureInfo.InvariantCulture));            }            ReadOnlySpan<char> idString = Id.ToString("N", CultureInfo.InvariantCulture);            basePath = System.IO.Path.Combine(basePath, "library");            return System.IO.Path.Join(basePath, idString.Slice(0, 2), idString);        }        /// <summary>        /// Creates the name of the sort.        /// </summary>        /// <returns>System.String.</returns>        protected virtual string CreateSortName()        {            if (Name == null)            {                return null; // some items may not have name filled in properly            }            if (!EnableAlphaNumericSorting)            {                return Name.TrimStart();            }            var sortable = Name.Trim().ToLowerInvariant();            foreach (var removeChar in ConfigurationManager.Configuration.SortRemoveCharacters)            {                sortable = sortable.Replace(removeChar, string.Empty, StringComparison.Ordinal);            }            foreach (var replaceChar in ConfigurationManager.Configuration.SortReplaceCharacters)            {                sortable = sortable.Replace(replaceChar, " ", StringComparison.Ordinal);            }            foreach (var search in ConfigurationManager.Configuration.SortRemoveWords)            {                // Remove from beginning if a space follows                if (sortable.StartsWith(search + " ", StringComparison.Ordinal))                {                    sortable = sortable.Remove(0, search.Length + 1);                }                // Remove from middle if surrounded by spaces                sortable = sortable.Replace(" " + search + " ", " ", StringComparison.Ordinal);                // Remove from end if followed by a space                if (sortable.EndsWith(" " + search, StringComparison.Ordinal))                {                    sortable = sortable.Remove(sortable.Length - (search.Length + 1));                }            }            return ModifySortChunks(sortable);        }        private string ModifySortChunks(string name)        {            var chunks = GetSortChunks(name);            var builder = new StringBuilder();            foreach (var chunk in chunks)            {                var chunkBuilder = chunk.Item1;                // This chunk is numeric                if (chunk.Item2)                {                    while (chunkBuilder.Length < 10)                    {                        chunkBuilder.Insert(0, '0');                    }                }                builder.Append(chunkBuilder);            }            // logger.LogDebug("ModifySortChunks Start: {0} End: {1}", name, builder.ToString());            return builder.ToString().RemoveDiacritics();        }        [JsonIgnore]        public bool EnableMediaSourceDisplay        {            get            {                if (SourceType == SourceType.Channel)                {                    return ChannelManager.EnableMediaSourceDisplay(this);                }                return true;            }        }        [JsonIgnore]        public Guid ParentId { get; set; }        /// <summary>        /// Gets or sets the parent.        /// </summary>        /// <value>The parent.</value>        [JsonIgnore]        public Folder Parent        {            get => GetParent() as Folder;            set            {            }        }        public void SetParent(Folder parent)        {            ParentId = parent == null ? Guid.Empty : parent.Id;        }        public BaseItem GetParent()        {            var parentId = ParentId;            if (!parentId.Equals(Guid.Empty))            {                return LibraryManager.GetItemById(parentId);            }            return null;        }        public IEnumerable<BaseItem> GetParents()        {            var parent = GetParent();            while (parent != null)            {                yield return parent;                parent = parent.GetParent();            }        }        /// <summary>        /// Finds a parent of a given type.        /// </summary>        /// <typeparam name="T"></typeparam>        /// <returns>``0.</returns>        public T FindParent<T>()            where T : Folder        {            foreach (var parent in GetParents())            {                var item = parent as T;                if (item != null)                {                    return item;                }            }            return null;        }        [JsonIgnore]        public virtual Guid DisplayParentId        {            get            {                var parentId = ParentId;                return parentId;            }        }        [JsonIgnore]        public BaseItem DisplayParent        {            get            {                var id = DisplayParentId;                if (id.Equals(Guid.Empty))                {                    return null;                }                return LibraryManager.GetItemById(id);            }        }        /// <summary>        /// When the item first debuted. For movies this could be premiere date, episodes would be first aired        /// </summary>        /// <value>The premiere date.</value>        [JsonIgnore]        public DateTime? PremiereDate { get; set; }        /// <summary>        /// Gets or sets the end date.        /// </summary>        /// <value>The end date.</value>        [JsonIgnore]        public DateTime? EndDate { get; set; }        /// <summary>        /// Gets or sets the official rating.        /// </summary>        /// <value>The official rating.</value>        [JsonIgnore]        public string OfficialRating { get; set; }        [JsonIgnore]        public int InheritedParentalRatingValue { get; set; }        /// <summary>        /// Gets or sets the critic rating.        /// </summary>        /// <value>The critic rating.</value>        [JsonIgnore]        public float? CriticRating { get; set; }        /// <summary>        /// Gets or sets the custom rating.        /// </summary>        /// <value>The custom rating.</value>        [JsonIgnore]        public string CustomRating { get; set; }        /// <summary>        /// Gets or sets the overview.        /// </summary>        /// <value>The overview.</value>        [JsonIgnore]        public string Overview { get; set; }        /// <summary>        /// Gets or sets the studios.        /// </summary>        /// <value>The studios.</value>        [JsonIgnore]        public string[] Studios { get; set; }        /// <summary>        /// Gets or sets the genres.        /// </summary>        /// <value>The genres.</value>        [JsonIgnore]        public string[] Genres { get; set; }        /// <summary>        /// Gets or sets the tags.        /// </summary>        /// <value>The tags.</value>        [JsonIgnore]        public string[] Tags { get; set; }        [JsonIgnore]        public string[] ProductionLocations { get; set; }        /// <summary>        /// Gets or sets the home page URL.        /// </summary>        /// <value>The home page URL.</value>        [JsonIgnore]        public string HomePageUrl { get; set; }        /// <summary>        /// Gets or sets the community rating.        /// </summary>        /// <value>The community rating.</value>        [JsonIgnore]        public float? CommunityRating { get; set; }        /// <summary>        /// Gets or sets the run time ticks.        /// </summary>        /// <value>The run time ticks.</value>        [JsonIgnore]        public long? RunTimeTicks { get; set; }        /// <summary>        /// Gets or sets the production year.        /// </summary>        /// <value>The production year.</value>        [JsonIgnore]        public int? ProductionYear { get; set; }        /// <summary>        /// If the item is part of a series, this is it's number in the series.        /// This could be episode number, album track number, etc.        /// </summary>        /// <value>The index number.</value>        [JsonIgnore]        public int? IndexNumber { get; set; }        /// <summary>        /// For an episode this could be the season number, or for a song this could be the disc number.        /// </summary>        /// <value>The parent index number.</value>        [JsonIgnore]        public int? ParentIndexNumber { get; set; }        [JsonIgnore]        public virtual bool HasLocalAlternateVersions => false;        [JsonIgnore]        public string OfficialRatingForComparison        {            get            {                var officialRating = OfficialRating;                if (!string.IsNullOrEmpty(officialRating))                {                    return officialRating;                }                var parent = DisplayParent;                if (parent != null)                {                    return parent.OfficialRatingForComparison;                }                return null;            }        }        [JsonIgnore]        public string CustomRatingForComparison        {            get            {                var customRating = CustomRating;                if (!string.IsNullOrEmpty(customRating))                {                    return customRating;                }                var parent = DisplayParent;                if (parent != null)                {                    return parent.CustomRatingForComparison;                }                return null;            }        }        /// <summary>        /// Gets the play access.        /// </summary>        /// <param name="user">The user.</param>        /// <returns>PlayAccess.</returns>        public PlayAccess GetPlayAccess(User user)        {            if (!user.HasPermission(PermissionKind.EnableMediaPlayback))            {                return PlayAccess.None;            }            // if (!user.IsParentalScheduleAllowed())            //{            //    return PlayAccess.None;            //}            return PlayAccess.Full;        }        public virtual List<MediaStream> GetMediaStreams()        {            return MediaSourceManager.GetMediaStreams(new MediaStreamQuery            {                ItemId = Id            });        }        protected virtual bool IsActiveRecording()        {            return false;        }        public virtual List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)        {            if (SourceType == SourceType.Channel)            {                var sources = ChannelManager.GetStaticMediaSources(this, CancellationToken.None)                           .ToList();                if (sources.Count > 0)                {                    return sources;                }            }            var list = GetAllItemsForMediaSources();            var result = list.Select(i => GetVersionInfo(enablePathSubstitution, i.Item1, i.Item2)).ToList();            if (IsActiveRecording())            {                foreach (var mediaSource in result)                {                    mediaSource.Type = MediaSourceType.Placeholder;                }            }            return result.OrderBy(i =>            {                if (i.VideoType == VideoType.VideoFile)                {                    return 0;                }                return 1;            }).ThenBy(i => i.Video3DFormat.HasValue ? 1 : 0)            .ThenByDescending(i =>            {                var stream = i.VideoStream;                return stream == null || stream.Width == null ? 0 : stream.Width.Value;            })            .ToList();        }        protected virtual List<Tuple<BaseItem, MediaSourceType>> GetAllItemsForMediaSources()        {            return new List<Tuple<BaseItem, MediaSourceType>>();        }        private MediaSourceInfo GetVersionInfo(bool enablePathSubstitution, BaseItem item, MediaSourceType type)        {            if (item == null)            {                throw new ArgumentNullException(nameof(item));            }            var protocol = item.PathProtocol;            var info = new MediaSourceInfo            {                Id = item.Id.ToString("N", CultureInfo.InvariantCulture),                Protocol = protocol ?? MediaProtocol.File,                MediaStreams = MediaSourceManager.GetMediaStreams(item.Id),                MediaAttachments = MediaSourceManager.GetMediaAttachments(item.Id),                Name = GetMediaSourceName(item),                Path = enablePathSubstitution ? GetMappedPath(item, item.Path, protocol) : item.Path,                RunTimeTicks = item.RunTimeTicks,                Container = item.Container,                Size = item.Size,                Type = type            };            if (string.IsNullOrEmpty(info.Path))            {                info.Type = MediaSourceType.Placeholder;            }            if (info.Protocol == MediaProtocol.File)            {                info.ETag = item.DateModified.Ticks.ToString(CultureInfo.InvariantCulture).GetMD5().ToString("N", CultureInfo.InvariantCulture);            }            var video = item as Video;            if (video != null)            {                info.IsoType = video.IsoType;                info.VideoType = video.VideoType;                info.Video3DFormat = video.Video3DFormat;                info.Timestamp = video.Timestamp;                if (video.IsShortcut)                {                    info.IsRemote = true;                    info.Path = video.ShortcutPath;                    info.Protocol = MediaSourceManager.GetPathProtocol(info.Path);                }                if (string.IsNullOrEmpty(info.Container))                {                    if (video.VideoType == VideoType.VideoFile || video.VideoType == VideoType.Iso)                    {                        if (protocol.HasValue && protocol.Value == MediaProtocol.File)                        {                            info.Container = System.IO.Path.GetExtension(item.Path).TrimStart('.');                        }                    }                }            }            if (string.IsNullOrEmpty(info.Container))            {                if (protocol.HasValue && protocol.Value == MediaProtocol.File)                {                    info.Container = System.IO.Path.GetExtension(item.Path).TrimStart('.');                }            }            if (info.SupportsDirectStream && !string.IsNullOrEmpty(info.Path))            {                info.SupportsDirectStream = MediaSourceManager.SupportsDirectStream(info.Path, info.Protocol);            }            if (video != null && video.VideoType != VideoType.VideoFile)            {                info.SupportsDirectStream = false;            }            info.Bitrate = item.TotalBitrate;            info.InferTotalBitrate();            return info;        }        private string GetMediaSourceName(BaseItem item)        {            var terms = new List<string>();            var path = item.Path;            if (item.IsFileProtocol && !string.IsNullOrEmpty(path))            {                if (HasLocalAlternateVersions)                {                    var displayName = System.IO.Path.GetFileNameWithoutExtension(path)                        .Replace(System.IO.Path.GetFileName(ContainingFolderPath), string.Empty, StringComparison.OrdinalIgnoreCase)                        .TrimStart(new char[] { ' ', '-' });                    if (!string.IsNullOrEmpty(displayName))                    {                        terms.Add(displayName);                    }                }                if (terms.Count == 0)                {                    var displayName = System.IO.Path.GetFileNameWithoutExtension(path);                    terms.Add(displayName);                }            }            if (terms.Count == 0)            {                terms.Add(item.Name);            }            var video = item as Video;            if (video != null)            {                if (video.Video3DFormat.HasValue)                {                    terms.Add("3D");                }                if (video.VideoType == VideoType.BluRay)                {                    terms.Add("Bluray");                }                else if (video.VideoType == VideoType.Dvd)                {                    terms.Add("DVD");                }                else if (video.VideoType == VideoType.Iso)                {                    if (video.IsoType.HasValue)                    {                        if (video.IsoType.Value == IsoType.BluRay)                        {                            terms.Add("Bluray");                        }                        else if (video.IsoType.Value == IsoType.Dvd)                        {                            terms.Add("DVD");                        }                    }                    else                    {                        terms.Add("ISO");                    }                }            }            return string.Join('/', terms.ToArray());        }        /// <summary>        /// Loads the theme songs.        /// </summary>        /// <returns>List{Audio.Audio}.</returns>        private static Audio.Audio[] LoadThemeSongs(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)        {            var files = fileSystemChildren.Where(i => i.IsDirectory)                .Where(i => string.Equals(i.Name, ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))                .SelectMany(i => FileSystem.GetFiles(i.FullName))                .ToList();            // Support plex/xbmc convention            files.AddRange(fileSystemChildren                .Where(i => !i.IsDirectory && string.Equals(FileSystem.GetFileNameWithoutExtension(i), ThemeSongFilename, StringComparison.OrdinalIgnoreCase)));            return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())                .OfType<Audio.Audio>()                .Select(audio =>                {                    // Try to retrieve it from the db. If we don't find it, use the resolved version                    var dbItem = LibraryManager.GetItemById(audio.Id) as Audio.Audio;                    if (dbItem != null)                    {                        audio = dbItem;                    }                    else                    {                        // item is new                        audio.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeSong;                    }                    return audio;                    // Sort them so that the list can be easily compared for changes                }).OrderBy(i => i.Path).ToArray();        }        /// <summary>        /// Loads the video backdrops.        /// </summary>        /// <returns>List{Video}.</returns>        private static Video[] LoadThemeVideos(IEnumerable<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)        {            var files = fileSystemChildren.Where(i => i.IsDirectory)                .Where(i => string.Equals(i.Name, ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))                .SelectMany(i => FileSystem.GetFiles(i.FullName));            return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())                .OfType<Video>()                .Select(item =>                {                    // Try to retrieve it from the db. If we don't find it, use the resolved version                    if (LibraryManager.GetItemById(item.Id) is Video dbItem)                    {                        item = dbItem;                    }                    else                    {                        // item is new                        item.ExtraType = Model.Entities.ExtraType.ThemeVideo;                    }                    return item;                    // Sort them so that the list can be easily compared for changes                }).OrderBy(i => i.Path).ToArray();        }        protected virtual BaseItem[] LoadExtras(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)        {            var extras = new List<Video>();            var folders = fileSystemChildren.Where(i => i.IsDirectory).ToArray();            foreach (var extraFolderName in AllExtrasTypesFolderNames)            {                var files = folders                    .Where(i => string.Equals(i.Name, extraFolderName, StringComparison.OrdinalIgnoreCase))                    .SelectMany(i => FileSystem.GetFiles(i.FullName));                extras.AddRange(LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())                    .OfType<Video>()                    .Select(item =>                    {                        // Try to retrieve it from the db. If we don't find it, use the resolved version                        if (LibraryManager.GetItemById(item.Id) is Video dbItem)                        {                            item = dbItem;                        }                        // Use some hackery to get the extra type based on foldername                        item.ExtraType = Enum.TryParse(extraFolderName.Replace(" ", string.Empty), true, out ExtraType extraType)                            ? extraType                            : Model.Entities.ExtraType.Unknown;                        return item;                        // Sort them so that the list can be easily compared for changes                    }).OrderBy(i => i.Path));            }            return extras.ToArray();        }        public Task RefreshMetadata(CancellationToken cancellationToken)        {            return RefreshMetadata(new MetadataRefreshOptions(new DirectoryService(FileSystem)), cancellationToken);        }        protected virtual void TriggerOnRefreshStart()        {        }        protected virtual void TriggerOnRefreshComplete()        {        }        /// <summary>        /// Overrides the base implementation to refresh metadata for local trailers.        /// </summary>        /// <param name="options">The options.</param>        /// <param name="cancellationToken">The cancellation token.</param>        /// <returns>true if a provider reports we changed.</returns>        public async Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken)        {            TriggerOnRefreshStart();            var requiresSave = false;            if (SupportsOwnedItems)            {                try                {                    var files = IsFileProtocol ?                        GetFileSystemChildren(options.DirectoryService).ToList() :                        new List<FileSystemMetadata>();                    var ownedItemsChanged = await RefreshedOwnedItems(options, files, cancellationToken).ConfigureAwait(false);                    await LibraryManager.UpdateImagesAsync(this).ConfigureAwait(false); // ensure all image properties in DB are fresh                    if (ownedItemsChanged)                    {                        requiresSave = true;                    }                }                catch (Exception ex)                {                    Logger.LogError(ex, "Error refreshing owned items for {path}", Path ?? Name);                }            }            try            {                var refreshOptions = requiresSave                    ? new MetadataRefreshOptions(options)                    {                        ForceSave = true                    }                    : options;                return await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false);            }            finally            {                TriggerOnRefreshComplete();            }        }        [JsonIgnore]        protected virtual bool SupportsOwnedItems => !ParentId.Equals(Guid.Empty) && IsFileProtocol;        [JsonIgnore]        public virtual bool SupportsPeople => false;        [JsonIgnore]        public virtual bool SupportsThemeMedia => false;        /// <summary>        /// Refreshes owned items such as trailers, theme videos, special features, etc.        /// Returns true or false indicating if changes were found.        /// </summary>        /// <param name="options"></param>        /// <param name="fileSystemChildren"></param>        /// <param name="cancellationToken"></param>        /// <returns></returns>        protected virtual async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)        {            var themeSongsChanged = false;            var themeVideosChanged = false;            var extrasChanged = false;            var localTrailersChanged = false;            if (IsFileProtocol && SupportsOwnedItems)            {                if (SupportsThemeMedia)                {                    if (!IsInMixedFolder)                    {                        themeSongsChanged = await RefreshThemeSongs(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);                        themeVideosChanged = await RefreshThemeVideos(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);                        extrasChanged = await RefreshExtras(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);                    }                }                var hasTrailers = this as IHasTrailers;                if (hasTrailers != null)                {                    localTrailersChanged = await RefreshLocalTrailers(hasTrailers, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);                }            }            return themeSongsChanged || themeVideosChanged || extrasChanged || localTrailersChanged;        }        protected virtual FileSystemMetadata[] GetFileSystemChildren(IDirectoryService directoryService)        {            var path = ContainingFolderPath;            return directoryService.GetFileSystemEntries(path);        }        private async Task<bool> RefreshLocalTrailers(IHasTrailers item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)        {            var newItems = LibraryManager.FindTrailers(this, fileSystemChildren, options.DirectoryService);            var newItemIds = newItems.Select(i => i.Id);            var itemsChanged = !item.LocalTrailerIds.SequenceEqual(newItemIds);            var ownerId = item.Id;            var tasks = newItems.Select(i =>            {                var subOptions = new MetadataRefreshOptions(options);                if (i.ExtraType != Model.Entities.ExtraType.Trailer ||                    i.OwnerId != ownerId ||                    !i.ParentId.Equals(Guid.Empty))                {                    i.ExtraType = Model.Entities.ExtraType.Trailer;                    i.OwnerId = ownerId;                    i.ParentId = Guid.Empty;                    subOptions.ForceSave = true;                }                return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);            });            await Task.WhenAll(tasks).ConfigureAwait(false);            item.LocalTrailerIds = newItemIds.ToArray();            return itemsChanged;        }        private async Task<bool> RefreshExtras(BaseItem item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)        {            var extras = LoadExtras(fileSystemChildren, options.DirectoryService);            var themeVideos = LoadThemeVideos(fileSystemChildren, options.DirectoryService);            var themeSongs = LoadThemeSongs(fileSystemChildren, options.DirectoryService);            var newExtras = new BaseItem[extras.Length + themeVideos.Length + themeSongs.Length];            extras.CopyTo(newExtras, 0);            themeVideos.CopyTo(newExtras, extras.Length);            themeSongs.CopyTo(newExtras, extras.Length + themeVideos.Length);            var newExtraIds = newExtras.Select(i => i.Id).ToArray();            var extrasChanged = !item.ExtraIds.SequenceEqual(newExtraIds);            if (extrasChanged)            {                var ownerId = item.Id;                var tasks = newExtras.Select(i =>                {                    var subOptions = new MetadataRefreshOptions(options);                    if (i.OwnerId != ownerId || i.ParentId != Guid.Empty)                    {                        i.OwnerId = ownerId;                        i.ParentId = Guid.Empty;                        subOptions.ForceSave = true;                    }                    return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);                });                await Task.WhenAll(tasks).ConfigureAwait(false);                item.ExtraIds = newExtraIds;            }            return extrasChanged;        }        private async Task<bool> RefreshThemeVideos(BaseItem item, MetadataRefreshOptions options, IEnumerable<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)        {            var newThemeVideos = LoadThemeVideos(fileSystemChildren, options.DirectoryService);            var newThemeVideoIds = newThemeVideos.Select(i => i.Id).ToArray();            var themeVideosChanged = !item.ThemeVideoIds.SequenceEqual(newThemeVideoIds);            var ownerId = item.Id;            var tasks = newThemeVideos.Select(i =>            {                var subOptions = new MetadataRefreshOptions(options);                if (!i.ExtraType.HasValue ||                    i.ExtraType.Value != Model.Entities.ExtraType.ThemeVideo ||                    i.OwnerId != ownerId ||                    !i.ParentId.Equals(Guid.Empty))                {                    i.ExtraType = Model.Entities.ExtraType.ThemeVideo;                    i.OwnerId = ownerId;                    i.ParentId = Guid.Empty;                    subOptions.ForceSave = true;                }                return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);            });            await Task.WhenAll(tasks).ConfigureAwait(false);            // They are expected to be sorted by SortName            item.ThemeVideoIds = newThemeVideos.OrderBy(i => i.SortName).Select(i => i.Id).ToArray();            return themeVideosChanged;        }        /// <summary>        /// Refreshes the theme songs.        /// </summary>        private async Task<bool> RefreshThemeSongs(BaseItem item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)        {            var newThemeSongs = LoadThemeSongs(fileSystemChildren, options.DirectoryService);            var newThemeSongIds = newThemeSongs.Select(i => i.Id).ToArray();            var themeSongsChanged = !item.ThemeSongIds.SequenceEqual(newThemeSongIds);            var ownerId = item.Id;            var tasks = newThemeSongs.Select(i =>            {                var subOptions = new MetadataRefreshOptions(options);                if (!i.ExtraType.HasValue ||                    i.ExtraType.Value != Model.Entities.ExtraType.ThemeSong ||                    i.OwnerId != ownerId ||                    !i.ParentId.Equals(Guid.Empty))                {                    i.ExtraType = Model.Entities.ExtraType.ThemeSong;                    i.OwnerId = ownerId;                    i.ParentId = Guid.Empty;                    subOptions.ForceSave = true;                }                return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);            });            await Task.WhenAll(tasks).ConfigureAwait(false);            // They are expected to be sorted by SortName            item.ThemeSongIds = newThemeSongs.OrderBy(i => i.SortName).Select(i => i.Id).ToArray();            return themeSongsChanged;        }        /// <summary>        /// Gets or sets the provider ids.        /// </summary>        /// <value>The provider ids.</value>        [JsonIgnore]        public Dictionary<string, string> ProviderIds { get; set; }        [JsonIgnore]        public virtual Folder LatestItemsIndexContainer => null;        public virtual double GetDefaultPrimaryImageAspectRatio()        {            return 0;        }        public virtual string CreatePresentationUniqueKey()        {            return Id.ToString("N", CultureInfo.InvariantCulture);        }        [JsonIgnore]        public string PresentationUniqueKey { get; set; }        public string GetPresentationUniqueKey()        {            return PresentationUniqueKey ?? CreatePresentationUniqueKey();        }        public virtual bool RequiresRefresh()        {            return false;        }        public virtual List<string> GetUserDataKeys()        {            var list = new List<string>();            if (SourceType == SourceType.Channel)            {                if (!string.IsNullOrEmpty(ExternalId))                {                    list.Add(ExternalId);                }            }            list.Add(Id.ToString());            return list;        }        internal virtual ItemUpdateType UpdateFromResolvedItem(BaseItem newItem)        {            var updateType = ItemUpdateType.None;            if (IsInMixedFolder != newItem.IsInMixedFolder)            {                IsInMixedFolder = newItem.IsInMixedFolder;                updateType |= ItemUpdateType.MetadataImport;            }            return updateType;        }        public void AfterMetadataRefresh()        {            _sortName = null;        }        /// <summary>        /// Gets the preferred metadata language.        /// </summary>        /// <returns>System.String.</returns>        public string GetPreferredMetadataLanguage()        {            string lang = PreferredMetadataLanguage;            if (string.IsNullOrEmpty(lang))            {                lang = GetParents()                    .Select(i => i.PreferredMetadataLanguage)                    .FirstOrDefault(i => !string.IsNullOrEmpty(i));            }            if (string.IsNullOrEmpty(lang))            {                lang = LibraryManager.GetCollectionFolders(this)                    .Select(i => i.PreferredMetadataLanguage)                    .FirstOrDefault(i => !string.IsNullOrEmpty(i));            }            if (string.IsNullOrEmpty(lang))            {                lang = LibraryManager.GetLibraryOptions(this).PreferredMetadataLanguage;            }            if (string.IsNullOrEmpty(lang))            {                lang = ConfigurationManager.Configuration.PreferredMetadataLanguage;            }            return lang;        }        /// <summary>        /// Gets the preferred metadata language.        /// </summary>        /// <returns>System.String.</returns>        public string GetPreferredMetadataCountryCode()        {            string lang = PreferredMetadataCountryCode;            if (string.IsNullOrEmpty(lang))            {                lang = GetParents()                    .Select(i => i.PreferredMetadataCountryCode)                    .FirstOrDefault(i => !string.IsNullOrEmpty(i));            }            if (string.IsNullOrEmpty(lang))            {                lang = LibraryManager.GetCollectionFolders(this)                    .Select(i => i.PreferredMetadataCountryCode)                    .FirstOrDefault(i => !string.IsNullOrEmpty(i));            }            if (string.IsNullOrEmpty(lang))            {                lang = LibraryManager.GetLibraryOptions(this).MetadataCountryCode;            }            if (string.IsNullOrEmpty(lang))            {                lang = ConfigurationManager.Configuration.MetadataCountryCode;            }            return lang;        }        public virtual bool IsSaveLocalMetadataEnabled()        {            if (SourceType == SourceType.Channel)            {                return false;            }            var libraryOptions = LibraryManager.GetLibraryOptions(this);            return libraryOptions.SaveLocalMetadata;        }        /// <summary>        /// Determines if a given user has access to this item.        /// </summary>        /// <param name="user">The user.</param>        /// <returns><c>true</c> if [is parental allowed] [the specified user]; otherwise, <c>false</c>.</returns>        /// <exception cref="ArgumentNullException">user</exception>        public bool IsParentalAllowed(User user)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            if (!IsVisibleViaTags(user))            {                return false;            }            var maxAllowedRating = user.MaxParentalAgeRating;            if (maxAllowedRating == null)            {                return true;            }            var rating = CustomRatingForComparison;            if (string.IsNullOrEmpty(rating))            {                rating = OfficialRatingForComparison;            }            if (string.IsNullOrEmpty(rating))            {                return !GetBlockUnratedValue(user);            }            var value = LocalizationManager.GetRatingLevel(rating);            // Could not determine the integer value            if (!value.HasValue)            {                var isAllowed = !GetBlockUnratedValue(user);                if (!isAllowed)                {                    Logger.LogDebug("{0} has an unrecognized parental rating of {1}.", Name, rating);                }                return isAllowed;            }            return value.Value <= maxAllowedRating.Value;        }        public int? GetParentalRatingValue()        {            var rating = CustomRating;            if (string.IsNullOrEmpty(rating))            {                rating = OfficialRating;            }            if (string.IsNullOrEmpty(rating))            {                return null;            }            return LocalizationManager.GetRatingLevel(rating);        }        public int? GetInheritedParentalRatingValue()        {            var rating = CustomRatingForComparison;            if (string.IsNullOrEmpty(rating))            {                rating = OfficialRatingForComparison;            }            if (string.IsNullOrEmpty(rating))            {                return null;            }            return LocalizationManager.GetRatingLevel(rating);        }        public List<string> GetInheritedTags()        {            var list = new List<string>();            list.AddRange(Tags);            foreach (var parent in GetParents())            {                list.AddRange(parent.Tags);            }            return list.Distinct(StringComparer.OrdinalIgnoreCase).ToList();        }        private bool IsVisibleViaTags(User user)        {            if (user.GetPreference(PreferenceKind.BlockedTags).Any(i => Tags.Contains(i, StringComparer.OrdinalIgnoreCase)))            {                return false;            }            return true;        }        protected virtual bool IsAllowTagFilterEnforced()        {            return true;        }        public virtual UnratedItem GetBlockUnratedType()        {            if (SourceType == SourceType.Channel)            {                return UnratedItem.ChannelContent;            }            return UnratedItem.Other;        }        /// <summary>        /// Gets the block unrated value.        /// </summary>        /// <param name="user">The configuration.</param>        /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>        protected virtual bool GetBlockUnratedValue(User user)        {            // Don't block plain folders that are unrated. Let the media underneath get blocked            // Special folders like series and albums will override this method.            if (IsFolder || this is IItemByName)            {                return false;            }            return user.GetPreferenceValues<UnratedItem>(PreferenceKind.BlockUnratedItems).Contains(GetBlockUnratedType());        }        /// <summary>        /// Determines if this folder should be visible to a given user.        /// Default is just parental allowed. Can be overridden for more functionality.        /// </summary>        /// <param name="user">The user.</param>        /// <returns><c>true</c> if the specified user is visible; otherwise, <c>false</c>.</returns>        /// <exception cref="ArgumentNullException">user</exception>        public virtual bool IsVisible(User user)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            return IsParentalAllowed(user);        }        public virtual bool IsVisibleStandalone(User user)        {            if (SourceType == SourceType.Channel)            {                return IsVisibleStandaloneInternal(user, false) && Channel.IsChannelVisible(this, user);            }            return IsVisibleStandaloneInternal(user, true);        }        [JsonIgnore]        public virtual bool SupportsInheritedParentImages => false;        protected bool IsVisibleStandaloneInternal(User user, bool checkFolders)        {            if (!IsVisible(user))            {                return false;            }            if (GetParents().Any(i => !i.IsVisible(user)))            {                return false;            }            if (checkFolders)            {                var topParent = GetParents().LastOrDefault() ?? this;                if (string.IsNullOrEmpty(topParent.Path))                {                    return true;                }                var itemCollectionFolders = LibraryManager.GetCollectionFolders(this).Select(i => i.Id).ToList();                if (itemCollectionFolders.Count > 0)                {                    var userCollectionFolders = LibraryManager.GetUserRootFolder().GetChildren(user, true).Select(i => i.Id).ToList();                    if (!itemCollectionFolders.Any(userCollectionFolders.Contains))                    {                        return false;                    }                }            }            return 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 virtual bool IsFolder => false;        [JsonIgnore]        public virtual bool IsDisplayedAsFolder => false;        public virtual string GetClientTypeName()        {            if (IsFolder && SourceType == SourceType.Channel && !(this is Channel))            {                return "ChannelFolderItem";            }            return GetType().Name;        }        public BaseItemKind GetBaseItemKind()        {            return Enum.Parse<BaseItemKind>(GetClientTypeName());        }        /// <summary>        /// Gets the linked child.        /// </summary>        /// <param name="info">The info.</param>        /// <returns>BaseItem.</returns>        protected BaseItem GetLinkedChild(LinkedChild info)        {            // First get using the cached Id            if (info.ItemId.HasValue)            {                if (info.ItemId.Value.Equals(Guid.Empty))                {                    return null;                }                var itemById = LibraryManager.GetItemById(info.ItemId.Value);                if (itemById != null)                {                    return itemById;                }            }            var item = FindLinkedChild(info);            // If still null, log            if (item == null)            {                // Don't keep searching over and over                info.ItemId = Guid.Empty;            }            else            {                // Cache the id for next time                info.ItemId = item.Id;            }            return item;        }        private BaseItem FindLinkedChild(LinkedChild info)        {            var path = info.Path;            if (!string.IsNullOrEmpty(path))            {                path = FileSystem.MakeAbsolutePath(ContainingFolderPath, path);                var itemByPath = LibraryManager.FindByPath(path, null);                if (itemByPath == null)                {                    Logger.LogWarning("Unable to find linked item at path {0}", info.Path);                }                return itemByPath;            }            if (!string.IsNullOrEmpty(info.LibraryItemId))            {                var item = LibraryManager.GetItemById(info.LibraryItemId);                if (item == null)                {                    Logger.LogWarning("Unable to find linked item at path {0}", info.Path);                }                return item;            }            return null;        }        [JsonIgnore]        public virtual bool EnableRememberingTrackSelections => true;        /// <summary>        /// Adds a studio to the item.        /// </summary>        /// <param name="name">The name.</param>        /// <exception cref="ArgumentNullException"></exception>        public void AddStudio(string name)        {            if (string.IsNullOrEmpty(name))            {                throw new ArgumentNullException(nameof(name));            }            var current = Studios;            if (!current.Contains(name, StringComparer.OrdinalIgnoreCase))            {                int curLen = current.Length;                if (curLen == 0)                {                    Studios = new[] { name };                }                else                {                    var newArr = new string[curLen + 1];                    current.CopyTo(newArr, 0);                    newArr[curLen] = name;                    Studios = newArr;                }            }        }        public void SetStudios(IEnumerable<string> names)        {            Studios = names.Distinct().ToArray();        }        /// <summary>        /// Adds a genre to the item.        /// </summary>        /// <param name="name">The name.</param>        /// <exception cref="ArgumentNullException"></exception>        public void AddGenre(string name)        {            if (string.IsNullOrEmpty(name))            {                throw new ArgumentNullException(nameof(name));            }            var genres = Genres;            if (!genres.Contains(name, StringComparer.OrdinalIgnoreCase))            {                var list = genres.ToList();                list.Add(name);                Genres = list.ToArray();            }        }        /// <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>        /// <returns>Task.</returns>        /// <exception cref="ArgumentNullException"></exception>        public virtual void MarkPlayed(            User user,            DateTime? datePlayed,            bool resetPosition)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            var data = UserDataManager.GetUserData(user, this);            if (datePlayed.HasValue)            {                // Increment                data.PlayCount++;            }            // Ensure it's at least one            data.PlayCount = Math.Max(data.PlayCount, 1);            if (resetPosition)            {                data.PlaybackPositionTicks = 0;            }            data.LastPlayedDate = datePlayed ?? data.LastPlayedDate ?? DateTime.UtcNow;            data.Played = true;            UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None);        }        /// <summary>        /// Marks the unplayed.        /// </summary>        /// <param name="user">The user.</param>        /// <returns>Task.</returns>        /// <exception cref="ArgumentNullException"></exception>        public virtual void MarkUnplayed(User user)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            var data = UserDataManager.GetUserData(user, this);            // I think it is okay to do this here.            // if this is only called when a user is manually forcing something to un-played            // then it probably is what we want to do...            data.PlayCount = 0;            data.PlaybackPositionTicks = 0;            data.LastPlayedDate = null;            data.Played = false;            UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None);        }        /// <summary>        /// Do whatever refreshing is necessary when the filesystem pertaining to this item has changed.        /// </summary>        public virtual void ChangedExternally()        {            ProviderManager.QueueRefresh(Id, new MetadataRefreshOptions(new DirectoryService(FileSystem)), RefreshPriority.High);        }        /// <summary>        /// Gets an image.        /// </summary>        /// <param name="type">The type.</param>        /// <param name="imageIndex">Index of the image.</param>        /// <returns><c>true</c> if the specified type has image; otherwise, <c>false</c>.</returns>        /// <exception cref="ArgumentException">Backdrops should be accessed using Item.Backdrops</exception>        public bool HasImage(ImageType type, int imageIndex)        {            return GetImageInfo(type, imageIndex) != null;        }        public void SetImage(ItemImageInfo image, int index)        {            if (image.Type == ImageType.Chapter)            {                throw new ArgumentException("Cannot set chapter images using SetImagePath");            }            var existingImage = GetImageInfo(image.Type, index);            if (existingImage != null)            {                existingImage.Path = image.Path;                existingImage.DateModified = image.DateModified;                existingImage.Width = image.Width;                existingImage.Height = image.Height;                existingImage.BlurHash = image.BlurHash;            }            else            {                var current = ImageInfos;                var currentCount = current.Length;                var newArr = new ItemImageInfo[currentCount + 1];                current.CopyTo(newArr, 0);                newArr[currentCount] = image;                ImageInfos = newArr;            }        }        public void SetImagePath(ImageType type, int index, FileSystemMetadata file)        {            if (type == ImageType.Chapter)            {                throw new ArgumentException("Cannot set chapter images using SetImagePath");            }            var image = GetImageInfo(type, index);            if (image == null)            {                ImageInfos = ImageInfos.Concat(new[] { GetImageInfo(file, type) }).ToArray();            }            else            {                var imageInfo = GetImageInfo(file, type);                image.Path = file.FullName;                image.DateModified = imageInfo.DateModified;                // reset these values                image.Width = 0;                image.Height = 0;            }        }        /// <summary>        /// Deletes the image.        /// </summary>        /// <param name="type">The type.</param>        /// <param name="index">The index.</param>        public async Task DeleteImageAsync(ImageType type, int index)        {            var info = GetImageInfo(type, index);            if (info == null)            {                // Nothing to do                return;            }            // Remove it from the item            RemoveImage(info);            if (info.IsLocalFile)            {                FileSystem.DeleteFile(info.Path);            }            await UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(false);        }        public void RemoveImage(ItemImageInfo image)        {            RemoveImages(new List<ItemImageInfo> { image });        }        public void RemoveImages(List<ItemImageInfo> deletedImages)        {            ImageInfos = ImageInfos.Except(deletedImages).ToArray();        }        public virtual Task UpdateToRepositoryAsync(ItemUpdateType updateReason, CancellationToken cancellationToken)         => LibraryManager.UpdateItemAsync(this, GetParent(), updateReason, cancellationToken);        /// <summary>        /// Validates that images within the item are still on the filesystem.        /// </summary>        public bool ValidateImages(IDirectoryService directoryService)        {            var allFiles = ImageInfos                .Where(i => i.IsLocalFile)                .Select(i => System.IO.Path.GetDirectoryName(i.Path))                .Distinct(StringComparer.OrdinalIgnoreCase)                .SelectMany(i => directoryService.GetFilePaths(i))                .ToList();            var deletedImages = ImageInfos                .Where(image => image.IsLocalFile && !allFiles.Contains(image.Path, StringComparer.OrdinalIgnoreCase))                .ToList();            if (deletedImages.Count > 0)            {                ImageInfos = ImageInfos.Except(deletedImages).ToArray();            }            return deletedImages.Count > 0;        }        /// <summary>        /// Gets the image path.        /// </summary>        /// <param name="imageType">Type of the image.</param>        /// <param name="imageIndex">Index of the image.</param>        /// <returns>System.String.</returns>        /// <exception cref="InvalidOperationException">        /// </exception>        /// <exception cref="ArgumentNullException">item</exception>        public string GetImagePath(ImageType imageType, int imageIndex)            => GetImageInfo(imageType, imageIndex)?.Path;        /// <summary>        /// Gets the image information.        /// </summary>        /// <param name="imageType">Type of the image.</param>        /// <param name="imageIndex">Index of the image.</param>        /// <returns>ItemImageInfo.</returns>        public ItemImageInfo GetImageInfo(ImageType imageType, int imageIndex)        {            if (imageType == ImageType.Chapter)            {                var chapter = ItemRepository.GetChapter(this, imageIndex);                if (chapter == null)                {                    return null;                }                var path = chapter.ImagePath;                if (string.IsNullOrEmpty(path))                {                    return null;                }                return new ItemImageInfo                {                    Path = path,                    DateModified = chapter.ImageDateModified,                    Type = imageType                };            }            return GetImages(imageType)                .ElementAtOrDefault(imageIndex);        }        /// <summary>        /// Computes image index for given image or raises if no matching image found.        /// </summary>        /// <param name="image">Image to compute index for.</param>        /// <exception cref="ArgumentException">Image index cannot be computed as no matching image found.        /// </exception>        /// <returns>Image index.</returns>        public int GetImageIndex(ItemImageInfo image)        {            if (image == null)            {                throw new ArgumentNullException(nameof(image));            }            if (image.Type == ImageType.Chapter)            {                var chapters = ItemRepository.GetChapters(this);                for (var i = 0; i < chapters.Count; i++)                {                    if (chapters[i].ImagePath == image.Path)                    {                        return i;                    }                }                throw new ArgumentException("No chapter index found for image path", image.Path);            }            var images = GetImages(image.Type).ToArray();            for (var i = 0; i < images.Length; i++)            {                if (images[i].Path == image.Path)                {                    return i;                }            }            throw new ArgumentException("No image index found for image path", image.Path);        }        public IEnumerable<ItemImageInfo> GetImages(ImageType imageType)        {            if (imageType == ImageType.Chapter)            {                throw new ArgumentException("No image info for chapter images");            }            return ImageInfos.Where(i => i.Type == imageType);        }        /// <summary>        /// Adds the images.        /// </summary>        /// <param name="imageType">Type of the image.</param>        /// <param name="images">The images.</param>        /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>        /// <exception cref="ArgumentException">Cannot call AddImages with chapter images</exception>        public bool AddImages(ImageType imageType, List<FileSystemMetadata> images)        {            if (imageType == ImageType.Chapter)            {                throw new ArgumentException("Cannot call AddImages with chapter images");            }            var existingImages = GetImages(imageType)                .ToList();            var newImageList = new List<FileSystemMetadata>();            var imageAdded = false;            var imageUpdated = false;            foreach (var newImage in images)            {                if (newImage == null)                {                    throw new ArgumentException("null image found in list");                }                var existing = existingImages                    .FirstOrDefault(i => string.Equals(i.Path, newImage.FullName, StringComparison.OrdinalIgnoreCase));                if (existing == null)                {                    newImageList.Add(newImage);                    imageAdded = true;                }                else                {                    if (existing.IsLocalFile)                    {                        var newDateModified = FileSystem.GetLastWriteTimeUtc(newImage);                        // If date changed then we need to reset saved image dimensions                        if (existing.DateModified != newDateModified && (existing.Width > 0 || existing.Height > 0))                        {                            existing.Width = 0;                            existing.Height = 0;                            imageUpdated = true;                        }                        existing.DateModified = newDateModified;                    }                }            }            if (imageAdded || images.Count != existingImages.Count)            {                var newImagePaths = images.Select(i => i.FullName).ToList();                var deleted = existingImages                    .Where(i => i.IsLocalFile && !newImagePaths.Contains(i.Path, StringComparer.OrdinalIgnoreCase) && !File.Exists(i.Path))                    .ToList();                if (deleted.Count > 0)                {                    ImageInfos = ImageInfos.Except(deleted).ToArray();                }            }            if (newImageList.Count > 0)            {                ImageInfos = ImageInfos.Concat(newImageList.Select(i => GetImageInfo(i, imageType))).ToArray();            }            return imageUpdated || newImageList.Count > 0;        }        private ItemImageInfo GetImageInfo(FileSystemMetadata file, ImageType type)        {            return new ItemImageInfo            {                Path = file.FullName,                Type = type,                DateModified = FileSystem.GetLastWriteTimeUtc(file)            };        }        /// <summary>        /// Gets the file system path to delete when the item is to be deleted.        /// </summary>        /// <returns></returns>        public virtual IEnumerable<FileSystemMetadata> GetDeletePaths()        {            return new[] {                new FileSystemMetadata                {                    FullName = Path,                    IsDirectory = IsFolder                }            }.Concat(GetLocalMetadataFilesToDelete());        }        protected List<FileSystemMetadata> GetLocalMetadataFilesToDelete()        {            if (IsFolder || !IsInMixedFolder)            {                return new List<FileSystemMetadata>();            }            var filename = System.IO.Path.GetFileNameWithoutExtension(Path);            return FileSystem.GetFiles(System.IO.Path.GetDirectoryName(Path), _supportedExtensions, false, false)                .Where(i => System.IO.Path.GetFileNameWithoutExtension(i.FullName).StartsWith(filename, StringComparison.OrdinalIgnoreCase))                .ToList();        }        public bool AllowsMultipleImages(ImageType type)        {            return type == ImageType.Backdrop || type == ImageType.Screenshot || type == ImageType.Chapter;        }        public Task SwapImagesAsync(ImageType type, int index1, int index2)        {            if (!AllowsMultipleImages(type))            {                throw new ArgumentException("The change index operation is only applicable to backdrops and screen shots");            }            var info1 = GetImageInfo(type, index1);            var info2 = GetImageInfo(type, index2);            if (info1 == null || info2 == null)            {                // Nothing to do                return Task.CompletedTask;            }            if (!info1.IsLocalFile || !info2.IsLocalFile)            {                // TODO: Not supported  yet                return Task.CompletedTask;            }            var path1 = info1.Path;            var path2 = info2.Path;            FileSystem.SwapFiles(path1, path2);            // Refresh these values            info1.DateModified = FileSystem.GetLastWriteTimeUtc(info1.Path);            info2.DateModified = FileSystem.GetLastWriteTimeUtc(info2.Path);            info1.Width = 0;            info1.Height = 0;            info2.Width = 0;            info2.Height = 0;            return UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None);        }        public virtual bool IsPlayed(User user)        {            var userdata = UserDataManager.GetUserData(user, this);            return userdata != null && userdata.Played;        }        public bool IsFavoriteOrLiked(User user)        {            var userdata = UserDataManager.GetUserData(user, this);            return userdata != null && (userdata.IsFavorite || (userdata.Likes ?? false));        }        public virtual bool IsUnplayed(User user)        {            if (user == null)            {                throw new ArgumentNullException(nameof(user));            }            var userdata = UserDataManager.GetUserData(user, this);            return userdata == null || !userdata.Played;        }        ItemLookupInfo IHasLookupInfo<ItemLookupInfo>.GetLookupInfo()        {            return GetItemLookupInfo<ItemLookupInfo>();        }        protected T GetItemLookupInfo<T>()            where T : ItemLookupInfo, new()        {            return new T            {                Path = Path,                MetadataCountryCode = GetPreferredMetadataCountryCode(),                MetadataLanguage = GetPreferredMetadataLanguage(),                Name = GetNameForMetadataLookup(),                ProviderIds = ProviderIds,                IndexNumber = IndexNumber,                ParentIndexNumber = ParentIndexNumber,                Year = ProductionYear,                PremiereDate = PremiereDate            };        }        protected virtual string GetNameForMetadataLookup()        {            return Name;        }        /// <summary>        /// This is called before any metadata refresh and returns true if changes were made.        /// </summary>        public virtual bool BeforeMetadataRefresh(bool replaceAllMetdata)        {            _sortName = null;            var hasChanges = false;            if (string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(Path))            {                Name = System.IO.Path.GetFileNameWithoutExtension(Path);                hasChanges = true;            }            return hasChanges;        }        protected static string GetMappedPath(BaseItem item, string path, MediaProtocol? protocol)        {            if (protocol.HasValue && protocol.Value == MediaProtocol.File)            {                return LibraryManager.GetPathAfterNetworkSubstitution(path, item);            }            return path;        }        public virtual void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, BaseItemDto itemDto, User user, DtoOptions fields)        {            if (RunTimeTicks.HasValue)            {                double pct = RunTimeTicks.Value;                if (pct > 0)                {                    pct = userData.PlaybackPositionTicks / pct;                    if (pct > 0)                    {                        dto.PlayedPercentage = 100 * pct;                    }                }            }        }        protected Task RefreshMetadataForOwnedItem(BaseItem ownedItem, bool copyTitleMetadata, MetadataRefreshOptions options, CancellationToken cancellationToken)        {            var newOptions = new MetadataRefreshOptions(options);            newOptions.SearchResult = null;            var item = this;            if (copyTitleMetadata)            {                // Take some data from the main item, for querying purposes                if (!item.Genres.SequenceEqual(ownedItem.Genres, StringComparer.Ordinal))                {                    newOptions.ForceSave = true;                    ownedItem.Genres = item.Genres;                }                if (!item.Studios.SequenceEqual(ownedItem.Studios, StringComparer.Ordinal))                {                    newOptions.ForceSave = true;                    ownedItem.Studios = item.Studios;                }                if (!item.ProductionLocations.SequenceEqual(ownedItem.ProductionLocations, StringComparer.Ordinal))                {                    newOptions.ForceSave = true;                    ownedItem.ProductionLocations = item.ProductionLocations;                }                if (item.CommunityRating != ownedItem.CommunityRating)                {                    ownedItem.CommunityRating = item.CommunityRating;                    newOptions.ForceSave = true;                }                if (item.CriticRating != ownedItem.CriticRating)                {                    ownedItem.CriticRating = item.CriticRating;                    newOptions.ForceSave = true;                }                if (!string.Equals(item.Overview, ownedItem.Overview, StringComparison.Ordinal))                {                    ownedItem.Overview = item.Overview;                    newOptions.ForceSave = true;                }                if (!string.Equals(item.OfficialRating, ownedItem.OfficialRating, StringComparison.Ordinal))                {                    ownedItem.OfficialRating = item.OfficialRating;                    newOptions.ForceSave = true;                }                if (!string.Equals(item.CustomRating, ownedItem.CustomRating, StringComparison.Ordinal))                {                    ownedItem.CustomRating = item.CustomRating;                    newOptions.ForceSave = true;                }            }            return ownedItem.RefreshMetadata(newOptions, cancellationToken);        }        protected Task RefreshMetadataForOwnedVideo(MetadataRefreshOptions options, bool copyTitleMetadata, string path, CancellationToken cancellationToken)        {            var newOptions = new MetadataRefreshOptions(options);            newOptions.SearchResult = null;            var id = LibraryManager.GetNewItemId(path, typeof(Video));            // Try to retrieve it from the db. If we don't find it, use the resolved version            var video = LibraryManager.GetItemById(id) as Video;            if (video == null)            {                video = LibraryManager.ResolvePath(FileSystem.GetFileSystemInfo(path)) as Video;                newOptions.ForceSave = true;            }            // var parentId = Id;            // if (!video.IsOwnedItem || video.ParentId != parentId)            //{            //    video.IsOwnedItem = true;            //    video.ParentId = parentId;            //    newOptions.ForceSave = true;            //}            if (video == null)            {                return Task.FromResult(true);            }            return RefreshMetadataForOwnedItem(video, copyTitleMetadata, newOptions, cancellationToken);        }        public string GetEtag(User user)        {            var list = GetEtagValues(user);            return string.Join('|', list).GetMD5().ToString("N", CultureInfo.InvariantCulture);        }        protected virtual List<string> GetEtagValues(User user)        {            return new List<string>            {                DateLastSaved.Ticks.ToString(CultureInfo.InvariantCulture)            };        }        public virtual IEnumerable<Guid> GetAncestorIds()        {            return GetParents().Select(i => i.Id).Concat(LibraryManager.GetCollectionFolders(this).Select(i => i.Id));        }        public BaseItem GetTopParent()        {            if (IsTopParent)            {                return this;            }            return GetParents().FirstOrDefault(parent => parent.IsTopParent);        }        [JsonIgnore]        public virtual bool IsTopParent        {            get            {                if (this is BasePluginFolder || this is Channel)                {                    return true;                }                if (this is IHasCollectionType view)                {                    if (string.Equals(view.CollectionType, CollectionType.LiveTv, StringComparison.OrdinalIgnoreCase))                    {                        return true;                    }                }                if (GetParent() is AggregateFolder)                {                    return true;                }                return false;            }        }        [JsonIgnore]        public virtual bool SupportsAncestors => true;        [JsonIgnore]        public virtual bool StopRefreshIfLocalMetadataFound => true;        public virtual IEnumerable<Guid> GetIdsForAncestorQuery()        {            return new[] { Id };        }        public virtual List<ExternalUrl> GetRelatedUrls()        {            return new List<ExternalUrl>();        }        public virtual double? GetRefreshProgress()        {            return null;        }        public virtual ItemUpdateType OnMetadataChanged()        {            var updateType = ItemUpdateType.None;            var item = this;            var inheritedParentalRatingValue = item.GetInheritedParentalRatingValue() ?? 0;            if (inheritedParentalRatingValue != item.InheritedParentalRatingValue)            {                item.InheritedParentalRatingValue = inheritedParentalRatingValue;                updateType |= ItemUpdateType.MetadataImport;            }            return updateType;        }        /// <summary>        /// Updates the official rating based on content and returns true or false indicating if it changed.        /// </summary>        /// <returns></returns>        public bool UpdateRatingToItems(IList<BaseItem> children)        {            var currentOfficialRating = OfficialRating;            // Gather all possible ratings            var ratings = children                .Select(i => i.OfficialRating)                .Where(i => !string.IsNullOrEmpty(i))                .Distinct(StringComparer.OrdinalIgnoreCase)                .Select(i => new Tuple<string, int?>(i, LocalizationManager.GetRatingLevel(i)))                .OrderBy(i => i.Item2 ?? 1000)                .Select(i => i.Item1);            OfficialRating = ratings.FirstOrDefault() ?? currentOfficialRating;            return !string.Equals(currentOfficialRating ?? string.Empty, OfficialRating ?? string.Empty,                StringComparison.OrdinalIgnoreCase);        }        public IEnumerable<BaseItem> GetThemeSongs()        {            return ThemeSongIds.Select(LibraryManager.GetItemById);        }        public IEnumerable<BaseItem> GetThemeVideos()        {            return ThemeVideoIds.Select(LibraryManager.GetItemById);        }        /// <summary>        /// Gets or sets the remote trailers.        /// </summary>        /// <value>The remote trailers.</value>        public IReadOnlyList<MediaUrl> RemoteTrailers { get; set; }        /// <summary>        /// Get all extras associated with this item, sorted by <see cref="SortName"/>.        /// </summary>        /// <returns>An enumerable containing the items.</returns>        public IEnumerable<BaseItem> GetExtras()        {            return ExtraIds                .Select(LibraryManager.GetItemById)                .Where(i => i != null)                .OrderBy(i => i.SortName);        }        /// <summary>        /// Get all extras with specific types that are associated with this item.        /// </summary>        /// <param name="extraTypes">The types of extras to retrieve.</param>        /// <returns>An enumerable containing the extras.</returns>        public IEnumerable<BaseItem> GetExtras(IReadOnlyCollection<ExtraType> extraTypes)        {            return ExtraIds                .Select(LibraryManager.GetItemById)                .Where(i => i != null)                .Where(i => i.ExtraType.HasValue && extraTypes.Contains(i.ExtraType.Value));        }        public IEnumerable<BaseItem> GetTrailers()        {            if (this is IHasTrailers)            {                return ((IHasTrailers)this).LocalTrailerIds.Select(LibraryManager.GetItemById).Where(i => i != null).OrderBy(i => i.SortName);            }            else            {                return Array.Empty<BaseItem>();            }        }        public virtual bool IsHD => Height >= 720;        public bool IsShortcut { get; set; }        public string ShortcutPath { get; set; }        public int Width { get; set; }        public int Height { get; set; }        public Guid[] ExtraIds { get; set; }        public virtual long GetRunTimeTicksForPlayState()        {            return RunTimeTicks ?? 0;        }        /// <summary>        /// Extra types that should be counted and displayed as "Special Features" in the UI.        /// </summary>        public static readonly IReadOnlyCollection<ExtraType> DisplayExtraTypes = new HashSet<ExtraType>        {            Model.Entities.ExtraType.Unknown,            Model.Entities.ExtraType.BehindTheScenes,            Model.Entities.ExtraType.Clip,            Model.Entities.ExtraType.DeletedScene,            Model.Entities.ExtraType.Interview,            Model.Entities.ExtraType.Sample,            Model.Entities.ExtraType.Scene        };        public virtual bool SupportsExternalTransfer => false;        /// <inheritdoc />        public override bool Equals(object obj)        {            return obj is BaseItem baseItem && this.Equals(baseItem);        }        /// <inheritdoc />        public bool Equals(BaseItem item) => Object.Equals(Id, item?.Id);        /// <inheritdoc />        public override int GetHashCode() => HashCode.Combine(Id);    }}
 |