LibraryManager.cs 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357
  1. #pragma warning disable CS1591
  2. #pragma warning disable CA5394
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Globalization;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Net;
  9. using System.Net.Http;
  10. using System.Threading;
  11. using System.Threading.Tasks;
  12. using BitFaster.Caching.Lru;
  13. using Emby.Naming.Common;
  14. using Emby.Naming.TV;
  15. using Emby.Server.Implementations.Library.Resolvers;
  16. using Emby.Server.Implementations.Library.Validators;
  17. using Emby.Server.Implementations.Playlists;
  18. using Emby.Server.Implementations.ScheduledTasks.Tasks;
  19. using Emby.Server.Implementations.Sorting;
  20. using Jellyfin.Data;
  21. using Jellyfin.Data.Enums;
  22. using Jellyfin.Database.Implementations.Entities;
  23. using Jellyfin.Database.Implementations.Enums;
  24. using Jellyfin.Extensions;
  25. using MediaBrowser.Common.Extensions;
  26. using MediaBrowser.Controller;
  27. using MediaBrowser.Controller.Configuration;
  28. using MediaBrowser.Controller.Drawing;
  29. using MediaBrowser.Controller.Dto;
  30. using MediaBrowser.Controller.Entities;
  31. using MediaBrowser.Controller.Entities.Audio;
  32. using MediaBrowser.Controller.IO;
  33. using MediaBrowser.Controller.Library;
  34. using MediaBrowser.Controller.LiveTv;
  35. using MediaBrowser.Controller.MediaEncoding;
  36. using MediaBrowser.Controller.MediaSegments;
  37. using MediaBrowser.Controller.Persistence;
  38. using MediaBrowser.Controller.Providers;
  39. using MediaBrowser.Controller.Resolvers;
  40. using MediaBrowser.Controller.Sorting;
  41. using MediaBrowser.Controller.Trickplay;
  42. using MediaBrowser.Model.Configuration;
  43. using MediaBrowser.Model.Dlna;
  44. using MediaBrowser.Model.Drawing;
  45. using MediaBrowser.Model.Dto;
  46. using MediaBrowser.Model.Entities;
  47. using MediaBrowser.Model.IO;
  48. using MediaBrowser.Model.Library;
  49. using MediaBrowser.Model.Querying;
  50. using MediaBrowser.Model.Tasks;
  51. using Microsoft.Extensions.Logging;
  52. using Episode = MediaBrowser.Controller.Entities.TV.Episode;
  53. using EpisodeInfo = Emby.Naming.TV.EpisodeInfo;
  54. using Genre = MediaBrowser.Controller.Entities.Genre;
  55. using Person = MediaBrowser.Controller.Entities.Person;
  56. using VideoResolver = Emby.Naming.Video.VideoResolver;
  57. namespace Emby.Server.Implementations.Library
  58. {
  59. /// <summary>
  60. /// Class LibraryManager.
  61. /// </summary>
  62. public class LibraryManager : ILibraryManager
  63. {
  64. private const string ShortcutFileExtension = ".mblink";
  65. private readonly ILogger<LibraryManager> _logger;
  66. private readonly ITaskManager _taskManager;
  67. private readonly IUserManager _userManager;
  68. private readonly IUserDataManager _userDataManager;
  69. private readonly IServerConfigurationManager _configurationManager;
  70. private readonly Lazy<ILibraryMonitor> _libraryMonitorFactory;
  71. private readonly Lazy<IProviderManager> _providerManagerFactory;
  72. private readonly Lazy<IUserViewManager> _userViewManagerFactory;
  73. private readonly IServerApplicationHost _appHost;
  74. private readonly IMediaEncoder _mediaEncoder;
  75. private readonly IFileSystem _fileSystem;
  76. private readonly IItemRepository _itemRepository;
  77. private readonly IImageProcessor _imageProcessor;
  78. private readonly NamingOptions _namingOptions;
  79. private readonly IPeopleRepository _peopleRepository;
  80. private readonly ExtraResolver _extraResolver;
  81. private readonly IPathManager _pathManager;
  82. private readonly FastConcurrentLru<Guid, BaseItem> _cache;
  83. /// <summary>
  84. /// The _root folder sync lock.
  85. /// </summary>
  86. private readonly Lock _rootFolderSyncLock = new();
  87. private readonly Lock _userRootFolderSyncLock = new();
  88. private readonly TimeSpan _viewRefreshInterval = TimeSpan.FromHours(24);
  89. /// <summary>
  90. /// The _root folder.
  91. /// </summary>
  92. private volatile AggregateFolder? _rootFolder;
  93. private volatile UserRootFolder? _userRootFolder;
  94. private bool _wizardCompleted;
  95. /// <summary>
  96. /// Initializes a new instance of the <see cref="LibraryManager" /> class.
  97. /// </summary>
  98. /// <param name="appHost">The application host.</param>
  99. /// <param name="loggerFactory">The logger factory.</param>
  100. /// <param name="taskManager">The task manager.</param>
  101. /// <param name="userManager">The user manager.</param>
  102. /// <param name="configurationManager">The configuration manager.</param>
  103. /// <param name="userDataManager">The user data manager.</param>
  104. /// <param name="libraryMonitorFactory">The library monitor.</param>
  105. /// <param name="fileSystem">The file system.</param>
  106. /// <param name="providerManagerFactory">The provider manager.</param>
  107. /// <param name="userViewManagerFactory">The user view manager.</param>
  108. /// <param name="mediaEncoder">The media encoder.</param>
  109. /// <param name="itemRepository">The item repository.</param>
  110. /// <param name="imageProcessor">The image processor.</param>
  111. /// <param name="namingOptions">The naming options.</param>
  112. /// <param name="directoryService">The directory service.</param>
  113. /// <param name="peopleRepository">The people repository.</param>
  114. /// <param name="pathManager">The path manager.</param>
  115. public LibraryManager(
  116. IServerApplicationHost appHost,
  117. ILoggerFactory loggerFactory,
  118. ITaskManager taskManager,
  119. IUserManager userManager,
  120. IServerConfigurationManager configurationManager,
  121. IUserDataManager userDataManager,
  122. Lazy<ILibraryMonitor> libraryMonitorFactory,
  123. IFileSystem fileSystem,
  124. Lazy<IProviderManager> providerManagerFactory,
  125. Lazy<IUserViewManager> userViewManagerFactory,
  126. IMediaEncoder mediaEncoder,
  127. IItemRepository itemRepository,
  128. IImageProcessor imageProcessor,
  129. NamingOptions namingOptions,
  130. IDirectoryService directoryService,
  131. IPeopleRepository peopleRepository,
  132. IPathManager pathManager)
  133. {
  134. _appHost = appHost;
  135. _logger = loggerFactory.CreateLogger<LibraryManager>();
  136. _taskManager = taskManager;
  137. _userManager = userManager;
  138. _configurationManager = configurationManager;
  139. _userDataManager = userDataManager;
  140. _libraryMonitorFactory = libraryMonitorFactory;
  141. _fileSystem = fileSystem;
  142. _providerManagerFactory = providerManagerFactory;
  143. _userViewManagerFactory = userViewManagerFactory;
  144. _mediaEncoder = mediaEncoder;
  145. _itemRepository = itemRepository;
  146. _imageProcessor = imageProcessor;
  147. _cache = new FastConcurrentLru<Guid, BaseItem>(_configurationManager.Configuration.CacheSize);
  148. _namingOptions = namingOptions;
  149. _peopleRepository = peopleRepository;
  150. _pathManager = pathManager;
  151. _extraResolver = new ExtraResolver(loggerFactory.CreateLogger<ExtraResolver>(), namingOptions, directoryService);
  152. _configurationManager.ConfigurationUpdated += ConfigurationUpdated;
  153. RecordConfigurationValues(_configurationManager.Configuration);
  154. }
  155. /// <summary>
  156. /// Occurs when [item added].
  157. /// </summary>
  158. public event EventHandler<ItemChangeEventArgs>? ItemAdded;
  159. /// <summary>
  160. /// Occurs when [item updated].
  161. /// </summary>
  162. public event EventHandler<ItemChangeEventArgs>? ItemUpdated;
  163. /// <summary>
  164. /// Occurs when [item removed].
  165. /// </summary>
  166. public event EventHandler<ItemChangeEventArgs>? ItemRemoved;
  167. /// <summary>
  168. /// Gets the root folder.
  169. /// </summary>
  170. /// <value>The root folder.</value>
  171. public AggregateFolder RootFolder
  172. {
  173. get
  174. {
  175. if (_rootFolder is null)
  176. {
  177. lock (_rootFolderSyncLock)
  178. {
  179. _rootFolder ??= CreateRootFolder();
  180. }
  181. }
  182. return _rootFolder;
  183. }
  184. }
  185. private ILibraryMonitor LibraryMonitor => _libraryMonitorFactory.Value;
  186. private IProviderManager ProviderManager => _providerManagerFactory.Value;
  187. private IUserViewManager UserViewManager => _userViewManagerFactory.Value;
  188. /// <summary>
  189. /// Gets or sets the postscan tasks.
  190. /// </summary>
  191. /// <value>The postscan tasks.</value>
  192. private ILibraryPostScanTask[] PostScanTasks { get; set; } = [];
  193. /// <summary>
  194. /// Gets or sets the intro providers.
  195. /// </summary>
  196. /// <value>The intro providers.</value>
  197. private IIntroProvider[] IntroProviders { get; set; } = [];
  198. /// <summary>
  199. /// Gets or sets the list of entity resolution ignore rules.
  200. /// </summary>
  201. /// <value>The entity resolution ignore rules.</value>
  202. private IResolverIgnoreRule[] EntityResolutionIgnoreRules { get; set; } = [];
  203. /// <summary>
  204. /// Gets or sets the list of currently registered entity resolvers.
  205. /// </summary>
  206. /// <value>The entity resolvers enumerable.</value>
  207. private IItemResolver[] EntityResolvers { get; set; } = [];
  208. private IMultiItemResolver[] MultiItemResolvers { get; set; } = [];
  209. /// <summary>
  210. /// Gets or sets the comparers.
  211. /// </summary>
  212. /// <value>The comparers.</value>
  213. private IBaseItemComparer[] Comparers { get; set; } = [];
  214. public bool IsScanRunning { get; private set; }
  215. /// <summary>
  216. /// Adds the parts.
  217. /// </summary>
  218. /// <param name="rules">The rules.</param>
  219. /// <param name="resolvers">The resolvers.</param>
  220. /// <param name="introProviders">The intro providers.</param>
  221. /// <param name="itemComparers">The item comparers.</param>
  222. /// <param name="postScanTasks">The post scan tasks.</param>
  223. public void AddParts(
  224. IEnumerable<IResolverIgnoreRule> rules,
  225. IEnumerable<IItemResolver> resolvers,
  226. IEnumerable<IIntroProvider> introProviders,
  227. IEnumerable<IBaseItemComparer> itemComparers,
  228. IEnumerable<ILibraryPostScanTask> postScanTasks)
  229. {
  230. EntityResolutionIgnoreRules = rules.ToArray();
  231. EntityResolvers = resolvers.OrderBy(i => i.Priority).ToArray();
  232. MultiItemResolvers = EntityResolvers.OfType<IMultiItemResolver>().ToArray();
  233. IntroProviders = introProviders.ToArray();
  234. Comparers = itemComparers.ToArray();
  235. PostScanTasks = postScanTasks.ToArray();
  236. }
  237. /// <summary>
  238. /// Records the configuration values.
  239. /// </summary>
  240. /// <param name="configuration">The configuration.</param>
  241. private void RecordConfigurationValues(ServerConfiguration configuration)
  242. {
  243. _wizardCompleted = configuration.IsStartupWizardCompleted;
  244. }
  245. /// <summary>
  246. /// Configurations the updated.
  247. /// </summary>
  248. /// <param name="sender">The sender.</param>
  249. /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
  250. private void ConfigurationUpdated(object? sender, EventArgs e)
  251. {
  252. var config = _configurationManager.Configuration;
  253. var wizardChanged = config.IsStartupWizardCompleted != _wizardCompleted;
  254. RecordConfigurationValues(config);
  255. if (wizardChanged)
  256. {
  257. _taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>();
  258. }
  259. }
  260. public void RegisterItem(BaseItem item)
  261. {
  262. ArgumentNullException.ThrowIfNull(item);
  263. if (item is IItemByName)
  264. {
  265. if (item is not MusicArtist)
  266. {
  267. return;
  268. }
  269. }
  270. else if (!item.IsFolder)
  271. {
  272. if (item is not Video && item is not LiveTvChannel)
  273. {
  274. return;
  275. }
  276. }
  277. _cache.AddOrUpdate(item.Id, item);
  278. }
  279. public void DeleteItem(BaseItem item, DeleteOptions options)
  280. {
  281. DeleteItem(item, options, false);
  282. }
  283. public void DeleteItem(BaseItem item, DeleteOptions options, bool notifyParentItem)
  284. {
  285. ArgumentNullException.ThrowIfNull(item);
  286. var parent = item.GetOwner() ?? item.GetParent();
  287. DeleteItem(item, options, parent, notifyParentItem);
  288. }
  289. public void DeleteItemsUnsafeFast(IEnumerable<BaseItem> items)
  290. {
  291. var pathMaps = items.Select(e => (Item: e, InternalPath: GetInternalMetadataPaths(e), DeletePaths: e.GetDeletePaths())).ToArray();
  292. foreach (var (item, internalPaths, pathsToDelete) in pathMaps)
  293. {
  294. foreach (var metadataPath in internalPaths)
  295. {
  296. if (!Directory.Exists(metadataPath))
  297. {
  298. continue;
  299. }
  300. _logger.LogDebug(
  301. "Deleting metadata path, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}",
  302. item.GetType().Name,
  303. item.Name ?? "Unknown name",
  304. metadataPath,
  305. item.Id);
  306. try
  307. {
  308. Directory.Delete(metadataPath, true);
  309. }
  310. catch (Exception ex)
  311. {
  312. _logger.LogError(ex, "Error deleting {MetadataPath}", metadataPath);
  313. }
  314. }
  315. foreach (var fileSystemInfo in pathsToDelete)
  316. {
  317. DeleteItemPath(item, false, fileSystemInfo);
  318. }
  319. }
  320. _itemRepository.DeleteItem([.. pathMaps.Select(f => f.Item.Id)]);
  321. }
  322. public void DeleteItem(BaseItem item, DeleteOptions options, BaseItem parent, bool notifyParentItem)
  323. {
  324. ArgumentNullException.ThrowIfNull(item);
  325. if (item.SourceType == SourceType.Channel)
  326. {
  327. if (options.DeleteFromExternalProvider)
  328. {
  329. try
  330. {
  331. BaseItem.ChannelManager.DeleteItem(item).GetAwaiter().GetResult();
  332. }
  333. catch (ArgumentException)
  334. {
  335. // channel no longer installed
  336. }
  337. }
  338. options.DeleteFileLocation = false;
  339. }
  340. if (item is LiveTvProgram)
  341. {
  342. _logger.LogDebug(
  343. "Removing item, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}",
  344. item.GetType().Name,
  345. item.Name ?? "Unknown name",
  346. item.Path ?? string.Empty,
  347. item.Id);
  348. }
  349. else
  350. {
  351. _logger.LogInformation(
  352. "Removing item, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}",
  353. item.GetType().Name,
  354. item.Name ?? "Unknown name",
  355. item.Path ?? string.Empty,
  356. item.Id);
  357. }
  358. var children = item.IsFolder
  359. ? ((Folder)item).GetRecursiveChildren(false)
  360. : [];
  361. foreach (var metadataPath in GetMetadataPaths(item, children))
  362. {
  363. if (!Directory.Exists(metadataPath))
  364. {
  365. continue;
  366. }
  367. _logger.LogDebug(
  368. "Deleting metadata path, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}",
  369. item.GetType().Name,
  370. item.Name ?? "Unknown name",
  371. metadataPath,
  372. item.Id);
  373. try
  374. {
  375. Directory.Delete(metadataPath, true);
  376. }
  377. catch (Exception ex)
  378. {
  379. _logger.LogError(ex, "Error deleting {MetadataPath}", metadataPath);
  380. }
  381. }
  382. if ((options.DeleteFileLocation && item.IsFileProtocol) || IsInternalItem(item))
  383. {
  384. // Assume only the first is required
  385. // Add this flag to GetDeletePaths if required in the future
  386. var isRequiredForDelete = true;
  387. foreach (var fileSystemInfo in item.GetDeletePaths())
  388. {
  389. DeleteItemPath(item, isRequiredForDelete, fileSystemInfo);
  390. isRequiredForDelete = false;
  391. }
  392. }
  393. item.SetParent(null);
  394. _itemRepository.DeleteItem([item.Id, .. children.Select(f => f.Id)]);
  395. _cache.TryRemove(item.Id, out _);
  396. foreach (var child in children)
  397. {
  398. _cache.TryRemove(child.Id, out _);
  399. }
  400. ReportItemRemoved(item, parent);
  401. }
  402. private void DeleteItemPath(BaseItem item, bool isRequiredForDelete, FileSystemMetadata fileSystemInfo)
  403. {
  404. if (Directory.Exists(fileSystemInfo.FullName) || File.Exists(fileSystemInfo.FullName))
  405. {
  406. try
  407. {
  408. _logger.LogInformation(
  409. "Deleting item path, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}",
  410. item.GetType().Name,
  411. item.Name ?? "Unknown name",
  412. fileSystemInfo.FullName,
  413. item.Id);
  414. if (fileSystemInfo.IsDirectory)
  415. {
  416. Directory.Delete(fileSystemInfo.FullName, true);
  417. }
  418. else
  419. {
  420. File.Delete(fileSystemInfo.FullName);
  421. }
  422. }
  423. catch (DirectoryNotFoundException)
  424. {
  425. _logger.LogInformation(
  426. "Directory not found, only removing from database, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}",
  427. item.GetType().Name,
  428. item.Name ?? "Unknown name",
  429. fileSystemInfo.FullName,
  430. item.Id);
  431. }
  432. catch (FileNotFoundException)
  433. {
  434. _logger.LogInformation(
  435. "File not found, only removing from database, Type: {Type}, Name: {Name}, Path: {Path}, Id: {Id}",
  436. item.GetType().Name,
  437. item.Name ?? "Unknown name",
  438. fileSystemInfo.FullName,
  439. item.Id);
  440. }
  441. catch (IOException)
  442. {
  443. if (isRequiredForDelete)
  444. {
  445. throw;
  446. }
  447. }
  448. catch (UnauthorizedAccessException)
  449. {
  450. if (isRequiredForDelete)
  451. {
  452. throw;
  453. }
  454. }
  455. }
  456. }
  457. private bool IsInternalItem(BaseItem item)
  458. {
  459. if (!item.IsFileProtocol)
  460. {
  461. return false;
  462. }
  463. var pathToCheck = item switch
  464. {
  465. Genre => _configurationManager.ApplicationPaths.GenrePath,
  466. MusicArtist => _configurationManager.ApplicationPaths.ArtistsPath,
  467. MusicGenre => _configurationManager.ApplicationPaths.MusicGenrePath,
  468. Person => _configurationManager.ApplicationPaths.PeoplePath,
  469. Studio => _configurationManager.ApplicationPaths.StudioPath,
  470. Year => _configurationManager.ApplicationPaths.YearPath,
  471. _ => null
  472. };
  473. var itemPath = item.Path;
  474. if (!string.IsNullOrEmpty(pathToCheck) && !string.IsNullOrEmpty(itemPath))
  475. {
  476. var cleanPath = _fileSystem.GetValidFilename(itemPath);
  477. var cleanCheckPath = _fileSystem.GetValidFilename(pathToCheck);
  478. return cleanPath.StartsWith(cleanCheckPath, StringComparison.Ordinal);
  479. }
  480. return false;
  481. }
  482. private List<string> GetMetadataPaths(BaseItem item, IEnumerable<BaseItem> children)
  483. {
  484. var list = GetInternalMetadataPaths(item);
  485. foreach (var child in children)
  486. {
  487. list.AddRange(GetInternalMetadataPaths(child));
  488. }
  489. return list;
  490. }
  491. private List<string> GetInternalMetadataPaths(BaseItem item)
  492. {
  493. var list = new List<string>
  494. {
  495. item.GetInternalMetadataPath()
  496. };
  497. if (item is Video video)
  498. {
  499. // Trickplay
  500. list.Add(_pathManager.GetTrickplayDirectory(video));
  501. // Subtitles and attachments
  502. foreach (var mediaSource in item.GetMediaSources(false))
  503. {
  504. var subtitleFolder = _pathManager.GetSubtitleFolderPath(mediaSource.Id);
  505. if (subtitleFolder is not null)
  506. {
  507. list.Add(subtitleFolder);
  508. }
  509. var attachmentFolder = _pathManager.GetAttachmentFolderPath(mediaSource.Id);
  510. if (attachmentFolder is not null)
  511. {
  512. list.Add(attachmentFolder);
  513. }
  514. }
  515. }
  516. return list;
  517. }
  518. /// <summary>
  519. /// Resolves the item.
  520. /// </summary>
  521. /// <param name="args">The args.</param>
  522. /// <param name="resolvers">The resolvers.</param>
  523. /// <returns>BaseItem.</returns>
  524. private BaseItem? ResolveItem(ItemResolveArgs args, IItemResolver[]? resolvers)
  525. {
  526. var item = (resolvers ?? EntityResolvers).Select(r => Resolve(args, r))
  527. .FirstOrDefault(i => i is not null);
  528. if (item is not null)
  529. {
  530. ResolverHelper.SetInitialItemValues(item, args, _fileSystem, this);
  531. }
  532. return item;
  533. }
  534. private BaseItem? Resolve(ItemResolveArgs args, IItemResolver resolver)
  535. {
  536. try
  537. {
  538. return resolver.ResolvePath(args);
  539. }
  540. catch (Exception ex)
  541. {
  542. _logger.LogError(ex, "Error in {Resolver} resolving {Path}", resolver.GetType().Name, args.Path);
  543. return null;
  544. }
  545. }
  546. public Guid GetNewItemId(string key, Type type)
  547. {
  548. return GetNewItemIdInternal(key, type, false);
  549. }
  550. private Guid GetNewItemIdInternal(string key, Type type, bool forceCaseInsensitive)
  551. {
  552. ArgumentException.ThrowIfNullOrEmpty(key);
  553. ArgumentNullException.ThrowIfNull(type);
  554. string programDataPath = _configurationManager.ApplicationPaths.ProgramDataPath;
  555. if (key.StartsWith(programDataPath, StringComparison.Ordinal))
  556. {
  557. // Try to normalize paths located underneath program-data in an attempt to make them more portable
  558. key = key.Substring(programDataPath.Length)
  559. .TrimStart('/', '\\')
  560. .Replace('/', '\\');
  561. }
  562. if (forceCaseInsensitive || !_configurationManager.Configuration.EnableCaseSensitiveItemIds)
  563. {
  564. key = key.ToLowerInvariant();
  565. }
  566. key = type.FullName + key;
  567. return key.GetMD5();
  568. }
  569. public BaseItem? ResolvePath(FileSystemMetadata fileInfo, Folder? parent = null, IDirectoryService? directoryService = null)
  570. => ResolvePath(fileInfo, directoryService ?? new DirectoryService(_fileSystem), null, parent);
  571. private BaseItem? ResolvePath(
  572. FileSystemMetadata fileInfo,
  573. IDirectoryService directoryService,
  574. IItemResolver[]? resolvers,
  575. Folder? parent = null,
  576. CollectionType? collectionType = null,
  577. LibraryOptions? libraryOptions = null)
  578. {
  579. ArgumentNullException.ThrowIfNull(fileInfo);
  580. var fullPath = fileInfo.FullName;
  581. if (collectionType is null && parent is not null)
  582. {
  583. collectionType = GetContentTypeOverride(fullPath, true);
  584. }
  585. var args = new ItemResolveArgs(_configurationManager.ApplicationPaths, this)
  586. {
  587. Parent = parent,
  588. FileInfo = fileInfo,
  589. CollectionType = collectionType,
  590. LibraryOptions = libraryOptions
  591. };
  592. // Return null if ignore rules deem that we should do so
  593. if (IgnoreFile(args.FileInfo, args.Parent))
  594. {
  595. return null;
  596. }
  597. // Gather child folder and files
  598. if (args.IsDirectory)
  599. {
  600. var isPhysicalRoot = args.IsPhysicalRoot;
  601. // When resolving the root, we need it's grandchildren (children of user views)
  602. var flattenFolderDepth = isPhysicalRoot ? 2 : 0;
  603. FileSystemMetadata[] files;
  604. var isVf = args.IsVf;
  605. try
  606. {
  607. files = FileData.GetFilteredFileSystemEntries(directoryService, args.Path, _fileSystem, _appHost, _logger, args, flattenFolderDepth: flattenFolderDepth, resolveShortcuts: isPhysicalRoot || isVf);
  608. }
  609. catch (Exception ex)
  610. {
  611. if (parent is not null && parent.IsPhysicalRoot)
  612. {
  613. _logger.LogError(ex, "Error in GetFilteredFileSystemEntries isPhysicalRoot: {0} IsVf: {1}", isPhysicalRoot, isVf);
  614. files = [];
  615. }
  616. else
  617. {
  618. throw;
  619. }
  620. }
  621. // Need to remove sub-paths that may have been resolved from shortcuts
  622. // Example: if \\server\movies exists, then strip out \\server\movies\action
  623. if (isPhysicalRoot)
  624. {
  625. files = NormalizeRootPathList(files).ToArray();
  626. }
  627. args.FileSystemChildren = files;
  628. }
  629. // Filter content based on ignore rules
  630. if (args.IsDirectory)
  631. {
  632. var filtered = args.GetActualFileSystemChildren().ToArray();
  633. args.FileSystemChildren = filtered ?? [];
  634. }
  635. return ResolveItem(args, resolvers);
  636. }
  637. public bool IgnoreFile(FileSystemMetadata file, BaseItem? parent)
  638. => EntityResolutionIgnoreRules.Any(r => r.ShouldIgnore(file, parent));
  639. public List<FileSystemMetadata> NormalizeRootPathList(IEnumerable<FileSystemMetadata> paths)
  640. {
  641. var originalList = paths.ToList();
  642. var list = originalList.Where(i => i.IsDirectory)
  643. .Select(i => Path.TrimEndingDirectorySeparator(i.FullName))
  644. .Distinct()
  645. .ToList();
  646. var dupes = list.Where(subPath => !subPath.EndsWith(":\\", StringComparison.Ordinal) && list.Any(i => _fileSystem.ContainsSubPath(i, subPath)))
  647. .ToList();
  648. foreach (var dupe in dupes)
  649. {
  650. _logger.LogInformation("Found duplicate path: {0}", dupe);
  651. }
  652. var newList = list.Except(dupes, StringComparer.Ordinal).Select(_fileSystem.GetDirectoryInfo).ToList();
  653. newList.AddRange(originalList.Where(i => !i.IsDirectory));
  654. return newList;
  655. }
  656. public IEnumerable<BaseItem> ResolvePaths(IEnumerable<FileSystemMetadata> files, IDirectoryService directoryService, Folder parent, LibraryOptions libraryOptions, CollectionType? collectionType = null)
  657. {
  658. return ResolvePaths(files, directoryService, parent, libraryOptions, collectionType, EntityResolvers);
  659. }
  660. public IEnumerable<BaseItem> ResolvePaths(
  661. IEnumerable<FileSystemMetadata> files,
  662. IDirectoryService directoryService,
  663. Folder parent,
  664. LibraryOptions libraryOptions,
  665. CollectionType? collectionType,
  666. IItemResolver[] resolvers)
  667. {
  668. var fileList = files.Where(i => !IgnoreFile(i, parent)).ToList();
  669. if (parent is not null)
  670. {
  671. var multiItemResolvers = resolvers is null ? MultiItemResolvers : resolvers.OfType<IMultiItemResolver>();
  672. foreach (var resolver in multiItemResolvers)
  673. {
  674. var result = resolver.ResolveMultiple(parent, fileList, collectionType, directoryService);
  675. if (result?.Items.Count > 0)
  676. {
  677. var items = result.Items;
  678. items.RemoveAll(item => !ResolverHelper.SetInitialItemValues(item, parent, this, directoryService));
  679. items.AddRange(ResolveFileList(result.ExtraFiles, directoryService, parent, collectionType, resolvers, libraryOptions));
  680. return items;
  681. }
  682. }
  683. }
  684. return ResolveFileList(fileList, directoryService, parent, collectionType, resolvers, libraryOptions);
  685. }
  686. private IEnumerable<BaseItem> ResolveFileList(
  687. IReadOnlyList<FileSystemMetadata> fileList,
  688. IDirectoryService directoryService,
  689. Folder? parent,
  690. CollectionType? collectionType,
  691. IItemResolver[]? resolvers,
  692. LibraryOptions libraryOptions)
  693. {
  694. // Given that fileList is a list we can save enumerator allocations by indexing
  695. for (var i = 0; i < fileList.Count; i++)
  696. {
  697. var file = fileList[i];
  698. BaseItem? result = null;
  699. try
  700. {
  701. result = ResolvePath(file, directoryService, resolvers, parent, collectionType, libraryOptions);
  702. }
  703. catch (Exception ex)
  704. {
  705. _logger.LogError(ex, "Error resolving path {Path}", file.FullName);
  706. }
  707. if (result is not null)
  708. {
  709. yield return result;
  710. }
  711. }
  712. }
  713. /// <summary>
  714. /// Creates the root media folder.
  715. /// </summary>
  716. /// <returns>AggregateFolder.</returns>
  717. /// <exception cref="InvalidOperationException">Cannot create the root folder until plugins have loaded.</exception>
  718. public AggregateFolder CreateRootFolder()
  719. {
  720. var rootFolderPath = _configurationManager.ApplicationPaths.RootFolderPath;
  721. var rootFolder = GetItemById(GetNewItemId(rootFolderPath, typeof(AggregateFolder))) as AggregateFolder ??
  722. (ResolvePath(_fileSystem.GetDirectoryInfo(rootFolderPath)) as Folder ?? throw new InvalidOperationException("Something went very wong"))
  723. .DeepCopy<Folder, AggregateFolder>();
  724. // In case program data folder was moved
  725. if (!string.Equals(rootFolder.Path, rootFolderPath, StringComparison.Ordinal))
  726. {
  727. _logger.LogInformation("Resetting root folder path to {0}", rootFolderPath);
  728. rootFolder.Path = rootFolderPath;
  729. }
  730. // Add in the plug-in folders
  731. var path = Path.Combine(_configurationManager.ApplicationPaths.DataPath, "playlists");
  732. var info = Directory.CreateDirectory(path);
  733. Folder folder = new PlaylistsFolder
  734. {
  735. Path = path,
  736. DateCreated = info.CreationTimeUtc,
  737. DateModified = info.LastWriteTimeUtc,
  738. };
  739. if (folder.Id.IsEmpty())
  740. {
  741. folder.Id = GetNewItemId(folder.Path, folder.GetType());
  742. }
  743. var dbItem = GetItemById(folder.Id) as BasePluginFolder;
  744. if (dbItem is not null && string.Equals(dbItem.Path, folder.Path, StringComparison.OrdinalIgnoreCase))
  745. {
  746. folder = dbItem;
  747. }
  748. if (!folder.ParentId.Equals(rootFolder.Id))
  749. {
  750. rootFolder.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, CancellationToken.None).GetAwaiter().GetResult();
  751. folder.ParentId = rootFolder.Id;
  752. folder.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, CancellationToken.None).GetAwaiter().GetResult();
  753. }
  754. rootFolder.AddVirtualChild(folder);
  755. RegisterItem(folder);
  756. return rootFolder;
  757. }
  758. public Folder GetUserRootFolder()
  759. {
  760. if (_userRootFolder is null)
  761. {
  762. lock (_userRootFolderSyncLock)
  763. {
  764. if (_userRootFolder is null)
  765. {
  766. var userRootPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath;
  767. _logger.LogDebug("Creating userRootPath at {Path}", userRootPath);
  768. Directory.CreateDirectory(userRootPath);
  769. var newItemId = GetNewItemId(userRootPath, typeof(UserRootFolder));
  770. UserRootFolder? tmpItem = null;
  771. try
  772. {
  773. tmpItem = GetItemById(newItemId) as UserRootFolder;
  774. }
  775. catch (Exception ex)
  776. {
  777. _logger.LogError(ex, "Error creating UserRootFolder {Path}", newItemId);
  778. }
  779. if (tmpItem is null)
  780. {
  781. _logger.LogDebug("Creating new userRootFolder with DeepCopy");
  782. tmpItem = (ResolvePath(_fileSystem.GetDirectoryInfo(userRootPath)) as Folder ?? throw new InvalidOperationException("Failed to get user root path"))
  783. .DeepCopy<Folder, UserRootFolder>();
  784. }
  785. // In case program data folder was moved
  786. if (!string.Equals(tmpItem.Path, userRootPath, StringComparison.Ordinal))
  787. {
  788. _logger.LogInformation("Resetting user root folder path to {0}", userRootPath);
  789. tmpItem.Path = userRootPath;
  790. }
  791. _userRootFolder = tmpItem;
  792. _logger.LogDebug("Setting userRootFolder: {Folder}", _userRootFolder);
  793. }
  794. }
  795. }
  796. return _userRootFolder;
  797. }
  798. /// <inheritdoc />
  799. public BaseItem? FindByPath(string path, bool? isFolder)
  800. {
  801. // If this returns multiple items it could be tricky figuring out which one is correct.
  802. // In most cases, the newest one will be and the others obsolete but not yet cleaned up
  803. ArgumentException.ThrowIfNullOrEmpty(path);
  804. var query = new InternalItemsQuery
  805. {
  806. Path = path,
  807. IsFolder = isFolder,
  808. OrderBy = [(ItemSortBy.DateCreated, SortOrder.Descending)],
  809. Limit = 1,
  810. DtoOptions = new DtoOptions(true)
  811. };
  812. return GetItemList(query)
  813. .FirstOrDefault();
  814. }
  815. /// <inheritdoc />
  816. public Person? GetPerson(string name)
  817. {
  818. var path = Person.GetPath(name);
  819. var id = GetItemByNameId<Person>(path);
  820. if (GetItemById(id) is Person item)
  821. {
  822. return item;
  823. }
  824. return null;
  825. }
  826. /// <summary>
  827. /// Gets the studio.
  828. /// </summary>
  829. /// <param name="name">The name.</param>
  830. /// <returns>Task{Studio}.</returns>
  831. public Studio GetStudio(string name)
  832. {
  833. return CreateItemByName<Studio>(Studio.GetPath, name, new DtoOptions(true));
  834. }
  835. public Guid GetStudioId(string name)
  836. {
  837. return GetItemByNameId<Studio>(Studio.GetPath(name));
  838. }
  839. public Guid GetGenreId(string name)
  840. {
  841. return GetItemByNameId<Genre>(Genre.GetPath(name));
  842. }
  843. public Guid GetMusicGenreId(string name)
  844. {
  845. return GetItemByNameId<MusicGenre>(MusicGenre.GetPath(name));
  846. }
  847. /// <summary>
  848. /// Gets the genre.
  849. /// </summary>
  850. /// <param name="name">The name.</param>
  851. /// <returns>Task{Genre}.</returns>
  852. public Genre GetGenre(string name)
  853. {
  854. return CreateItemByName<Genre>(Genre.GetPath, name, new DtoOptions(true));
  855. }
  856. /// <summary>
  857. /// Gets the music genre.
  858. /// </summary>
  859. /// <param name="name">The name.</param>
  860. /// <returns>Task{MusicGenre}.</returns>
  861. public MusicGenre GetMusicGenre(string name)
  862. {
  863. return CreateItemByName<MusicGenre>(MusicGenre.GetPath, name, new DtoOptions(true));
  864. }
  865. /// <summary>
  866. /// Gets the year.
  867. /// </summary>
  868. /// <param name="value">The value.</param>
  869. /// <returns>Task{Year}.</returns>
  870. public Year GetYear(int value)
  871. {
  872. if (value <= 0)
  873. {
  874. throw new ArgumentOutOfRangeException(nameof(value), "Years less than or equal to 0 are invalid.");
  875. }
  876. var name = value.ToString(CultureInfo.InvariantCulture);
  877. return CreateItemByName<Year>(Year.GetPath, name, new DtoOptions(true));
  878. }
  879. /// <summary>
  880. /// Gets a Genre.
  881. /// </summary>
  882. /// <param name="name">The name.</param>
  883. /// <returns>Task{Genre}.</returns>
  884. public MusicArtist GetArtist(string name)
  885. {
  886. return GetArtist(name, new DtoOptions(true));
  887. }
  888. public IReadOnlyDictionary<string, MusicArtist[]> GetArtists(IReadOnlyList<string> names)
  889. {
  890. return _itemRepository.FindArtists(names);
  891. }
  892. public MusicArtist GetArtist(string name, DtoOptions options)
  893. {
  894. return CreateItemByName<MusicArtist>(MusicArtist.GetPath, name, options);
  895. }
  896. private T CreateItemByName<T>(Func<string, string> getPathFn, string name, DtoOptions options)
  897. where T : BaseItem, new()
  898. {
  899. if (typeof(T) == typeof(MusicArtist))
  900. {
  901. var existing = GetItemList(new InternalItemsQuery
  902. {
  903. IncludeItemTypes = [BaseItemKind.MusicArtist],
  904. Name = name,
  905. DtoOptions = options
  906. }).Cast<MusicArtist>()
  907. .OrderBy(i => i.IsAccessedByName ? 1 : 0)
  908. .Cast<T>()
  909. .FirstOrDefault();
  910. if (existing is not null)
  911. {
  912. return existing;
  913. }
  914. }
  915. var path = getPathFn(name);
  916. var id = GetItemByNameId<T>(path);
  917. var item = GetItemById(id) as T;
  918. if (item is null)
  919. {
  920. var info = Directory.CreateDirectory(path);
  921. item = new T
  922. {
  923. Name = name,
  924. Id = id,
  925. DateCreated = info.CreationTimeUtc,
  926. DateModified = info.LastWriteTimeUtc,
  927. Path = path
  928. };
  929. CreateItem(item, null);
  930. }
  931. return item;
  932. }
  933. private Guid GetItemByNameId<T>(string path)
  934. where T : BaseItem, new()
  935. {
  936. var forceCaseInsensitiveId = _configurationManager.Configuration.EnableNormalizedItemByNameIds;
  937. return GetNewItemIdInternal(path, typeof(T), forceCaseInsensitiveId);
  938. }
  939. /// <inheritdoc />
  940. public Task ValidatePeopleAsync(IProgress<double> progress, CancellationToken cancellationToken)
  941. {
  942. // Ensure the location is available.
  943. Directory.CreateDirectory(_configurationManager.ApplicationPaths.PeoplePath);
  944. return new PeopleValidator(this, _logger, _fileSystem).ValidatePeople(cancellationToken, progress);
  945. }
  946. /// <summary>
  947. /// Reloads the root media folder.
  948. /// </summary>
  949. /// <param name="progress">The progress.</param>
  950. /// <param name="cancellationToken">The cancellation token.</param>
  951. /// <returns>Task.</returns>
  952. public Task ValidateMediaLibrary(IProgress<double> progress, CancellationToken cancellationToken)
  953. {
  954. // Just run the scheduled task so that the user can see it
  955. _taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>();
  956. return Task.CompletedTask;
  957. }
  958. /// <summary>
  959. /// Validates the media library internal.
  960. /// </summary>
  961. /// <param name="progress">The progress.</param>
  962. /// <param name="cancellationToken">The cancellation token.</param>
  963. /// <returns>Task.</returns>
  964. public async Task ValidateMediaLibraryInternal(IProgress<double> progress, CancellationToken cancellationToken)
  965. {
  966. IsScanRunning = true;
  967. LibraryMonitor.Stop();
  968. try
  969. {
  970. await PerformLibraryValidation(progress, cancellationToken).ConfigureAwait(false);
  971. }
  972. finally
  973. {
  974. LibraryMonitor.Start();
  975. IsScanRunning = false;
  976. }
  977. }
  978. public async Task ValidateTopLibraryFolders(CancellationToken cancellationToken, bool removeRoot = false)
  979. {
  980. RootFolder.Children = null;
  981. await RootFolder.RefreshMetadata(cancellationToken).ConfigureAwait(false);
  982. // Start by just validating the children of the root, but go no further
  983. await RootFolder.ValidateChildren(
  984. new Progress<double>(),
  985. new MetadataRefreshOptions(new DirectoryService(_fileSystem)),
  986. recursive: false,
  987. allowRemoveRoot: removeRoot,
  988. cancellationToken: cancellationToken).ConfigureAwait(false);
  989. var rootFolder = GetUserRootFolder();
  990. rootFolder.Children = null;
  991. await rootFolder.RefreshMetadata(cancellationToken).ConfigureAwait(false);
  992. await rootFolder.ValidateChildren(
  993. new Progress<double>(),
  994. new MetadataRefreshOptions(new DirectoryService(_fileSystem)),
  995. recursive: false,
  996. allowRemoveRoot: removeRoot,
  997. cancellationToken: cancellationToken).ConfigureAwait(false);
  998. // Quickly scan CollectionFolders for changes
  999. var toDelete = new List<Guid>();
  1000. foreach (var child in rootFolder.Children!.OfType<Folder>())
  1001. {
  1002. // If the user has somehow deleted the collection directory, remove the metadata from the database.
  1003. if (child is CollectionFolder collectionFolder && !Directory.Exists(collectionFolder.Path))
  1004. {
  1005. toDelete.Add(collectionFolder.Id);
  1006. }
  1007. else
  1008. {
  1009. await child.RefreshMetadata(cancellationToken).ConfigureAwait(false);
  1010. }
  1011. }
  1012. if (toDelete.Count > 0)
  1013. {
  1014. _itemRepository.DeleteItem(toDelete.ToArray());
  1015. }
  1016. }
  1017. private async Task PerformLibraryValidation(IProgress<double> progress, CancellationToken cancellationToken)
  1018. {
  1019. _logger.LogInformation("Validating media library");
  1020. await ValidateTopLibraryFolders(cancellationToken).ConfigureAwait(false);
  1021. var innerProgress = new Progress<double>(pct => progress.Report(pct * 0.96));
  1022. // Validate the entire media library
  1023. await RootFolder.ValidateChildren(innerProgress, new MetadataRefreshOptions(new DirectoryService(_fileSystem)), recursive: true, cancellationToken: cancellationToken).ConfigureAwait(false);
  1024. progress.Report(96);
  1025. innerProgress = new Progress<double>(pct => progress.Report(96 + (pct * .04)));
  1026. await RunPostScanTasks(innerProgress, cancellationToken).ConfigureAwait(false);
  1027. progress.Report(100);
  1028. }
  1029. /// <summary>
  1030. /// Runs the post scan tasks.
  1031. /// </summary>
  1032. /// <param name="progress">The progress.</param>
  1033. /// <param name="cancellationToken">The cancellation token.</param>
  1034. /// <returns>Task.</returns>
  1035. private async Task RunPostScanTasks(IProgress<double> progress, CancellationToken cancellationToken)
  1036. {
  1037. var tasks = PostScanTasks.ToList();
  1038. var numComplete = 0;
  1039. var numTasks = tasks.Count;
  1040. foreach (var task in tasks)
  1041. {
  1042. // Prevent access to modified closure
  1043. var currentNumComplete = numComplete;
  1044. var innerProgress = new Progress<double>(pct =>
  1045. {
  1046. double innerPercent = pct;
  1047. innerPercent /= 100;
  1048. innerPercent += currentNumComplete;
  1049. innerPercent /= numTasks;
  1050. innerPercent *= 100;
  1051. progress.Report(innerPercent);
  1052. });
  1053. _logger.LogDebug("Running post-scan task {0}", task.GetType().Name);
  1054. try
  1055. {
  1056. await task.Run(innerProgress, cancellationToken).ConfigureAwait(false);
  1057. }
  1058. catch (OperationCanceledException)
  1059. {
  1060. _logger.LogInformation("Post-scan task cancelled: {0}", task.GetType().Name);
  1061. throw;
  1062. }
  1063. catch (Exception ex)
  1064. {
  1065. _logger.LogError(ex, "Error running post-scan task");
  1066. }
  1067. numComplete++;
  1068. double percent = numComplete;
  1069. percent /= numTasks;
  1070. progress.Report(percent * 100);
  1071. }
  1072. _itemRepository.UpdateInheritedValues();
  1073. progress.Report(100);
  1074. }
  1075. /// <summary>
  1076. /// Gets the default view.
  1077. /// </summary>
  1078. /// <returns>IEnumerable{VirtualFolderInfo}.</returns>
  1079. public List<VirtualFolderInfo> GetVirtualFolders()
  1080. {
  1081. return GetVirtualFolders(false);
  1082. }
  1083. public List<VirtualFolderInfo> GetVirtualFolders(bool includeRefreshState)
  1084. {
  1085. _logger.LogDebug("Getting topLibraryFolders");
  1086. var topLibraryFolders = GetUserRootFolder().Children.ToList();
  1087. _logger.LogDebug("Getting refreshQueue");
  1088. var refreshQueue = includeRefreshState ? ProviderManager.GetRefreshQueue() : null;
  1089. return _fileSystem.GetDirectoryPaths(_configurationManager.ApplicationPaths.DefaultUserViewsPath)
  1090. .Select(dir => GetVirtualFolderInfo(dir, topLibraryFolders, refreshQueue))
  1091. .ToList();
  1092. }
  1093. private VirtualFolderInfo GetVirtualFolderInfo(string dir, List<BaseItem> allCollectionFolders, HashSet<Guid>? refreshQueue)
  1094. {
  1095. var info = new VirtualFolderInfo
  1096. {
  1097. Name = Path.GetFileName(dir),
  1098. Locations = _fileSystem.GetFilePaths(dir, false)
  1099. .Where(i => Path.GetExtension(i.AsSpan()).Equals(ShortcutFileExtension, StringComparison.OrdinalIgnoreCase))
  1100. .Select(i =>
  1101. {
  1102. try
  1103. {
  1104. return _appHost.ExpandVirtualPath(_fileSystem.ResolveShortcut(i));
  1105. }
  1106. catch (Exception ex)
  1107. {
  1108. _logger.LogError(ex, "Error resolving shortcut file {File}", i);
  1109. return null;
  1110. }
  1111. })
  1112. .Where(i => i is not null)
  1113. .Order()
  1114. .ToArray(),
  1115. CollectionType = GetCollectionType(dir)
  1116. };
  1117. var libraryFolder = allCollectionFolders.FirstOrDefault(i => string.Equals(i.Path, dir, StringComparison.OrdinalIgnoreCase));
  1118. if (libraryFolder is not null)
  1119. {
  1120. var libraryFolderId = libraryFolder.Id.ToString("N", CultureInfo.InvariantCulture);
  1121. info.ItemId = libraryFolderId;
  1122. if (libraryFolder.HasImage(ImageType.Primary))
  1123. {
  1124. info.PrimaryImageItemId = libraryFolderId;
  1125. }
  1126. info.LibraryOptions = GetLibraryOptions(libraryFolder);
  1127. if (refreshQueue is not null)
  1128. {
  1129. info.RefreshProgress = libraryFolder.GetRefreshProgress();
  1130. info.RefreshStatus = info.RefreshProgress.HasValue ? "Active" : refreshQueue.Contains(libraryFolder.Id) ? "Queued" : "Idle";
  1131. }
  1132. }
  1133. return info;
  1134. }
  1135. private CollectionTypeOptions? GetCollectionType(string path)
  1136. {
  1137. var files = _fileSystem.GetFilePaths(path, [".collection"], true, false);
  1138. foreach (ReadOnlySpan<char> file in files)
  1139. {
  1140. if (Enum.TryParse<CollectionTypeOptions>(Path.GetFileNameWithoutExtension(file), true, out var res))
  1141. {
  1142. return res;
  1143. }
  1144. }
  1145. return null;
  1146. }
  1147. /// <inheritdoc />
  1148. public BaseItem? GetItemById(Guid id)
  1149. {
  1150. if (id.IsEmpty())
  1151. {
  1152. throw new ArgumentException("Guid can't be empty", nameof(id));
  1153. }
  1154. if (_cache.TryGet(id, out var item))
  1155. {
  1156. return item;
  1157. }
  1158. item = RetrieveItem(id);
  1159. if (item is not null)
  1160. {
  1161. RegisterItem(item);
  1162. }
  1163. return item;
  1164. }
  1165. /// <inheritdoc />
  1166. public T? GetItemById<T>(Guid id)
  1167. where T : BaseItem
  1168. {
  1169. var item = GetItemById(id);
  1170. if (item is T typedItem)
  1171. {
  1172. return typedItem;
  1173. }
  1174. return null;
  1175. }
  1176. /// <inheritdoc />
  1177. public T? GetItemById<T>(Guid id, Guid userId)
  1178. where T : BaseItem
  1179. {
  1180. var user = userId.IsEmpty() ? null : _userManager.GetUserById(userId);
  1181. return GetItemById<T>(id, user);
  1182. }
  1183. /// <inheritdoc />
  1184. public T? GetItemById<T>(Guid id, User? user)
  1185. where T : BaseItem
  1186. {
  1187. var item = GetItemById<T>(id);
  1188. return ItemIsVisible(item, user) ? item : null;
  1189. }
  1190. public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query, bool allowExternalContent)
  1191. {
  1192. if (query.Recursive && !query.ParentId.IsEmpty())
  1193. {
  1194. var parent = GetItemById(query.ParentId);
  1195. if (parent is not null)
  1196. {
  1197. SetTopParentIdsOrAncestors(query, [parent]);
  1198. }
  1199. }
  1200. if (query.User is not null)
  1201. {
  1202. AddUserToQuery(query, query.User, allowExternalContent);
  1203. }
  1204. var itemList = _itemRepository.GetItemList(query);
  1205. var user = query.User;
  1206. if (user is not null)
  1207. {
  1208. return itemList.Where(i => i.IsVisible(user)).ToList();
  1209. }
  1210. return itemList;
  1211. }
  1212. public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query)
  1213. {
  1214. return GetItemList(query, true);
  1215. }
  1216. public int GetCount(InternalItemsQuery query)
  1217. {
  1218. if (query.Recursive && !query.ParentId.IsEmpty())
  1219. {
  1220. var parent = GetItemById(query.ParentId);
  1221. if (parent is not null)
  1222. {
  1223. SetTopParentIdsOrAncestors(query, [parent]);
  1224. }
  1225. }
  1226. if (query.User is not null)
  1227. {
  1228. AddUserToQuery(query, query.User);
  1229. }
  1230. return _itemRepository.GetCount(query);
  1231. }
  1232. public ItemCounts GetItemCounts(InternalItemsQuery query)
  1233. {
  1234. if (query.Recursive && !query.ParentId.IsEmpty())
  1235. {
  1236. var parent = GetItemById(query.ParentId);
  1237. if (parent is not null)
  1238. {
  1239. SetTopParentIdsOrAncestors(query, [parent]);
  1240. }
  1241. }
  1242. if (query.User is not null)
  1243. {
  1244. AddUserToQuery(query, query.User);
  1245. }
  1246. return _itemRepository.GetItemCounts(query);
  1247. }
  1248. public IReadOnlyList<BaseItem> GetItemList(InternalItemsQuery query, List<BaseItem> parents)
  1249. {
  1250. SetTopParentIdsOrAncestors(query, parents);
  1251. if (query.AncestorIds.Length == 0 && query.TopParentIds.Length == 0)
  1252. {
  1253. if (query.User is not null)
  1254. {
  1255. AddUserToQuery(query, query.User);
  1256. }
  1257. }
  1258. return _itemRepository.GetItemList(query);
  1259. }
  1260. public IReadOnlyList<BaseItem> GetLatestItemList(InternalItemsQuery query, IReadOnlyList<BaseItem> parents, CollectionType collectionType)
  1261. {
  1262. SetTopParentIdsOrAncestors(query, parents);
  1263. if (query.AncestorIds.Length == 0 && query.TopParentIds.Length == 0)
  1264. {
  1265. if (query.User is not null)
  1266. {
  1267. AddUserToQuery(query, query.User);
  1268. }
  1269. }
  1270. return _itemRepository.GetLatestItemList(query, collectionType);
  1271. }
  1272. public IReadOnlyList<string> GetNextUpSeriesKeys(InternalItemsQuery query, IReadOnlyCollection<BaseItem> parents, DateTime dateCutoff)
  1273. {
  1274. SetTopParentIdsOrAncestors(query, parents);
  1275. if (query.AncestorIds.Length == 0 && query.TopParentIds.Length == 0)
  1276. {
  1277. if (query.User is not null)
  1278. {
  1279. AddUserToQuery(query, query.User);
  1280. }
  1281. }
  1282. return _itemRepository.GetNextUpSeriesKeys(query, dateCutoff);
  1283. }
  1284. public QueryResult<BaseItem> QueryItems(InternalItemsQuery query)
  1285. {
  1286. if (query.User is not null)
  1287. {
  1288. AddUserToQuery(query, query.User);
  1289. }
  1290. if (query.EnableTotalRecordCount)
  1291. {
  1292. return _itemRepository.GetItems(query);
  1293. }
  1294. return new QueryResult<BaseItem>(
  1295. query.StartIndex,
  1296. null,
  1297. _itemRepository.GetItemList(query));
  1298. }
  1299. public IReadOnlyList<Guid> GetItemIds(InternalItemsQuery query)
  1300. {
  1301. if (query.User is not null)
  1302. {
  1303. AddUserToQuery(query, query.User);
  1304. }
  1305. return _itemRepository.GetItemIdsList(query);
  1306. }
  1307. public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetStudios(InternalItemsQuery query)
  1308. {
  1309. if (query.User is not null)
  1310. {
  1311. AddUserToQuery(query, query.User);
  1312. }
  1313. SetTopParentOrAncestorIds(query);
  1314. return _itemRepository.GetStudios(query);
  1315. }
  1316. public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetGenres(InternalItemsQuery query)
  1317. {
  1318. if (query.User is not null)
  1319. {
  1320. AddUserToQuery(query, query.User);
  1321. }
  1322. SetTopParentOrAncestorIds(query);
  1323. return _itemRepository.GetGenres(query);
  1324. }
  1325. public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetMusicGenres(InternalItemsQuery query)
  1326. {
  1327. if (query.User is not null)
  1328. {
  1329. AddUserToQuery(query, query.User);
  1330. }
  1331. SetTopParentOrAncestorIds(query);
  1332. return _itemRepository.GetMusicGenres(query);
  1333. }
  1334. public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetAllArtists(InternalItemsQuery query)
  1335. {
  1336. if (query.User is not null)
  1337. {
  1338. AddUserToQuery(query, query.User);
  1339. }
  1340. SetTopParentOrAncestorIds(query);
  1341. return _itemRepository.GetAllArtists(query);
  1342. }
  1343. public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetArtists(InternalItemsQuery query)
  1344. {
  1345. if (query.User is not null)
  1346. {
  1347. AddUserToQuery(query, query.User);
  1348. }
  1349. SetTopParentOrAncestorIds(query);
  1350. return _itemRepository.GetArtists(query);
  1351. }
  1352. private void SetTopParentOrAncestorIds(InternalItemsQuery query)
  1353. {
  1354. var ancestorIds = query.AncestorIds;
  1355. int len = ancestorIds.Length;
  1356. if (len == 0)
  1357. {
  1358. return;
  1359. }
  1360. var parents = new BaseItem[len];
  1361. for (int i = 0; i < len; i++)
  1362. {
  1363. parents[i] = GetItemById(ancestorIds[i]) ?? throw new ArgumentException($"Failed to find parent with id: {ancestorIds[i]}");
  1364. if (parents[i] is not (ICollectionFolder or UserView))
  1365. {
  1366. return;
  1367. }
  1368. }
  1369. // Optimize by querying against top level views
  1370. query.TopParentIds = parents.SelectMany(i => GetTopParentIdsForQuery(i, query.User)).ToArray();
  1371. query.AncestorIds = [];
  1372. // Prevent searching in all libraries due to empty filter
  1373. if (query.TopParentIds.Length == 0)
  1374. {
  1375. query.TopParentIds = [Guid.NewGuid()];
  1376. }
  1377. }
  1378. public QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetAlbumArtists(InternalItemsQuery query)
  1379. {
  1380. if (query.User is not null)
  1381. {
  1382. AddUserToQuery(query, query.User);
  1383. }
  1384. SetTopParentOrAncestorIds(query);
  1385. return _itemRepository.GetAlbumArtists(query);
  1386. }
  1387. public QueryResult<BaseItem> GetItemsResult(InternalItemsQuery query)
  1388. {
  1389. if (query.Recursive && !query.ParentId.IsEmpty())
  1390. {
  1391. var parent = GetItemById(query.ParentId);
  1392. if (parent is not null)
  1393. {
  1394. SetTopParentIdsOrAncestors(query, [parent]);
  1395. }
  1396. }
  1397. if (query.User is not null)
  1398. {
  1399. AddUserToQuery(query, query.User);
  1400. }
  1401. if (query.EnableTotalRecordCount)
  1402. {
  1403. return _itemRepository.GetItems(query);
  1404. }
  1405. return new QueryResult<BaseItem>(
  1406. query.StartIndex,
  1407. null,
  1408. _itemRepository.GetItemList(query));
  1409. }
  1410. private void SetTopParentIdsOrAncestors(InternalItemsQuery query, IReadOnlyCollection<BaseItem> parents)
  1411. {
  1412. if (parents.All(i => i is ICollectionFolder || i is UserView))
  1413. {
  1414. // Optimize by querying against top level views
  1415. query.TopParentIds = parents.SelectMany(i => GetTopParentIdsForQuery(i, query.User)).ToArray();
  1416. // Prevent searching in all libraries due to empty filter
  1417. if (query.TopParentIds.Length == 0)
  1418. {
  1419. query.TopParentIds = [Guid.NewGuid()];
  1420. }
  1421. }
  1422. else
  1423. {
  1424. // We need to be able to query from any arbitrary ancestor up the tree
  1425. query.AncestorIds = parents.SelectMany(i => i.GetIdsForAncestorQuery()).ToArray();
  1426. // Prevent searching in all libraries due to empty filter
  1427. if (query.AncestorIds.Length == 0)
  1428. {
  1429. query.AncestorIds = [Guid.NewGuid()];
  1430. }
  1431. }
  1432. query.Parent = null;
  1433. }
  1434. private void AddUserToQuery(InternalItemsQuery query, User user, bool allowExternalContent = true)
  1435. {
  1436. if (query.AncestorIds.Length == 0 &&
  1437. query.ParentId.IsEmpty() &&
  1438. query.ChannelIds.Count == 0 &&
  1439. query.TopParentIds.Length == 0 &&
  1440. string.IsNullOrEmpty(query.AncestorWithPresentationUniqueKey) &&
  1441. string.IsNullOrEmpty(query.SeriesPresentationUniqueKey) &&
  1442. query.ItemIds.Length == 0)
  1443. {
  1444. var userViews = UserViewManager.GetUserViews(new UserViewQuery
  1445. {
  1446. User = user,
  1447. IncludeHidden = true,
  1448. IncludeExternalContent = allowExternalContent
  1449. });
  1450. query.TopParentIds = userViews.SelectMany(i => GetTopParentIdsForQuery(i, user)).ToArray();
  1451. // Prevent searching in all libraries due to empty filter
  1452. if (query.TopParentIds.Length == 0)
  1453. {
  1454. query.TopParentIds = [Guid.NewGuid()];
  1455. }
  1456. }
  1457. }
  1458. private IEnumerable<Guid> GetTopParentIdsForQuery(BaseItem item, User? user)
  1459. {
  1460. if (item is UserView view)
  1461. {
  1462. if (view.ViewType == CollectionType.livetv)
  1463. {
  1464. return [view.Id];
  1465. }
  1466. // Translate view into folders
  1467. if (!view.DisplayParentId.IsEmpty())
  1468. {
  1469. var displayParent = GetItemById(view.DisplayParentId);
  1470. if (displayParent is not null)
  1471. {
  1472. return GetTopParentIdsForQuery(displayParent, user);
  1473. }
  1474. return [];
  1475. }
  1476. if (!view.ParentId.IsEmpty())
  1477. {
  1478. var displayParent = GetItemById(view.ParentId);
  1479. if (displayParent is not null)
  1480. {
  1481. return GetTopParentIdsForQuery(displayParent, user);
  1482. }
  1483. return [];
  1484. }
  1485. // Handle grouping
  1486. if (user is not null && view.ViewType != CollectionType.unknown && UserView.IsEligibleForGrouping(view.ViewType)
  1487. && user.GetPreference(PreferenceKind.GroupedFolders).Length > 0)
  1488. {
  1489. return GetUserRootFolder()
  1490. .GetChildren(user, true)
  1491. .OfType<CollectionFolder>()
  1492. .Where(i => i.CollectionType is null || i.CollectionType == view.ViewType)
  1493. .Where(i => user.IsFolderGrouped(i.Id))
  1494. .SelectMany(i => GetTopParentIdsForQuery(i, user));
  1495. }
  1496. return [];
  1497. }
  1498. if (item is CollectionFolder collectionFolder)
  1499. {
  1500. return collectionFolder.PhysicalFolderIds;
  1501. }
  1502. var topParent = item.GetTopParent();
  1503. if (topParent is not null)
  1504. {
  1505. return [topParent.Id];
  1506. }
  1507. return [];
  1508. }
  1509. /// <summary>
  1510. /// Gets the intros.
  1511. /// </summary>
  1512. /// <param name="item">The item.</param>
  1513. /// <param name="user">The user.</param>
  1514. /// <returns>IEnumerable{System.String}.</returns>
  1515. public async Task<IEnumerable<Video>> GetIntros(BaseItem item, User user)
  1516. {
  1517. if (IntroProviders.Length == 0)
  1518. {
  1519. return [];
  1520. }
  1521. var tasks = IntroProviders
  1522. .Select(i => GetIntros(i, item, user));
  1523. var items = await Task.WhenAll(tasks).ConfigureAwait(false);
  1524. return items
  1525. .SelectMany(i => i)
  1526. .Select(ResolveIntro)
  1527. .Where(i => i is not null)!; // null values got filtered out
  1528. }
  1529. /// <summary>
  1530. /// Gets the intros.
  1531. /// </summary>
  1532. /// <param name="provider">The provider.</param>
  1533. /// <param name="item">The item.</param>
  1534. /// <param name="user">The user.</param>
  1535. /// <returns>Task&lt;IEnumerable&lt;IntroInfo&gt;&gt;.</returns>
  1536. private async Task<IEnumerable<IntroInfo>> GetIntros(IIntroProvider provider, BaseItem item, User user)
  1537. {
  1538. try
  1539. {
  1540. return await provider.GetIntros(item, user).ConfigureAwait(false);
  1541. }
  1542. catch (Exception ex)
  1543. {
  1544. _logger.LogError(ex, "Error getting intros");
  1545. return [];
  1546. }
  1547. }
  1548. /// <summary>
  1549. /// Resolves the intro.
  1550. /// </summary>
  1551. /// <param name="info">The info.</param>
  1552. /// <returns>Video.</returns>
  1553. private Video? ResolveIntro(IntroInfo info)
  1554. {
  1555. Video? video = null;
  1556. if (info.ItemId.HasValue)
  1557. {
  1558. // Get an existing item by Id
  1559. video = GetItemById(info.ItemId.Value) as Video;
  1560. if (video is null)
  1561. {
  1562. _logger.LogError("Unable to locate item with Id {ID}.", info.ItemId.Value);
  1563. }
  1564. }
  1565. else if (!string.IsNullOrEmpty(info.Path))
  1566. {
  1567. try
  1568. {
  1569. // Try to resolve the path into a video
  1570. video = ResolvePath(_fileSystem.GetFileSystemInfo(info.Path)) as Video;
  1571. if (video is null)
  1572. {
  1573. _logger.LogError("Intro resolver returned null for {Path}.", info.Path);
  1574. }
  1575. else
  1576. {
  1577. // Pull the saved db item that will include metadata
  1578. var dbItem = GetItemById(video.Id) as Video;
  1579. if (dbItem is not null)
  1580. {
  1581. video = dbItem;
  1582. }
  1583. else
  1584. {
  1585. return null;
  1586. }
  1587. }
  1588. }
  1589. catch (Exception ex)
  1590. {
  1591. _logger.LogError(ex, "Error resolving path {Path}.", info.Path);
  1592. }
  1593. }
  1594. else
  1595. {
  1596. _logger.LogError("IntroProvider returned an IntroInfo with null Path and ItemId.");
  1597. }
  1598. return video;
  1599. }
  1600. /// <inheritdoc />
  1601. public IEnumerable<BaseItem> Sort(IEnumerable<BaseItem> items, User? user, IEnumerable<ItemSortBy> sortBy, SortOrder sortOrder)
  1602. {
  1603. IOrderedEnumerable<BaseItem>? orderedItems = null;
  1604. foreach (var orderBy in sortBy.Select(o => GetComparer(o, user)).Where(c => c is not null))
  1605. {
  1606. if (orderBy is RandomComparer)
  1607. {
  1608. var randomItems = items.ToArray();
  1609. Random.Shared.Shuffle(randomItems);
  1610. items = randomItems;
  1611. // Items are no longer ordered at this point, so set orderedItems back to null
  1612. orderedItems = null;
  1613. }
  1614. else if (orderedItems is null)
  1615. {
  1616. orderedItems = sortOrder == SortOrder.Descending
  1617. ? items.OrderByDescending(i => i, orderBy)
  1618. : items.OrderBy(i => i, orderBy);
  1619. }
  1620. else
  1621. {
  1622. orderedItems = sortOrder == SortOrder.Descending
  1623. ? orderedItems!.ThenByDescending(i => i, orderBy)
  1624. : orderedItems!.ThenBy(i => i, orderBy); // orderedItems is set during the first iteration
  1625. }
  1626. }
  1627. return orderedItems ?? items;
  1628. }
  1629. /// <inheritdoc />
  1630. public IEnumerable<BaseItem> Sort(IEnumerable<BaseItem> items, User? user, IEnumerable<(ItemSortBy OrderBy, SortOrder SortOrder)> orderBy)
  1631. {
  1632. IOrderedEnumerable<BaseItem>? orderedItems = null;
  1633. foreach (var (name, sortOrder) in orderBy)
  1634. {
  1635. var comparer = GetComparer(name, user);
  1636. if (comparer is null)
  1637. {
  1638. continue;
  1639. }
  1640. if (comparer is RandomComparer)
  1641. {
  1642. var randomItems = items.ToArray();
  1643. Random.Shared.Shuffle(randomItems);
  1644. items = randomItems;
  1645. // Items are no longer ordered at this point, so set orderedItems back to null
  1646. orderedItems = null;
  1647. }
  1648. else if (orderedItems is null)
  1649. {
  1650. orderedItems = sortOrder == SortOrder.Descending
  1651. ? items.OrderByDescending(i => i, comparer)
  1652. : items.OrderBy(i => i, comparer);
  1653. }
  1654. else
  1655. {
  1656. orderedItems = sortOrder == SortOrder.Descending
  1657. ? orderedItems!.ThenByDescending(i => i, comparer)
  1658. : orderedItems!.ThenBy(i => i, comparer); // orderedItems is set during the first iteration
  1659. }
  1660. }
  1661. return orderedItems ?? items;
  1662. }
  1663. /// <summary>
  1664. /// Gets the comparer.
  1665. /// </summary>
  1666. /// <param name="name">The name.</param>
  1667. /// <param name="user">The user.</param>
  1668. /// <returns>IBaseItemComparer.</returns>
  1669. private IBaseItemComparer? GetComparer(ItemSortBy name, User? user)
  1670. {
  1671. var comparer = Comparers.FirstOrDefault(c => name == c.Type);
  1672. // If it requires a user, create a new one, and assign the user
  1673. if (comparer is IUserBaseItemComparer)
  1674. {
  1675. var userComparer = (IUserBaseItemComparer)Activator.CreateInstance(comparer.GetType())!; // only null for Nullable<T> instances
  1676. userComparer.User = user;
  1677. userComparer.UserManager = _userManager;
  1678. userComparer.UserDataManager = _userDataManager;
  1679. return userComparer;
  1680. }
  1681. return comparer;
  1682. }
  1683. /// <inheritdoc />
  1684. public void CreateItem(BaseItem item, BaseItem? parent)
  1685. {
  1686. CreateItems([item], parent, CancellationToken.None);
  1687. }
  1688. /// <inheritdoc />
  1689. public void CreateItems(IReadOnlyList<BaseItem> items, BaseItem? parent, CancellationToken cancellationToken)
  1690. {
  1691. _itemRepository.SaveItems(items, cancellationToken);
  1692. foreach (var item in items)
  1693. {
  1694. RegisterItem(item);
  1695. }
  1696. if (ItemAdded is not null)
  1697. {
  1698. foreach (var item in items)
  1699. {
  1700. // With the live tv guide this just creates too much noise
  1701. if (item.SourceType != SourceType.Library)
  1702. {
  1703. continue;
  1704. }
  1705. try
  1706. {
  1707. ItemAdded(
  1708. this,
  1709. new ItemChangeEventArgs
  1710. {
  1711. Item = item,
  1712. Parent = parent ?? item.GetParent()
  1713. });
  1714. }
  1715. catch (Exception ex)
  1716. {
  1717. _logger.LogError(ex, "Error in ItemAdded event handler");
  1718. }
  1719. }
  1720. }
  1721. }
  1722. private bool ImageNeedsRefresh(ItemImageInfo image)
  1723. {
  1724. if (image.Path is not null && image.IsLocalFile)
  1725. {
  1726. if (image.Width == 0 || image.Height == 0 || string.IsNullOrEmpty(image.BlurHash))
  1727. {
  1728. return true;
  1729. }
  1730. try
  1731. {
  1732. return image.DateModified.Subtract(_fileSystem.GetLastWriteTimeUtc(image.Path)).Duration().TotalSeconds > 1;
  1733. }
  1734. catch (Exception ex)
  1735. {
  1736. _logger.LogError(ex, "Cannot get file info for {0}", image.Path);
  1737. return false;
  1738. }
  1739. }
  1740. return image.Path is not null && !image.IsLocalFile;
  1741. }
  1742. /// <inheritdoc />
  1743. public async Task UpdateImagesAsync(BaseItem item, bool forceUpdate = false)
  1744. {
  1745. ArgumentNullException.ThrowIfNull(item);
  1746. var outdated = forceUpdate
  1747. ? item.ImageInfos.Where(i => i.Path is not null).ToArray()
  1748. : item.ImageInfos.Where(ImageNeedsRefresh).ToArray();
  1749. // Skip image processing if current or live tv source
  1750. if (outdated.Length == 0 || item.SourceType != SourceType.Library)
  1751. {
  1752. RegisterItem(item);
  1753. return;
  1754. }
  1755. foreach (var img in outdated)
  1756. {
  1757. var image = img;
  1758. if (!img.IsLocalFile)
  1759. {
  1760. try
  1761. {
  1762. var index = item.GetImageIndex(img);
  1763. image = await ConvertImageToLocal(item, img, index, true).ConfigureAwait(false);
  1764. }
  1765. catch (ArgumentException)
  1766. {
  1767. _logger.LogWarning("Cannot get image index for {ImagePath}", img.Path);
  1768. continue;
  1769. }
  1770. catch (Exception ex) when (ex is InvalidOperationException or IOException)
  1771. {
  1772. _logger.LogWarning(ex, "Cannot fetch image from {ImagePath}", img.Path);
  1773. continue;
  1774. }
  1775. catch (HttpRequestException ex)
  1776. {
  1777. _logger.LogWarning(ex, "Cannot fetch image from {ImagePath}. Http status code: {HttpStatus}", img.Path, ex.StatusCode);
  1778. continue;
  1779. }
  1780. }
  1781. if (!File.Exists(image.Path))
  1782. {
  1783. _logger.LogWarning("Image not found at {ImagePath}", image.Path);
  1784. continue;
  1785. }
  1786. ImageDimensions size;
  1787. try
  1788. {
  1789. size = _imageProcessor.GetImageDimensions(item, image);
  1790. image.Width = size.Width;
  1791. image.Height = size.Height;
  1792. }
  1793. catch (Exception ex)
  1794. {
  1795. _logger.LogError(ex, "Cannot get image dimensions for {ImagePath}", image.Path);
  1796. size = default;
  1797. image.Width = 0;
  1798. image.Height = 0;
  1799. }
  1800. try
  1801. {
  1802. var blurhash = _imageProcessor.GetImageBlurHash(image.Path, size);
  1803. image.BlurHash = blurhash;
  1804. }
  1805. catch (Exception ex)
  1806. {
  1807. _logger.LogError(ex, "Cannot compute blurhash for {ImagePath}", image.Path);
  1808. image.BlurHash = string.Empty;
  1809. }
  1810. try
  1811. {
  1812. var modifiedDate = _fileSystem.GetLastWriteTimeUtc(image.Path);
  1813. image.DateModified = modifiedDate;
  1814. }
  1815. catch (Exception ex)
  1816. {
  1817. _logger.LogError(ex, "Cannot update DateModified for {ImagePath}", image.Path);
  1818. }
  1819. }
  1820. item.ValidateImages();
  1821. _itemRepository.SaveImages(item);
  1822. RegisterItem(item);
  1823. }
  1824. /// <inheritdoc />
  1825. public async Task UpdateItemsAsync(IReadOnlyList<BaseItem> items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken)
  1826. {
  1827. foreach (var item in items)
  1828. {
  1829. item.DateLastSaved = DateTime.UtcNow;
  1830. await RunMetadataSavers(item, updateReason).ConfigureAwait(false);
  1831. // Modify again, so saved value is after write time of externally saved metadata
  1832. item.DateLastSaved = DateTime.UtcNow;
  1833. }
  1834. _itemRepository.SaveItems(items, cancellationToken);
  1835. if (ItemUpdated is not null)
  1836. {
  1837. foreach (var item in items)
  1838. {
  1839. // With the live tv guide this just creates too much noise
  1840. if (item.SourceType != SourceType.Library)
  1841. {
  1842. continue;
  1843. }
  1844. try
  1845. {
  1846. ItemUpdated(
  1847. this,
  1848. new ItemChangeEventArgs
  1849. {
  1850. Item = item,
  1851. Parent = parent,
  1852. UpdateReason = updateReason
  1853. });
  1854. }
  1855. catch (Exception ex)
  1856. {
  1857. _logger.LogError(ex, "Error in ItemUpdated event handler");
  1858. }
  1859. }
  1860. }
  1861. }
  1862. /// <inheritdoc />
  1863. public Task UpdateItemAsync(BaseItem item, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken)
  1864. => UpdateItemsAsync([item], parent, updateReason, cancellationToken);
  1865. public async Task RunMetadataSavers(BaseItem item, ItemUpdateType updateReason)
  1866. {
  1867. if (item.IsFileProtocol)
  1868. {
  1869. await ProviderManager.SaveMetadataAsync(item, updateReason).ConfigureAwait(false);
  1870. }
  1871. await UpdateImagesAsync(item, updateReason >= ItemUpdateType.ImageUpdate).ConfigureAwait(false);
  1872. }
  1873. /// <summary>
  1874. /// Reports the item removed.
  1875. /// </summary>
  1876. /// <param name="item">The item.</param>
  1877. /// <param name="parent">The parent item.</param>
  1878. public void ReportItemRemoved(BaseItem item, BaseItem parent)
  1879. {
  1880. if (ItemRemoved is not null)
  1881. {
  1882. try
  1883. {
  1884. ItemRemoved(
  1885. this,
  1886. new ItemChangeEventArgs
  1887. {
  1888. Item = item,
  1889. Parent = parent
  1890. });
  1891. }
  1892. catch (Exception ex)
  1893. {
  1894. _logger.LogError(ex, "Error in ItemRemoved event handler");
  1895. }
  1896. }
  1897. }
  1898. /// <summary>
  1899. /// Retrieves the item.
  1900. /// </summary>
  1901. /// <param name="id">The id.</param>
  1902. /// <returns>BaseItem.</returns>
  1903. public BaseItem RetrieveItem(Guid id)
  1904. {
  1905. return _itemRepository.RetrieveItem(id);
  1906. }
  1907. public List<Folder> GetCollectionFolders(BaseItem item)
  1908. {
  1909. return GetCollectionFolders(item, GetUserRootFolder().Children.OfType<Folder>());
  1910. }
  1911. public List<Folder> GetCollectionFolders(BaseItem item, IEnumerable<Folder> allUserRootChildren)
  1912. {
  1913. while (item is not null)
  1914. {
  1915. var parent = item.GetParent();
  1916. if (parent is AggregateFolder)
  1917. {
  1918. break;
  1919. }
  1920. if (parent is null)
  1921. {
  1922. var owner = item.GetOwner();
  1923. if (owner is null)
  1924. {
  1925. break;
  1926. }
  1927. item = owner;
  1928. }
  1929. else
  1930. {
  1931. item = parent;
  1932. }
  1933. }
  1934. if (item is null)
  1935. {
  1936. return new List<Folder>();
  1937. }
  1938. return GetCollectionFoldersInternal(item, allUserRootChildren);
  1939. }
  1940. private static List<Folder> GetCollectionFoldersInternal(BaseItem item, IEnumerable<Folder> allUserRootChildren)
  1941. {
  1942. return allUserRootChildren
  1943. .Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations.Contains(item.Path.AsSpan(), StringComparison.OrdinalIgnoreCase))
  1944. .ToList();
  1945. }
  1946. public LibraryOptions GetLibraryOptions(BaseItem item)
  1947. {
  1948. if (item is CollectionFolder collectionFolder)
  1949. {
  1950. return collectionFolder.GetLibraryOptions();
  1951. }
  1952. // List.Find is more performant than FirstOrDefault due to enumerator allocation
  1953. return GetCollectionFolders(item)
  1954. .Find(folder => folder is CollectionFolder) is CollectionFolder collectionFolder2
  1955. ? collectionFolder2.GetLibraryOptions()
  1956. : new LibraryOptions();
  1957. }
  1958. public CollectionType? GetContentType(BaseItem item)
  1959. {
  1960. var configuredContentType = GetConfiguredContentType(item, false);
  1961. if (configuredContentType is not null)
  1962. {
  1963. return configuredContentType;
  1964. }
  1965. configuredContentType = GetConfiguredContentType(item, true);
  1966. if (configuredContentType is not null)
  1967. {
  1968. return configuredContentType;
  1969. }
  1970. return GetInheritedContentType(item);
  1971. }
  1972. public CollectionType? GetInheritedContentType(BaseItem item)
  1973. {
  1974. var type = GetTopFolderContentType(item);
  1975. if (type is not null)
  1976. {
  1977. return type;
  1978. }
  1979. return item.GetParents()
  1980. .Select(GetConfiguredContentType)
  1981. .LastOrDefault(i => i is not null);
  1982. }
  1983. public CollectionType? GetConfiguredContentType(BaseItem item)
  1984. {
  1985. return GetConfiguredContentType(item, false);
  1986. }
  1987. public CollectionType? GetConfiguredContentType(string path)
  1988. {
  1989. return GetContentTypeOverride(path, false);
  1990. }
  1991. public CollectionType? GetConfiguredContentType(BaseItem item, bool inheritConfiguredPath)
  1992. {
  1993. if (item is ICollectionFolder collectionFolder)
  1994. {
  1995. return collectionFolder.CollectionType;
  1996. }
  1997. return GetContentTypeOverride(item.ContainingFolderPath, inheritConfiguredPath);
  1998. }
  1999. private CollectionType? GetContentTypeOverride(string path, bool inherit)
  2000. {
  2001. var nameValuePair = _configurationManager.Configuration.ContentTypes
  2002. .FirstOrDefault(i => _fileSystem.AreEqual(i.Name, path)
  2003. || (inherit && !string.IsNullOrEmpty(i.Name)
  2004. && _fileSystem.ContainsSubPath(i.Name, path)));
  2005. if (Enum.TryParse<CollectionType>(nameValuePair?.Value, out var collectionType))
  2006. {
  2007. return collectionType;
  2008. }
  2009. return null;
  2010. }
  2011. private CollectionType? GetTopFolderContentType(BaseItem item)
  2012. {
  2013. if (item is null)
  2014. {
  2015. return null;
  2016. }
  2017. while (!item.ParentId.IsEmpty())
  2018. {
  2019. var parent = item.GetParent();
  2020. if (parent is null || parent is AggregateFolder)
  2021. {
  2022. break;
  2023. }
  2024. item = parent;
  2025. }
  2026. return GetUserRootFolder().Children
  2027. .OfType<ICollectionFolder>()
  2028. .Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations.Contains(item.Path))
  2029. .Select(i => i.CollectionType)
  2030. .FirstOrDefault(i => i is not null);
  2031. }
  2032. public UserView GetNamedView(
  2033. User user,
  2034. string name,
  2035. CollectionType? viewType,
  2036. string sortName)
  2037. {
  2038. return GetNamedView(user, name, Guid.Empty, viewType, sortName);
  2039. }
  2040. public UserView GetNamedView(
  2041. string name,
  2042. CollectionType viewType,
  2043. string sortName)
  2044. {
  2045. var path = Path.Combine(
  2046. _configurationManager.ApplicationPaths.InternalMetadataPath,
  2047. "views",
  2048. _fileSystem.GetValidFilename(viewType.ToString()));
  2049. var id = GetNewItemId(path + "_namedview_" + name, typeof(UserView));
  2050. var item = GetItemById(id) as UserView;
  2051. var refresh = false;
  2052. if (item is null || !string.Equals(item.Path, path, StringComparison.OrdinalIgnoreCase))
  2053. {
  2054. var info = Directory.CreateDirectory(path);
  2055. item = new UserView
  2056. {
  2057. Path = path,
  2058. Id = id,
  2059. DateCreated = info.CreationTimeUtc,
  2060. DateModified = info.LastWriteTimeUtc,
  2061. Name = name,
  2062. ViewType = viewType,
  2063. ForcedSortName = sortName
  2064. };
  2065. CreateItem(item, null);
  2066. refresh = true;
  2067. }
  2068. if (refresh)
  2069. {
  2070. item.UpdateToRepositoryAsync(ItemUpdateType.MetadataImport, CancellationToken.None).GetAwaiter().GetResult();
  2071. ProviderManager.QueueRefresh(item.Id, new MetadataRefreshOptions(new DirectoryService(_fileSystem)), RefreshPriority.Normal);
  2072. }
  2073. return item;
  2074. }
  2075. public UserView GetNamedView(
  2076. User user,
  2077. string name,
  2078. Guid parentId,
  2079. CollectionType? viewType,
  2080. string sortName)
  2081. {
  2082. var parentIdString = parentId.IsEmpty()
  2083. ? null
  2084. : parentId.ToString("N", CultureInfo.InvariantCulture);
  2085. var idValues = "38_namedview_" + name + user.Id.ToString("N", CultureInfo.InvariantCulture) + (parentIdString ?? string.Empty) + (viewType?.ToString() ?? string.Empty);
  2086. var id = GetNewItemId(idValues, typeof(UserView));
  2087. var path = Path.Combine(_configurationManager.ApplicationPaths.InternalMetadataPath, "views", id.ToString("N", CultureInfo.InvariantCulture));
  2088. var item = GetItemById(id) as UserView;
  2089. var isNew = false;
  2090. if (item is null)
  2091. {
  2092. var info = Directory.CreateDirectory(path);
  2093. item = new UserView
  2094. {
  2095. Path = path,
  2096. Id = id,
  2097. DateCreated = info.CreationTimeUtc,
  2098. DateModified = info.LastWriteTimeUtc,
  2099. Name = name,
  2100. ViewType = viewType,
  2101. ForcedSortName = sortName,
  2102. UserId = user.Id,
  2103. DisplayParentId = parentId
  2104. };
  2105. CreateItem(item, null);
  2106. isNew = true;
  2107. }
  2108. var lastRefreshedUtc = item.DateLastRefreshed;
  2109. var refresh = isNew || DateTime.UtcNow - lastRefreshedUtc >= _viewRefreshInterval;
  2110. if (!refresh && !item.DisplayParentId.IsEmpty())
  2111. {
  2112. var displayParent = GetItemById(item.DisplayParentId);
  2113. refresh = displayParent is not null && displayParent.DateLastSaved > lastRefreshedUtc;
  2114. }
  2115. if (refresh)
  2116. {
  2117. ProviderManager.QueueRefresh(
  2118. item.Id,
  2119. new MetadataRefreshOptions(new DirectoryService(_fileSystem))
  2120. {
  2121. // Need to force save to increment DateLastSaved
  2122. ForceSave = true
  2123. },
  2124. RefreshPriority.Normal);
  2125. }
  2126. return item;
  2127. }
  2128. public UserView GetShadowView(
  2129. BaseItem parent,
  2130. CollectionType? viewType,
  2131. string sortName)
  2132. {
  2133. ArgumentNullException.ThrowIfNull(parent);
  2134. var name = parent.Name;
  2135. var parentId = parent.Id;
  2136. var idValues = "38_namedview_" + name + parentId + (viewType?.ToString() ?? string.Empty);
  2137. var id = GetNewItemId(idValues, typeof(UserView));
  2138. var path = parent.Path;
  2139. var item = GetItemById(id) as UserView;
  2140. var isNew = false;
  2141. if (item is null)
  2142. {
  2143. var info = Directory.CreateDirectory(path);
  2144. item = new UserView
  2145. {
  2146. Path = path,
  2147. Id = id,
  2148. DateCreated = info.CreationTimeUtc,
  2149. DateModified = info.LastWriteTimeUtc,
  2150. Name = name,
  2151. ViewType = viewType,
  2152. ForcedSortName = sortName,
  2153. DisplayParentId = parentId
  2154. };
  2155. CreateItem(item, null);
  2156. isNew = true;
  2157. }
  2158. var lastRefreshedUtc = item.DateLastRefreshed;
  2159. var refresh = isNew || DateTime.UtcNow - lastRefreshedUtc >= _viewRefreshInterval;
  2160. if (!refresh && !item.DisplayParentId.IsEmpty())
  2161. {
  2162. var displayParent = GetItemById(item.DisplayParentId);
  2163. refresh = displayParent is not null && displayParent.DateLastSaved > lastRefreshedUtc;
  2164. }
  2165. if (refresh)
  2166. {
  2167. ProviderManager.QueueRefresh(
  2168. item.Id,
  2169. new MetadataRefreshOptions(new DirectoryService(_fileSystem))
  2170. {
  2171. // Need to force save to increment DateLastSaved
  2172. ForceSave = true
  2173. },
  2174. RefreshPriority.Normal);
  2175. }
  2176. return item;
  2177. }
  2178. public UserView GetNamedView(
  2179. string name,
  2180. Guid parentId,
  2181. CollectionType? viewType,
  2182. string sortName,
  2183. string uniqueId)
  2184. {
  2185. ArgumentException.ThrowIfNullOrEmpty(name);
  2186. var parentIdString = parentId.IsEmpty()
  2187. ? null
  2188. : parentId.ToString("N", CultureInfo.InvariantCulture);
  2189. var idValues = "37_namedview_" + name + (parentIdString ?? string.Empty) + (viewType?.ToString() ?? string.Empty);
  2190. if (!string.IsNullOrEmpty(uniqueId))
  2191. {
  2192. idValues += uniqueId;
  2193. }
  2194. var id = GetNewItemId(idValues, typeof(UserView));
  2195. var path = Path.Combine(_configurationManager.ApplicationPaths.InternalMetadataPath, "views", id.ToString("N", CultureInfo.InvariantCulture));
  2196. var item = GetItemById(id) as UserView;
  2197. var isNew = false;
  2198. if (item is null)
  2199. {
  2200. var info = Directory.CreateDirectory(path);
  2201. item = new UserView
  2202. {
  2203. Path = path,
  2204. Id = id,
  2205. DateCreated = info.CreationTimeUtc,
  2206. DateModified = info.LastWriteTimeUtc,
  2207. Name = name,
  2208. ViewType = viewType,
  2209. ForcedSortName = sortName,
  2210. DisplayParentId = parentId
  2211. };
  2212. CreateItem(item, null);
  2213. isNew = true;
  2214. }
  2215. if (viewType != item.ViewType)
  2216. {
  2217. item.ViewType = viewType;
  2218. item.UpdateToRepositoryAsync(ItemUpdateType.MetadataEdit, CancellationToken.None).GetAwaiter().GetResult();
  2219. }
  2220. var lastRefreshedUtc = item.DateLastRefreshed;
  2221. var refresh = isNew || DateTime.UtcNow - lastRefreshedUtc >= _viewRefreshInterval;
  2222. if (!refresh && !item.DisplayParentId.IsEmpty())
  2223. {
  2224. var displayParent = GetItemById(item.DisplayParentId);
  2225. refresh = displayParent is not null && displayParent.DateLastSaved > lastRefreshedUtc;
  2226. }
  2227. if (refresh)
  2228. {
  2229. ProviderManager.QueueRefresh(
  2230. item.Id,
  2231. new MetadataRefreshOptions(new DirectoryService(_fileSystem))
  2232. {
  2233. // Need to force save to increment DateLastSaved
  2234. ForceSave = true
  2235. },
  2236. RefreshPriority.Normal);
  2237. }
  2238. return item;
  2239. }
  2240. public BaseItem GetParentItem(Guid? parentId, Guid? userId)
  2241. {
  2242. if (parentId.HasValue)
  2243. {
  2244. return GetItemById(parentId.Value) ?? throw new ArgumentException($"Invalid parent id: {parentId.Value}");
  2245. }
  2246. if (!userId.IsNullOrEmpty())
  2247. {
  2248. return GetUserRootFolder();
  2249. }
  2250. return RootFolder;
  2251. }
  2252. /// <inheritdoc />
  2253. public void QueueLibraryScan()
  2254. {
  2255. _taskManager.QueueScheduledTask<RefreshMediaLibraryTask>();
  2256. }
  2257. /// <inheritdoc />
  2258. public int? GetSeasonNumberFromPath(string path, Guid? parentId)
  2259. {
  2260. var parentPath = parentId.HasValue ? GetItemById(parentId.Value)?.ContainingFolderPath : null;
  2261. return SeasonPathParser.Parse(path, parentPath, true, true).SeasonNumber;
  2262. }
  2263. /// <inheritdoc />
  2264. public bool FillMissingEpisodeNumbersFromPath(Episode episode, bool forceRefresh)
  2265. {
  2266. var series = episode.Series;
  2267. bool? isAbsoluteNaming = series is not null && string.Equals(series.DisplayOrder, "absolute", StringComparison.OrdinalIgnoreCase);
  2268. if (!isAbsoluteNaming.Value)
  2269. {
  2270. // In other words, no filter applied
  2271. isAbsoluteNaming = null;
  2272. }
  2273. var resolver = new EpisodeResolver(_namingOptions);
  2274. var isFolder = episode.VideoType == VideoType.BluRay || episode.VideoType == VideoType.Dvd;
  2275. EpisodeInfo? episodeInfo = null;
  2276. if (episode.IsFileProtocol)
  2277. {
  2278. episodeInfo = resolver.Resolve(episode.Path, isFolder, null, null, isAbsoluteNaming);
  2279. // Resolve from parent folder if it's not the Season folder
  2280. var parent = episode.GetParent();
  2281. if (episodeInfo is null && parent.GetType() == typeof(Folder))
  2282. {
  2283. episodeInfo = resolver.Resolve(parent.Path, true, null, null, isAbsoluteNaming);
  2284. if (episodeInfo is not null)
  2285. {
  2286. // add the container
  2287. episodeInfo.Container = Path.GetExtension(episode.Path)?.TrimStart('.');
  2288. }
  2289. }
  2290. }
  2291. var changed = false;
  2292. if (episodeInfo is null)
  2293. {
  2294. return changed;
  2295. }
  2296. if (episodeInfo.IsByDate)
  2297. {
  2298. if (episode.IndexNumber.HasValue)
  2299. {
  2300. episode.IndexNumber = null;
  2301. changed = true;
  2302. }
  2303. if (episode.IndexNumberEnd.HasValue)
  2304. {
  2305. episode.IndexNumberEnd = null;
  2306. changed = true;
  2307. }
  2308. if (!episode.PremiereDate.HasValue)
  2309. {
  2310. if (episodeInfo.Year.HasValue && episodeInfo.Month.HasValue && episodeInfo.Day.HasValue)
  2311. {
  2312. episode.PremiereDate = new DateTime(episodeInfo.Year.Value, episodeInfo.Month.Value, episodeInfo.Day.Value).ToUniversalTime();
  2313. }
  2314. if (episode.PremiereDate.HasValue)
  2315. {
  2316. changed = true;
  2317. }
  2318. }
  2319. if (!episode.ProductionYear.HasValue)
  2320. {
  2321. episode.ProductionYear = episodeInfo.Year;
  2322. if (episode.ProductionYear.HasValue)
  2323. {
  2324. changed = true;
  2325. }
  2326. }
  2327. }
  2328. else
  2329. {
  2330. if (!episode.IndexNumber.HasValue || forceRefresh)
  2331. {
  2332. if (episode.IndexNumber != episodeInfo.EpisodeNumber)
  2333. {
  2334. changed = true;
  2335. }
  2336. episode.IndexNumber = episodeInfo.EpisodeNumber;
  2337. }
  2338. if (!episode.IndexNumberEnd.HasValue || forceRefresh)
  2339. {
  2340. if (episode.IndexNumberEnd != episodeInfo.EndingEpisodeNumber)
  2341. {
  2342. changed = true;
  2343. }
  2344. episode.IndexNumberEnd = episodeInfo.EndingEpisodeNumber;
  2345. }
  2346. if (!episode.ParentIndexNumber.HasValue || forceRefresh)
  2347. {
  2348. if (episode.ParentIndexNumber != episodeInfo.SeasonNumber)
  2349. {
  2350. changed = true;
  2351. }
  2352. episode.ParentIndexNumber = episodeInfo.SeasonNumber;
  2353. }
  2354. }
  2355. if (!episode.ParentIndexNumber.HasValue)
  2356. {
  2357. var season = episode.Season;
  2358. if (season is not null)
  2359. {
  2360. episode.ParentIndexNumber = season.IndexNumber;
  2361. }
  2362. if (episode.ParentIndexNumber.HasValue)
  2363. {
  2364. changed = true;
  2365. }
  2366. }
  2367. return changed;
  2368. }
  2369. public ItemLookupInfo ParseName(string name)
  2370. {
  2371. var namingOptions = _namingOptions;
  2372. var result = VideoResolver.CleanDateTime(name, namingOptions);
  2373. return new ItemLookupInfo
  2374. {
  2375. Name = VideoResolver.TryCleanString(result.Name, namingOptions, out var newName) ? newName : result.Name,
  2376. Year = result.Year
  2377. };
  2378. }
  2379. public IEnumerable<BaseItem> FindExtras(BaseItem owner, IReadOnlyList<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
  2380. {
  2381. // Apply .ignore rules
  2382. var filtered = fileSystemChildren.Where(c => !DotIgnoreIgnoreRule.IsIgnored(c, owner)).ToList();
  2383. var ownerVideoInfo = VideoResolver.Resolve(owner.Path, owner.IsFolder, _namingOptions, libraryRoot: owner.ContainingFolderPath);
  2384. if (ownerVideoInfo is null)
  2385. {
  2386. yield break;
  2387. }
  2388. var count = filtered.Count;
  2389. for (var i = 0; i < count; i++)
  2390. {
  2391. var current = filtered[i];
  2392. if (current.IsDirectory && _namingOptions.AllExtrasTypesFolderNames.ContainsKey(current.Name))
  2393. {
  2394. var filesInSubFolder = _fileSystem.GetFiles(current.FullName, null, false, false);
  2395. var filesInSubFolderList = filesInSubFolder.ToList();
  2396. bool subFolderIsMixedFolder = filesInSubFolderList.Count > 1;
  2397. foreach (var file in filesInSubFolderList)
  2398. {
  2399. if (!_extraResolver.TryGetExtraTypeForOwner(file.FullName, ownerVideoInfo, out var extraType))
  2400. {
  2401. continue;
  2402. }
  2403. var extra = GetExtra(file, extraType.Value, subFolderIsMixedFolder);
  2404. if (extra is not null)
  2405. {
  2406. yield return extra;
  2407. }
  2408. }
  2409. }
  2410. else if (!current.IsDirectory && _extraResolver.TryGetExtraTypeForOwner(current.FullName, ownerVideoInfo, out var extraType))
  2411. {
  2412. var extra = GetExtra(current, extraType.Value, false);
  2413. if (extra is not null)
  2414. {
  2415. yield return extra;
  2416. }
  2417. }
  2418. }
  2419. BaseItem? GetExtra(FileSystemMetadata file, ExtraType extraType, bool isInMixedFolder)
  2420. {
  2421. var extra = ResolvePath(_fileSystem.GetFileInfo(file.FullName), directoryService, _extraResolver.GetResolversForExtraType(extraType));
  2422. if (extra is not Video && extra is not Audio)
  2423. {
  2424. return null;
  2425. }
  2426. // Try to retrieve it from the db. If we don't find it, use the resolved version
  2427. var itemById = GetItemById(extra.Id);
  2428. if (itemById is not null)
  2429. {
  2430. extra = itemById;
  2431. }
  2432. // Only update extra type if it is more specific then the currently known extra type
  2433. if (extra.ExtraType is null or ExtraType.Unknown || extraType != ExtraType.Unknown)
  2434. {
  2435. extra.ExtraType = extraType;
  2436. }
  2437. extra.ParentId = Guid.Empty;
  2438. extra.OwnerId = owner.Id;
  2439. extra.IsInMixedFolder = isInMixedFolder;
  2440. return extra;
  2441. }
  2442. }
  2443. public string GetPathAfterNetworkSubstitution(string path, BaseItem? ownerItem)
  2444. {
  2445. foreach (var map in _configurationManager.Configuration.PathSubstitutions)
  2446. {
  2447. if (path.TryReplaceSubPath(map.From, map.To, out var newPath))
  2448. {
  2449. return newPath;
  2450. }
  2451. }
  2452. return path;
  2453. }
  2454. public IReadOnlyList<PersonInfo> GetPeople(InternalPeopleQuery query)
  2455. {
  2456. return _peopleRepository.GetPeople(query);
  2457. }
  2458. public IReadOnlyList<PersonInfo> GetPeople(BaseItem item)
  2459. {
  2460. if (item.SupportsPeople)
  2461. {
  2462. var people = GetPeople(new InternalPeopleQuery
  2463. {
  2464. ItemId = item.Id
  2465. });
  2466. if (people.Count > 0)
  2467. {
  2468. return people;
  2469. }
  2470. }
  2471. return [];
  2472. }
  2473. public IReadOnlyList<Person> GetPeopleItems(InternalPeopleQuery query)
  2474. {
  2475. return _peopleRepository.GetPeopleNames(query)
  2476. .Select(i =>
  2477. {
  2478. try
  2479. {
  2480. return GetPerson(i);
  2481. }
  2482. catch (Exception ex)
  2483. {
  2484. _logger.LogError(ex, "Error getting person");
  2485. return null;
  2486. }
  2487. })
  2488. .Where(i => i is not null)
  2489. .Where(i => query.User is null || i!.IsVisible(query.User))
  2490. .ToList()!; // null values are filtered out
  2491. }
  2492. public IReadOnlyList<string> GetPeopleNames(InternalPeopleQuery query)
  2493. {
  2494. return _peopleRepository.GetPeopleNames(query);
  2495. }
  2496. public void UpdatePeople(BaseItem item, List<PersonInfo> people)
  2497. {
  2498. UpdatePeopleAsync(item, people, CancellationToken.None).GetAwaiter().GetResult();
  2499. }
  2500. /// <inheritdoc />
  2501. public async Task UpdatePeopleAsync(BaseItem item, IReadOnlyList<PersonInfo> people, CancellationToken cancellationToken)
  2502. {
  2503. if (!item.SupportsPeople)
  2504. {
  2505. return;
  2506. }
  2507. if (people is not null)
  2508. {
  2509. people = people.Where(e => e is not null).ToArray();
  2510. _peopleRepository.UpdatePeople(item.Id, people);
  2511. await SavePeopleMetadataAsync(people, cancellationToken).ConfigureAwait(false);
  2512. }
  2513. }
  2514. public async Task<ItemImageInfo> ConvertImageToLocal(BaseItem item, ItemImageInfo image, int imageIndex, bool removeOnFailure)
  2515. {
  2516. foreach (var url in image.Path.Split('|'))
  2517. {
  2518. try
  2519. {
  2520. _logger.LogDebug("ConvertImageToLocal item {0} - image url: {1}", item.Id, url);
  2521. await ProviderManager.SaveImage(item, url, image.Type, imageIndex, CancellationToken.None).ConfigureAwait(false);
  2522. await item.UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(false);
  2523. return item.GetImageInfo(image.Type, imageIndex);
  2524. }
  2525. catch (HttpRequestException ex)
  2526. {
  2527. if (ex.StatusCode.HasValue
  2528. && (ex.StatusCode.Value == HttpStatusCode.NotFound || ex.StatusCode.Value == HttpStatusCode.Forbidden))
  2529. {
  2530. _logger.LogDebug(ex, "Error downloading image {Url}", url);
  2531. continue;
  2532. }
  2533. throw;
  2534. }
  2535. }
  2536. if (removeOnFailure)
  2537. {
  2538. // Remove this image to prevent it from retrying over and over
  2539. item.RemoveImage(image);
  2540. await item.UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(false);
  2541. }
  2542. throw new InvalidOperationException("Unable to convert any images to local");
  2543. }
  2544. public async Task AddVirtualFolder(string name, CollectionTypeOptions? collectionType, LibraryOptions options, bool refreshLibrary)
  2545. {
  2546. if (string.IsNullOrWhiteSpace(name))
  2547. {
  2548. throw new ArgumentNullException(nameof(name));
  2549. }
  2550. name = _fileSystem.GetValidFilename(name.Trim());
  2551. var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath;
  2552. var existingNameCount = 1; // first numbered name will be 2
  2553. var virtualFolderPath = Path.Combine(rootFolderPath, name);
  2554. var originalName = name;
  2555. while (Directory.Exists(virtualFolderPath))
  2556. {
  2557. existingNameCount++;
  2558. name = originalName + existingNameCount;
  2559. virtualFolderPath = Path.Combine(rootFolderPath, name);
  2560. }
  2561. var mediaPathInfos = options.PathInfos;
  2562. if (mediaPathInfos is not null)
  2563. {
  2564. var invalidpath = mediaPathInfos.FirstOrDefault(i => !Directory.Exists(i.Path));
  2565. if (invalidpath is not null)
  2566. {
  2567. throw new ArgumentException("The specified path does not exist: " + invalidpath.Path + ".");
  2568. }
  2569. }
  2570. LibraryMonitor.Stop();
  2571. try
  2572. {
  2573. Directory.CreateDirectory(virtualFolderPath);
  2574. if (collectionType is not null)
  2575. {
  2576. var path = Path.Combine(virtualFolderPath, collectionType.ToString()!.ToLowerInvariant() + ".collection"); // Can't be null with legal values?
  2577. FileHelper.CreateEmpty(path);
  2578. }
  2579. CollectionFolder.SaveLibraryOptions(virtualFolderPath, options);
  2580. if (mediaPathInfos is not null)
  2581. {
  2582. foreach (var path in mediaPathInfos)
  2583. {
  2584. AddMediaPathInternal(name, path, false);
  2585. }
  2586. }
  2587. }
  2588. finally
  2589. {
  2590. await ValidateTopLibraryFolders(CancellationToken.None).ConfigureAwait(false);
  2591. if (refreshLibrary)
  2592. {
  2593. StartScanInBackground();
  2594. }
  2595. else
  2596. {
  2597. // Need to add a delay here or directory watchers may still pick up the changes
  2598. await Task.Delay(1000).ConfigureAwait(false);
  2599. LibraryMonitor.Start();
  2600. }
  2601. }
  2602. }
  2603. private async Task SavePeopleMetadataAsync(IEnumerable<PersonInfo> people, CancellationToken cancellationToken)
  2604. {
  2605. foreach (var person in people)
  2606. {
  2607. cancellationToken.ThrowIfCancellationRequested();
  2608. var itemUpdateType = ItemUpdateType.MetadataDownload;
  2609. var saveEntity = false;
  2610. var createEntity = false;
  2611. var personEntity = GetPerson(person.Name);
  2612. if (personEntity is null)
  2613. {
  2614. try
  2615. {
  2616. var path = Person.GetPath(person.Name);
  2617. var info = Directory.CreateDirectory(path);
  2618. personEntity = new Person()
  2619. {
  2620. Name = person.Name,
  2621. Id = GetItemByNameId<Person>(path),
  2622. DateCreated = info.CreationTimeUtc,
  2623. DateModified = info.LastWriteTimeUtc,
  2624. Path = path
  2625. };
  2626. personEntity.PresentationUniqueKey = personEntity.CreatePresentationUniqueKey();
  2627. saveEntity = true;
  2628. createEntity = true;
  2629. }
  2630. catch (Exception ex)
  2631. {
  2632. _logger.LogWarning(ex, "Failed to create person {Name}", person.Name);
  2633. continue;
  2634. }
  2635. }
  2636. foreach (var id in person.ProviderIds)
  2637. {
  2638. if (!string.Equals(personEntity.GetProviderId(id.Key), id.Value, StringComparison.OrdinalIgnoreCase))
  2639. {
  2640. personEntity.SetProviderId(id.Key, id.Value);
  2641. saveEntity = true;
  2642. }
  2643. }
  2644. if (!string.IsNullOrWhiteSpace(person.ImageUrl) && !personEntity.HasImage(ImageType.Primary))
  2645. {
  2646. personEntity.SetImage(
  2647. new ItemImageInfo
  2648. {
  2649. Path = person.ImageUrl,
  2650. Type = ImageType.Primary
  2651. },
  2652. 0);
  2653. saveEntity = true;
  2654. itemUpdateType = ItemUpdateType.ImageUpdate;
  2655. }
  2656. if (saveEntity)
  2657. {
  2658. if (createEntity)
  2659. {
  2660. CreateItems([personEntity], null, CancellationToken.None);
  2661. }
  2662. await RunMetadataSavers(personEntity, itemUpdateType).ConfigureAwait(false);
  2663. personEntity.DateLastSaved = DateTime.UtcNow;
  2664. CreateItems([personEntity], null, CancellationToken.None);
  2665. }
  2666. }
  2667. }
  2668. private void StartScanInBackground()
  2669. {
  2670. Task.Run(() =>
  2671. {
  2672. // No need to start if scanning the library because it will handle it
  2673. ValidateMediaLibrary(new Progress<double>(), CancellationToken.None);
  2674. });
  2675. }
  2676. public void AddMediaPath(string virtualFolderName, MediaPathInfo mediaPath)
  2677. {
  2678. AddMediaPathInternal(virtualFolderName, mediaPath, true);
  2679. }
  2680. private void AddMediaPathInternal(string virtualFolderName, MediaPathInfo pathInfo, bool saveLibraryOptions)
  2681. {
  2682. ArgumentNullException.ThrowIfNull(pathInfo);
  2683. var path = pathInfo.Path;
  2684. if (string.IsNullOrWhiteSpace(path))
  2685. {
  2686. throw new ArgumentException(nameof(path));
  2687. }
  2688. if (!Directory.Exists(path))
  2689. {
  2690. throw new FileNotFoundException("The path does not exist.");
  2691. }
  2692. var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath;
  2693. var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName);
  2694. var shortcutFilename = Path.GetFileNameWithoutExtension(path);
  2695. var lnk = Path.Combine(virtualFolderPath, shortcutFilename + ShortcutFileExtension);
  2696. while (File.Exists(lnk))
  2697. {
  2698. shortcutFilename += "1";
  2699. lnk = Path.Combine(virtualFolderPath, shortcutFilename + ShortcutFileExtension);
  2700. }
  2701. _fileSystem.CreateShortcut(lnk, _appHost.ReverseVirtualPath(path));
  2702. RemoveContentTypeOverrides(path);
  2703. if (saveLibraryOptions)
  2704. {
  2705. var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath);
  2706. libraryOptions.PathInfos = [.. libraryOptions.PathInfos, pathInfo];
  2707. SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions);
  2708. CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
  2709. }
  2710. }
  2711. public void UpdateMediaPath(string virtualFolderName, MediaPathInfo mediaPath)
  2712. {
  2713. ArgumentNullException.ThrowIfNull(mediaPath);
  2714. var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath;
  2715. var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName);
  2716. var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath);
  2717. SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions);
  2718. CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
  2719. }
  2720. private void SyncLibraryOptionsToLocations(string virtualFolderPath, LibraryOptions options)
  2721. {
  2722. var topLibraryFolders = GetUserRootFolder().Children.ToList();
  2723. var info = GetVirtualFolderInfo(virtualFolderPath, topLibraryFolders, null);
  2724. if (info.Locations.Length > 0 && info.Locations.Length != options.PathInfos.Length)
  2725. {
  2726. var list = options.PathInfos.ToList();
  2727. foreach (var location in info.Locations)
  2728. {
  2729. if (!list.Any(i => string.Equals(i.Path, location, StringComparison.Ordinal)))
  2730. {
  2731. list.Add(new MediaPathInfo(location));
  2732. }
  2733. }
  2734. options.PathInfos = list.ToArray();
  2735. }
  2736. }
  2737. public async Task RemoveVirtualFolder(string name, bool refreshLibrary)
  2738. {
  2739. if (string.IsNullOrWhiteSpace(name))
  2740. {
  2741. throw new ArgumentNullException(nameof(name));
  2742. }
  2743. var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath;
  2744. var path = Path.Combine(rootFolderPath, name);
  2745. if (!Directory.Exists(path))
  2746. {
  2747. throw new FileNotFoundException("The media folder does not exist");
  2748. }
  2749. LibraryMonitor.Stop();
  2750. try
  2751. {
  2752. Directory.Delete(path, true);
  2753. }
  2754. finally
  2755. {
  2756. CollectionFolder.OnCollectionFolderChange();
  2757. if (refreshLibrary)
  2758. {
  2759. await ValidateTopLibraryFolders(CancellationToken.None, true).ConfigureAwait(false);
  2760. StartScanInBackground();
  2761. }
  2762. else
  2763. {
  2764. // Need to add a delay here or directory watchers may still pick up the changes
  2765. await Task.Delay(1000).ConfigureAwait(false);
  2766. LibraryMonitor.Start();
  2767. }
  2768. }
  2769. }
  2770. private void RemoveContentTypeOverrides(string path)
  2771. {
  2772. if (string.IsNullOrWhiteSpace(path))
  2773. {
  2774. throw new ArgumentNullException(nameof(path));
  2775. }
  2776. List<NameValuePair>? removeList = null;
  2777. foreach (var contentType in _configurationManager.Configuration.ContentTypes)
  2778. {
  2779. if (string.IsNullOrWhiteSpace(contentType.Name)
  2780. || _fileSystem.AreEqual(path, contentType.Name)
  2781. || _fileSystem.ContainsSubPath(path, contentType.Name))
  2782. {
  2783. (removeList ??= new()).Add(contentType);
  2784. }
  2785. }
  2786. if (removeList is not null)
  2787. {
  2788. _configurationManager.Configuration.ContentTypes = _configurationManager.Configuration.ContentTypes
  2789. .Except(removeList)
  2790. .ToArray();
  2791. _configurationManager.SaveConfiguration();
  2792. }
  2793. }
  2794. public void RemoveMediaPath(string virtualFolderName, string mediaPath)
  2795. {
  2796. ArgumentException.ThrowIfNullOrEmpty(mediaPath);
  2797. var rootFolderPath = _configurationManager.ApplicationPaths.DefaultUserViewsPath;
  2798. var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName);
  2799. if (!Directory.Exists(virtualFolderPath))
  2800. {
  2801. throw new FileNotFoundException(
  2802. string.Format(CultureInfo.InvariantCulture, "The media collection {0} does not exist", virtualFolderName));
  2803. }
  2804. var shortcut = _fileSystem.GetFilePaths(virtualFolderPath, true)
  2805. .Where(i => Path.GetExtension(i.AsSpan()).Equals(ShortcutFileExtension, StringComparison.OrdinalIgnoreCase))
  2806. .FirstOrDefault(f => _appHost.ExpandVirtualPath(_fileSystem.ResolveShortcut(f)).Equals(mediaPath, StringComparison.OrdinalIgnoreCase));
  2807. if (!string.IsNullOrEmpty(shortcut))
  2808. {
  2809. _fileSystem.DeleteFile(shortcut);
  2810. }
  2811. var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath);
  2812. libraryOptions.PathInfos = libraryOptions
  2813. .PathInfos
  2814. .Where(i => !string.Equals(i.Path, mediaPath, StringComparison.Ordinal))
  2815. .ToArray();
  2816. CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
  2817. }
  2818. private static bool ItemIsVisible(BaseItem? item, User? user)
  2819. {
  2820. if (item is null)
  2821. {
  2822. return false;
  2823. }
  2824. if (user is null)
  2825. {
  2826. return true;
  2827. }
  2828. return item is UserRootFolder || item.IsVisibleStandalone(user);
  2829. }
  2830. }
  2831. }