BaseItem.cs 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. using MediaBrowser.Common.Extensions;
  2. using MediaBrowser.Common.IO;
  3. using MediaBrowser.Controller.Channels;
  4. using MediaBrowser.Controller.Collections;
  5. using MediaBrowser.Controller.Configuration;
  6. using MediaBrowser.Controller.Drawing;
  7. using MediaBrowser.Controller.Library;
  8. using MediaBrowser.Controller.LiveTv;
  9. using MediaBrowser.Controller.Localization;
  10. using MediaBrowser.Controller.Persistence;
  11. using MediaBrowser.Controller.Providers;
  12. using MediaBrowser.Model.Configuration;
  13. using MediaBrowser.Model.Dto;
  14. using MediaBrowser.Model.Entities;
  15. using MediaBrowser.Model.Library;
  16. using MediaBrowser.Model.Logging;
  17. using MediaBrowser.Model.Users;
  18. using System;
  19. using System.Collections.Generic;
  20. using System.IO;
  21. using System.Linq;
  22. using System.Runtime.Serialization;
  23. using System.Threading;
  24. using System.Threading.Tasks;
  25. namespace MediaBrowser.Controller.Entities
  26. {
  27. /// <summary>
  28. /// Class BaseItem
  29. /// </summary>
  30. public abstract class BaseItem : IHasProviderIds, ILibraryItem, IHasImages, IHasUserData, IHasMetadata, IHasLookupInfo<ItemLookupInfo>
  31. {
  32. protected BaseItem()
  33. {
  34. Genres = new List<string>();
  35. Studios = new List<string>();
  36. People = new List<PersonInfo>();
  37. ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
  38. LockedFields = new List<MetadataFields>();
  39. ImageInfos = new List<ItemImageInfo>();
  40. Identities = new List<IItemIdentity>();
  41. }
  42. /// <summary>
  43. /// The supported image extensions
  44. /// </summary>
  45. public static readonly string[] SupportedImageExtensions = { ".png", ".jpg", ".jpeg", ".tbn" };
  46. public static readonly List<string> SupportedImageExtensionsList = SupportedImageExtensions.ToList();
  47. /// <summary>
  48. /// The trailer folder name
  49. /// </summary>
  50. public static string TrailerFolderName = "trailers";
  51. public static string ThemeSongsFolderName = "theme-music";
  52. public static string ThemeSongFilename = "theme";
  53. public static string ThemeVideosFolderName = "backdrops";
  54. public List<ItemImageInfo> ImageInfos { get; set; }
  55. [IgnoreDataMember]
  56. public virtual bool SupportsAddingToPlaylist
  57. {
  58. get
  59. {
  60. return false;
  61. }
  62. }
  63. [IgnoreDataMember]
  64. public virtual bool AlwaysScanInternalMetadataPath
  65. {
  66. get { return false; }
  67. }
  68. /// <summary>
  69. /// Gets a value indicating whether this instance is in mixed folder.
  70. /// </summary>
  71. /// <value><c>true</c> if this instance is in mixed folder; otherwise, <c>false</c>.</value>
  72. public bool IsInMixedFolder { get; set; }
  73. [IgnoreDataMember]
  74. public virtual bool SupportsRemoteImageDownloading
  75. {
  76. get
  77. {
  78. return true;
  79. }
  80. }
  81. private string _name;
  82. /// <summary>
  83. /// Gets or sets the name.
  84. /// </summary>
  85. /// <value>The name.</value>
  86. public string Name
  87. {
  88. get
  89. {
  90. return _name;
  91. }
  92. set
  93. {
  94. _name = value;
  95. // lazy load this again
  96. _sortName = null;
  97. }
  98. }
  99. /// <summary>
  100. /// Gets or sets the id.
  101. /// </summary>
  102. /// <value>The id.</value>
  103. public Guid Id { get; set; }
  104. /// <summary>
  105. /// Return the id that should be used to key display prefs for this item.
  106. /// Default is based on the type for everything except actual generic folders.
  107. /// </summary>
  108. /// <value>The display prefs id.</value>
  109. [IgnoreDataMember]
  110. public virtual Guid DisplayPreferencesId
  111. {
  112. get
  113. {
  114. var thisType = GetType();
  115. return thisType == typeof(Folder) ? Id : thisType.FullName.GetMD5();
  116. }
  117. }
  118. /// <summary>
  119. /// Gets or sets the path.
  120. /// </summary>
  121. /// <value>The path.</value>
  122. public virtual string Path { get; set; }
  123. [IgnoreDataMember]
  124. protected internal bool IsOffline { get; set; }
  125. /// <summary>
  126. /// Returns the folder containing the item.
  127. /// If the item is a folder, it returns the folder itself
  128. /// </summary>
  129. [IgnoreDataMember]
  130. public virtual string ContainingFolderPath
  131. {
  132. get
  133. {
  134. if (IsFolder)
  135. {
  136. return Path;
  137. }
  138. return System.IO.Path.GetDirectoryName(Path);
  139. }
  140. }
  141. [IgnoreDataMember]
  142. public virtual bool IsHidden
  143. {
  144. get
  145. {
  146. return false;
  147. }
  148. }
  149. public virtual bool IsHiddenFromUser(User user)
  150. {
  151. return false;
  152. }
  153. [IgnoreDataMember]
  154. public virtual bool IsOwnedItem
  155. {
  156. get
  157. {
  158. // Local trailer, special feature, theme video, etc.
  159. // An item that belongs to another item but is not part of the Parent-Child tree
  160. return !IsFolder && Parent == null && LocationType == LocationType.FileSystem;
  161. }
  162. }
  163. /// <summary>
  164. /// Gets or sets the type of the location.
  165. /// </summary>
  166. /// <value>The type of the location.</value>
  167. [IgnoreDataMember]
  168. public virtual LocationType LocationType
  169. {
  170. get
  171. {
  172. if (IsOffline)
  173. {
  174. return LocationType.Offline;
  175. }
  176. if (string.IsNullOrWhiteSpace(Path))
  177. {
  178. return LocationType.Virtual;
  179. }
  180. return FileSystem.IsPathFile(Path) ? LocationType.FileSystem : LocationType.Remote;
  181. }
  182. }
  183. [IgnoreDataMember]
  184. public virtual bool SupportsLocalMetadata
  185. {
  186. get
  187. {
  188. var locationType = LocationType;
  189. return locationType != LocationType.Remote && locationType != LocationType.Virtual;
  190. }
  191. }
  192. [IgnoreDataMember]
  193. public virtual string FileNameWithoutExtension
  194. {
  195. get
  196. {
  197. if (LocationType == LocationType.FileSystem)
  198. {
  199. return System.IO.Path.GetFileNameWithoutExtension(Path);
  200. }
  201. return null;
  202. }
  203. }
  204. /// <summary>
  205. /// This is just a helper for convenience
  206. /// </summary>
  207. /// <value>The primary image path.</value>
  208. [IgnoreDataMember]
  209. public string PrimaryImagePath
  210. {
  211. get { return this.GetImagePath(ImageType.Primary); }
  212. }
  213. public virtual bool IsInternetMetadataEnabled()
  214. {
  215. return ConfigurationManager.Configuration.EnableInternetProviders;
  216. }
  217. public virtual bool CanDelete()
  218. {
  219. var locationType = LocationType;
  220. return locationType != LocationType.Remote &&
  221. locationType != LocationType.Virtual;
  222. }
  223. public virtual bool IsAuthorizedToDelete(User user)
  224. {
  225. return user.Policy.EnableContentDeletion;
  226. }
  227. public bool CanDelete(User user)
  228. {
  229. return CanDelete() && IsAuthorizedToDelete(user);
  230. }
  231. public virtual bool CanDownload()
  232. {
  233. return false;
  234. }
  235. public virtual bool IsAuthorizedToDownload(User user)
  236. {
  237. return user.Policy.EnableContentDownloading;
  238. }
  239. public bool CanDownload(User user)
  240. {
  241. return CanDownload() && IsAuthorizedToDownload(user);
  242. }
  243. /// <summary>
  244. /// Gets or sets the date created.
  245. /// </summary>
  246. /// <value>The date created.</value>
  247. public DateTime DateCreated { get; set; }
  248. /// <summary>
  249. /// Gets or sets the date modified.
  250. /// </summary>
  251. /// <value>The date modified.</value>
  252. public DateTime DateModified { get; set; }
  253. public DateTime DateLastSaved { get; set; }
  254. /// <summary>
  255. /// The logger
  256. /// </summary>
  257. public static ILogger Logger { get; set; }
  258. public static ILibraryManager LibraryManager { get; set; }
  259. public static IServerConfigurationManager ConfigurationManager { get; set; }
  260. public static IProviderManager ProviderManager { get; set; }
  261. public static ILocalizationManager LocalizationManager { get; set; }
  262. public static IItemRepository ItemRepository { get; set; }
  263. public static IFileSystem FileSystem { get; set; }
  264. public static IUserDataManager UserDataManager { get; set; }
  265. public static ILiveTvManager LiveTvManager { get; set; }
  266. public static IChannelManager ChannelManager { get; set; }
  267. public static ICollectionManager CollectionManager { get; set; }
  268. public static IImageProcessor ImageProcessor { get; set; }
  269. public static IMediaSourceManager MediaSourceManager { get; set; }
  270. /// <summary>
  271. /// Returns a <see cref="System.String" /> that represents this instance.
  272. /// </summary>
  273. /// <returns>A <see cref="System.String" /> that represents this instance.</returns>
  274. public override string ToString()
  275. {
  276. return Name;
  277. }
  278. /// <summary>
  279. /// Returns true if this item should not attempt to fetch metadata
  280. /// </summary>
  281. /// <value><c>true</c> if [dont fetch meta]; otherwise, <c>false</c>.</value>
  282. [Obsolete("Please use IsLocked instead of DontFetchMeta")]
  283. public bool DontFetchMeta { get; set; }
  284. [IgnoreDataMember]
  285. public bool IsLocked
  286. {
  287. get
  288. {
  289. return DontFetchMeta;
  290. }
  291. set
  292. {
  293. DontFetchMeta = value;
  294. }
  295. }
  296. public bool IsUnidentified { get; set; }
  297. [IgnoreDataMember]
  298. public List<IItemIdentity> Identities { get; set; }
  299. /// <summary>
  300. /// Gets or sets the locked fields.
  301. /// </summary>
  302. /// <value>The locked fields.</value>
  303. public List<MetadataFields> LockedFields { get; set; }
  304. /// <summary>
  305. /// Gets the type of the media.
  306. /// </summary>
  307. /// <value>The type of the media.</value>
  308. [IgnoreDataMember]
  309. public virtual string MediaType
  310. {
  311. get
  312. {
  313. return null;
  314. }
  315. }
  316. [IgnoreDataMember]
  317. public virtual IEnumerable<string> PhysicalLocations
  318. {
  319. get
  320. {
  321. var locationType = LocationType;
  322. if (locationType == LocationType.Remote || locationType == LocationType.Virtual)
  323. {
  324. return new string[] { };
  325. }
  326. return new[] { Path };
  327. }
  328. }
  329. private string _forcedSortName;
  330. /// <summary>
  331. /// Gets or sets the name of the forced sort.
  332. /// </summary>
  333. /// <value>The name of the forced sort.</value>
  334. public string ForcedSortName
  335. {
  336. get { return _forcedSortName; }
  337. set { _forcedSortName = value; _sortName = null; }
  338. }
  339. private string _sortName;
  340. /// <summary>
  341. /// Gets the name of the sort.
  342. /// </summary>
  343. /// <value>The name of the sort.</value>
  344. [IgnoreDataMember]
  345. public string SortName
  346. {
  347. get
  348. {
  349. if (!string.IsNullOrWhiteSpace(ForcedSortName))
  350. {
  351. return ForcedSortName;
  352. }
  353. return _sortName ?? (_sortName = CreateSortName());
  354. }
  355. }
  356. public bool ContainsPerson(string name)
  357. {
  358. if (string.IsNullOrWhiteSpace(name))
  359. {
  360. throw new ArgumentNullException("name");
  361. }
  362. return People.Any(i => string.Equals(i.Name, name, StringComparison.OrdinalIgnoreCase));
  363. }
  364. public string GetInternalMetadataPath()
  365. {
  366. var basePath = ConfigurationManager.ApplicationPaths.InternalMetadataPath;
  367. return GetInternalMetadataPath(basePath);
  368. }
  369. protected virtual string GetInternalMetadataPath(string basePath)
  370. {
  371. var idString = Id.ToString("N");
  372. if (ConfigurationManager.Configuration.EnableLibraryMetadataSubFolder)
  373. {
  374. basePath = System.IO.Path.Combine(basePath, "library");
  375. }
  376. return System.IO.Path.Combine(basePath, idString.Substring(0, 2), idString);
  377. }
  378. /// <summary>
  379. /// Creates the name of the sort.
  380. /// </summary>
  381. /// <returns>System.String.</returns>
  382. protected virtual string CreateSortName()
  383. {
  384. if (Name == null) return null; //some items may not have name filled in properly
  385. var sortable = Name.Trim().ToLower();
  386. sortable = ConfigurationManager.Configuration.SortRemoveCharacters.Aggregate(sortable, (current, search) => current.Replace(search.ToLower(), string.Empty));
  387. sortable = ConfigurationManager.Configuration.SortReplaceCharacters.Aggregate(sortable, (current, search) => current.Replace(search.ToLower(), " "));
  388. foreach (var search in ConfigurationManager.Configuration.SortRemoveWords)
  389. {
  390. var searchLower = search.ToLower();
  391. // Remove from beginning if a space follows
  392. if (sortable.StartsWith(searchLower + " "))
  393. {
  394. sortable = sortable.Remove(0, searchLower.Length + 1);
  395. }
  396. // Remove from middle if surrounded by spaces
  397. sortable = sortable.Replace(" " + searchLower + " ", " ");
  398. // Remove from end if followed by a space
  399. if (sortable.EndsWith(" " + searchLower))
  400. {
  401. sortable = sortable.Remove(sortable.Length - (searchLower.Length + 1));
  402. }
  403. }
  404. return sortable;
  405. }
  406. /// <summary>
  407. /// Gets or sets the parent.
  408. /// </summary>
  409. /// <value>The parent.</value>
  410. [IgnoreDataMember]
  411. public Folder Parent { get; set; }
  412. [IgnoreDataMember]
  413. public IEnumerable<Folder> Parents
  414. {
  415. get
  416. {
  417. var parent = Parent;
  418. while (parent != null)
  419. {
  420. yield return parent;
  421. parent = parent.Parent;
  422. }
  423. }
  424. }
  425. [IgnoreDataMember]
  426. public virtual BaseItem DisplayParent
  427. {
  428. get { return Parent; }
  429. }
  430. /// <summary>
  431. /// When the item first debuted. For movies this could be premiere date, episodes would be first aired
  432. /// </summary>
  433. /// <value>The premiere date.</value>
  434. public DateTime? PremiereDate { get; set; }
  435. /// <summary>
  436. /// Gets or sets the end date.
  437. /// </summary>
  438. /// <value>The end date.</value>
  439. public DateTime? EndDate { get; set; }
  440. /// <summary>
  441. /// Gets or sets the display type of the media.
  442. /// </summary>
  443. /// <value>The display type of the media.</value>
  444. public string DisplayMediaType { get; set; }
  445. /// <summary>
  446. /// Gets or sets the official rating.
  447. /// </summary>
  448. /// <value>The official rating.</value>
  449. public string OfficialRating { get; set; }
  450. /// <summary>
  451. /// Gets or sets the official rating description.
  452. /// </summary>
  453. /// <value>The official rating description.</value>
  454. public string OfficialRatingDescription { get; set; }
  455. /// <summary>
  456. /// Gets or sets the custom rating.
  457. /// </summary>
  458. /// <value>The custom rating.</value>
  459. public string CustomRating { get; set; }
  460. /// <summary>
  461. /// Gets or sets the overview.
  462. /// </summary>
  463. /// <value>The overview.</value>
  464. public string Overview { get; set; }
  465. /// <summary>
  466. /// Gets or sets the people.
  467. /// </summary>
  468. /// <value>The people.</value>
  469. public List<PersonInfo> People { get; set; }
  470. /// <summary>
  471. /// Gets or sets the studios.
  472. /// </summary>
  473. /// <value>The studios.</value>
  474. public List<string> Studios { get; set; }
  475. /// <summary>
  476. /// Gets or sets the genres.
  477. /// </summary>
  478. /// <value>The genres.</value>
  479. public List<string> Genres { get; set; }
  480. /// <summary>
  481. /// Gets or sets the home page URL.
  482. /// </summary>
  483. /// <value>The home page URL.</value>
  484. public string HomePageUrl { get; set; }
  485. /// <summary>
  486. /// Gets or sets the community rating.
  487. /// </summary>
  488. /// <value>The community rating.</value>
  489. public float? CommunityRating { get; set; }
  490. /// <summary>
  491. /// Gets or sets the community rating vote count.
  492. /// </summary>
  493. /// <value>The community rating vote count.</value>
  494. public int? VoteCount { get; set; }
  495. /// <summary>
  496. /// Gets or sets the run time ticks.
  497. /// </summary>
  498. /// <value>The run time ticks.</value>
  499. public long? RunTimeTicks { get; set; }
  500. /// <summary>
  501. /// Gets or sets the production year.
  502. /// </summary>
  503. /// <value>The production year.</value>
  504. public int? ProductionYear { get; set; }
  505. /// <summary>
  506. /// If the item is part of a series, this is it's number in the series.
  507. /// This could be episode number, album track number, etc.
  508. /// </summary>
  509. /// <value>The index number.</value>
  510. public int? IndexNumber { get; set; }
  511. /// <summary>
  512. /// For an episode this could be the season number, or for a song this could be the disc number.
  513. /// </summary>
  514. /// <value>The parent index number.</value>
  515. public int? ParentIndexNumber { get; set; }
  516. [IgnoreDataMember]
  517. public virtual string OfficialRatingForComparison
  518. {
  519. get { return OfficialRating; }
  520. }
  521. [IgnoreDataMember]
  522. public string CustomRatingForComparison
  523. {
  524. get
  525. {
  526. if (!string.IsNullOrEmpty(CustomRating))
  527. {
  528. return CustomRating;
  529. }
  530. var parent = DisplayParent;
  531. if (parent != null)
  532. {
  533. return parent.CustomRatingForComparison;
  534. }
  535. return null;
  536. }
  537. }
  538. /// <summary>
  539. /// Gets the play access.
  540. /// </summary>
  541. /// <param name="user">The user.</param>
  542. /// <returns>PlayAccess.</returns>
  543. public PlayAccess GetPlayAccess(User user)
  544. {
  545. if (!user.Policy.EnableMediaPlayback)
  546. {
  547. return PlayAccess.None;
  548. }
  549. //if (!user.IsParentalScheduleAllowed())
  550. //{
  551. // return PlayAccess.None;
  552. //}
  553. return PlayAccess.Full;
  554. }
  555. /// <summary>
  556. /// Loads the theme songs.
  557. /// </summary>
  558. /// <returns>List{Audio.Audio}.</returns>
  559. private IEnumerable<Audio.Audio> LoadThemeSongs(List<FileSystemInfo> fileSystemChildren, IDirectoryService directoryService)
  560. {
  561. var files = fileSystemChildren.OfType<DirectoryInfo>()
  562. .Where(i => string.Equals(i.Name, ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
  563. .SelectMany(i => i.EnumerateFiles("*", SearchOption.TopDirectoryOnly))
  564. .ToList();
  565. // Support plex/xbmc convention
  566. files.AddRange(fileSystemChildren.OfType<FileInfo>()
  567. .Where(i => string.Equals(FileSystem.GetFileNameWithoutExtension(i), ThemeSongFilename, StringComparison.OrdinalIgnoreCase))
  568. );
  569. return LibraryManager.ResolvePaths(files, directoryService, null)
  570. .OfType<Audio.Audio>()
  571. .Select(audio =>
  572. {
  573. // Try to retrieve it from the db. If we don't find it, use the resolved version
  574. var dbItem = LibraryManager.GetItemById(audio.Id) as Audio.Audio;
  575. if (dbItem != null)
  576. {
  577. audio = dbItem;
  578. }
  579. audio.ExtraType = ExtraType.ThemeSong;
  580. return audio;
  581. // Sort them so that the list can be easily compared for changes
  582. }).OrderBy(i => i.Path).ToList();
  583. }
  584. /// <summary>
  585. /// Loads the video backdrops.
  586. /// </summary>
  587. /// <returns>List{Video}.</returns>
  588. private IEnumerable<Video> LoadThemeVideos(IEnumerable<FileSystemInfo> fileSystemChildren, IDirectoryService directoryService)
  589. {
  590. var files = fileSystemChildren.OfType<DirectoryInfo>()
  591. .Where(i => string.Equals(i.Name, ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
  592. .SelectMany(i => i.EnumerateFiles("*", SearchOption.TopDirectoryOnly));
  593. return LibraryManager.ResolvePaths(files, directoryService, null)
  594. .OfType<Video>()
  595. .Select(item =>
  596. {
  597. // Try to retrieve it from the db. If we don't find it, use the resolved version
  598. var dbItem = LibraryManager.GetItemById(item.Id) as Video;
  599. if (dbItem != null)
  600. {
  601. item = dbItem;
  602. }
  603. item.ExtraType = ExtraType.ThemeVideo;
  604. return item;
  605. // Sort them so that the list can be easily compared for changes
  606. }).OrderBy(i => i.Path).ToList();
  607. }
  608. public Task RefreshMetadata(CancellationToken cancellationToken)
  609. {
  610. return RefreshMetadata(new MetadataRefreshOptions(new DirectoryService()), cancellationToken);
  611. }
  612. /// <summary>
  613. /// Overrides the base implementation to refresh metadata for local trailers
  614. /// </summary>
  615. /// <param name="options">The options.</param>
  616. /// <param name="cancellationToken">The cancellation token.</param>
  617. /// <returns>true if a provider reports we changed</returns>
  618. public async Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken)
  619. {
  620. var locationType = LocationType;
  621. var requiresSave = false;
  622. if (SupportsOwnedItems)
  623. {
  624. try
  625. {
  626. var files = locationType != LocationType.Remote && locationType != LocationType.Virtual ?
  627. GetFileSystemChildren(options.DirectoryService).ToList() :
  628. new List<FileSystemInfo>();
  629. var ownedItemsChanged = await RefreshedOwnedItems(options, files, cancellationToken).ConfigureAwait(false);
  630. if (ownedItemsChanged)
  631. {
  632. requiresSave = true;
  633. }
  634. }
  635. catch (Exception ex)
  636. {
  637. Logger.ErrorException("Error refreshing owned items for {0}", ex, Path ?? Name);
  638. }
  639. }
  640. var refreshOptions = requiresSave
  641. ? new MetadataRefreshOptions(options)
  642. {
  643. ForceSave = true
  644. }
  645. : options;
  646. var result = await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false);
  647. return result;
  648. }
  649. [IgnoreDataMember]
  650. protected virtual bool SupportsOwnedItems
  651. {
  652. get { return IsFolder || Parent != null; }
  653. }
  654. /// <summary>
  655. /// Refreshes owned items such as trailers, theme videos, special features, etc.
  656. /// Returns true or false indicating if changes were found.
  657. /// </summary>
  658. /// <param name="options"></param>
  659. /// <param name="fileSystemChildren"></param>
  660. /// <param name="cancellationToken"></param>
  661. /// <returns></returns>
  662. protected virtual async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
  663. {
  664. var themeSongsChanged = false;
  665. var themeVideosChanged = false;
  666. var localTrailersChanged = false;
  667. if (LocationType == LocationType.FileSystem && Parent != null)
  668. {
  669. var hasThemeMedia = this as IHasThemeMedia;
  670. if (hasThemeMedia != null)
  671. {
  672. if (!IsInMixedFolder)
  673. {
  674. themeSongsChanged = await RefreshThemeSongs(hasThemeMedia, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
  675. themeVideosChanged = await RefreshThemeVideos(hasThemeMedia, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
  676. }
  677. }
  678. var hasTrailers = this as IHasTrailers;
  679. if (hasTrailers != null)
  680. {
  681. localTrailersChanged = await RefreshLocalTrailers(hasTrailers, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
  682. }
  683. }
  684. return themeSongsChanged || themeVideosChanged || localTrailersChanged;
  685. }
  686. protected virtual IEnumerable<FileSystemInfo> GetFileSystemChildren(IDirectoryService directoryService)
  687. {
  688. var path = ContainingFolderPath;
  689. return directoryService.GetFileSystemEntries(path);
  690. }
  691. private async Task<bool> RefreshLocalTrailers(IHasTrailers item, MetadataRefreshOptions options, List<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
  692. {
  693. var newItems = LibraryManager.FindTrailers(this, fileSystemChildren, options.DirectoryService).ToList();
  694. var newItemIds = newItems.Select(i => i.Id).ToList();
  695. var itemsChanged = !item.LocalTrailerIds.SequenceEqual(newItemIds);
  696. var tasks = newItems.Select(i => i.RefreshMetadata(options, cancellationToken));
  697. await Task.WhenAll(tasks).ConfigureAwait(false);
  698. item.LocalTrailerIds = newItemIds;
  699. return itemsChanged;
  700. }
  701. private async Task<bool> RefreshThemeVideos(IHasThemeMedia item, MetadataRefreshOptions options, IEnumerable<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
  702. {
  703. var newThemeVideos = LoadThemeVideos(fileSystemChildren, options.DirectoryService).ToList();
  704. var newThemeVideoIds = newThemeVideos.Select(i => i.Id).ToList();
  705. var themeVideosChanged = !item.ThemeVideoIds.SequenceEqual(newThemeVideoIds);
  706. var tasks = newThemeVideos.Select(i =>
  707. {
  708. var subOptions = new MetadataRefreshOptions(options);
  709. if (!i.IsThemeMedia)
  710. {
  711. i.IsThemeMedia = true;
  712. subOptions.ForceSave = true;
  713. }
  714. return i.RefreshMetadata(subOptions, cancellationToken);
  715. });
  716. await Task.WhenAll(tasks).ConfigureAwait(false);
  717. item.ThemeVideoIds = newThemeVideoIds;
  718. return themeVideosChanged;
  719. }
  720. /// <summary>
  721. /// Refreshes the theme songs.
  722. /// </summary>
  723. private async Task<bool> RefreshThemeSongs(IHasThemeMedia item, MetadataRefreshOptions options, List<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
  724. {
  725. var newThemeSongs = LoadThemeSongs(fileSystemChildren, options.DirectoryService).ToList();
  726. var newThemeSongIds = newThemeSongs.Select(i => i.Id).ToList();
  727. var themeSongsChanged = !item.ThemeSongIds.SequenceEqual(newThemeSongIds);
  728. var tasks = newThemeSongs.Select(i =>
  729. {
  730. var subOptions = new MetadataRefreshOptions(options);
  731. if (!i.IsThemeMedia)
  732. {
  733. i.IsThemeMedia = true;
  734. subOptions.ForceSave = true;
  735. }
  736. return i.RefreshMetadata(subOptions, cancellationToken);
  737. });
  738. await Task.WhenAll(tasks).ConfigureAwait(false);
  739. item.ThemeSongIds = newThemeSongIds;
  740. return themeSongsChanged;
  741. }
  742. /// <summary>
  743. /// Gets or sets the provider ids.
  744. /// </summary>
  745. /// <value>The provider ids.</value>
  746. public Dictionary<string, string> ProviderIds { get; set; }
  747. /// <summary>
  748. /// Override this to false if class should be ignored for indexing purposes
  749. /// </summary>
  750. /// <value><c>true</c> if [include in index]; otherwise, <c>false</c>.</value>
  751. [IgnoreDataMember]
  752. public virtual bool IncludeInIndex
  753. {
  754. get { return true; }
  755. }
  756. /// <summary>
  757. /// Override this to true if class should be grouped under a container in indicies
  758. /// The container class should be defined via IndexContainer
  759. /// </summary>
  760. /// <value><c>true</c> if [group in index]; otherwise, <c>false</c>.</value>
  761. [IgnoreDataMember]
  762. public virtual bool GroupInIndex
  763. {
  764. get { return false; }
  765. }
  766. /// <summary>
  767. /// Override this to return the folder that should be used to construct a container
  768. /// for this item in an index. GroupInIndex should be true as well.
  769. /// </summary>
  770. /// <value>The index container.</value>
  771. [IgnoreDataMember]
  772. public virtual Folder IndexContainer
  773. {
  774. get { return null; }
  775. }
  776. [IgnoreDataMember]
  777. public virtual Folder LatestItemsIndexContainer
  778. {
  779. get { return null; }
  780. }
  781. private string _userDataKey;
  782. /// <summary>
  783. /// Gets the user data key.
  784. /// </summary>
  785. /// <returns>System.String.</returns>
  786. public string GetUserDataKey()
  787. {
  788. if (string.IsNullOrWhiteSpace(_userDataKey))
  789. {
  790. var key = CreateUserDataKey();
  791. _userDataKey = key;
  792. return key;
  793. }
  794. return _userDataKey;
  795. }
  796. protected virtual string CreateUserDataKey()
  797. {
  798. return Id.ToString();
  799. }
  800. internal virtual bool IsValidFromResolver(BaseItem newItem)
  801. {
  802. var current = this;
  803. return current.IsInMixedFolder == newItem.IsInMixedFolder;
  804. }
  805. public void AfterMetadataRefresh()
  806. {
  807. _sortName = null;
  808. _userDataKey = null;
  809. }
  810. /// <summary>
  811. /// Gets the preferred metadata language.
  812. /// </summary>
  813. /// <returns>System.String.</returns>
  814. public string GetPreferredMetadataLanguage()
  815. {
  816. string lang = null;
  817. var hasLang = this as IHasPreferredMetadataLanguage;
  818. if (hasLang != null)
  819. {
  820. lang = hasLang.PreferredMetadataLanguage;
  821. }
  822. if (string.IsNullOrWhiteSpace(lang))
  823. {
  824. lang = Parents.OfType<IHasPreferredMetadataLanguage>()
  825. .Select(i => i.PreferredMetadataLanguage)
  826. .FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
  827. }
  828. if (string.IsNullOrWhiteSpace(lang))
  829. {
  830. lang = LibraryManager.GetCollectionFolders(this)
  831. .Select(i => i.PreferredMetadataLanguage)
  832. .FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
  833. }
  834. if (string.IsNullOrWhiteSpace(lang))
  835. {
  836. lang = ConfigurationManager.Configuration.PreferredMetadataLanguage;
  837. }
  838. return lang;
  839. }
  840. /// <summary>
  841. /// Gets the preferred metadata language.
  842. /// </summary>
  843. /// <returns>System.String.</returns>
  844. public string GetPreferredMetadataCountryCode()
  845. {
  846. string lang = null;
  847. var hasLang = this as IHasPreferredMetadataLanguage;
  848. if (hasLang != null)
  849. {
  850. lang = hasLang.PreferredMetadataCountryCode;
  851. }
  852. if (string.IsNullOrWhiteSpace(lang))
  853. {
  854. lang = Parents.OfType<IHasPreferredMetadataLanguage>()
  855. .Select(i => i.PreferredMetadataCountryCode)
  856. .FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
  857. }
  858. if (string.IsNullOrWhiteSpace(lang))
  859. {
  860. lang = LibraryManager.GetCollectionFolders(this)
  861. .Select(i => i.PreferredMetadataCountryCode)
  862. .FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
  863. }
  864. if (string.IsNullOrWhiteSpace(lang))
  865. {
  866. lang = ConfigurationManager.Configuration.MetadataCountryCode;
  867. }
  868. return lang;
  869. }
  870. public virtual bool IsSaveLocalMetadataEnabled()
  871. {
  872. return ConfigurationManager.Configuration.SaveLocalMeta;
  873. }
  874. /// <summary>
  875. /// Determines if a given user has access to this item
  876. /// </summary>
  877. /// <param name="user">The user.</param>
  878. /// <returns><c>true</c> if [is parental allowed] [the specified user]; otherwise, <c>false</c>.</returns>
  879. /// <exception cref="System.ArgumentNullException">user</exception>
  880. public bool IsParentalAllowed(User user)
  881. {
  882. if (user == null)
  883. {
  884. throw new ArgumentNullException("user");
  885. }
  886. if (!IsVisibleViaTags(user))
  887. {
  888. return false;
  889. }
  890. var maxAllowedRating = user.Policy.MaxParentalRating;
  891. if (maxAllowedRating == null)
  892. {
  893. return true;
  894. }
  895. var rating = CustomRatingForComparison;
  896. if (string.IsNullOrWhiteSpace(rating))
  897. {
  898. rating = OfficialRatingForComparison;
  899. }
  900. if (string.IsNullOrWhiteSpace(rating))
  901. {
  902. return !GetBlockUnratedValue(user.Policy);
  903. }
  904. var value = LocalizationManager.GetRatingLevel(rating);
  905. // Could not determine the integer value
  906. if (!value.HasValue)
  907. {
  908. return true;
  909. }
  910. return value.Value <= maxAllowedRating.Value;
  911. }
  912. private bool IsVisibleViaTags(User user)
  913. {
  914. var hasTags = this as IHasTags;
  915. if (hasTags != null)
  916. {
  917. var policy = user.Policy;
  918. if (policy.BlockedTags.Any(i => hasTags.Tags.Contains(i, StringComparer.OrdinalIgnoreCase)))
  919. {
  920. return false;
  921. }
  922. }
  923. return true;
  924. }
  925. protected virtual bool IsAllowTagFilterEnforced()
  926. {
  927. return true;
  928. }
  929. /// <summary>
  930. /// Gets the block unrated value.
  931. /// </summary>
  932. /// <param name="config">The configuration.</param>
  933. /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
  934. protected virtual bool GetBlockUnratedValue(UserPolicy config)
  935. {
  936. return config.BlockUnratedItems.Contains(UnratedItem.Other);
  937. }
  938. /// <summary>
  939. /// Determines if this folder should be visible to a given user.
  940. /// Default is just parental allowed. Can be overridden for more functionality.
  941. /// </summary>
  942. /// <param name="user">The user.</param>
  943. /// <returns><c>true</c> if the specified user is visible; otherwise, <c>false</c>.</returns>
  944. /// <exception cref="System.ArgumentNullException">user</exception>
  945. public virtual bool IsVisible(User user)
  946. {
  947. if (user == null)
  948. {
  949. throw new ArgumentNullException("user");
  950. }
  951. return IsParentalAllowed(user);
  952. }
  953. public virtual bool IsVisibleStandalone(User user)
  954. {
  955. if (!IsVisible(user))
  956. {
  957. return false;
  958. }
  959. if (Parents.Any(i => !i.IsVisible(user)))
  960. {
  961. return false;
  962. }
  963. // TODO: Need some work here, e.g. is in user library, for channels, can user access channel, etc.
  964. return true;
  965. }
  966. /// <summary>
  967. /// Gets a value indicating whether this instance is folder.
  968. /// </summary>
  969. /// <value><c>true</c> if this instance is folder; otherwise, <c>false</c>.</value>
  970. [IgnoreDataMember]
  971. public virtual bool IsFolder
  972. {
  973. get
  974. {
  975. return false;
  976. }
  977. }
  978. public virtual string GetClientTypeName()
  979. {
  980. return GetType().Name;
  981. }
  982. /// <summary>
  983. /// Gets the linked child.
  984. /// </summary>
  985. /// <param name="info">The info.</param>
  986. /// <returns>BaseItem.</returns>
  987. protected BaseItem GetLinkedChild(LinkedChild info)
  988. {
  989. // First get using the cached Id
  990. if (info.ItemId.HasValue)
  991. {
  992. if (info.ItemId.Value == Guid.Empty)
  993. {
  994. return null;
  995. }
  996. var itemById = LibraryManager.GetItemById(info.ItemId.Value);
  997. if (itemById != null)
  998. {
  999. return itemById;
  1000. }
  1001. }
  1002. var item = FindLinkedChild(info);
  1003. // If still null, log
  1004. if (item == null)
  1005. {
  1006. // Don't keep searching over and over
  1007. info.ItemId = Guid.Empty;
  1008. }
  1009. else
  1010. {
  1011. // Cache the id for next time
  1012. info.ItemId = item.Id;
  1013. }
  1014. return item;
  1015. }
  1016. private BaseItem FindLinkedChild(LinkedChild info)
  1017. {
  1018. if (!string.IsNullOrEmpty(info.Path))
  1019. {
  1020. var itemByPath = LibraryManager.RootFolder.FindByPath(info.Path);
  1021. if (itemByPath == null)
  1022. {
  1023. Logger.Warn("Unable to find linked item at path {0}", info.Path);
  1024. }
  1025. return itemByPath;
  1026. }
  1027. return null;
  1028. }
  1029. /// <summary>
  1030. /// Adds a person to the item
  1031. /// </summary>
  1032. /// <param name="person">The person.</param>
  1033. /// <exception cref="System.ArgumentNullException"></exception>
  1034. public void AddPerson(PersonInfo person)
  1035. {
  1036. if (person == null)
  1037. {
  1038. throw new ArgumentNullException("person");
  1039. }
  1040. if (string.IsNullOrWhiteSpace(person.Name))
  1041. {
  1042. throw new ArgumentNullException();
  1043. }
  1044. // Normalize
  1045. if (string.Equals(person.Role, PersonType.GuestStar, StringComparison.OrdinalIgnoreCase))
  1046. {
  1047. person.Type = PersonType.GuestStar;
  1048. }
  1049. else if (string.Equals(person.Role, PersonType.Director, StringComparison.OrdinalIgnoreCase))
  1050. {
  1051. person.Type = PersonType.Director;
  1052. }
  1053. else if (string.Equals(person.Role, PersonType.Producer, StringComparison.OrdinalIgnoreCase))
  1054. {
  1055. person.Type = PersonType.Producer;
  1056. }
  1057. else if (string.Equals(person.Role, PersonType.Writer, StringComparison.OrdinalIgnoreCase))
  1058. {
  1059. person.Type = PersonType.Writer;
  1060. }
  1061. // If the type is GuestStar and there's already an Actor entry, then update it to avoid dupes
  1062. if (string.Equals(person.Type, PersonType.GuestStar, StringComparison.OrdinalIgnoreCase))
  1063. {
  1064. var existing = People.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase) && p.Type.Equals(PersonType.Actor, StringComparison.OrdinalIgnoreCase));
  1065. if (existing != null)
  1066. {
  1067. existing.Type = PersonType.GuestStar;
  1068. existing.SortOrder = person.SortOrder ?? existing.SortOrder;
  1069. return;
  1070. }
  1071. }
  1072. if (string.Equals(person.Type, PersonType.Actor, StringComparison.OrdinalIgnoreCase))
  1073. {
  1074. // If the actor already exists without a role and we have one, fill it in
  1075. var existing = People.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase) && (p.Type.Equals(PersonType.Actor, StringComparison.OrdinalIgnoreCase) || p.Type.Equals(PersonType.GuestStar, StringComparison.OrdinalIgnoreCase)));
  1076. if (existing == null)
  1077. {
  1078. // Wasn't there - add it
  1079. People.Add(person);
  1080. }
  1081. else
  1082. {
  1083. // Was there, if no role and we have one - fill it in
  1084. if (string.IsNullOrWhiteSpace(existing.Role) && !string.IsNullOrWhiteSpace(person.Role))
  1085. {
  1086. existing.Role = person.Role;
  1087. }
  1088. existing.SortOrder = person.SortOrder ?? existing.SortOrder;
  1089. }
  1090. }
  1091. else
  1092. {
  1093. var existing = People.FirstOrDefault(p =>
  1094. string.Equals(p.Name, person.Name, StringComparison.OrdinalIgnoreCase) &&
  1095. string.Equals(p.Type, person.Type, StringComparison.OrdinalIgnoreCase));
  1096. // Check for dupes based on the combination of Name and Type
  1097. if (existing == null)
  1098. {
  1099. People.Add(person);
  1100. }
  1101. else
  1102. {
  1103. existing.SortOrder = person.SortOrder ?? existing.SortOrder;
  1104. }
  1105. }
  1106. }
  1107. /// <summary>
  1108. /// Adds a studio to the item
  1109. /// </summary>
  1110. /// <param name="name">The name.</param>
  1111. /// <exception cref="System.ArgumentNullException"></exception>
  1112. public void AddStudio(string name)
  1113. {
  1114. if (string.IsNullOrWhiteSpace(name))
  1115. {
  1116. throw new ArgumentNullException("name");
  1117. }
  1118. if (!Studios.Contains(name, StringComparer.OrdinalIgnoreCase))
  1119. {
  1120. Studios.Add(name);
  1121. }
  1122. }
  1123. /// <summary>
  1124. /// Adds a genre to the item
  1125. /// </summary>
  1126. /// <param name="name">The name.</param>
  1127. /// <exception cref="System.ArgumentNullException"></exception>
  1128. public void AddGenre(string name)
  1129. {
  1130. if (string.IsNullOrWhiteSpace(name))
  1131. {
  1132. throw new ArgumentNullException("name");
  1133. }
  1134. if (!Genres.Contains(name, StringComparer.OrdinalIgnoreCase))
  1135. {
  1136. Genres.Add(name);
  1137. }
  1138. }
  1139. /// <summary>
  1140. /// Marks the played.
  1141. /// </summary>
  1142. /// <param name="user">The user.</param>
  1143. /// <param name="datePlayed">The date played.</param>
  1144. /// <param name="resetPosition">if set to <c>true</c> [reset position].</param>
  1145. /// <returns>Task.</returns>
  1146. /// <exception cref="System.ArgumentNullException"></exception>
  1147. public virtual async Task MarkPlayed(User user,
  1148. DateTime? datePlayed,
  1149. bool resetPosition)
  1150. {
  1151. if (user == null)
  1152. {
  1153. throw new ArgumentNullException();
  1154. }
  1155. var key = GetUserDataKey();
  1156. var data = UserDataManager.GetUserData(user.Id, key);
  1157. if (datePlayed.HasValue)
  1158. {
  1159. // Incremenet
  1160. data.PlayCount++;
  1161. }
  1162. // Ensure it's at least one
  1163. data.PlayCount = Math.Max(data.PlayCount, 1);
  1164. if (resetPosition)
  1165. {
  1166. data.PlaybackPositionTicks = 0;
  1167. }
  1168. data.LastPlayedDate = datePlayed ?? data.LastPlayedDate;
  1169. data.Played = true;
  1170. await UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None).ConfigureAwait(false);
  1171. }
  1172. /// <summary>
  1173. /// Marks the unplayed.
  1174. /// </summary>
  1175. /// <param name="user">The user.</param>
  1176. /// <returns>Task.</returns>
  1177. /// <exception cref="System.ArgumentNullException"></exception>
  1178. public virtual async Task MarkUnplayed(User user)
  1179. {
  1180. if (user == null)
  1181. {
  1182. throw new ArgumentNullException();
  1183. }
  1184. var key = GetUserDataKey();
  1185. var data = UserDataManager.GetUserData(user.Id, key);
  1186. //I think it is okay to do this here.
  1187. // if this is only called when a user is manually forcing something to un-played
  1188. // then it probably is what we want to do...
  1189. data.PlayCount = 0;
  1190. data.PlaybackPositionTicks = 0;
  1191. data.LastPlayedDate = null;
  1192. data.Played = false;
  1193. await UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None).ConfigureAwait(false);
  1194. }
  1195. /// <summary>
  1196. /// Do whatever refreshing is necessary when the filesystem pertaining to this item has changed.
  1197. /// </summary>
  1198. /// <returns>Task.</returns>
  1199. public virtual Task ChangedExternally()
  1200. {
  1201. ProviderManager.QueueRefresh(Id, new MetadataRefreshOptions());
  1202. return Task.FromResult(true);
  1203. }
  1204. /// <summary>
  1205. /// Finds a parent of a given type
  1206. /// </summary>
  1207. /// <typeparam name="T"></typeparam>
  1208. /// <returns>``0.</returns>
  1209. public T FindParent<T>()
  1210. where T : Folder
  1211. {
  1212. var parent = Parent;
  1213. while (parent != null)
  1214. {
  1215. var result = parent as T;
  1216. if (result != null)
  1217. {
  1218. return result;
  1219. }
  1220. parent = parent.Parent;
  1221. }
  1222. return null;
  1223. }
  1224. /// <summary>
  1225. /// Gets an image
  1226. /// </summary>
  1227. /// <param name="type">The type.</param>
  1228. /// <param name="imageIndex">Index of the image.</param>
  1229. /// <returns><c>true</c> if the specified type has image; otherwise, <c>false</c>.</returns>
  1230. /// <exception cref="System.ArgumentException">Backdrops should be accessed using Item.Backdrops</exception>
  1231. public bool HasImage(ImageType type, int imageIndex)
  1232. {
  1233. return GetImageInfo(type, imageIndex) != null;
  1234. }
  1235. public void SetImagePath(ImageType type, int index, FileSystemInfo file)
  1236. {
  1237. if (type == ImageType.Chapter)
  1238. {
  1239. throw new ArgumentException("Cannot set chapter images using SetImagePath");
  1240. }
  1241. var image = GetImageInfo(type, index);
  1242. if (image == null)
  1243. {
  1244. ImageInfos.Add(GetImageInfo(file, type));
  1245. }
  1246. else
  1247. {
  1248. var imageInfo = GetImageInfo(file, type);
  1249. image.Path = file.FullName;
  1250. image.DateModified = imageInfo.DateModified;
  1251. image.Length = imageInfo.Length;
  1252. }
  1253. }
  1254. /// <summary>
  1255. /// Deletes the image.
  1256. /// </summary>
  1257. /// <param name="type">The type.</param>
  1258. /// <param name="index">The index.</param>
  1259. /// <returns>Task.</returns>
  1260. public Task DeleteImage(ImageType type, int index)
  1261. {
  1262. var info = GetImageInfo(type, index);
  1263. if (info == null)
  1264. {
  1265. // Nothing to do
  1266. return Task.FromResult(true);
  1267. }
  1268. // Remove it from the item
  1269. ImageInfos.Remove(info);
  1270. // Delete the source file
  1271. var currentFile = new FileInfo(info.Path);
  1272. // Deletion will fail if the file is hidden so remove the attribute first
  1273. if (currentFile.Exists)
  1274. {
  1275. if ((currentFile.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden)
  1276. {
  1277. currentFile.Attributes &= ~FileAttributes.Hidden;
  1278. }
  1279. FileSystem.DeleteFile(currentFile.FullName);
  1280. }
  1281. return UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None);
  1282. }
  1283. public virtual Task UpdateToRepository(ItemUpdateType updateReason, CancellationToken cancellationToken)
  1284. {
  1285. return LibraryManager.UpdateItem(this, updateReason, cancellationToken);
  1286. }
  1287. /// <summary>
  1288. /// Validates that images within the item are still on the file system
  1289. /// </summary>
  1290. public bool ValidateImages(IDirectoryService directoryService)
  1291. {
  1292. var allDirectories = ImageInfos.Select(i => System.IO.Path.GetDirectoryName(i.Path)).Distinct(StringComparer.OrdinalIgnoreCase).ToList();
  1293. var allFiles = allDirectories.SelectMany(directoryService.GetFiles).Select(i => i.FullName).ToList();
  1294. var deletedImages = ImageInfos
  1295. .Where(image => !allFiles.Contains(image.Path, StringComparer.OrdinalIgnoreCase))
  1296. .ToList();
  1297. if (deletedImages.Count > 0)
  1298. {
  1299. ImageInfos = ImageInfos.Except(deletedImages).ToList();
  1300. }
  1301. return deletedImages.Count > 0;
  1302. }
  1303. /// <summary>
  1304. /// Gets the image path.
  1305. /// </summary>
  1306. /// <param name="imageType">Type of the image.</param>
  1307. /// <param name="imageIndex">Index of the image.</param>
  1308. /// <returns>System.String.</returns>
  1309. /// <exception cref="System.InvalidOperationException">
  1310. /// </exception>
  1311. /// <exception cref="System.ArgumentNullException">item</exception>
  1312. public string GetImagePath(ImageType imageType, int imageIndex)
  1313. {
  1314. var info = GetImageInfo(imageType, imageIndex);
  1315. return info == null ? null : info.Path;
  1316. }
  1317. /// <summary>
  1318. /// Gets the image information.
  1319. /// </summary>
  1320. /// <param name="imageType">Type of the image.</param>
  1321. /// <param name="imageIndex">Index of the image.</param>
  1322. /// <returns>ItemImageInfo.</returns>
  1323. public ItemImageInfo GetImageInfo(ImageType imageType, int imageIndex)
  1324. {
  1325. if (imageType == ImageType.Chapter)
  1326. {
  1327. var chapter = ItemRepository.GetChapter(Id, imageIndex);
  1328. if (chapter == null)
  1329. {
  1330. return null;
  1331. }
  1332. var path = chapter.ImagePath;
  1333. if (string.IsNullOrWhiteSpace(path))
  1334. {
  1335. return null;
  1336. }
  1337. var fileInfo = new FileInfo(path);
  1338. return new ItemImageInfo
  1339. {
  1340. Path = path,
  1341. DateModified = FileSystem.GetLastWriteTimeUtc(fileInfo),
  1342. Type = imageType,
  1343. Length = fileInfo.Length
  1344. };
  1345. }
  1346. return GetImages(imageType)
  1347. .ElementAtOrDefault(imageIndex);
  1348. }
  1349. public IEnumerable<ItemImageInfo> GetImages(ImageType imageType)
  1350. {
  1351. if (imageType == ImageType.Chapter)
  1352. {
  1353. throw new ArgumentException("No image info for chapter images");
  1354. }
  1355. return ImageInfos.Where(i => i.Type == imageType);
  1356. }
  1357. public bool AddImages(ImageType imageType, IEnumerable<FileInfo> images)
  1358. {
  1359. return AddImages(imageType, images.Cast<FileSystemInfo>());
  1360. }
  1361. /// <summary>
  1362. /// Adds the images.
  1363. /// </summary>
  1364. /// <param name="imageType">Type of the image.</param>
  1365. /// <param name="images">The images.</param>
  1366. /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
  1367. /// <exception cref="System.ArgumentException">Cannot call AddImages with chapter images</exception>
  1368. public bool AddImages(ImageType imageType, IEnumerable<FileSystemInfo> images)
  1369. {
  1370. if (imageType == ImageType.Chapter)
  1371. {
  1372. throw new ArgumentException("Cannot call AddImages with chapter images");
  1373. }
  1374. var existingImages = GetImages(imageType)
  1375. .ToList();
  1376. var newImageList = new List<FileSystemInfo>();
  1377. foreach (var newImage in images)
  1378. {
  1379. if (newImage == null)
  1380. {
  1381. throw new ArgumentException("null image found in list");
  1382. }
  1383. var existing = existingImages
  1384. .FirstOrDefault(i => string.Equals(i.Path, newImage.FullName, StringComparison.OrdinalIgnoreCase));
  1385. if (existing == null)
  1386. {
  1387. newImageList.Add(newImage);
  1388. }
  1389. else
  1390. {
  1391. existing.DateModified = FileSystem.GetLastWriteTimeUtc(newImage);
  1392. existing.Length = ((FileInfo) newImage).Length;
  1393. }
  1394. }
  1395. ImageInfos.AddRange(newImageList.Select(i => GetImageInfo(i, imageType)));
  1396. return newImageList.Count > 0;
  1397. }
  1398. private ItemImageInfo GetImageInfo(FileSystemInfo file, ImageType type)
  1399. {
  1400. return new ItemImageInfo
  1401. {
  1402. Path = file.FullName,
  1403. Type = type,
  1404. DateModified = FileSystem.GetLastWriteTimeUtc(file),
  1405. Length = ((FileInfo)file).Length
  1406. };
  1407. }
  1408. /// <summary>
  1409. /// Gets the file system path to delete when the item is to be deleted
  1410. /// </summary>
  1411. /// <returns></returns>
  1412. public virtual IEnumerable<string> GetDeletePaths()
  1413. {
  1414. return new[] { Path };
  1415. }
  1416. public bool AllowsMultipleImages(ImageType type)
  1417. {
  1418. return type == ImageType.Backdrop || type == ImageType.Screenshot || type == ImageType.Chapter;
  1419. }
  1420. public Task SwapImages(ImageType type, int index1, int index2)
  1421. {
  1422. if (!AllowsMultipleImages(type))
  1423. {
  1424. throw new ArgumentException("The change index operation is only applicable to backdrops and screenshots");
  1425. }
  1426. var info1 = GetImageInfo(type, index1);
  1427. var info2 = GetImageInfo(type, index2);
  1428. if (info1 == null || info2 == null)
  1429. {
  1430. // Nothing to do
  1431. return Task.FromResult(true);
  1432. }
  1433. var path1 = info1.Path;
  1434. var path2 = info2.Path;
  1435. FileSystem.SwapFiles(path1, path2);
  1436. var file1 = new FileInfo(info1.Path);
  1437. var file2 = new FileInfo(info2.Path);
  1438. // Refresh these values
  1439. info1.DateModified = FileSystem.GetLastWriteTimeUtc(file1);
  1440. info2.DateModified = FileSystem.GetLastWriteTimeUtc(file2);
  1441. info1.Length = file1.Length;
  1442. info2.Length = file2.Length;
  1443. return UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None);
  1444. }
  1445. public virtual bool IsPlayed(User user)
  1446. {
  1447. var userdata = UserDataManager.GetUserData(user.Id, GetUserDataKey());
  1448. return userdata != null && userdata.Played;
  1449. }
  1450. public bool IsFavoriteOrLiked(User user)
  1451. {
  1452. var userdata = UserDataManager.GetUserData(user.Id, GetUserDataKey());
  1453. return userdata != null && (userdata.IsFavorite || (userdata.Likes ?? false));
  1454. }
  1455. public virtual bool IsUnplayed(User user)
  1456. {
  1457. if (user == null)
  1458. {
  1459. throw new ArgumentNullException("user");
  1460. }
  1461. var userdata = UserDataManager.GetUserData(user.Id, GetUserDataKey());
  1462. return userdata == null || !userdata.Played;
  1463. }
  1464. ItemLookupInfo IHasLookupInfo<ItemLookupInfo>.GetLookupInfo()
  1465. {
  1466. return GetItemLookupInfo<ItemLookupInfo>();
  1467. }
  1468. protected T GetItemLookupInfo<T>()
  1469. where T : ItemLookupInfo, new()
  1470. {
  1471. return new T
  1472. {
  1473. MetadataCountryCode = GetPreferredMetadataCountryCode(),
  1474. MetadataLanguage = GetPreferredMetadataLanguage(),
  1475. Name = Name,
  1476. ProviderIds = ProviderIds,
  1477. IndexNumber = IndexNumber,
  1478. ParentIndexNumber = ParentIndexNumber,
  1479. Year = ProductionYear
  1480. };
  1481. }
  1482. /// <summary>
  1483. /// This is called before any metadata refresh and returns true or false indicating if changes were made
  1484. /// </summary>
  1485. public virtual bool BeforeMetadataRefresh()
  1486. {
  1487. _userDataKey = null;
  1488. _sortName = null;
  1489. var hasChanges = false;
  1490. if (string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(Path))
  1491. {
  1492. Name = FileSystem.GetFileNameWithoutExtension(Path);
  1493. hasChanges = true;
  1494. }
  1495. return hasChanges;
  1496. }
  1497. protected static string GetMappedPath(string path, LocationType locationType)
  1498. {
  1499. if (locationType == LocationType.FileSystem || locationType == LocationType.Offline)
  1500. {
  1501. foreach (var map in ConfigurationManager.Configuration.PathSubstitutions)
  1502. {
  1503. path = FileSystem.SubstitutePath(path, map.From, map.To);
  1504. }
  1505. }
  1506. return path;
  1507. }
  1508. public virtual void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, User user)
  1509. {
  1510. if (RunTimeTicks.HasValue)
  1511. {
  1512. double pct = RunTimeTicks.Value;
  1513. if (pct > 0)
  1514. {
  1515. pct = userData.PlaybackPositionTicks / pct;
  1516. if (pct > 0)
  1517. {
  1518. dto.PlayedPercentage = 100 * pct;
  1519. }
  1520. }
  1521. }
  1522. }
  1523. protected Task RefreshMetadataForOwnedVideo(MetadataRefreshOptions options, string path, CancellationToken cancellationToken)
  1524. {
  1525. var newOptions = new MetadataRefreshOptions(options.DirectoryService)
  1526. {
  1527. ImageRefreshMode = options.ImageRefreshMode,
  1528. MetadataRefreshMode = options.MetadataRefreshMode,
  1529. ReplaceAllMetadata = options.ReplaceAllMetadata
  1530. };
  1531. var id = LibraryManager.GetNewItemId(path, typeof(Video));
  1532. // Try to retrieve it from the db. If we don't find it, use the resolved version
  1533. var video = LibraryManager.GetItemById(id) as Video;
  1534. if (video == null)
  1535. {
  1536. video = LibraryManager.ResolvePath(new FileInfo(path)) as Video;
  1537. newOptions.ForceSave = true;
  1538. }
  1539. if (video == null)
  1540. {
  1541. return Task.FromResult(true);
  1542. }
  1543. return video.RefreshMetadata(newOptions, cancellationToken);
  1544. }
  1545. }
  1546. }