LibraryManager.cs 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072
  1. using MediaBrowser.Common.Extensions;
  2. using MediaBrowser.Common.Progress;
  3. using MediaBrowser.Controller.Configuration;
  4. using MediaBrowser.Controller.Entities;
  5. using MediaBrowser.Controller.Entities.Audio;
  6. using MediaBrowser.Controller.Entities.TV;
  7. using MediaBrowser.Controller.IO;
  8. using MediaBrowser.Controller.Library;
  9. using MediaBrowser.Controller.Persistence;
  10. using MediaBrowser.Controller.Providers;
  11. using MediaBrowser.Controller.Resolvers;
  12. using MediaBrowser.Controller.Sorting;
  13. using MediaBrowser.Model.Configuration;
  14. using MediaBrowser.Model.Entities;
  15. using MediaBrowser.Model.Logging;
  16. using MediaBrowser.Model.Querying;
  17. using MediaBrowser.Naming.Audio;
  18. using MediaBrowser.Naming.Common;
  19. using MediaBrowser.Naming.TV;
  20. using MediaBrowser.Naming.Video;
  21. using System;
  22. using System.Collections.Concurrent;
  23. using System.Collections.Generic;
  24. using System.Globalization;
  25. using System.IO;
  26. using System.Linq;
  27. using System.Net;
  28. using System.Threading;
  29. using System.Threading.Tasks;
  30. using Emby.Server.Implementations.Library.Resolvers;
  31. using Emby.Server.Implementations.Library.Validators;
  32. using Emby.Server.Implementations.ScheduledTasks;
  33. using MediaBrowser.Model.IO;
  34. using MediaBrowser.Controller.Channels;
  35. using MediaBrowser.Model.Channels;
  36. using MediaBrowser.Model.Dto;
  37. using MediaBrowser.Model.Extensions;
  38. using MediaBrowser.Model.Library;
  39. using MediaBrowser.Model.Net;
  40. using SortOrder = MediaBrowser.Model.Entities.SortOrder;
  41. using VideoResolver = MediaBrowser.Naming.Video.VideoResolver;
  42. using MediaBrowser.Common.Configuration;
  43. using MediaBrowser.Common.IO;
  44. using MediaBrowser.Model.Tasks;
  45. namespace Emby.Server.Implementations.Library
  46. {
  47. /// <summary>
  48. /// Class LibraryManager
  49. /// </summary>
  50. public class LibraryManager : ILibraryManager
  51. {
  52. /// <summary>
  53. /// Gets or sets the postscan tasks.
  54. /// </summary>
  55. /// <value>The postscan tasks.</value>
  56. private ILibraryPostScanTask[] PostscanTasks { get; set; }
  57. /// <summary>
  58. /// Gets the intro providers.
  59. /// </summary>
  60. /// <value>The intro providers.</value>
  61. private IIntroProvider[] IntroProviders { get; set; }
  62. /// <summary>
  63. /// Gets the list of entity resolution ignore rules
  64. /// </summary>
  65. /// <value>The entity resolution ignore rules.</value>
  66. private IResolverIgnoreRule[] EntityResolutionIgnoreRules { get; set; }
  67. /// <summary>
  68. /// Gets the list of BasePluginFolders added by plugins
  69. /// </summary>
  70. /// <value>The plugin folders.</value>
  71. private IVirtualFolderCreator[] PluginFolderCreators { get; set; }
  72. /// <summary>
  73. /// Gets the list of currently registered entity resolvers
  74. /// </summary>
  75. /// <value>The entity resolvers enumerable.</value>
  76. private IItemResolver[] EntityResolvers { get; set; }
  77. private IMultiItemResolver[] MultiItemResolvers { get; set; }
  78. /// <summary>
  79. /// Gets or sets the comparers.
  80. /// </summary>
  81. /// <value>The comparers.</value>
  82. private IBaseItemComparer[] Comparers { get; set; }
  83. /// <summary>
  84. /// Gets the active item repository
  85. /// </summary>
  86. /// <value>The item repository.</value>
  87. public IItemRepository ItemRepository { get; set; }
  88. /// <summary>
  89. /// Occurs when [item added].
  90. /// </summary>
  91. public event EventHandler<ItemChangeEventArgs> ItemAdded;
  92. /// <summary>
  93. /// Occurs when [item updated].
  94. /// </summary>
  95. public event EventHandler<ItemChangeEventArgs> ItemUpdated;
  96. /// <summary>
  97. /// Occurs when [item removed].
  98. /// </summary>
  99. public event EventHandler<ItemChangeEventArgs> ItemRemoved;
  100. /// <summary>
  101. /// The _logger
  102. /// </summary>
  103. private readonly ILogger _logger;
  104. /// <summary>
  105. /// The _task manager
  106. /// </summary>
  107. private readonly ITaskManager _taskManager;
  108. /// <summary>
  109. /// The _user manager
  110. /// </summary>
  111. private readonly IUserManager _userManager;
  112. /// <summary>
  113. /// The _user data repository
  114. /// </summary>
  115. private readonly IUserDataManager _userDataRepository;
  116. /// <summary>
  117. /// Gets or sets the configuration manager.
  118. /// </summary>
  119. /// <value>The configuration manager.</value>
  120. private IServerConfigurationManager ConfigurationManager { get; set; }
  121. /// <summary>
  122. /// A collection of items that may be referenced from multiple physical places in the library
  123. /// (typically, multiple user roots). We store them here and be sure they all reference a
  124. /// single instance.
  125. /// </summary>
  126. /// <value>The by reference items.</value>
  127. private ConcurrentDictionary<Guid, BaseItem> ByReferenceItems { get; set; }
  128. private readonly Func<ILibraryMonitor> _libraryMonitorFactory;
  129. private readonly Func<IProviderManager> _providerManagerFactory;
  130. private readonly Func<IUserViewManager> _userviewManager;
  131. public bool IsScanRunning { get; private set; }
  132. /// <summary>
  133. /// The _library items cache
  134. /// </summary>
  135. private readonly ConcurrentDictionary<Guid, BaseItem> _libraryItemsCache;
  136. /// <summary>
  137. /// Gets the library items cache.
  138. /// </summary>
  139. /// <value>The library items cache.</value>
  140. private ConcurrentDictionary<Guid, BaseItem> LibraryItemsCache
  141. {
  142. get
  143. {
  144. return _libraryItemsCache;
  145. }
  146. }
  147. private readonly IFileSystem _fileSystem;
  148. /// <summary>
  149. /// Initializes a new instance of the <see cref="LibraryManager" /> class.
  150. /// </summary>
  151. /// <param name="logger">The logger.</param>
  152. /// <param name="taskManager">The task manager.</param>
  153. /// <param name="userManager">The user manager.</param>
  154. /// <param name="configurationManager">The configuration manager.</param>
  155. /// <param name="userDataRepository">The user data repository.</param>
  156. public LibraryManager(ILogger logger, ITaskManager taskManager, IUserManager userManager, IServerConfigurationManager configurationManager, IUserDataManager userDataRepository, Func<ILibraryMonitor> libraryMonitorFactory, IFileSystem fileSystem, Func<IProviderManager> providerManagerFactory, Func<IUserViewManager> userviewManager)
  157. {
  158. _logger = logger;
  159. _taskManager = taskManager;
  160. _userManager = userManager;
  161. ConfigurationManager = configurationManager;
  162. _userDataRepository = userDataRepository;
  163. _libraryMonitorFactory = libraryMonitorFactory;
  164. _fileSystem = fileSystem;
  165. _providerManagerFactory = providerManagerFactory;
  166. _userviewManager = userviewManager;
  167. ByReferenceItems = new ConcurrentDictionary<Guid, BaseItem>();
  168. _libraryItemsCache = new ConcurrentDictionary<Guid, BaseItem>();
  169. ConfigurationManager.ConfigurationUpdated += ConfigurationUpdated;
  170. RecordConfigurationValues(configurationManager.Configuration);
  171. }
  172. /// <summary>
  173. /// Adds the parts.
  174. /// </summary>
  175. /// <param name="rules">The rules.</param>
  176. /// <param name="pluginFolders">The plugin folders.</param>
  177. /// <param name="resolvers">The resolvers.</param>
  178. /// <param name="introProviders">The intro providers.</param>
  179. /// <param name="itemComparers">The item comparers.</param>
  180. /// <param name="postscanTasks">The postscan tasks.</param>
  181. public void AddParts(IEnumerable<IResolverIgnoreRule> rules,
  182. IEnumerable<IVirtualFolderCreator> pluginFolders,
  183. IEnumerable<IItemResolver> resolvers,
  184. IEnumerable<IIntroProvider> introProviders,
  185. IEnumerable<IBaseItemComparer> itemComparers,
  186. IEnumerable<ILibraryPostScanTask> postscanTasks)
  187. {
  188. EntityResolutionIgnoreRules = rules.ToArray();
  189. PluginFolderCreators = pluginFolders.ToArray();
  190. EntityResolvers = resolvers.OrderBy(i => i.Priority).ToArray();
  191. MultiItemResolvers = EntityResolvers.OfType<IMultiItemResolver>().ToArray();
  192. IntroProviders = introProviders.ToArray();
  193. Comparers = itemComparers.ToArray();
  194. PostscanTasks = postscanTasks.OrderBy(i =>
  195. {
  196. var hasOrder = i as IHasOrder;
  197. return hasOrder == null ? 0 : hasOrder.Order;
  198. }).ToArray();
  199. }
  200. /// <summary>
  201. /// The _root folder
  202. /// </summary>
  203. private volatile AggregateFolder _rootFolder;
  204. /// <summary>
  205. /// The _root folder sync lock
  206. /// </summary>
  207. private readonly object _rootFolderSyncLock = new object();
  208. /// <summary>
  209. /// Gets the root folder.
  210. /// </summary>
  211. /// <value>The root folder.</value>
  212. public AggregateFolder RootFolder
  213. {
  214. get
  215. {
  216. if (_rootFolder == null)
  217. {
  218. lock (_rootFolderSyncLock)
  219. {
  220. if (_rootFolder == null)
  221. {
  222. _rootFolder = CreateRootFolder();
  223. }
  224. }
  225. }
  226. return _rootFolder;
  227. }
  228. }
  229. /// <summary>
  230. /// The _season zero display name
  231. /// </summary>
  232. private string _seasonZeroDisplayName;
  233. private bool _wizardCompleted;
  234. /// <summary>
  235. /// Records the configuration values.
  236. /// </summary>
  237. /// <param name="configuration">The configuration.</param>
  238. private void RecordConfigurationValues(ServerConfiguration configuration)
  239. {
  240. _seasonZeroDisplayName = configuration.SeasonZeroDisplayName;
  241. _wizardCompleted = configuration.IsStartupWizardCompleted;
  242. }
  243. /// <summary>
  244. /// Configurations the updated.
  245. /// </summary>
  246. /// <param name="sender">The sender.</param>
  247. /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
  248. void ConfigurationUpdated(object sender, EventArgs e)
  249. {
  250. var config = ConfigurationManager.Configuration;
  251. var newSeasonZeroName = ConfigurationManager.Configuration.SeasonZeroDisplayName;
  252. var seasonZeroNameChanged = !string.Equals(_seasonZeroDisplayName, newSeasonZeroName, StringComparison.Ordinal);
  253. var wizardChanged = config.IsStartupWizardCompleted != _wizardCompleted;
  254. RecordConfigurationValues(config);
  255. if (seasonZeroNameChanged || wizardChanged)
  256. {
  257. _taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>();
  258. }
  259. if (seasonZeroNameChanged)
  260. {
  261. Task.Run(async () =>
  262. {
  263. await UpdateSeasonZeroNames(newSeasonZeroName, CancellationToken.None).ConfigureAwait(false);
  264. });
  265. }
  266. }
  267. /// <summary>
  268. /// Updates the season zero names.
  269. /// </summary>
  270. /// <param name="newName">The new name.</param>
  271. /// <param name="cancellationToken">The cancellation token.</param>
  272. /// <returns>Task.</returns>
  273. private async Task UpdateSeasonZeroNames(string newName, CancellationToken cancellationToken)
  274. {
  275. var seasons = GetItemList(new InternalItemsQuery
  276. {
  277. IncludeItemTypes = new[] { typeof(Season).Name },
  278. Recursive = true,
  279. IndexNumber = 0
  280. }).Cast<Season>()
  281. .Where(i => !string.Equals(i.Name, newName, StringComparison.Ordinal))
  282. .ToList();
  283. foreach (var season in seasons)
  284. {
  285. season.Name = newName;
  286. try
  287. {
  288. await UpdateItem(season, ItemUpdateType.MetadataDownload, cancellationToken).ConfigureAwait(false);
  289. }
  290. catch (Exception ex)
  291. {
  292. _logger.ErrorException("Error saving {0}", ex, season.Path);
  293. }
  294. }
  295. }
  296. public void RegisterItem(BaseItem item)
  297. {
  298. if (item == null)
  299. {
  300. throw new ArgumentNullException("item");
  301. }
  302. if (item is IItemByName)
  303. {
  304. if (!(item is MusicArtist) && !(item is Studio))
  305. {
  306. return;
  307. }
  308. }
  309. else if (item.IsFolder)
  310. {
  311. //if (!(item is ICollectionFolder) && !(item is UserView) && !(item is Channel) && !(item is AggregateFolder))
  312. //{
  313. // if (item.SourceType != SourceType.Library)
  314. // {
  315. // return;
  316. // }
  317. //}
  318. }
  319. else
  320. {
  321. if (item is Photo)
  322. {
  323. return;
  324. }
  325. }
  326. LibraryItemsCache.AddOrUpdate(item.Id, item, delegate { return item; });
  327. }
  328. public async Task DeleteItem(BaseItem item, DeleteOptions options)
  329. {
  330. if (item == null)
  331. {
  332. throw new ArgumentNullException("item");
  333. }
  334. _logger.Debug("Deleting item, Type: {0}, Name: {1}, Path: {2}, Id: {3}",
  335. item.GetType().Name,
  336. item.Name ?? "Unknown name",
  337. item.Path ?? string.Empty,
  338. item.Id);
  339. var parent = item.Parent;
  340. var locationType = item.LocationType;
  341. var children = item.IsFolder
  342. ? ((Folder)item).GetRecursiveChildren(false).ToList()
  343. : new List<BaseItem>();
  344. foreach (var metadataPath in GetMetadataPaths(item, children))
  345. {
  346. _logger.Debug("Deleting path {0}", metadataPath);
  347. try
  348. {
  349. _fileSystem.DeleteDirectory(metadataPath, true);
  350. }
  351. catch (IOException)
  352. {
  353. }
  354. catch (Exception ex)
  355. {
  356. _logger.ErrorException("Error deleting {0}", ex, metadataPath);
  357. }
  358. }
  359. if (options.DeleteFileLocation && locationType != LocationType.Remote && locationType != LocationType.Virtual)
  360. {
  361. foreach (var path in item.GetDeletePaths().ToList())
  362. {
  363. if (_fileSystem.DirectoryExists(path))
  364. {
  365. _logger.Debug("Deleting path {0}", path);
  366. _fileSystem.DeleteDirectory(path, true);
  367. }
  368. else if (_fileSystem.FileExists(path))
  369. {
  370. _logger.Debug("Deleting path {0}", path);
  371. _fileSystem.DeleteFile(path);
  372. }
  373. }
  374. if (parent != null)
  375. {
  376. await parent.ValidateChildren(new Progress<double>(), CancellationToken.None)
  377. .ConfigureAwait(false);
  378. }
  379. }
  380. else if (parent != null)
  381. {
  382. parent.RemoveChild(item);
  383. }
  384. await ItemRepository.DeleteItem(item.Id, CancellationToken.None).ConfigureAwait(false);
  385. foreach (var child in children)
  386. {
  387. await ItemRepository.DeleteItem(child.Id, CancellationToken.None).ConfigureAwait(false);
  388. }
  389. BaseItem removed;
  390. _libraryItemsCache.TryRemove(item.Id, out removed);
  391. ReportItemRemoved(item);
  392. }
  393. private IEnumerable<string> GetMetadataPaths(BaseItem item, IEnumerable<BaseItem> children)
  394. {
  395. var list = new List<string>
  396. {
  397. item.GetInternalMetadataPath()
  398. };
  399. list.AddRange(children.Select(i => i.GetInternalMetadataPath()));
  400. return list;
  401. }
  402. /// <summary>
  403. /// Resolves the item.
  404. /// </summary>
  405. /// <param name="args">The args.</param>
  406. /// <param name="resolvers">The resolvers.</param>
  407. /// <returns>BaseItem.</returns>
  408. private BaseItem ResolveItem(ItemResolveArgs args, IItemResolver[] resolvers)
  409. {
  410. var item = (resolvers ?? EntityResolvers).Select(r => Resolve(args, r))
  411. .FirstOrDefault(i => i != null);
  412. if (item != null)
  413. {
  414. ResolverHelper.SetInitialItemValues(item, args, _fileSystem, this);
  415. }
  416. return item;
  417. }
  418. private BaseItem Resolve(ItemResolveArgs args, IItemResolver resolver)
  419. {
  420. try
  421. {
  422. return resolver.ResolvePath(args);
  423. }
  424. catch (Exception ex)
  425. {
  426. _logger.ErrorException("Error in {0} resolving {1}", ex, resolver.GetType().Name, args.Path);
  427. return null;
  428. }
  429. }
  430. public Guid GetNewItemId(string key, Type type)
  431. {
  432. if (string.IsNullOrWhiteSpace(key))
  433. {
  434. throw new ArgumentNullException("key");
  435. }
  436. if (type == null)
  437. {
  438. throw new ArgumentNullException("type");
  439. }
  440. if (ConfigurationManager.Configuration.EnableLocalizedGuids && key.StartsWith(ConfigurationManager.ApplicationPaths.ProgramDataPath))
  441. {
  442. // Try to normalize paths located underneath program-data in an attempt to make them more portable
  443. key = key.Substring(ConfigurationManager.ApplicationPaths.ProgramDataPath.Length)
  444. .TrimStart(new[] { '/', '\\' })
  445. .Replace("/", "\\");
  446. }
  447. if (!ConfigurationManager.Configuration.EnableCaseSensitiveItemIds)
  448. {
  449. key = key.ToLower();
  450. }
  451. key = type.FullName + key;
  452. return key.GetMD5();
  453. }
  454. /// <summary>
  455. /// Ensure supplied item has only one instance throughout
  456. /// </summary>
  457. /// <param name="item">The item.</param>
  458. /// <returns>The proper instance to the item</returns>
  459. public BaseItem GetOrAddByReferenceItem(BaseItem item)
  460. {
  461. // Add this item to our list if not there already
  462. if (!ByReferenceItems.TryAdd(item.Id, item))
  463. {
  464. // Already there - return the existing reference
  465. item = ByReferenceItems[item.Id];
  466. }
  467. return item;
  468. }
  469. public BaseItem ResolvePath(FileSystemMetadata fileInfo,
  470. Folder parent = null)
  471. {
  472. return ResolvePath(fileInfo, new DirectoryService(_logger, _fileSystem), null, parent);
  473. }
  474. private BaseItem ResolvePath(FileSystemMetadata fileInfo,
  475. IDirectoryService directoryService,
  476. IItemResolver[] resolvers,
  477. Folder parent = null,
  478. string collectionType = null,
  479. LibraryOptions libraryOptions = null)
  480. {
  481. if (fileInfo == null)
  482. {
  483. throw new ArgumentNullException("fileInfo");
  484. }
  485. var fullPath = fileInfo.FullName;
  486. if (string.IsNullOrWhiteSpace(collectionType) && parent != null)
  487. {
  488. collectionType = GetContentTypeOverride(fullPath, true);
  489. }
  490. var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths, directoryService)
  491. {
  492. Parent = parent,
  493. Path = fullPath,
  494. FileInfo = fileInfo,
  495. CollectionType = collectionType,
  496. LibraryOptions = libraryOptions
  497. };
  498. // Return null if ignore rules deem that we should do so
  499. if (IgnoreFile(args.FileInfo, args.Parent))
  500. {
  501. return null;
  502. }
  503. // Gather child folder and files
  504. if (args.IsDirectory)
  505. {
  506. var isPhysicalRoot = args.IsPhysicalRoot;
  507. // When resolving the root, we need it's grandchildren (children of user views)
  508. var flattenFolderDepth = isPhysicalRoot ? 2 : 0;
  509. var fileSystemDictionary = FileData.GetFilteredFileSystemEntries(directoryService, args.Path, _fileSystem, _logger, args, flattenFolderDepth: flattenFolderDepth, resolveShortcuts: isPhysicalRoot || args.IsVf);
  510. // Need to remove subpaths that may have been resolved from shortcuts
  511. // Example: if \\server\movies exists, then strip out \\server\movies\action
  512. if (isPhysicalRoot)
  513. {
  514. var paths = NormalizeRootPathList(fileSystemDictionary.Values);
  515. fileSystemDictionary = paths.ToDictionary(i => i.FullName);
  516. }
  517. args.FileSystemDictionary = fileSystemDictionary;
  518. }
  519. // Check to see if we should resolve based on our contents
  520. if (args.IsDirectory && !ShouldResolvePathContents(args))
  521. {
  522. return null;
  523. }
  524. return ResolveItem(args, resolvers);
  525. }
  526. private readonly List<string> _ignoredPaths = new List<string>();
  527. public void RegisterIgnoredPath(string path)
  528. {
  529. lock (_ignoredPaths)
  530. {
  531. _ignoredPaths.Add(path);
  532. }
  533. }
  534. public void UnRegisterIgnoredPath(string path)
  535. {
  536. lock (_ignoredPaths)
  537. {
  538. _ignoredPaths.Remove(path);
  539. }
  540. }
  541. public bool IgnoreFile(FileSystemMetadata file, BaseItem parent)
  542. {
  543. if (EntityResolutionIgnoreRules.Any(r => r.ShouldIgnore(file, parent)))
  544. {
  545. return true;
  546. }
  547. //lock (_ignoredPaths)
  548. {
  549. if (_ignoredPaths.Contains(file.FullName, StringComparer.OrdinalIgnoreCase))
  550. {
  551. return true;
  552. }
  553. }
  554. return false;
  555. }
  556. public IEnumerable<FileSystemMetadata> NormalizeRootPathList(IEnumerable<FileSystemMetadata> paths)
  557. {
  558. var originalList = paths.ToList();
  559. var list = originalList.Where(i => i.IsDirectory)
  560. .Select(i => _fileSystem.NormalizePath(i.FullName))
  561. .Distinct(StringComparer.OrdinalIgnoreCase)
  562. .ToList();
  563. var dupes = list.Where(subPath => !subPath.EndsWith(":\\", StringComparison.OrdinalIgnoreCase) && list.Any(i => _fileSystem.ContainsSubPath(i, subPath)))
  564. .ToList();
  565. foreach (var dupe in dupes)
  566. {
  567. _logger.Info("Found duplicate path: {0}", dupe);
  568. }
  569. var newList = list.Except(dupes, StringComparer.OrdinalIgnoreCase).Select(_fileSystem.GetDirectoryInfo).ToList();
  570. newList.AddRange(originalList.Where(i => !i.IsDirectory));
  571. return newList;
  572. }
  573. /// <summary>
  574. /// Determines whether a path should be ignored based on its contents - called after the contents have been read
  575. /// </summary>
  576. /// <param name="args">The args.</param>
  577. /// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
  578. private static bool ShouldResolvePathContents(ItemResolveArgs args)
  579. {
  580. // Ignore any folders containing a file called .ignore
  581. return !args.ContainsFileSystemEntryByName(".ignore");
  582. }
  583. public IEnumerable<BaseItem> ResolvePaths(IEnumerable<FileSystemMetadata> files, IDirectoryService directoryService, Folder parent, LibraryOptions libraryOptions, string collectionType)
  584. {
  585. return ResolvePaths(files, directoryService, parent, libraryOptions, collectionType, EntityResolvers);
  586. }
  587. public IEnumerable<BaseItem> ResolvePaths(IEnumerable<FileSystemMetadata> files,
  588. IDirectoryService directoryService,
  589. Folder parent,
  590. LibraryOptions libraryOptions,
  591. string collectionType,
  592. IItemResolver[] resolvers)
  593. {
  594. var fileList = files.Where(i => !IgnoreFile(i, parent)).ToList();
  595. if (parent != null)
  596. {
  597. var multiItemResolvers = resolvers == null ? MultiItemResolvers : resolvers.OfType<IMultiItemResolver>().ToArray();
  598. foreach (var resolver in multiItemResolvers)
  599. {
  600. var result = resolver.ResolveMultiple(parent, fileList, collectionType, directoryService);
  601. if (result != null && result.Items.Count > 0)
  602. {
  603. var items = new List<BaseItem>();
  604. items.AddRange(result.Items);
  605. foreach (var item in items)
  606. {
  607. ResolverHelper.SetInitialItemValues(item, parent, _fileSystem, this, directoryService);
  608. }
  609. items.AddRange(ResolveFileList(result.ExtraFiles, directoryService, parent, collectionType, resolvers, libraryOptions));
  610. return items;
  611. }
  612. }
  613. }
  614. return ResolveFileList(fileList, directoryService, parent, collectionType, resolvers, libraryOptions);
  615. }
  616. private IEnumerable<BaseItem> ResolveFileList(IEnumerable<FileSystemMetadata> fileList,
  617. IDirectoryService directoryService,
  618. Folder parent,
  619. string collectionType,
  620. IItemResolver[] resolvers,
  621. LibraryOptions libraryOptions)
  622. {
  623. return fileList.Select(f =>
  624. {
  625. try
  626. {
  627. return ResolvePath(f, directoryService, resolvers, parent, collectionType, libraryOptions);
  628. }
  629. catch (Exception ex)
  630. {
  631. _logger.ErrorException("Error resolving path {0}", ex, f.FullName);
  632. return null;
  633. }
  634. }).Where(i => i != null);
  635. }
  636. /// <summary>
  637. /// Creates the root media folder
  638. /// </summary>
  639. /// <returns>AggregateFolder.</returns>
  640. /// <exception cref="System.InvalidOperationException">Cannot create the root folder until plugins have loaded</exception>
  641. public AggregateFolder CreateRootFolder()
  642. {
  643. var rootFolderPath = ConfigurationManager.ApplicationPaths.RootFolderPath;
  644. _fileSystem.CreateDirectory(rootFolderPath);
  645. var rootFolder = GetItemById(GetNewItemId(rootFolderPath, typeof(AggregateFolder))) as AggregateFolder ?? (AggregateFolder)ResolvePath(_fileSystem.GetDirectoryInfo(rootFolderPath));
  646. // Add in the plug-in folders
  647. foreach (var child in PluginFolderCreators)
  648. {
  649. var folder = child.GetFolder();
  650. if (folder != null)
  651. {
  652. if (folder.Id == Guid.Empty)
  653. {
  654. if (string.IsNullOrWhiteSpace(folder.Path))
  655. {
  656. folder.Id = GetNewItemId(folder.GetType().Name, folder.GetType());
  657. }
  658. else
  659. {
  660. folder.Id = GetNewItemId(folder.Path, folder.GetType());
  661. }
  662. }
  663. var dbItem = GetItemById(folder.Id) as BasePluginFolder;
  664. if (dbItem != null && string.Equals(dbItem.Path, folder.Path, StringComparison.OrdinalIgnoreCase))
  665. {
  666. folder = dbItem;
  667. }
  668. if (folder.ParentId != rootFolder.Id)
  669. {
  670. folder.ParentId = rootFolder.Id;
  671. var task = folder.UpdateToRepository(ItemUpdateType.MetadataImport, CancellationToken.None);
  672. Task.WaitAll(task);
  673. }
  674. rootFolder.AddVirtualChild(folder);
  675. RegisterItem(folder);
  676. }
  677. }
  678. return rootFolder;
  679. }
  680. private volatile UserRootFolder _userRootFolder;
  681. private readonly object _syncLock = new object();
  682. public Folder GetUserRootFolder()
  683. {
  684. if (_userRootFolder == null)
  685. {
  686. lock (_syncLock)
  687. {
  688. if (_userRootFolder == null)
  689. {
  690. var userRootPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath;
  691. _fileSystem.CreateDirectory(userRootPath);
  692. var tmpItem = GetItemById(GetNewItemId(userRootPath, typeof(UserRootFolder))) as UserRootFolder;
  693. if (tmpItem == null)
  694. {
  695. tmpItem = (UserRootFolder)ResolvePath(_fileSystem.GetDirectoryInfo(userRootPath));
  696. }
  697. _userRootFolder = tmpItem;
  698. }
  699. }
  700. }
  701. return _userRootFolder;
  702. }
  703. public BaseItem FindByPath(string path, bool? isFolder)
  704. {
  705. // If this returns multiple items it could be tricky figuring out which one is correct.
  706. // In most cases, the newest one will be and the others obsolete but not yet cleaned up
  707. var query = new InternalItemsQuery
  708. {
  709. Path = path,
  710. IsFolder = isFolder,
  711. SortBy = new[] { ItemSortBy.DateCreated },
  712. SortOrder = SortOrder.Descending,
  713. Limit = 1
  714. };
  715. return GetItemList(query)
  716. .FirstOrDefault();
  717. }
  718. /// <summary>
  719. /// Gets a Person
  720. /// </summary>
  721. /// <param name="name">The name.</param>
  722. /// <returns>Task{Person}.</returns>
  723. public Person GetPerson(string name)
  724. {
  725. return CreateItemByName<Person>(Person.GetPath(name), name);
  726. }
  727. /// <summary>
  728. /// Gets a Studio
  729. /// </summary>
  730. /// <param name="name">The name.</param>
  731. /// <returns>Task{Studio}.</returns>
  732. public Studio GetStudio(string name)
  733. {
  734. return CreateItemByName<Studio>(Studio.GetPath(name), name);
  735. }
  736. /// <summary>
  737. /// Gets a Genre
  738. /// </summary>
  739. /// <param name="name">The name.</param>
  740. /// <returns>Task{Genre}.</returns>
  741. public Genre GetGenre(string name)
  742. {
  743. return CreateItemByName<Genre>(Genre.GetPath(name), name);
  744. }
  745. /// <summary>
  746. /// Gets the genre.
  747. /// </summary>
  748. /// <param name="name">The name.</param>
  749. /// <returns>Task{MusicGenre}.</returns>
  750. public MusicGenre GetMusicGenre(string name)
  751. {
  752. return CreateItemByName<MusicGenre>(MusicGenre.GetPath(name), name);
  753. }
  754. /// <summary>
  755. /// Gets the game genre.
  756. /// </summary>
  757. /// <param name="name">The name.</param>
  758. /// <returns>Task{GameGenre}.</returns>
  759. public GameGenre GetGameGenre(string name)
  760. {
  761. return CreateItemByName<GameGenre>(GameGenre.GetPath(name), name);
  762. }
  763. /// <summary>
  764. /// Gets a Year
  765. /// </summary>
  766. /// <param name="value">The value.</param>
  767. /// <returns>Task{Year}.</returns>
  768. /// <exception cref="System.ArgumentOutOfRangeException"></exception>
  769. public Year GetYear(int value)
  770. {
  771. if (value <= 0)
  772. {
  773. throw new ArgumentOutOfRangeException("Years less than or equal to 0 are invalid.");
  774. }
  775. var name = value.ToString(CultureInfo.InvariantCulture);
  776. return CreateItemByName<Year>(Year.GetPath(name), name);
  777. }
  778. /// <summary>
  779. /// Gets a Genre
  780. /// </summary>
  781. /// <param name="name">The name.</param>
  782. /// <returns>Task{Genre}.</returns>
  783. public MusicArtist GetArtist(string name)
  784. {
  785. return CreateItemByName<MusicArtist>(MusicArtist.GetPath(name), name);
  786. }
  787. private T CreateItemByName<T>(string path, string name)
  788. where T : BaseItem, new()
  789. {
  790. if (typeof(T) == typeof(MusicArtist))
  791. {
  792. var existing = GetItemList(new InternalItemsQuery
  793. {
  794. IncludeItemTypes = new[] { typeof(T).Name },
  795. Name = name
  796. }).Cast<MusicArtist>()
  797. .OrderBy(i => i.IsAccessedByName ? 1 : 0)
  798. .Cast<T>()
  799. .FirstOrDefault();
  800. if (existing != null)
  801. {
  802. return existing;
  803. }
  804. }
  805. var id = GetNewItemId(path, typeof(T));
  806. var item = GetItemById(id) as T;
  807. if (item == null)
  808. {
  809. item = new T
  810. {
  811. Name = name,
  812. Id = id,
  813. DateCreated = DateTime.UtcNow,
  814. DateModified = DateTime.UtcNow,
  815. Path = path
  816. };
  817. var task = CreateItem(item, CancellationToken.None);
  818. Task.WaitAll(task);
  819. }
  820. return item;
  821. }
  822. public IEnumerable<MusicArtist> GetAlbumArtists(IEnumerable<IHasAlbumArtist> items)
  823. {
  824. var names = items
  825. .SelectMany(i => i.AlbumArtists)
  826. .DistinctNames()
  827. .Select(i =>
  828. {
  829. try
  830. {
  831. var artist = GetArtist(i);
  832. return artist;
  833. }
  834. catch
  835. {
  836. // Already logged at lower levels
  837. return null;
  838. }
  839. })
  840. .Where(i => i != null);
  841. return names;
  842. }
  843. public IEnumerable<MusicArtist> GetArtists(IEnumerable<IHasArtist> items)
  844. {
  845. var names = items
  846. .SelectMany(i => i.AllArtists)
  847. .DistinctNames()
  848. .Select(i =>
  849. {
  850. try
  851. {
  852. var artist = GetArtist(i);
  853. return artist;
  854. }
  855. catch
  856. {
  857. // Already logged at lower levels
  858. return null;
  859. }
  860. })
  861. .Where(i => i != null);
  862. return names;
  863. }
  864. /// <summary>
  865. /// Validate and refresh the People sub-set of the IBN.
  866. /// The items are stored in the db but not loaded into memory until actually requested by an operation.
  867. /// </summary>
  868. /// <param name="cancellationToken">The cancellation token.</param>
  869. /// <param name="progress">The progress.</param>
  870. /// <returns>Task.</returns>
  871. public Task ValidatePeople(CancellationToken cancellationToken, IProgress<double> progress)
  872. {
  873. // Ensure the location is available.
  874. _fileSystem.CreateDirectory(ConfigurationManager.ApplicationPaths.PeoplePath);
  875. return new PeopleValidator(this, _logger, ConfigurationManager, _fileSystem).ValidatePeople(cancellationToken, progress);
  876. }
  877. /// <summary>
  878. /// Reloads the root media folder
  879. /// </summary>
  880. /// <param name="progress">The progress.</param>
  881. /// <param name="cancellationToken">The cancellation token.</param>
  882. /// <returns>Task.</returns>
  883. public Task ValidateMediaLibrary(IProgress<double> progress, CancellationToken cancellationToken)
  884. {
  885. // Just run the scheduled task so that the user can see it
  886. _taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>();
  887. return Task.FromResult(true);
  888. }
  889. /// <summary>
  890. /// Queues the library scan.
  891. /// </summary>
  892. public void QueueLibraryScan()
  893. {
  894. // Just run the scheduled task so that the user can see it
  895. _taskManager.QueueScheduledTask<RefreshMediaLibraryTask>();
  896. }
  897. /// <summary>
  898. /// Validates the media library internal.
  899. /// </summary>
  900. /// <param name="progress">The progress.</param>
  901. /// <param name="cancellationToken">The cancellation token.</param>
  902. /// <returns>Task.</returns>
  903. public async Task ValidateMediaLibraryInternal(IProgress<double> progress, CancellationToken cancellationToken)
  904. {
  905. IsScanRunning = true;
  906. _libraryMonitorFactory().Stop();
  907. try
  908. {
  909. await PerformLibraryValidation(progress, cancellationToken).ConfigureAwait(false);
  910. if (!ConfigurationManager.Configuration.EnableSeriesPresentationUniqueKey)
  911. {
  912. ConfigurationManager.Configuration.EnableSeriesPresentationUniqueKey = true;
  913. ConfigurationManager.SaveConfiguration();
  914. }
  915. }
  916. finally
  917. {
  918. _libraryMonitorFactory().Start();
  919. IsScanRunning = false;
  920. }
  921. }
  922. private async Task PerformLibraryValidation(IProgress<double> progress, CancellationToken cancellationToken)
  923. {
  924. _logger.Info("Validating media library");
  925. // Ensure these objects are lazy loaded.
  926. // Without this there is a deadlock that will need to be investigated
  927. var rootChildren = RootFolder.Children.ToList();
  928. rootChildren = GetUserRootFolder().Children.ToList();
  929. await RootFolder.RefreshMetadata(cancellationToken).ConfigureAwait(false);
  930. progress.Report(.5);
  931. // Start by just validating the children of the root, but go no further
  932. await RootFolder.ValidateChildren(new Progress<double>(), cancellationToken, new MetadataRefreshOptions(_fileSystem), recursive: false);
  933. progress.Report(1);
  934. var userRoot = GetUserRootFolder();
  935. await userRoot.RefreshMetadata(cancellationToken).ConfigureAwait(false);
  936. await userRoot.ValidateChildren(new Progress<double>(), cancellationToken, new MetadataRefreshOptions(_fileSystem), recursive: false).ConfigureAwait(false);
  937. progress.Report(2);
  938. var innerProgress = new ActionableProgress<double>();
  939. innerProgress.RegisterAction(pct => progress.Report(2 + pct * .73));
  940. // Now validate the entire media library
  941. await RootFolder.ValidateChildren(innerProgress, cancellationToken, new MetadataRefreshOptions(_fileSystem), recursive: true).ConfigureAwait(false);
  942. progress.Report(75);
  943. innerProgress = new ActionableProgress<double>();
  944. innerProgress.RegisterAction(pct => progress.Report(75 + pct * .25));
  945. // Run post-scan tasks
  946. await RunPostScanTasks(innerProgress, cancellationToken).ConfigureAwait(false);
  947. progress.Report(100);
  948. }
  949. /// <summary>
  950. /// Runs the post scan tasks.
  951. /// </summary>
  952. /// <param name="progress">The progress.</param>
  953. /// <param name="cancellationToken">The cancellation token.</param>
  954. /// <returns>Task.</returns>
  955. private async Task RunPostScanTasks(IProgress<double> progress, CancellationToken cancellationToken)
  956. {
  957. var tasks = PostscanTasks.ToList();
  958. var numComplete = 0;
  959. var numTasks = tasks.Count;
  960. foreach (var task in tasks)
  961. {
  962. var innerProgress = new ActionableProgress<double>();
  963. // Prevent access to modified closure
  964. var currentNumComplete = numComplete;
  965. innerProgress.RegisterAction(pct =>
  966. {
  967. double innerPercent = currentNumComplete * 100 + pct;
  968. innerPercent /= numTasks;
  969. progress.Report(innerPercent);
  970. });
  971. _logger.Debug("Running post-scan task {0}", task.GetType().Name);
  972. try
  973. {
  974. await task.Run(innerProgress, cancellationToken).ConfigureAwait(false);
  975. }
  976. catch (OperationCanceledException)
  977. {
  978. _logger.Info("Post-scan task cancelled: {0}", task.GetType().Name);
  979. }
  980. catch (Exception ex)
  981. {
  982. _logger.ErrorException("Error running postscan task", ex);
  983. }
  984. numComplete++;
  985. double percent = numComplete;
  986. percent /= numTasks;
  987. progress.Report(percent * 100);
  988. }
  989. progress.Report(100);
  990. }
  991. /// <summary>
  992. /// Gets the default view.
  993. /// </summary>
  994. /// <returns>IEnumerable{VirtualFolderInfo}.</returns>
  995. public IEnumerable<VirtualFolderInfo> GetVirtualFolders()
  996. {
  997. return GetView(ConfigurationManager.ApplicationPaths.DefaultUserViewsPath);
  998. }
  999. /// <summary>
  1000. /// Gets the view.
  1001. /// </summary>
  1002. /// <param name="path">The path.</param>
  1003. /// <returns>IEnumerable{VirtualFolderInfo}.</returns>
  1004. private IEnumerable<VirtualFolderInfo> GetView(string path)
  1005. {
  1006. var topLibraryFolders = GetUserRootFolder().Children.ToList();
  1007. return _fileSystem.GetDirectoryPaths(path)
  1008. .Select(dir => GetVirtualFolderInfo(dir, topLibraryFolders));
  1009. }
  1010. private VirtualFolderInfo GetVirtualFolderInfo(string dir, List<BaseItem> allCollectionFolders)
  1011. {
  1012. var info = new VirtualFolderInfo
  1013. {
  1014. Name = Path.GetFileName(dir),
  1015. Locations = _fileSystem.GetFilePaths(dir, false)
  1016. .Where(i => string.Equals(ShortcutFileExtension, Path.GetExtension(i), StringComparison.OrdinalIgnoreCase))
  1017. .Select(_fileSystem.ResolveShortcut)
  1018. .OrderBy(i => i)
  1019. .ToList(),
  1020. CollectionType = GetCollectionType(dir)
  1021. };
  1022. var libraryFolder = allCollectionFolders.FirstOrDefault(i => string.Equals(i.Path, dir, StringComparison.OrdinalIgnoreCase));
  1023. if (libraryFolder != null && libraryFolder.HasImage(ImageType.Primary))
  1024. {
  1025. info.PrimaryImageItemId = libraryFolder.Id.ToString("N");
  1026. }
  1027. if (libraryFolder != null)
  1028. {
  1029. info.ItemId = libraryFolder.Id.ToString("N");
  1030. info.LibraryOptions = GetLibraryOptions(libraryFolder);
  1031. }
  1032. return info;
  1033. }
  1034. private string GetCollectionType(string path)
  1035. {
  1036. return _fileSystem.GetFiles(path, false)
  1037. .Where(i => string.Equals(i.Extension, ".collection", StringComparison.OrdinalIgnoreCase))
  1038. .Select(i => _fileSystem.GetFileNameWithoutExtension(i))
  1039. .FirstOrDefault();
  1040. }
  1041. /// <summary>
  1042. /// Gets the item by id.
  1043. /// </summary>
  1044. /// <param name="id">The id.</param>
  1045. /// <returns>BaseItem.</returns>
  1046. /// <exception cref="System.ArgumentNullException">id</exception>
  1047. public BaseItem GetItemById(Guid id)
  1048. {
  1049. if (id == Guid.Empty)
  1050. {
  1051. throw new ArgumentNullException("id");
  1052. }
  1053. BaseItem item;
  1054. if (LibraryItemsCache.TryGetValue(id, out item))
  1055. {
  1056. return item;
  1057. }
  1058. item = RetrieveItem(id);
  1059. //_logger.Debug("GetitemById {0}", id);
  1060. if (item != null)
  1061. {
  1062. RegisterItem(item);
  1063. }
  1064. return item;
  1065. }
  1066. public IEnumerable<BaseItem> GetItemList(InternalItemsQuery query)
  1067. {
  1068. if (query.Recursive && query.ParentId.HasValue)
  1069. {
  1070. var parent = GetItemById(query.ParentId.Value);
  1071. if (parent != null)
  1072. {
  1073. SetTopParentIdsOrAncestors(query, new List<BaseItem> { parent });
  1074. query.ParentId = null;
  1075. }
  1076. }
  1077. if (query.User != null)
  1078. {
  1079. AddUserToQuery(query, query.User);
  1080. }
  1081. return ItemRepository.GetItemList(query);
  1082. }
  1083. public IEnumerable<BaseItem> GetItemList(InternalItemsQuery query, List<BaseItem> parents)
  1084. {
  1085. SetTopParentIdsOrAncestors(query, parents);
  1086. if (query.AncestorIds.Length == 0 && query.TopParentIds.Length == 0)
  1087. {
  1088. if (query.User != null)
  1089. {
  1090. AddUserToQuery(query, query.User);
  1091. }
  1092. }
  1093. return ItemRepository.GetItemList(query);
  1094. }
  1095. public QueryResult<BaseItem> QueryItems(InternalItemsQuery query)
  1096. {
  1097. if (query.User != null)
  1098. {
  1099. AddUserToQuery(query, query.User);
  1100. }
  1101. if (query.EnableTotalRecordCount)
  1102. {
  1103. return ItemRepository.GetItems(query);
  1104. }
  1105. return new QueryResult<BaseItem>
  1106. {
  1107. Items = ItemRepository.GetItemList(query).ToArray()
  1108. };
  1109. }
  1110. public List<Guid> GetItemIds(InternalItemsQuery query)
  1111. {
  1112. if (query.User != null)
  1113. {
  1114. AddUserToQuery(query, query.User);
  1115. }
  1116. return ItemRepository.GetItemIdsList(query);
  1117. }
  1118. public QueryResult<Tuple<BaseItem, ItemCounts>> GetStudios(InternalItemsQuery query)
  1119. {
  1120. if (query.User != null)
  1121. {
  1122. AddUserToQuery(query, query.User);
  1123. }
  1124. SetTopParentOrAncestorIds(query);
  1125. return ItemRepository.GetStudios(query);
  1126. }
  1127. public QueryResult<Tuple<BaseItem, ItemCounts>> GetGenres(InternalItemsQuery query)
  1128. {
  1129. if (query.User != null)
  1130. {
  1131. AddUserToQuery(query, query.User);
  1132. }
  1133. SetTopParentOrAncestorIds(query);
  1134. return ItemRepository.GetGenres(query);
  1135. }
  1136. public QueryResult<Tuple<BaseItem, ItemCounts>> GetGameGenres(InternalItemsQuery query)
  1137. {
  1138. if (query.User != null)
  1139. {
  1140. AddUserToQuery(query, query.User);
  1141. }
  1142. SetTopParentOrAncestorIds(query);
  1143. return ItemRepository.GetGameGenres(query);
  1144. }
  1145. public QueryResult<Tuple<BaseItem, ItemCounts>> GetMusicGenres(InternalItemsQuery query)
  1146. {
  1147. if (query.User != null)
  1148. {
  1149. AddUserToQuery(query, query.User);
  1150. }
  1151. SetTopParentOrAncestorIds(query);
  1152. return ItemRepository.GetMusicGenres(query);
  1153. }
  1154. public QueryResult<Tuple<BaseItem, ItemCounts>> GetAllArtists(InternalItemsQuery query)
  1155. {
  1156. if (query.User != null)
  1157. {
  1158. AddUserToQuery(query, query.User);
  1159. }
  1160. SetTopParentOrAncestorIds(query);
  1161. return ItemRepository.GetAllArtists(query);
  1162. }
  1163. public QueryResult<Tuple<BaseItem, ItemCounts>> GetArtists(InternalItemsQuery query)
  1164. {
  1165. if (query.User != null)
  1166. {
  1167. AddUserToQuery(query, query.User);
  1168. }
  1169. SetTopParentOrAncestorIds(query);
  1170. return ItemRepository.GetArtists(query);
  1171. }
  1172. private void SetTopParentOrAncestorIds(InternalItemsQuery query)
  1173. {
  1174. if (query.AncestorIds.Length == 0)
  1175. {
  1176. return;
  1177. }
  1178. var parents = query.AncestorIds.Select(i => GetItemById(new Guid(i))).ToList();
  1179. if (parents.All(i =>
  1180. {
  1181. if (i is ICollectionFolder || i is UserView)
  1182. {
  1183. return true;
  1184. }
  1185. //_logger.Debug("Query requires ancestor query due to type: " + i.GetType().Name);
  1186. return false;
  1187. }))
  1188. {
  1189. // Optimize by querying against top level views
  1190. query.TopParentIds = parents.SelectMany(i => GetTopParentsForQuery(i, query.User)).Select(i => i.Id.ToString("N")).ToArray();
  1191. query.AncestorIds = new string[] { };
  1192. }
  1193. }
  1194. public QueryResult<Tuple<BaseItem, ItemCounts>> GetAlbumArtists(InternalItemsQuery query)
  1195. {
  1196. if (query.User != null)
  1197. {
  1198. AddUserToQuery(query, query.User);
  1199. }
  1200. SetTopParentOrAncestorIds(query);
  1201. return ItemRepository.GetAlbumArtists(query);
  1202. }
  1203. public QueryResult<BaseItem> GetItemsResult(InternalItemsQuery query)
  1204. {
  1205. if (query.Recursive && query.ParentId.HasValue)
  1206. {
  1207. var parent = GetItemById(query.ParentId.Value);
  1208. if (parent != null)
  1209. {
  1210. SetTopParentIdsOrAncestors(query, new List<BaseItem> { parent });
  1211. query.ParentId = null;
  1212. }
  1213. }
  1214. if (query.User != null)
  1215. {
  1216. AddUserToQuery(query, query.User);
  1217. }
  1218. if (query.EnableTotalRecordCount)
  1219. {
  1220. return ItemRepository.GetItems(query);
  1221. }
  1222. return new QueryResult<BaseItem>
  1223. {
  1224. Items = ItemRepository.GetItemList(query).ToArray()
  1225. };
  1226. }
  1227. private void SetTopParentIdsOrAncestors(InternalItemsQuery query, List<BaseItem> parents)
  1228. {
  1229. if (parents.All(i =>
  1230. {
  1231. if (i is ICollectionFolder || i is UserView)
  1232. {
  1233. return true;
  1234. }
  1235. //_logger.Debug("Query requires ancestor query due to type: " + i.GetType().Name);
  1236. return false;
  1237. }))
  1238. {
  1239. // Optimize by querying against top level views
  1240. query.TopParentIds = parents.SelectMany(i => GetTopParentsForQuery(i, query.User)).Select(i => i.Id.ToString("N")).ToArray();
  1241. }
  1242. else
  1243. {
  1244. // We need to be able to query from any arbitrary ancestor up the tree
  1245. query.AncestorIds = parents.SelectMany(i => i.GetIdsForAncestorQuery()).Select(i => i.ToString("N")).ToArray();
  1246. }
  1247. }
  1248. private void AddUserToQuery(InternalItemsQuery query, User user)
  1249. {
  1250. if (query.AncestorIds.Length == 0 &&
  1251. !query.ParentId.HasValue &&
  1252. query.ChannelIds.Length == 0 &&
  1253. query.TopParentIds.Length == 0 &&
  1254. string.IsNullOrWhiteSpace(query.AncestorWithPresentationUniqueKey) &&
  1255. string.IsNullOrWhiteSpace(query.SeriesPresentationUniqueKey) &&
  1256. query.ItemIds.Length == 0)
  1257. {
  1258. var userViews = _userviewManager().GetUserViews(new UserViewQuery
  1259. {
  1260. UserId = user.Id.ToString("N"),
  1261. IncludeHidden = true
  1262. }, CancellationToken.None).Result.ToList();
  1263. query.TopParentIds = userViews.SelectMany(i => GetTopParentsForQuery(i, user)).Select(i => i.Id.ToString("N")).ToArray();
  1264. }
  1265. }
  1266. private IEnumerable<BaseItem> GetTopParentsForQuery(BaseItem item, User user)
  1267. {
  1268. var view = item as UserView;
  1269. if (view != null)
  1270. {
  1271. if (string.Equals(view.ViewType, CollectionType.LiveTv))
  1272. {
  1273. return new[] { view };
  1274. }
  1275. if (string.Equals(view.ViewType, CollectionType.Channels))
  1276. {
  1277. var channelResult = BaseItem.ChannelManager.GetChannelsInternal(new ChannelQuery
  1278. {
  1279. UserId = user.Id.ToString("N")
  1280. }, CancellationToken.None).Result;
  1281. return channelResult.Items;
  1282. }
  1283. // Translate view into folders
  1284. if (view.DisplayParentId != Guid.Empty)
  1285. {
  1286. var displayParent = GetItemById(view.DisplayParentId);
  1287. if (displayParent != null)
  1288. {
  1289. return GetTopParentsForQuery(displayParent, user);
  1290. }
  1291. return new BaseItem[] { };
  1292. }
  1293. if (view.ParentId != Guid.Empty)
  1294. {
  1295. var displayParent = GetItemById(view.ParentId);
  1296. if (displayParent != null)
  1297. {
  1298. return GetTopParentsForQuery(displayParent, user);
  1299. }
  1300. return new BaseItem[] { };
  1301. }
  1302. // Handle grouping
  1303. if (user != null && !string.IsNullOrWhiteSpace(view.ViewType) && UserView.IsEligibleForGrouping(view.ViewType) && user.Configuration.GroupedFolders.Length > 0)
  1304. {
  1305. return user.RootFolder
  1306. .GetChildren(user, true)
  1307. .OfType<CollectionFolder>()
  1308. .Where(i => string.IsNullOrWhiteSpace(i.CollectionType) || string.Equals(i.CollectionType, view.ViewType, StringComparison.OrdinalIgnoreCase))
  1309. .Where(i => user.IsFolderGrouped(i.Id))
  1310. .SelectMany(i => GetTopParentsForQuery(i, user));
  1311. }
  1312. return new BaseItem[] { };
  1313. }
  1314. var collectionFolder = item as CollectionFolder;
  1315. if (collectionFolder != null)
  1316. {
  1317. return collectionFolder.GetPhysicalParents();
  1318. }
  1319. var topParent = item.GetTopParent();
  1320. if (topParent != null)
  1321. {
  1322. return new[] { topParent };
  1323. }
  1324. return new BaseItem[] { };
  1325. }
  1326. /// <summary>
  1327. /// Gets the intros.
  1328. /// </summary>
  1329. /// <param name="item">The item.</param>
  1330. /// <param name="user">The user.</param>
  1331. /// <returns>IEnumerable{System.String}.</returns>
  1332. public async Task<IEnumerable<Video>> GetIntros(BaseItem item, User user)
  1333. {
  1334. var tasks = IntroProviders
  1335. .OrderBy(i => i.GetType().Name.IndexOf("Default", StringComparison.OrdinalIgnoreCase) == -1 ? 0 : 1)
  1336. .Take(1)
  1337. .Select(i => GetIntros(i, item, user));
  1338. var items = await Task.WhenAll(tasks).ConfigureAwait(false);
  1339. return items
  1340. .SelectMany(i => i.ToArray())
  1341. .Select(ResolveIntro)
  1342. .Where(i => i != null);
  1343. }
  1344. /// <summary>
  1345. /// Gets the intros.
  1346. /// </summary>
  1347. /// <param name="provider">The provider.</param>
  1348. /// <param name="item">The item.</param>
  1349. /// <param name="user">The user.</param>
  1350. /// <returns>Task&lt;IEnumerable&lt;IntroInfo&gt;&gt;.</returns>
  1351. private async Task<IEnumerable<IntroInfo>> GetIntros(IIntroProvider provider, BaseItem item, User user)
  1352. {
  1353. try
  1354. {
  1355. return await provider.GetIntros(item, user).ConfigureAwait(false);
  1356. }
  1357. catch (Exception ex)
  1358. {
  1359. _logger.ErrorException("Error getting intros", ex);
  1360. return new List<IntroInfo>();
  1361. }
  1362. }
  1363. /// <summary>
  1364. /// Gets all intro files.
  1365. /// </summary>
  1366. /// <returns>IEnumerable{System.String}.</returns>
  1367. public IEnumerable<string> GetAllIntroFiles()
  1368. {
  1369. return IntroProviders.SelectMany(i =>
  1370. {
  1371. try
  1372. {
  1373. return i.GetAllIntroFiles().ToList();
  1374. }
  1375. catch (Exception ex)
  1376. {
  1377. _logger.ErrorException("Error getting intro files", ex);
  1378. return new List<string>();
  1379. }
  1380. });
  1381. }
  1382. /// <summary>
  1383. /// Resolves the intro.
  1384. /// </summary>
  1385. /// <param name="info">The info.</param>
  1386. /// <returns>Video.</returns>
  1387. private Video ResolveIntro(IntroInfo info)
  1388. {
  1389. Video video = null;
  1390. if (info.ItemId.HasValue)
  1391. {
  1392. // Get an existing item by Id
  1393. video = GetItemById(info.ItemId.Value) as Video;
  1394. if (video == null)
  1395. {
  1396. _logger.Error("Unable to locate item with Id {0}.", info.ItemId.Value);
  1397. }
  1398. }
  1399. else if (!string.IsNullOrEmpty(info.Path))
  1400. {
  1401. try
  1402. {
  1403. // Try to resolve the path into a video
  1404. video = ResolvePath(_fileSystem.GetFileSystemInfo(info.Path)) as Video;
  1405. if (video == null)
  1406. {
  1407. _logger.Error("Intro resolver returned null for {0}.", info.Path);
  1408. }
  1409. else
  1410. {
  1411. // Pull the saved db item that will include metadata
  1412. var dbItem = GetItemById(video.Id) as Video;
  1413. if (dbItem != null)
  1414. {
  1415. video = dbItem;
  1416. }
  1417. else
  1418. {
  1419. return null;
  1420. }
  1421. }
  1422. }
  1423. catch (Exception ex)
  1424. {
  1425. _logger.ErrorException("Error resolving path {0}.", ex, info.Path);
  1426. }
  1427. }
  1428. else
  1429. {
  1430. _logger.Error("IntroProvider returned an IntroInfo with null Path and ItemId.");
  1431. }
  1432. return video;
  1433. }
  1434. /// <summary>
  1435. /// Sorts the specified sort by.
  1436. /// </summary>
  1437. /// <param name="items">The items.</param>
  1438. /// <param name="user">The user.</param>
  1439. /// <param name="sortBy">The sort by.</param>
  1440. /// <param name="sortOrder">The sort order.</param>
  1441. /// <returns>IEnumerable{BaseItem}.</returns>
  1442. public IEnumerable<BaseItem> Sort(IEnumerable<BaseItem> items, User user, IEnumerable<string> sortBy, SortOrder sortOrder)
  1443. {
  1444. var isFirst = true;
  1445. IOrderedEnumerable<BaseItem> orderedItems = null;
  1446. foreach (var orderBy in sortBy.Select(o => GetComparer(o, user)).Where(c => c != null))
  1447. {
  1448. if (isFirst)
  1449. {
  1450. orderedItems = sortOrder == SortOrder.Descending ? items.OrderByDescending(i => i, orderBy) : items.OrderBy(i => i, orderBy);
  1451. }
  1452. else
  1453. {
  1454. orderedItems = sortOrder == SortOrder.Descending ? orderedItems.ThenByDescending(i => i, orderBy) : orderedItems.ThenBy(i => i, orderBy);
  1455. }
  1456. isFirst = false;
  1457. }
  1458. return orderedItems ?? items;
  1459. }
  1460. /// <summary>
  1461. /// Gets the comparer.
  1462. /// </summary>
  1463. /// <param name="name">The name.</param>
  1464. /// <param name="user">The user.</param>
  1465. /// <returns>IBaseItemComparer.</returns>
  1466. private IBaseItemComparer GetComparer(string name, User user)
  1467. {
  1468. var comparer = Comparers.FirstOrDefault(c => string.Equals(name, c.Name, StringComparison.OrdinalIgnoreCase));
  1469. if (comparer != null)
  1470. {
  1471. // If it requires a user, create a new one, and assign the user
  1472. if (comparer is IUserBaseItemComparer)
  1473. {
  1474. var userComparer = (IUserBaseItemComparer)Activator.CreateInstance(comparer.GetType());
  1475. userComparer.User = user;
  1476. userComparer.UserManager = _userManager;
  1477. userComparer.UserDataRepository = _userDataRepository;
  1478. return userComparer;
  1479. }
  1480. }
  1481. return comparer;
  1482. }
  1483. /// <summary>
  1484. /// Creates the item.
  1485. /// </summary>
  1486. /// <param name="item">The item.</param>
  1487. /// <param name="cancellationToken">The cancellation token.</param>
  1488. /// <returns>Task.</returns>
  1489. public Task CreateItem(BaseItem item, CancellationToken cancellationToken)
  1490. {
  1491. return CreateItems(new[] { item }, cancellationToken);
  1492. }
  1493. /// <summary>
  1494. /// Creates the items.
  1495. /// </summary>
  1496. /// <param name="items">The items.</param>
  1497. /// <param name="cancellationToken">The cancellation token.</param>
  1498. /// <returns>Task.</returns>
  1499. public async Task CreateItems(IEnumerable<BaseItem> items, CancellationToken cancellationToken)
  1500. {
  1501. var list = items.ToList();
  1502. await ItemRepository.SaveItems(list, cancellationToken).ConfigureAwait(false);
  1503. foreach (var item in list)
  1504. {
  1505. RegisterItem(item);
  1506. }
  1507. if (ItemAdded != null)
  1508. {
  1509. foreach (var item in list)
  1510. {
  1511. try
  1512. {
  1513. ItemAdded(this, new ItemChangeEventArgs { Item = item });
  1514. }
  1515. catch (Exception ex)
  1516. {
  1517. _logger.ErrorException("Error in ItemAdded event handler", ex);
  1518. }
  1519. }
  1520. }
  1521. }
  1522. /// <summary>
  1523. /// Updates the item.
  1524. /// </summary>
  1525. /// <param name="item">The item.</param>
  1526. /// <param name="updateReason">The update reason.</param>
  1527. /// <param name="cancellationToken">The cancellation token.</param>
  1528. /// <returns>Task.</returns>
  1529. public async Task UpdateItem(BaseItem item, ItemUpdateType updateReason, CancellationToken cancellationToken)
  1530. {
  1531. var locationType = item.LocationType;
  1532. if (locationType != LocationType.Remote && locationType != LocationType.Virtual)
  1533. {
  1534. await _providerManagerFactory().SaveMetadata(item, updateReason).ConfigureAwait(false);
  1535. }
  1536. item.DateLastSaved = DateTime.UtcNow;
  1537. var logName = item.LocationType == LocationType.Remote ? item.Name ?? item.Path : item.Path ?? item.Name;
  1538. _logger.Debug("Saving {0} to database.", logName);
  1539. await ItemRepository.SaveItem(item, cancellationToken).ConfigureAwait(false);
  1540. RegisterItem(item);
  1541. if (ItemUpdated != null)
  1542. {
  1543. try
  1544. {
  1545. ItemUpdated(this, new ItemChangeEventArgs
  1546. {
  1547. Item = item,
  1548. UpdateReason = updateReason
  1549. });
  1550. }
  1551. catch (Exception ex)
  1552. {
  1553. _logger.ErrorException("Error in ItemUpdated event handler", ex);
  1554. }
  1555. }
  1556. }
  1557. /// <summary>
  1558. /// Reports the item removed.
  1559. /// </summary>
  1560. /// <param name="item">The item.</param>
  1561. public void ReportItemRemoved(BaseItem item)
  1562. {
  1563. if (ItemRemoved != null)
  1564. {
  1565. try
  1566. {
  1567. ItemRemoved(this, new ItemChangeEventArgs { Item = item });
  1568. }
  1569. catch (Exception ex)
  1570. {
  1571. _logger.ErrorException("Error in ItemRemoved event handler", ex);
  1572. }
  1573. }
  1574. }
  1575. /// <summary>
  1576. /// Retrieves the item.
  1577. /// </summary>
  1578. /// <param name="id">The id.</param>
  1579. /// <returns>BaseItem.</returns>
  1580. public BaseItem RetrieveItem(Guid id)
  1581. {
  1582. return ItemRepository.RetrieveItem(id);
  1583. }
  1584. public IEnumerable<Folder> GetCollectionFolders(BaseItem item)
  1585. {
  1586. while (!(item.GetParent() is AggregateFolder) && item.GetParent() != null)
  1587. {
  1588. item = item.GetParent();
  1589. }
  1590. if (item == null)
  1591. {
  1592. return new List<Folder>();
  1593. }
  1594. return GetUserRootFolder().Children
  1595. .OfType<Folder>()
  1596. .Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations.Contains(item.Path, StringComparer.OrdinalIgnoreCase));
  1597. }
  1598. public LibraryOptions GetLibraryOptions(BaseItem item)
  1599. {
  1600. var collectionFolder = item as CollectionFolder;
  1601. if (collectionFolder == null)
  1602. {
  1603. collectionFolder = GetCollectionFolders(item)
  1604. .OfType<CollectionFolder>()
  1605. .FirstOrDefault();
  1606. }
  1607. var options = collectionFolder == null ? new LibraryOptions() : collectionFolder.GetLibraryOptions();
  1608. if (options.SchemaVersion < 3)
  1609. {
  1610. options.SaveLocalMetadata = ConfigurationManager.Configuration.SaveLocalMeta;
  1611. options.EnableInternetProviders = ConfigurationManager.Configuration.EnableInternetProviders;
  1612. }
  1613. if (options.SchemaVersion < 2)
  1614. {
  1615. var chapterOptions = ConfigurationManager.GetConfiguration<ChapterOptions>("chapters");
  1616. options.ExtractChapterImagesDuringLibraryScan = chapterOptions.ExtractDuringLibraryScan;
  1617. if (collectionFolder != null)
  1618. {
  1619. if (string.Equals(collectionFolder.CollectionType, "movies", StringComparison.OrdinalIgnoreCase))
  1620. {
  1621. options.EnableChapterImageExtraction = chapterOptions.EnableMovieChapterImageExtraction;
  1622. }
  1623. else if (string.Equals(collectionFolder.CollectionType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase))
  1624. {
  1625. options.EnableChapterImageExtraction = chapterOptions.EnableEpisodeChapterImageExtraction;
  1626. }
  1627. }
  1628. }
  1629. return options;
  1630. }
  1631. public string GetContentType(BaseItem item)
  1632. {
  1633. string configuredContentType = GetConfiguredContentType(item, false);
  1634. if (!string.IsNullOrWhiteSpace(configuredContentType))
  1635. {
  1636. return configuredContentType;
  1637. }
  1638. configuredContentType = GetConfiguredContentType(item, true);
  1639. if (!string.IsNullOrWhiteSpace(configuredContentType))
  1640. {
  1641. return configuredContentType;
  1642. }
  1643. return GetInheritedContentType(item);
  1644. }
  1645. public string GetInheritedContentType(BaseItem item)
  1646. {
  1647. var type = GetTopFolderContentType(item);
  1648. if (!string.IsNullOrWhiteSpace(type))
  1649. {
  1650. return type;
  1651. }
  1652. return item.GetParents()
  1653. .Select(GetConfiguredContentType)
  1654. .LastOrDefault(i => !string.IsNullOrWhiteSpace(i));
  1655. }
  1656. public string GetConfiguredContentType(BaseItem item)
  1657. {
  1658. return GetConfiguredContentType(item, false);
  1659. }
  1660. public string GetConfiguredContentType(string path)
  1661. {
  1662. return GetContentTypeOverride(path, false);
  1663. }
  1664. public string GetConfiguredContentType(BaseItem item, bool inheritConfiguredPath)
  1665. {
  1666. ICollectionFolder collectionFolder = item as ICollectionFolder;
  1667. if (collectionFolder != null)
  1668. {
  1669. return collectionFolder.CollectionType;
  1670. }
  1671. return GetContentTypeOverride(item.ContainingFolderPath, inheritConfiguredPath);
  1672. }
  1673. private string GetContentTypeOverride(string path, bool inherit)
  1674. {
  1675. var nameValuePair = ConfigurationManager.Configuration.ContentTypes.FirstOrDefault(i => string.Equals(i.Name, path, StringComparison.OrdinalIgnoreCase) || (inherit && !string.IsNullOrWhiteSpace(i.Name) && _fileSystem.ContainsSubPath(i.Name, path)));
  1676. if (nameValuePair != null)
  1677. {
  1678. return nameValuePair.Value;
  1679. }
  1680. return null;
  1681. }
  1682. private string GetTopFolderContentType(BaseItem item)
  1683. {
  1684. if (item == null)
  1685. {
  1686. return null;
  1687. }
  1688. while (!(item.GetParent() is AggregateFolder) && item.GetParent() != null)
  1689. {
  1690. item = item.GetParent();
  1691. }
  1692. return GetUserRootFolder().Children
  1693. .OfType<ICollectionFolder>()
  1694. .Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations.Contains(item.Path))
  1695. .Select(i => i.CollectionType)
  1696. .FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
  1697. }
  1698. private readonly TimeSpan _viewRefreshInterval = TimeSpan.FromHours(24);
  1699. //private readonly TimeSpan _viewRefreshInterval = TimeSpan.FromMinutes(1);
  1700. public Task<UserView> GetNamedView(User user,
  1701. string name,
  1702. string viewType,
  1703. string sortName,
  1704. CancellationToken cancellationToken)
  1705. {
  1706. return GetNamedView(user, name, null, viewType, sortName, cancellationToken);
  1707. }
  1708. public async Task<UserView> GetNamedView(string name,
  1709. string viewType,
  1710. string sortName,
  1711. CancellationToken cancellationToken)
  1712. {
  1713. var path = Path.Combine(ConfigurationManager.ApplicationPaths.ItemsByNamePath, "views");
  1714. path = Path.Combine(path, _fileSystem.GetValidFilename(viewType));
  1715. var id = GetNewItemId(path + "_namedview_" + name, typeof(UserView));
  1716. var item = GetItemById(id) as UserView;
  1717. var refresh = false;
  1718. if (item == null || !string.Equals(item.Path, path, StringComparison.OrdinalIgnoreCase))
  1719. {
  1720. _fileSystem.CreateDirectory(path);
  1721. item = new UserView
  1722. {
  1723. Path = path,
  1724. Id = id,
  1725. DateCreated = DateTime.UtcNow,
  1726. Name = name,
  1727. ViewType = viewType,
  1728. ForcedSortName = sortName
  1729. };
  1730. await CreateItem(item, cancellationToken).ConfigureAwait(false);
  1731. refresh = true;
  1732. }
  1733. if (!refresh)
  1734. {
  1735. refresh = DateTime.UtcNow - item.DateLastRefreshed >= _viewRefreshInterval;
  1736. }
  1737. if (!refresh && item.DisplayParentId != Guid.Empty)
  1738. {
  1739. var displayParent = GetItemById(item.DisplayParentId);
  1740. refresh = displayParent != null && displayParent.DateLastSaved > item.DateLastRefreshed;
  1741. }
  1742. if (refresh)
  1743. {
  1744. await item.UpdateToRepository(ItemUpdateType.MetadataImport, CancellationToken.None).ConfigureAwait(false);
  1745. _providerManagerFactory().QueueRefresh(item.Id, new MetadataRefreshOptions(_fileSystem)
  1746. {
  1747. // Not sure why this is necessary but need to figure it out
  1748. // View images are not getting utilized without this
  1749. ForceSave = true
  1750. });
  1751. }
  1752. return item;
  1753. }
  1754. public async Task<UserView> GetNamedView(User user,
  1755. string name,
  1756. string parentId,
  1757. string viewType,
  1758. string sortName,
  1759. CancellationToken cancellationToken)
  1760. {
  1761. var idValues = "38_namedview_" + name + user.Id.ToString("N") + (parentId ?? string.Empty) + (viewType ?? string.Empty);
  1762. var id = GetNewItemId(idValues, typeof(UserView));
  1763. var path = Path.Combine(ConfigurationManager.ApplicationPaths.InternalMetadataPath, "views", id.ToString("N"));
  1764. var item = GetItemById(id) as UserView;
  1765. var isNew = false;
  1766. if (item == null)
  1767. {
  1768. _fileSystem.CreateDirectory(path);
  1769. item = new UserView
  1770. {
  1771. Path = path,
  1772. Id = id,
  1773. DateCreated = DateTime.UtcNow,
  1774. Name = name,
  1775. ViewType = viewType,
  1776. ForcedSortName = sortName,
  1777. UserId = user.Id
  1778. };
  1779. if (!string.IsNullOrWhiteSpace(parentId))
  1780. {
  1781. item.DisplayParentId = new Guid(parentId);
  1782. }
  1783. await CreateItem(item, cancellationToken).ConfigureAwait(false);
  1784. isNew = true;
  1785. }
  1786. var refresh = isNew || DateTime.UtcNow - item.DateLastRefreshed >= _viewRefreshInterval;
  1787. if (!refresh && item.DisplayParentId != Guid.Empty)
  1788. {
  1789. var displayParent = GetItemById(item.DisplayParentId);
  1790. refresh = displayParent != null && displayParent.DateLastSaved > item.DateLastRefreshed;
  1791. }
  1792. if (refresh)
  1793. {
  1794. _providerManagerFactory().QueueRefresh(item.Id, new MetadataRefreshOptions(_fileSystem)
  1795. {
  1796. // Need to force save to increment DateLastSaved
  1797. ForceSave = true
  1798. });
  1799. }
  1800. return item;
  1801. }
  1802. public async Task<UserView> GetShadowView(BaseItem parent,
  1803. string viewType,
  1804. string sortName,
  1805. CancellationToken cancellationToken)
  1806. {
  1807. if (parent == null)
  1808. {
  1809. throw new ArgumentNullException("parent");
  1810. }
  1811. var name = parent.Name;
  1812. var parentId = parent.Id;
  1813. var idValues = "38_namedview_" + name + parentId + (viewType ?? string.Empty);
  1814. var id = GetNewItemId(idValues, typeof(UserView));
  1815. var path = parent.Path;
  1816. var item = GetItemById(id) as UserView;
  1817. var isNew = false;
  1818. if (item == null)
  1819. {
  1820. _fileSystem.CreateDirectory(path);
  1821. item = new UserView
  1822. {
  1823. Path = path,
  1824. Id = id,
  1825. DateCreated = DateTime.UtcNow,
  1826. Name = name,
  1827. ViewType = viewType,
  1828. ForcedSortName = sortName
  1829. };
  1830. item.DisplayParentId = parentId;
  1831. await CreateItem(item, cancellationToken).ConfigureAwait(false);
  1832. isNew = true;
  1833. }
  1834. var refresh = isNew || DateTime.UtcNow - item.DateLastRefreshed >= _viewRefreshInterval;
  1835. if (!refresh && item.DisplayParentId != Guid.Empty)
  1836. {
  1837. var displayParent = GetItemById(item.DisplayParentId);
  1838. refresh = displayParent != null && displayParent.DateLastSaved > item.DateLastRefreshed;
  1839. }
  1840. if (refresh)
  1841. {
  1842. _providerManagerFactory().QueueRefresh(item.Id, new MetadataRefreshOptions(_fileSystem)
  1843. {
  1844. // Need to force save to increment DateLastSaved
  1845. ForceSave = true
  1846. });
  1847. }
  1848. return item;
  1849. }
  1850. public async Task<UserView> GetNamedView(string name,
  1851. string parentId,
  1852. string viewType,
  1853. string sortName,
  1854. string uniqueId,
  1855. CancellationToken cancellationToken)
  1856. {
  1857. if (string.IsNullOrWhiteSpace(name))
  1858. {
  1859. throw new ArgumentNullException("name");
  1860. }
  1861. var idValues = "37_namedview_" + name + (parentId ?? string.Empty) + (viewType ?? string.Empty);
  1862. if (!string.IsNullOrWhiteSpace(uniqueId))
  1863. {
  1864. idValues += uniqueId;
  1865. }
  1866. var id = GetNewItemId(idValues, typeof(UserView));
  1867. var path = Path.Combine(ConfigurationManager.ApplicationPaths.InternalMetadataPath, "views", id.ToString("N"));
  1868. var item = GetItemById(id) as UserView;
  1869. var isNew = false;
  1870. if (item == null)
  1871. {
  1872. _fileSystem.CreateDirectory(path);
  1873. item = new UserView
  1874. {
  1875. Path = path,
  1876. Id = id,
  1877. DateCreated = DateTime.UtcNow,
  1878. Name = name,
  1879. ViewType = viewType,
  1880. ForcedSortName = sortName
  1881. };
  1882. if (!string.IsNullOrWhiteSpace(parentId))
  1883. {
  1884. item.DisplayParentId = new Guid(parentId);
  1885. }
  1886. await CreateItem(item, cancellationToken).ConfigureAwait(false);
  1887. isNew = true;
  1888. }
  1889. if (!string.Equals(viewType, item.ViewType, StringComparison.OrdinalIgnoreCase))
  1890. {
  1891. item.ViewType = viewType;
  1892. await item.UpdateToRepository(ItemUpdateType.MetadataEdit, cancellationToken).ConfigureAwait(false);
  1893. }
  1894. var refresh = isNew || DateTime.UtcNow - item.DateLastRefreshed >= _viewRefreshInterval;
  1895. if (!refresh && item.DisplayParentId != Guid.Empty)
  1896. {
  1897. var displayParent = GetItemById(item.DisplayParentId);
  1898. refresh = displayParent != null && displayParent.DateLastSaved > item.DateLastRefreshed;
  1899. }
  1900. if (refresh)
  1901. {
  1902. _providerManagerFactory().QueueRefresh(item.Id, new MetadataRefreshOptions(_fileSystem)
  1903. {
  1904. // Need to force save to increment DateLastSaved
  1905. ForceSave = true
  1906. });
  1907. }
  1908. return item;
  1909. }
  1910. public bool IsVideoFile(string path, LibraryOptions libraryOptions)
  1911. {
  1912. var resolver = new VideoResolver(GetNamingOptions(libraryOptions), new NullLogger());
  1913. return resolver.IsVideoFile(path);
  1914. }
  1915. public bool IsVideoFile(string path)
  1916. {
  1917. return IsVideoFile(path, new LibraryOptions());
  1918. }
  1919. public bool IsAudioFile(string path, LibraryOptions libraryOptions)
  1920. {
  1921. var parser = new AudioFileParser(GetNamingOptions(libraryOptions));
  1922. return parser.IsAudioFile(path);
  1923. }
  1924. public bool IsAudioFile(string path)
  1925. {
  1926. return IsAudioFile(path, new LibraryOptions());
  1927. }
  1928. public int? GetSeasonNumberFromPath(string path)
  1929. {
  1930. return new SeasonPathParser(GetNamingOptions(), new RegexProvider()).Parse(path, true, true).SeasonNumber;
  1931. }
  1932. public bool FillMissingEpisodeNumbersFromPath(Episode episode)
  1933. {
  1934. var resolver = new EpisodeResolver(GetNamingOptions(),
  1935. new NullLogger());
  1936. var isFolder = episode.VideoType == VideoType.BluRay || episode.VideoType == VideoType.Dvd ||
  1937. episode.VideoType == VideoType.HdDvd;
  1938. var locationType = episode.LocationType;
  1939. var episodeInfo = locationType == LocationType.FileSystem || locationType == LocationType.Offline ?
  1940. resolver.Resolve(episode.Path, isFolder) :
  1941. new MediaBrowser.Naming.TV.EpisodeInfo();
  1942. if (episodeInfo == null)
  1943. {
  1944. episodeInfo = new MediaBrowser.Naming.TV.EpisodeInfo();
  1945. }
  1946. var changed = false;
  1947. if (episodeInfo.IsByDate)
  1948. {
  1949. if (episode.IndexNumber.HasValue)
  1950. {
  1951. episode.IndexNumber = null;
  1952. changed = true;
  1953. }
  1954. if (episode.IndexNumberEnd.HasValue)
  1955. {
  1956. episode.IndexNumberEnd = null;
  1957. changed = true;
  1958. }
  1959. if (!episode.PremiereDate.HasValue)
  1960. {
  1961. if (episodeInfo.Year.HasValue && episodeInfo.Month.HasValue && episodeInfo.Day.HasValue)
  1962. {
  1963. episode.PremiereDate = new DateTime(episodeInfo.Year.Value, episodeInfo.Month.Value, episodeInfo.Day.Value).ToUniversalTime();
  1964. }
  1965. if (episode.PremiereDate.HasValue)
  1966. {
  1967. changed = true;
  1968. }
  1969. }
  1970. if (!episode.ProductionYear.HasValue)
  1971. {
  1972. episode.ProductionYear = episodeInfo.Year;
  1973. if (episode.ProductionYear.HasValue)
  1974. {
  1975. changed = true;
  1976. }
  1977. }
  1978. if (!episode.ParentIndexNumber.HasValue)
  1979. {
  1980. var season = episode.Season;
  1981. if (season != null)
  1982. {
  1983. episode.ParentIndexNumber = season.IndexNumber;
  1984. }
  1985. if (episode.ParentIndexNumber.HasValue)
  1986. {
  1987. changed = true;
  1988. }
  1989. }
  1990. }
  1991. else
  1992. {
  1993. if (!episode.IndexNumber.HasValue)
  1994. {
  1995. episode.IndexNumber = episodeInfo.EpisodeNumber;
  1996. if (episode.IndexNumber.HasValue)
  1997. {
  1998. changed = true;
  1999. }
  2000. }
  2001. if (!episode.IndexNumberEnd.HasValue)
  2002. {
  2003. episode.IndexNumberEnd = episodeInfo.EndingEpsiodeNumber;
  2004. if (episode.IndexNumberEnd.HasValue)
  2005. {
  2006. changed = true;
  2007. }
  2008. }
  2009. if (!episode.ParentIndexNumber.HasValue)
  2010. {
  2011. episode.ParentIndexNumber = episodeInfo.SeasonNumber;
  2012. if (!episode.ParentIndexNumber.HasValue)
  2013. {
  2014. var season = episode.Season;
  2015. if (season != null)
  2016. {
  2017. episode.ParentIndexNumber = season.IndexNumber;
  2018. }
  2019. }
  2020. if (episode.ParentIndexNumber.HasValue)
  2021. {
  2022. changed = true;
  2023. }
  2024. }
  2025. }
  2026. return changed;
  2027. }
  2028. public NamingOptions GetNamingOptions()
  2029. {
  2030. return GetNamingOptions(new LibraryOptions());
  2031. }
  2032. public NamingOptions GetNamingOptions(LibraryOptions libraryOptions)
  2033. {
  2034. var options = new ExtendedNamingOptions();
  2035. // These cause apps to have problems
  2036. options.AudioFileExtensions.Remove(".m3u");
  2037. options.AudioFileExtensions.Remove(".wpl");
  2038. if (!libraryOptions.EnableArchiveMediaFiles)
  2039. {
  2040. options.AudioFileExtensions.Remove(".rar");
  2041. options.AudioFileExtensions.Remove(".zip");
  2042. }
  2043. if (!libraryOptions.EnableArchiveMediaFiles)
  2044. {
  2045. options.VideoFileExtensions.Remove(".rar");
  2046. options.VideoFileExtensions.Remove(".zip");
  2047. }
  2048. return options;
  2049. }
  2050. public ItemLookupInfo ParseName(string name)
  2051. {
  2052. var resolver = new VideoResolver(GetNamingOptions(), new NullLogger());
  2053. var result = resolver.CleanDateTime(name);
  2054. var cleanName = resolver.CleanString(result.Name);
  2055. return new ItemLookupInfo
  2056. {
  2057. Name = cleanName.Name,
  2058. Year = result.Year
  2059. };
  2060. }
  2061. public IEnumerable<Video> FindTrailers(BaseItem owner, List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
  2062. {
  2063. var files = owner.DetectIsInMixedFolder() ? new List<FileSystemMetadata>() : fileSystemChildren.Where(i => i.IsDirectory)
  2064. .Where(i => string.Equals(i.Name, BaseItem.TrailerFolderName, StringComparison.OrdinalIgnoreCase))
  2065. .SelectMany(i => _fileSystem.GetFiles(i.FullName, false))
  2066. .ToList();
  2067. var videoListResolver = new VideoListResolver(GetNamingOptions(), new NullLogger());
  2068. var videos = videoListResolver.Resolve(fileSystemChildren);
  2069. var currentVideo = videos.FirstOrDefault(i => string.Equals(owner.Path, i.Files.First().Path, StringComparison.OrdinalIgnoreCase));
  2070. if (currentVideo != null)
  2071. {
  2072. files.AddRange(currentVideo.Extras.Where(i => string.Equals(i.ExtraType, "trailer", StringComparison.OrdinalIgnoreCase)).Select(i => _fileSystem.GetFileInfo(i.Path)));
  2073. }
  2074. var resolvers = new IItemResolver[]
  2075. {
  2076. new GenericVideoResolver<Trailer>(this)
  2077. };
  2078. return ResolvePaths(files, directoryService, null, new LibraryOptions(), null, resolvers)
  2079. .OfType<Trailer>()
  2080. .Select(video =>
  2081. {
  2082. // Try to retrieve it from the db. If we don't find it, use the resolved version
  2083. var dbItem = GetItemById(video.Id) as Trailer;
  2084. if (dbItem != null)
  2085. {
  2086. video = dbItem;
  2087. }
  2088. video.ExtraType = ExtraType.Trailer;
  2089. video.TrailerTypes = new List<TrailerType> { TrailerType.LocalTrailer };
  2090. return video;
  2091. // Sort them so that the list can be easily compared for changes
  2092. }).OrderBy(i => i.Path).ToList();
  2093. }
  2094. private static readonly string[] ExtrasSubfolderNames = new[] { "extras", "specials", "shorts", "scenes", "featurettes", "behind the scenes", "deleted scenes" };
  2095. public IEnumerable<Video> FindExtras(BaseItem owner, List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
  2096. {
  2097. var files = fileSystemChildren.Where(i => i.IsDirectory)
  2098. .Where(i => ExtrasSubfolderNames.Contains(i.Name ?? string.Empty, StringComparer.OrdinalIgnoreCase))
  2099. .SelectMany(i => _fileSystem.GetFiles(i.FullName, false))
  2100. .ToList();
  2101. var videoListResolver = new VideoListResolver(GetNamingOptions(), new NullLogger());
  2102. var videos = videoListResolver.Resolve(fileSystemChildren);
  2103. var currentVideo = videos.FirstOrDefault(i => string.Equals(owner.Path, i.Files.First().Path, StringComparison.OrdinalIgnoreCase));
  2104. if (currentVideo != null)
  2105. {
  2106. files.AddRange(currentVideo.Extras.Where(i => !string.Equals(i.ExtraType, "trailer", StringComparison.OrdinalIgnoreCase)).Select(i => _fileSystem.GetFileInfo(i.Path)));
  2107. }
  2108. return ResolvePaths(files, directoryService, null, new LibraryOptions(), null)
  2109. .OfType<Video>()
  2110. .Select(video =>
  2111. {
  2112. // Try to retrieve it from the db. If we don't find it, use the resolved version
  2113. var dbItem = GetItemById(video.Id) as Video;
  2114. if (dbItem != null)
  2115. {
  2116. video = dbItem;
  2117. }
  2118. SetExtraTypeFromFilename(video);
  2119. return video;
  2120. // Sort them so that the list can be easily compared for changes
  2121. }).OrderBy(i => i.Path).ToList();
  2122. }
  2123. public string GetPathAfterNetworkSubstitution(string path, BaseItem ownerItem)
  2124. {
  2125. if (ownerItem != null)
  2126. {
  2127. var libraryOptions = GetLibraryOptions(ownerItem);
  2128. if (libraryOptions != null)
  2129. {
  2130. foreach (var pathInfo in libraryOptions.PathInfos)
  2131. {
  2132. if (string.IsNullOrWhiteSpace(pathInfo.NetworkPath))
  2133. {
  2134. continue;
  2135. }
  2136. var substitutionResult = SubstitutePathInternal(path, pathInfo.Path, pathInfo.NetworkPath);
  2137. if (substitutionResult.Item2)
  2138. {
  2139. return substitutionResult.Item1;
  2140. }
  2141. }
  2142. }
  2143. }
  2144. var metadataPath = ConfigurationManager.Configuration.MetadataPath;
  2145. var metadataNetworkPath = ConfigurationManager.Configuration.MetadataNetworkPath;
  2146. if (!string.IsNullOrWhiteSpace(metadataPath) && !string.IsNullOrWhiteSpace(metadataNetworkPath))
  2147. {
  2148. var metadataSubstitutionResult = SubstitutePathInternal(path, metadataPath, metadataNetworkPath);
  2149. if (metadataSubstitutionResult.Item2)
  2150. {
  2151. return metadataSubstitutionResult.Item1;
  2152. }
  2153. }
  2154. foreach (var map in ConfigurationManager.Configuration.PathSubstitutions)
  2155. {
  2156. var substitutionResult = SubstitutePathInternal(path, map.From, map.To);
  2157. if (substitutionResult.Item2)
  2158. {
  2159. return substitutionResult.Item1;
  2160. }
  2161. }
  2162. return path;
  2163. }
  2164. public string SubstitutePath(string path, string from, string to)
  2165. {
  2166. return SubstitutePathInternal(path, from, to).Item1;
  2167. }
  2168. private Tuple<string, bool> SubstitutePathInternal(string path, string from, string to)
  2169. {
  2170. if (string.IsNullOrWhiteSpace(path))
  2171. {
  2172. throw new ArgumentNullException("path");
  2173. }
  2174. if (string.IsNullOrWhiteSpace(from))
  2175. {
  2176. throw new ArgumentNullException("from");
  2177. }
  2178. if (string.IsNullOrWhiteSpace(to))
  2179. {
  2180. throw new ArgumentNullException("to");
  2181. }
  2182. from = from.Trim();
  2183. to = to.Trim();
  2184. var newPath = path.Replace(from, to, StringComparison.OrdinalIgnoreCase);
  2185. var changed = false;
  2186. if (!string.Equals(newPath, path))
  2187. {
  2188. if (to.IndexOf('/') != -1)
  2189. {
  2190. newPath = newPath.Replace('\\', '/');
  2191. }
  2192. else
  2193. {
  2194. newPath = newPath.Replace('/', '\\');
  2195. }
  2196. changed = true;
  2197. }
  2198. return new Tuple<string, bool>(newPath, changed);
  2199. }
  2200. private void SetExtraTypeFromFilename(Video item)
  2201. {
  2202. var resolver = new ExtraResolver(GetNamingOptions(), new NullLogger(), new RegexProvider());
  2203. var result = resolver.GetExtraInfo(item.Path);
  2204. if (string.Equals(result.ExtraType, "deletedscene", StringComparison.OrdinalIgnoreCase))
  2205. {
  2206. item.ExtraType = ExtraType.DeletedScene;
  2207. }
  2208. else if (string.Equals(result.ExtraType, "behindthescenes", StringComparison.OrdinalIgnoreCase))
  2209. {
  2210. item.ExtraType = ExtraType.BehindTheScenes;
  2211. }
  2212. else if (string.Equals(result.ExtraType, "interview", StringComparison.OrdinalIgnoreCase))
  2213. {
  2214. item.ExtraType = ExtraType.Interview;
  2215. }
  2216. else if (string.Equals(result.ExtraType, "scene", StringComparison.OrdinalIgnoreCase))
  2217. {
  2218. item.ExtraType = ExtraType.Scene;
  2219. }
  2220. else if (string.Equals(result.ExtraType, "sample", StringComparison.OrdinalIgnoreCase))
  2221. {
  2222. item.ExtraType = ExtraType.Sample;
  2223. }
  2224. else
  2225. {
  2226. item.ExtraType = ExtraType.Clip;
  2227. }
  2228. }
  2229. public List<PersonInfo> GetPeople(InternalPeopleQuery query)
  2230. {
  2231. return ItemRepository.GetPeople(query);
  2232. }
  2233. public List<PersonInfo> GetPeople(BaseItem item)
  2234. {
  2235. if (item.SupportsPeople)
  2236. {
  2237. var people = GetPeople(new InternalPeopleQuery
  2238. {
  2239. ItemId = item.Id
  2240. });
  2241. if (people.Count > 0)
  2242. {
  2243. return people;
  2244. }
  2245. }
  2246. return new List<PersonInfo>();
  2247. }
  2248. public List<Person> GetPeopleItems(InternalPeopleQuery query)
  2249. {
  2250. return ItemRepository.GetPeopleNames(query).Select(i =>
  2251. {
  2252. try
  2253. {
  2254. return GetPerson(i);
  2255. }
  2256. catch (Exception ex)
  2257. {
  2258. _logger.ErrorException("Error getting person", ex);
  2259. return null;
  2260. }
  2261. }).Where(i => i != null).ToList();
  2262. }
  2263. public List<string> GetPeopleNames(InternalPeopleQuery query)
  2264. {
  2265. return ItemRepository.GetPeopleNames(query);
  2266. }
  2267. public Task UpdatePeople(BaseItem item, List<PersonInfo> people)
  2268. {
  2269. if (!item.SupportsPeople)
  2270. {
  2271. return Task.FromResult(true);
  2272. }
  2273. return ItemRepository.UpdatePeople(item.Id, people);
  2274. }
  2275. private readonly SemaphoreSlim _dynamicImageResourcePool = new SemaphoreSlim(1, 1);
  2276. public async Task<ItemImageInfo> ConvertImageToLocal(IHasImages item, ItemImageInfo image, int imageIndex)
  2277. {
  2278. foreach (var url in image.Path.Split('|'))
  2279. {
  2280. try
  2281. {
  2282. _logger.Debug("ConvertImageToLocal item {0} - image url: {1}", item.Id, url);
  2283. await _providerManagerFactory().SaveImage(item, url, _dynamicImageResourcePool, image.Type, imageIndex, CancellationToken.None).ConfigureAwait(false);
  2284. var newImage = item.GetImageInfo(image.Type, imageIndex);
  2285. if (newImage != null)
  2286. {
  2287. newImage.IsPlaceholder = image.IsPlaceholder;
  2288. }
  2289. await item.UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(false);
  2290. return item.GetImageInfo(image.Type, imageIndex);
  2291. }
  2292. catch (HttpException ex)
  2293. {
  2294. if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.NotFound)
  2295. {
  2296. continue;
  2297. }
  2298. throw;
  2299. }
  2300. }
  2301. // Remove this image to prevent it from retrying over and over
  2302. item.RemoveImage(image);
  2303. await item.UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(false);
  2304. throw new InvalidOperationException();
  2305. }
  2306. public void AddVirtualFolder(string name, string collectionType, LibraryOptions options, bool refreshLibrary)
  2307. {
  2308. if (string.IsNullOrWhiteSpace(name))
  2309. {
  2310. throw new ArgumentNullException("name");
  2311. }
  2312. name = _fileSystem.GetValidFilename(name);
  2313. var rootFolderPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath;
  2314. var virtualFolderPath = Path.Combine(rootFolderPath, name);
  2315. while (_fileSystem.DirectoryExists(virtualFolderPath))
  2316. {
  2317. name += "1";
  2318. virtualFolderPath = Path.Combine(rootFolderPath, name);
  2319. }
  2320. var mediaPathInfos = options.PathInfos;
  2321. if (mediaPathInfos != null)
  2322. {
  2323. var invalidpath = mediaPathInfos.FirstOrDefault(i => !_fileSystem.DirectoryExists(i.Path));
  2324. if (invalidpath != null)
  2325. {
  2326. throw new ArgumentException("The specified path does not exist: " + invalidpath.Path + ".");
  2327. }
  2328. }
  2329. _libraryMonitorFactory().Stop();
  2330. try
  2331. {
  2332. _fileSystem.CreateDirectory(virtualFolderPath);
  2333. if (!string.IsNullOrEmpty(collectionType))
  2334. {
  2335. var path = Path.Combine(virtualFolderPath, collectionType + ".collection");
  2336. _fileSystem.WriteAllBytes(path, new byte[] { });
  2337. }
  2338. CollectionFolder.SaveLibraryOptions(virtualFolderPath, options);
  2339. if (mediaPathInfos != null)
  2340. {
  2341. foreach (var path in mediaPathInfos)
  2342. {
  2343. AddMediaPathInternal(name, path, false);
  2344. }
  2345. }
  2346. }
  2347. finally
  2348. {
  2349. Task.Run(() =>
  2350. {
  2351. // No need to start if scanning the library because it will handle it
  2352. if (refreshLibrary)
  2353. {
  2354. ValidateMediaLibrary(new Progress<double>(), CancellationToken.None);
  2355. }
  2356. else
  2357. {
  2358. // Need to add a delay here or directory watchers may still pick up the changes
  2359. var task = Task.Delay(1000);
  2360. // Have to block here to allow exceptions to bubble
  2361. Task.WaitAll(task);
  2362. _libraryMonitorFactory().Start();
  2363. }
  2364. });
  2365. }
  2366. }
  2367. private bool ValidateNetworkPath(string path)
  2368. {
  2369. //if (Environment.OSVersion.Platform == PlatformID.Win32NT)
  2370. //{
  2371. // // We can't validate protocol-based paths, so just allow them
  2372. // if (path.IndexOf("://", StringComparison.OrdinalIgnoreCase) == -1)
  2373. // {
  2374. // return _fileSystem.DirectoryExists(path);
  2375. // }
  2376. //}
  2377. // Without native support for unc, we cannot validate this when running under mono
  2378. return true;
  2379. }
  2380. private const string ShortcutFileExtension = ".mblink";
  2381. public void AddMediaPath(string virtualFolderName, MediaPathInfo pathInfo)
  2382. {
  2383. AddMediaPathInternal(virtualFolderName, pathInfo, true);
  2384. }
  2385. private void AddMediaPathInternal(string virtualFolderName, MediaPathInfo pathInfo, bool saveLibraryOptions)
  2386. {
  2387. if (pathInfo == null)
  2388. {
  2389. throw new ArgumentNullException("path");
  2390. }
  2391. var path = pathInfo.Path;
  2392. if (string.IsNullOrWhiteSpace(path))
  2393. {
  2394. throw new ArgumentNullException("path");
  2395. }
  2396. if (!_fileSystem.DirectoryExists(path))
  2397. {
  2398. throw new FileNotFoundException("The path does not exist.");
  2399. }
  2400. if (!string.IsNullOrWhiteSpace(pathInfo.NetworkPath) && !ValidateNetworkPath(pathInfo.NetworkPath))
  2401. {
  2402. throw new FileNotFoundException("The network path does not exist.");
  2403. }
  2404. var rootFolderPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath;
  2405. var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName);
  2406. var shortcutFilename = _fileSystem.GetFileNameWithoutExtension(path);
  2407. var lnk = Path.Combine(virtualFolderPath, shortcutFilename + ShortcutFileExtension);
  2408. while (_fileSystem.FileExists(lnk))
  2409. {
  2410. shortcutFilename += "1";
  2411. lnk = Path.Combine(virtualFolderPath, shortcutFilename + ShortcutFileExtension);
  2412. }
  2413. _fileSystem.CreateShortcut(lnk, path);
  2414. RemoveContentTypeOverrides(path);
  2415. if (saveLibraryOptions)
  2416. {
  2417. var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath);
  2418. var list = libraryOptions.PathInfos.ToList();
  2419. list.Add(pathInfo);
  2420. libraryOptions.PathInfos = list.ToArray();
  2421. SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions);
  2422. CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
  2423. }
  2424. }
  2425. public void UpdateMediaPath(string virtualFolderName, MediaPathInfo pathInfo)
  2426. {
  2427. if (pathInfo == null)
  2428. {
  2429. throw new ArgumentNullException("path");
  2430. }
  2431. if (!string.IsNullOrWhiteSpace(pathInfo.NetworkPath) && !ValidateNetworkPath(pathInfo.NetworkPath))
  2432. {
  2433. throw new FileNotFoundException("The network path does not exist.");
  2434. }
  2435. var rootFolderPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath;
  2436. var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName);
  2437. var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath);
  2438. SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions);
  2439. var list = libraryOptions.PathInfos.ToList();
  2440. foreach (var originalPathInfo in list)
  2441. {
  2442. if (string.Equals(pathInfo.Path, originalPathInfo.Path, StringComparison.Ordinal))
  2443. {
  2444. originalPathInfo.NetworkPath = pathInfo.NetworkPath;
  2445. break;
  2446. }
  2447. }
  2448. libraryOptions.PathInfos = list.ToArray();
  2449. CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
  2450. }
  2451. private void SyncLibraryOptionsToLocations(string virtualFolderPath, LibraryOptions options)
  2452. {
  2453. var topLibraryFolders = GetUserRootFolder().Children.ToList();
  2454. var info = GetVirtualFolderInfo(virtualFolderPath, topLibraryFolders);
  2455. if (info.Locations.Count > 0 && info.Locations.Count != options.PathInfos.Length)
  2456. {
  2457. var list = options.PathInfos.ToList();
  2458. foreach (var location in info.Locations)
  2459. {
  2460. if (!list.Any(i => string.Equals(i.Path, location, StringComparison.Ordinal)))
  2461. {
  2462. list.Add(new MediaPathInfo
  2463. {
  2464. Path = location
  2465. });
  2466. }
  2467. }
  2468. options.PathInfos = list.ToArray();
  2469. }
  2470. }
  2471. public void RemoveVirtualFolder(string name, bool refreshLibrary)
  2472. {
  2473. if (string.IsNullOrWhiteSpace(name))
  2474. {
  2475. throw new ArgumentNullException("name");
  2476. }
  2477. var rootFolderPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath;
  2478. var path = Path.Combine(rootFolderPath, name);
  2479. if (!_fileSystem.DirectoryExists(path))
  2480. {
  2481. throw new FileNotFoundException("The media folder does not exist");
  2482. }
  2483. _libraryMonitorFactory().Stop();
  2484. try
  2485. {
  2486. _fileSystem.DeleteDirectory(path, true);
  2487. }
  2488. finally
  2489. {
  2490. Task.Run(() =>
  2491. {
  2492. // No need to start if scanning the library because it will handle it
  2493. if (refreshLibrary)
  2494. {
  2495. ValidateMediaLibrary(new Progress<double>(), CancellationToken.None);
  2496. }
  2497. else
  2498. {
  2499. // Need to add a delay here or directory watchers may still pick up the changes
  2500. var task = Task.Delay(1000);
  2501. // Have to block here to allow exceptions to bubble
  2502. Task.WaitAll(task);
  2503. _libraryMonitorFactory().Start();
  2504. }
  2505. });
  2506. }
  2507. }
  2508. private void RemoveContentTypeOverrides(string path)
  2509. {
  2510. if (string.IsNullOrWhiteSpace(path))
  2511. {
  2512. throw new ArgumentNullException("path");
  2513. }
  2514. var removeList = new List<NameValuePair>();
  2515. foreach (var contentType in ConfigurationManager.Configuration.ContentTypes)
  2516. {
  2517. if (string.Equals(path, contentType.Name, StringComparison.OrdinalIgnoreCase)
  2518. || _fileSystem.ContainsSubPath(path, contentType.Name))
  2519. {
  2520. removeList.Add(contentType);
  2521. }
  2522. }
  2523. if (removeList.Count > 0)
  2524. {
  2525. ConfigurationManager.Configuration.ContentTypes = ConfigurationManager.Configuration.ContentTypes
  2526. .Except(removeList)
  2527. .ToArray();
  2528. ConfigurationManager.SaveConfiguration();
  2529. }
  2530. }
  2531. public void RemoveMediaPath(string virtualFolderName, string mediaPath)
  2532. {
  2533. if (string.IsNullOrWhiteSpace(mediaPath))
  2534. {
  2535. throw new ArgumentNullException("mediaPath");
  2536. }
  2537. var rootFolderPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath;
  2538. var virtualFolderPath = Path.Combine(rootFolderPath, virtualFolderName);
  2539. if (!_fileSystem.DirectoryExists(virtualFolderPath))
  2540. {
  2541. throw new FileNotFoundException(string.Format("The media collection {0} does not exist", virtualFolderName));
  2542. }
  2543. var shortcut = _fileSystem.GetFilePaths(virtualFolderPath, true)
  2544. .Where(i => string.Equals(ShortcutFileExtension, Path.GetExtension(i), StringComparison.OrdinalIgnoreCase))
  2545. .FirstOrDefault(f => _fileSystem.ResolveShortcut(f).Equals(mediaPath, StringComparison.OrdinalIgnoreCase));
  2546. if (!string.IsNullOrEmpty(shortcut))
  2547. {
  2548. _fileSystem.DeleteFile(shortcut);
  2549. }
  2550. var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath);
  2551. libraryOptions.PathInfos = libraryOptions
  2552. .PathInfos
  2553. .Where(i => !string.Equals(i.Path, mediaPath, StringComparison.Ordinal))
  2554. .ToArray();
  2555. CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
  2556. }
  2557. }
  2558. }