BaseItem.cs 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009
  1. #pragma warning disable CS1591
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Globalization;
  5. using System.IO;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Text.Json.Serialization;
  9. using System.Threading;
  10. using System.Threading.Tasks;
  11. using Jellyfin.Data.Entities;
  12. using Jellyfin.Data.Enums;
  13. using MediaBrowser.Common.Extensions;
  14. using MediaBrowser.Controller.Channels;
  15. using MediaBrowser.Controller.Configuration;
  16. using MediaBrowser.Controller.Dto;
  17. using MediaBrowser.Controller.Extensions;
  18. using MediaBrowser.Controller.Library;
  19. using MediaBrowser.Controller.Persistence;
  20. using MediaBrowser.Controller.Providers;
  21. using MediaBrowser.Model.Configuration;
  22. using MediaBrowser.Model.Dto;
  23. using MediaBrowser.Model.Entities;
  24. using MediaBrowser.Model.Globalization;
  25. using MediaBrowser.Model.IO;
  26. using MediaBrowser.Model.Library;
  27. using MediaBrowser.Model.LiveTv;
  28. using MediaBrowser.Model.MediaInfo;
  29. using MediaBrowser.Model.Providers;
  30. using Microsoft.Extensions.Logging;
  31. namespace MediaBrowser.Controller.Entities
  32. {
  33. /// <summary>
  34. /// Class BaseItem.
  35. /// </summary>
  36. public abstract class BaseItem : IHasProviderIds, IHasLookupInfo<ItemLookupInfo>, IEquatable<BaseItem>
  37. {
  38. /// <summary>
  39. /// The supported image extensions.
  40. /// </summary>
  41. public static readonly string[] SupportedImageExtensions
  42. = new[] { ".png", ".jpg", ".jpeg", ".tbn", ".gif" };
  43. private static readonly List<string> _supportedExtensions = new List<string>(SupportedImageExtensions)
  44. {
  45. ".nfo",
  46. ".xml",
  47. ".srt",
  48. ".vtt",
  49. ".sub",
  50. ".idx",
  51. ".txt",
  52. ".edl",
  53. ".bif",
  54. ".smi",
  55. ".ttml"
  56. };
  57. protected BaseItem()
  58. {
  59. Tags = Array.Empty<string>();
  60. Genres = Array.Empty<string>();
  61. Studios = Array.Empty<string>();
  62. ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
  63. LockedFields = Array.Empty<MetadataField>();
  64. ImageInfos = Array.Empty<ItemImageInfo>();
  65. ProductionLocations = Array.Empty<string>();
  66. RemoteTrailers = Array.Empty<MediaUrl>();
  67. ExtraIds = Array.Empty<Guid>();
  68. }
  69. public static readonly char[] SlugReplaceChars = { '?', '/', '&' };
  70. public static char SlugChar = '-';
  71. /// <summary>
  72. /// The trailer folder name.
  73. /// </summary>
  74. public const string TrailerFolderName = "trailers";
  75. public const string ThemeSongsFolderName = "theme-music";
  76. public const string ThemeSongFilename = "theme";
  77. public const string ThemeVideosFolderName = "backdrops";
  78. public const string ExtrasFolderName = "extras";
  79. public const string BehindTheScenesFolderName = "behind the scenes";
  80. public const string DeletedScenesFolderName = "deleted scenes";
  81. public const string InterviewFolderName = "interviews";
  82. public const string SceneFolderName = "scenes";
  83. public const string SampleFolderName = "samples";
  84. public const string ShortsFolderName = "shorts";
  85. public const string FeaturettesFolderName = "featurettes";
  86. public static readonly string[] AllExtrasTypesFolderNames = {
  87. ExtrasFolderName,
  88. BehindTheScenesFolderName,
  89. DeletedScenesFolderName,
  90. InterviewFolderName,
  91. SceneFolderName,
  92. SampleFolderName,
  93. ShortsFolderName,
  94. FeaturettesFolderName
  95. };
  96. [JsonIgnore]
  97. public Guid[] ThemeSongIds
  98. {
  99. get
  100. {
  101. if (_themeSongIds == null)
  102. {
  103. _themeSongIds = GetExtras()
  104. .Where(extra => extra.ExtraType == Model.Entities.ExtraType.ThemeSong)
  105. .Select(song => song.Id)
  106. .ToArray();
  107. }
  108. return _themeSongIds;
  109. }
  110. private set
  111. {
  112. _themeSongIds = value;
  113. }
  114. }
  115. [JsonIgnore]
  116. public Guid[] ThemeVideoIds
  117. {
  118. get
  119. {
  120. if (_themeVideoIds == null)
  121. {
  122. _themeVideoIds = GetExtras()
  123. .Where(extra => extra.ExtraType == Model.Entities.ExtraType.ThemeVideo)
  124. .Select(song => song.Id)
  125. .ToArray();
  126. }
  127. return _themeVideoIds;
  128. }
  129. private set
  130. {
  131. _themeVideoIds = value;
  132. }
  133. }
  134. [JsonIgnore]
  135. public string PreferredMetadataCountryCode { get; set; }
  136. [JsonIgnore]
  137. public string PreferredMetadataLanguage { get; set; }
  138. public long? Size { get; set; }
  139. public string Container { get; set; }
  140. [JsonIgnore]
  141. public string Tagline { get; set; }
  142. [JsonIgnore]
  143. public virtual ItemImageInfo[] ImageInfos { get; set; }
  144. [JsonIgnore]
  145. public bool IsVirtualItem { get; set; }
  146. /// <summary>
  147. /// Gets or sets the album.
  148. /// </summary>
  149. /// <value>The album.</value>
  150. [JsonIgnore]
  151. public string Album { get; set; }
  152. /// <summary>
  153. /// Gets or sets the channel identifier.
  154. /// </summary>
  155. /// <value>The channel identifier.</value>
  156. [JsonIgnore]
  157. public Guid ChannelId { get; set; }
  158. [JsonIgnore]
  159. public virtual bool SupportsAddingToPlaylist => false;
  160. [JsonIgnore]
  161. public virtual bool AlwaysScanInternalMetadataPath => false;
  162. /// <summary>
  163. /// Gets a value indicating whether this instance is in mixed folder.
  164. /// </summary>
  165. /// <value><c>true</c> if this instance is in mixed folder; otherwise, <c>false</c>.</value>
  166. [JsonIgnore]
  167. public bool IsInMixedFolder { get; set; }
  168. [JsonIgnore]
  169. public virtual bool SupportsPlayedStatus => false;
  170. [JsonIgnore]
  171. public virtual bool SupportsPositionTicksResume => false;
  172. [JsonIgnore]
  173. public virtual bool SupportsRemoteImageDownloading => true;
  174. private string _name;
  175. /// <summary>
  176. /// Gets or sets the name.
  177. /// </summary>
  178. /// <value>The name.</value>
  179. [JsonIgnore]
  180. public virtual string Name
  181. {
  182. get => _name;
  183. set
  184. {
  185. _name = value;
  186. // lazy load this again
  187. _sortName = null;
  188. }
  189. }
  190. [JsonIgnore]
  191. public bool IsUnaired => PremiereDate.HasValue && PremiereDate.Value.ToLocalTime().Date >= DateTime.Now.Date;
  192. [JsonIgnore]
  193. public int? TotalBitrate { get; set; }
  194. [JsonIgnore]
  195. public ExtraType? ExtraType { get; set; }
  196. [JsonIgnore]
  197. public bool IsThemeMedia => ExtraType.HasValue && (ExtraType.Value == Model.Entities.ExtraType.ThemeSong || ExtraType.Value == Model.Entities.ExtraType.ThemeVideo);
  198. [JsonIgnore]
  199. public string OriginalTitle { get; set; }
  200. /// <summary>
  201. /// Gets or sets the id.
  202. /// </summary>
  203. /// <value>The id.</value>
  204. [JsonIgnore]
  205. public Guid Id { get; set; }
  206. [JsonIgnore]
  207. public Guid OwnerId { get; set; }
  208. /// <summary>
  209. /// Gets or sets the audio.
  210. /// </summary>
  211. /// <value>The audio.</value>
  212. [JsonIgnore]
  213. public ProgramAudio? Audio { get; set; }
  214. /// <summary>
  215. /// Return the id that should be used to key display prefs for this item.
  216. /// Default is based on the type for everything except actual generic folders.
  217. /// </summary>
  218. /// <value>The display prefs id.</value>
  219. [JsonIgnore]
  220. public virtual Guid DisplayPreferencesId
  221. {
  222. get
  223. {
  224. var thisType = GetType();
  225. return thisType == typeof(Folder) ? Id : thisType.FullName.GetMD5();
  226. }
  227. }
  228. /// <summary>
  229. /// Gets or sets the path.
  230. /// </summary>
  231. /// <value>The path.</value>
  232. [JsonIgnore]
  233. public virtual string Path { get; set; }
  234. [JsonIgnore]
  235. public virtual SourceType SourceType
  236. {
  237. get
  238. {
  239. if (!ChannelId.Equals(Guid.Empty))
  240. {
  241. return SourceType.Channel;
  242. }
  243. return SourceType.Library;
  244. }
  245. }
  246. /// <summary>
  247. /// Returns the folder containing the item.
  248. /// If the item is a folder, it returns the folder itself.
  249. /// </summary>
  250. [JsonIgnore]
  251. public virtual string ContainingFolderPath
  252. {
  253. get
  254. {
  255. if (IsFolder)
  256. {
  257. return Path;
  258. }
  259. return System.IO.Path.GetDirectoryName(Path);
  260. }
  261. }
  262. /// <summary>
  263. /// Gets or sets the name of the service.
  264. /// </summary>
  265. /// <value>The name of the service.</value>
  266. [JsonIgnore]
  267. public string ServiceName { get; set; }
  268. /// <summary>
  269. /// If this content came from an external service, the id of the content on that service.
  270. /// </summary>
  271. [JsonIgnore]
  272. public string ExternalId { get; set; }
  273. [JsonIgnore]
  274. public string ExternalSeriesId { get; set; }
  275. /// <summary>
  276. /// Gets or sets the etag.
  277. /// </summary>
  278. /// <value>The etag.</value>
  279. [JsonIgnore]
  280. public string ExternalEtag { get; set; }
  281. [JsonIgnore]
  282. public virtual bool IsHidden => false;
  283. public BaseItem GetOwner()
  284. {
  285. var ownerId = OwnerId;
  286. return ownerId.Equals(Guid.Empty) ? null : LibraryManager.GetItemById(ownerId);
  287. }
  288. /// <summary>
  289. /// Gets or sets the type of the location.
  290. /// </summary>
  291. /// <value>The type of the location.</value>
  292. [JsonIgnore]
  293. public virtual LocationType LocationType
  294. {
  295. get
  296. {
  297. // if (IsOffline)
  298. //{
  299. // return LocationType.Offline;
  300. //}
  301. var path = Path;
  302. if (string.IsNullOrEmpty(path))
  303. {
  304. if (SourceType == SourceType.Channel)
  305. {
  306. return LocationType.Remote;
  307. }
  308. return LocationType.Virtual;
  309. }
  310. return FileSystem.IsPathFile(path) ? LocationType.FileSystem : LocationType.Remote;
  311. }
  312. }
  313. [JsonIgnore]
  314. public MediaProtocol? PathProtocol
  315. {
  316. get
  317. {
  318. var path = Path;
  319. if (string.IsNullOrEmpty(path))
  320. {
  321. return null;
  322. }
  323. return MediaSourceManager.GetPathProtocol(path);
  324. }
  325. }
  326. public bool IsPathProtocol(MediaProtocol protocol)
  327. {
  328. var current = PathProtocol;
  329. return current.HasValue && current.Value == protocol;
  330. }
  331. [JsonIgnore]
  332. public bool IsFileProtocol => IsPathProtocol(MediaProtocol.File);
  333. [JsonIgnore]
  334. public bool HasPathProtocol => PathProtocol.HasValue;
  335. [JsonIgnore]
  336. public virtual bool SupportsLocalMetadata
  337. {
  338. get
  339. {
  340. if (SourceType == SourceType.Channel)
  341. {
  342. return false;
  343. }
  344. return IsFileProtocol;
  345. }
  346. }
  347. [JsonIgnore]
  348. public virtual string FileNameWithoutExtension
  349. {
  350. get
  351. {
  352. if (IsFileProtocol)
  353. {
  354. return System.IO.Path.GetFileNameWithoutExtension(Path);
  355. }
  356. return null;
  357. }
  358. }
  359. [JsonIgnore]
  360. public virtual bool EnableAlphaNumericSorting => true;
  361. private List<Tuple<StringBuilder, bool>> GetSortChunks(string s1)
  362. {
  363. var list = new List<Tuple<StringBuilder, bool>>();
  364. int thisMarker = 0;
  365. while (thisMarker < s1.Length)
  366. {
  367. char thisCh = s1[thisMarker];
  368. var thisChunk = new StringBuilder();
  369. bool isNumeric = char.IsDigit(thisCh);
  370. while (thisMarker < s1.Length && char.IsDigit(thisCh) == isNumeric)
  371. {
  372. thisChunk.Append(thisCh);
  373. thisMarker++;
  374. if (thisMarker < s1.Length)
  375. {
  376. thisCh = s1[thisMarker];
  377. }
  378. }
  379. list.Add(new Tuple<StringBuilder, bool>(thisChunk, isNumeric));
  380. }
  381. return list;
  382. }
  383. /// <summary>
  384. /// This is just a helper for convenience.
  385. /// </summary>
  386. /// <value>The primary image path.</value>
  387. [JsonIgnore]
  388. public string PrimaryImagePath => this.GetImagePath(ImageType.Primary);
  389. public virtual bool CanDelete()
  390. {
  391. if (SourceType == SourceType.Channel)
  392. {
  393. return ChannelManager.CanDelete(this);
  394. }
  395. return IsFileProtocol;
  396. }
  397. public virtual bool IsAuthorizedToDelete(User user, List<Folder> allCollectionFolders)
  398. {
  399. if (user.HasPermission(PermissionKind.EnableContentDeletion))
  400. {
  401. return true;
  402. }
  403. var allowed = user.GetPreferenceValues<Guid>(PreferenceKind.EnableContentDeletionFromFolders);
  404. if (SourceType == SourceType.Channel)
  405. {
  406. return allowed.Contains(ChannelId);
  407. }
  408. else
  409. {
  410. var collectionFolders = LibraryManager.GetCollectionFolders(this, allCollectionFolders);
  411. foreach (var folder in collectionFolders)
  412. {
  413. if (allowed.Contains(folder.Id))
  414. {
  415. return true;
  416. }
  417. }
  418. }
  419. return false;
  420. }
  421. public bool CanDelete(User user, List<Folder> allCollectionFolders)
  422. {
  423. return CanDelete() && IsAuthorizedToDelete(user, allCollectionFolders);
  424. }
  425. public bool CanDelete(User user)
  426. {
  427. var allCollectionFolders = LibraryManager.GetUserRootFolder().Children.OfType<Folder>().ToList();
  428. return CanDelete(user, allCollectionFolders);
  429. }
  430. public virtual bool CanDownload()
  431. {
  432. return false;
  433. }
  434. public virtual bool IsAuthorizedToDownload(User user)
  435. {
  436. return user.HasPermission(PermissionKind.EnableContentDownloading);
  437. }
  438. public bool CanDownload(User user)
  439. {
  440. return CanDownload() && IsAuthorizedToDownload(user);
  441. }
  442. /// <summary>
  443. /// Gets or sets the date created.
  444. /// </summary>
  445. /// <value>The date created.</value>
  446. [JsonIgnore]
  447. public DateTime DateCreated { get; set; }
  448. /// <summary>
  449. /// Gets or sets the date modified.
  450. /// </summary>
  451. /// <value>The date modified.</value>
  452. [JsonIgnore]
  453. public DateTime DateModified { get; set; }
  454. public DateTime DateLastSaved { get; set; }
  455. [JsonIgnore]
  456. public DateTime DateLastRefreshed { get; set; }
  457. /// <summary>
  458. /// The logger.
  459. /// </summary>
  460. public static ILogger<BaseItem> Logger { get; set; }
  461. public static ILibraryManager LibraryManager { get; set; }
  462. public static IServerConfigurationManager ConfigurationManager { get; set; }
  463. public static IProviderManager ProviderManager { get; set; }
  464. public static ILocalizationManager LocalizationManager { get; set; }
  465. public static IItemRepository ItemRepository { get; set; }
  466. public static IFileSystem FileSystem { get; set; }
  467. public static IUserDataManager UserDataManager { get; set; }
  468. public static IChannelManager ChannelManager { get; set; }
  469. public static IMediaSourceManager MediaSourceManager { get; set; }
  470. /// <summary>
  471. /// Returns a <see cref="string" /> that represents this instance.
  472. /// </summary>
  473. /// <returns>A <see cref="string" /> that represents this instance.</returns>
  474. public override string ToString()
  475. {
  476. return Name;
  477. }
  478. [JsonIgnore]
  479. public bool IsLocked { get; set; }
  480. /// <summary>
  481. /// Gets or sets the locked fields.
  482. /// </summary>
  483. /// <value>The locked fields.</value>
  484. [JsonIgnore]
  485. public MetadataField[] LockedFields { get; set; }
  486. /// <summary>
  487. /// Gets the type of the media.
  488. /// </summary>
  489. /// <value>The type of the media.</value>
  490. [JsonIgnore]
  491. public virtual string MediaType => null;
  492. [JsonIgnore]
  493. public virtual string[] PhysicalLocations
  494. {
  495. get
  496. {
  497. if (!IsFileProtocol)
  498. {
  499. return Array.Empty<string>();
  500. }
  501. return new[] { Path };
  502. }
  503. }
  504. private string _forcedSortName;
  505. /// <summary>
  506. /// Gets or sets the name of the forced sort.
  507. /// </summary>
  508. /// <value>The name of the forced sort.</value>
  509. [JsonIgnore]
  510. public string ForcedSortName
  511. {
  512. get => _forcedSortName;
  513. set { _forcedSortName = value; _sortName = null; }
  514. }
  515. private string _sortName;
  516. private Guid[] _themeSongIds;
  517. private Guid[] _themeVideoIds;
  518. /// <summary>
  519. /// Gets the name of the sort.
  520. /// </summary>
  521. /// <value>The name of the sort.</value>
  522. [JsonIgnore]
  523. public string SortName
  524. {
  525. get
  526. {
  527. if (_sortName == null)
  528. {
  529. if (!string.IsNullOrEmpty(ForcedSortName))
  530. {
  531. // Need the ToLower because that's what CreateSortName does
  532. _sortName = ModifySortChunks(ForcedSortName).ToLowerInvariant();
  533. }
  534. else
  535. {
  536. _sortName = CreateSortName();
  537. }
  538. }
  539. return _sortName;
  540. }
  541. set => _sortName = value;
  542. }
  543. public string GetInternalMetadataPath()
  544. {
  545. var basePath = ConfigurationManager.ApplicationPaths.InternalMetadataPath;
  546. return GetInternalMetadataPath(basePath);
  547. }
  548. protected virtual string GetInternalMetadataPath(string basePath)
  549. {
  550. if (SourceType == SourceType.Channel)
  551. {
  552. return System.IO.Path.Combine(basePath, "channels", ChannelId.ToString("N", CultureInfo.InvariantCulture), Id.ToString("N", CultureInfo.InvariantCulture));
  553. }
  554. ReadOnlySpan<char> idString = Id.ToString("N", CultureInfo.InvariantCulture);
  555. basePath = System.IO.Path.Combine(basePath, "library");
  556. return System.IO.Path.Join(basePath, idString.Slice(0, 2), idString);
  557. }
  558. /// <summary>
  559. /// Creates the name of the sort.
  560. /// </summary>
  561. /// <returns>System.String.</returns>
  562. protected virtual string CreateSortName()
  563. {
  564. if (Name == null)
  565. {
  566. return null; // some items may not have name filled in properly
  567. }
  568. if (!EnableAlphaNumericSorting)
  569. {
  570. return Name.TrimStart();
  571. }
  572. var sortable = Name.Trim().ToLowerInvariant();
  573. foreach (var removeChar in ConfigurationManager.Configuration.SortRemoveCharacters)
  574. {
  575. sortable = sortable.Replace(removeChar, string.Empty, StringComparison.Ordinal);
  576. }
  577. foreach (var replaceChar in ConfigurationManager.Configuration.SortReplaceCharacters)
  578. {
  579. sortable = sortable.Replace(replaceChar, " ", StringComparison.Ordinal);
  580. }
  581. foreach (var search in ConfigurationManager.Configuration.SortRemoveWords)
  582. {
  583. // Remove from beginning if a space follows
  584. if (sortable.StartsWith(search + " ", StringComparison.Ordinal))
  585. {
  586. sortable = sortable.Remove(0, search.Length + 1);
  587. }
  588. // Remove from middle if surrounded by spaces
  589. sortable = sortable.Replace(" " + search + " ", " ", StringComparison.Ordinal);
  590. // Remove from end if followed by a space
  591. if (sortable.EndsWith(" " + search, StringComparison.Ordinal))
  592. {
  593. sortable = sortable.Remove(sortable.Length - (search.Length + 1));
  594. }
  595. }
  596. return ModifySortChunks(sortable);
  597. }
  598. private string ModifySortChunks(string name)
  599. {
  600. var chunks = GetSortChunks(name);
  601. var builder = new StringBuilder();
  602. foreach (var chunk in chunks)
  603. {
  604. var chunkBuilder = chunk.Item1;
  605. // This chunk is numeric
  606. if (chunk.Item2)
  607. {
  608. while (chunkBuilder.Length < 10)
  609. {
  610. chunkBuilder.Insert(0, '0');
  611. }
  612. }
  613. builder.Append(chunkBuilder);
  614. }
  615. // logger.LogDebug("ModifySortChunks Start: {0} End: {1}", name, builder.ToString());
  616. return builder.ToString().RemoveDiacritics();
  617. }
  618. [JsonIgnore]
  619. public bool EnableMediaSourceDisplay
  620. {
  621. get
  622. {
  623. if (SourceType == SourceType.Channel)
  624. {
  625. return ChannelManager.EnableMediaSourceDisplay(this);
  626. }
  627. return true;
  628. }
  629. }
  630. [JsonIgnore]
  631. public Guid ParentId { get; set; }
  632. /// <summary>
  633. /// Gets or sets the parent.
  634. /// </summary>
  635. /// <value>The parent.</value>
  636. [JsonIgnore]
  637. public Folder Parent
  638. {
  639. get => GetParent() as Folder;
  640. set
  641. {
  642. }
  643. }
  644. public void SetParent(Folder parent)
  645. {
  646. ParentId = parent == null ? Guid.Empty : parent.Id;
  647. }
  648. public BaseItem GetParent()
  649. {
  650. var parentId = ParentId;
  651. if (!parentId.Equals(Guid.Empty))
  652. {
  653. return LibraryManager.GetItemById(parentId);
  654. }
  655. return null;
  656. }
  657. public IEnumerable<BaseItem> GetParents()
  658. {
  659. var parent = GetParent();
  660. while (parent != null)
  661. {
  662. yield return parent;
  663. parent = parent.GetParent();
  664. }
  665. }
  666. /// <summary>
  667. /// Finds a parent of a given type.
  668. /// </summary>
  669. /// <typeparam name="T"></typeparam>
  670. /// <returns>``0.</returns>
  671. public T FindParent<T>()
  672. where T : Folder
  673. {
  674. foreach (var parent in GetParents())
  675. {
  676. var item = parent as T;
  677. if (item != null)
  678. {
  679. return item;
  680. }
  681. }
  682. return null;
  683. }
  684. [JsonIgnore]
  685. public virtual Guid DisplayParentId
  686. {
  687. get
  688. {
  689. var parentId = ParentId;
  690. return parentId;
  691. }
  692. }
  693. [JsonIgnore]
  694. public BaseItem DisplayParent
  695. {
  696. get
  697. {
  698. var id = DisplayParentId;
  699. if (id.Equals(Guid.Empty))
  700. {
  701. return null;
  702. }
  703. return LibraryManager.GetItemById(id);
  704. }
  705. }
  706. /// <summary>
  707. /// When the item first debuted. For movies this could be premiere date, episodes would be first aired
  708. /// </summary>
  709. /// <value>The premiere date.</value>
  710. [JsonIgnore]
  711. public DateTime? PremiereDate { get; set; }
  712. /// <summary>
  713. /// Gets or sets the end date.
  714. /// </summary>
  715. /// <value>The end date.</value>
  716. [JsonIgnore]
  717. public DateTime? EndDate { get; set; }
  718. /// <summary>
  719. /// Gets or sets the official rating.
  720. /// </summary>
  721. /// <value>The official rating.</value>
  722. [JsonIgnore]
  723. public string OfficialRating { get; set; }
  724. [JsonIgnore]
  725. public int InheritedParentalRatingValue { get; set; }
  726. /// <summary>
  727. /// Gets or sets the critic rating.
  728. /// </summary>
  729. /// <value>The critic rating.</value>
  730. [JsonIgnore]
  731. public float? CriticRating { get; set; }
  732. /// <summary>
  733. /// Gets or sets the custom rating.
  734. /// </summary>
  735. /// <value>The custom rating.</value>
  736. [JsonIgnore]
  737. public string CustomRating { get; set; }
  738. /// <summary>
  739. /// Gets or sets the overview.
  740. /// </summary>
  741. /// <value>The overview.</value>
  742. [JsonIgnore]
  743. public string Overview { get; set; }
  744. /// <summary>
  745. /// Gets or sets the studios.
  746. /// </summary>
  747. /// <value>The studios.</value>
  748. [JsonIgnore]
  749. public string[] Studios { get; set; }
  750. /// <summary>
  751. /// Gets or sets the genres.
  752. /// </summary>
  753. /// <value>The genres.</value>
  754. [JsonIgnore]
  755. public string[] Genres { get; set; }
  756. /// <summary>
  757. /// Gets or sets the tags.
  758. /// </summary>
  759. /// <value>The tags.</value>
  760. [JsonIgnore]
  761. public string[] Tags { get; set; }
  762. [JsonIgnore]
  763. public string[] ProductionLocations { get; set; }
  764. /// <summary>
  765. /// Gets or sets the home page URL.
  766. /// </summary>
  767. /// <value>The home page URL.</value>
  768. [JsonIgnore]
  769. public string HomePageUrl { get; set; }
  770. /// <summary>
  771. /// Gets or sets the community rating.
  772. /// </summary>
  773. /// <value>The community rating.</value>
  774. [JsonIgnore]
  775. public float? CommunityRating { get; set; }
  776. /// <summary>
  777. /// Gets or sets the run time ticks.
  778. /// </summary>
  779. /// <value>The run time ticks.</value>
  780. [JsonIgnore]
  781. public long? RunTimeTicks { get; set; }
  782. /// <summary>
  783. /// Gets or sets the production year.
  784. /// </summary>
  785. /// <value>The production year.</value>
  786. [JsonIgnore]
  787. public int? ProductionYear { get; set; }
  788. /// <summary>
  789. /// If the item is part of a series, this is it's number in the series.
  790. /// This could be episode number, album track number, etc.
  791. /// </summary>
  792. /// <value>The index number.</value>
  793. [JsonIgnore]
  794. public int? IndexNumber { get; set; }
  795. /// <summary>
  796. /// For an episode this could be the season number, or for a song this could be the disc number.
  797. /// </summary>
  798. /// <value>The parent index number.</value>
  799. [JsonIgnore]
  800. public int? ParentIndexNumber { get; set; }
  801. [JsonIgnore]
  802. public virtual bool HasLocalAlternateVersions => false;
  803. [JsonIgnore]
  804. public string OfficialRatingForComparison
  805. {
  806. get
  807. {
  808. var officialRating = OfficialRating;
  809. if (!string.IsNullOrEmpty(officialRating))
  810. {
  811. return officialRating;
  812. }
  813. var parent = DisplayParent;
  814. if (parent != null)
  815. {
  816. return parent.OfficialRatingForComparison;
  817. }
  818. return null;
  819. }
  820. }
  821. [JsonIgnore]
  822. public string CustomRatingForComparison
  823. {
  824. get
  825. {
  826. var customRating = CustomRating;
  827. if (!string.IsNullOrEmpty(customRating))
  828. {
  829. return customRating;
  830. }
  831. var parent = DisplayParent;
  832. if (parent != null)
  833. {
  834. return parent.CustomRatingForComparison;
  835. }
  836. return null;
  837. }
  838. }
  839. /// <summary>
  840. /// Gets the play access.
  841. /// </summary>
  842. /// <param name="user">The user.</param>
  843. /// <returns>PlayAccess.</returns>
  844. public PlayAccess GetPlayAccess(User user)
  845. {
  846. if (!user.HasPermission(PermissionKind.EnableMediaPlayback))
  847. {
  848. return PlayAccess.None;
  849. }
  850. // if (!user.IsParentalScheduleAllowed())
  851. //{
  852. // return PlayAccess.None;
  853. //}
  854. return PlayAccess.Full;
  855. }
  856. public virtual List<MediaStream> GetMediaStreams()
  857. {
  858. return MediaSourceManager.GetMediaStreams(new MediaStreamQuery
  859. {
  860. ItemId = Id
  861. });
  862. }
  863. protected virtual bool IsActiveRecording()
  864. {
  865. return false;
  866. }
  867. public virtual List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
  868. {
  869. if (SourceType == SourceType.Channel)
  870. {
  871. var sources = ChannelManager.GetStaticMediaSources(this, CancellationToken.None)
  872. .ToList();
  873. if (sources.Count > 0)
  874. {
  875. return sources;
  876. }
  877. }
  878. var list = GetAllItemsForMediaSources();
  879. var result = list.Select(i => GetVersionInfo(enablePathSubstitution, i.Item1, i.Item2)).ToList();
  880. if (IsActiveRecording())
  881. {
  882. foreach (var mediaSource in result)
  883. {
  884. mediaSource.Type = MediaSourceType.Placeholder;
  885. }
  886. }
  887. return result.OrderBy(i =>
  888. {
  889. if (i.VideoType == VideoType.VideoFile)
  890. {
  891. return 0;
  892. }
  893. return 1;
  894. }).ThenBy(i => i.Video3DFormat.HasValue ? 1 : 0)
  895. .ThenByDescending(i =>
  896. {
  897. var stream = i.VideoStream;
  898. return stream == null || stream.Width == null ? 0 : stream.Width.Value;
  899. })
  900. .ToList();
  901. }
  902. protected virtual List<Tuple<BaseItem, MediaSourceType>> GetAllItemsForMediaSources()
  903. {
  904. return new List<Tuple<BaseItem, MediaSourceType>>();
  905. }
  906. private MediaSourceInfo GetVersionInfo(bool enablePathSubstitution, BaseItem item, MediaSourceType type)
  907. {
  908. if (item == null)
  909. {
  910. throw new ArgumentNullException(nameof(item));
  911. }
  912. var protocol = item.PathProtocol;
  913. var info = new MediaSourceInfo
  914. {
  915. Id = item.Id.ToString("N", CultureInfo.InvariantCulture),
  916. Protocol = protocol ?? MediaProtocol.File,
  917. MediaStreams = MediaSourceManager.GetMediaStreams(item.Id),
  918. MediaAttachments = MediaSourceManager.GetMediaAttachments(item.Id),
  919. Name = GetMediaSourceName(item),
  920. Path = enablePathSubstitution ? GetMappedPath(item, item.Path, protocol) : item.Path,
  921. RunTimeTicks = item.RunTimeTicks,
  922. Container = item.Container,
  923. Size = item.Size,
  924. Type = type
  925. };
  926. if (string.IsNullOrEmpty(info.Path))
  927. {
  928. info.Type = MediaSourceType.Placeholder;
  929. }
  930. if (info.Protocol == MediaProtocol.File)
  931. {
  932. info.ETag = item.DateModified.Ticks.ToString(CultureInfo.InvariantCulture).GetMD5().ToString("N", CultureInfo.InvariantCulture);
  933. }
  934. var video = item as Video;
  935. if (video != null)
  936. {
  937. info.IsoType = video.IsoType;
  938. info.VideoType = video.VideoType;
  939. info.Video3DFormat = video.Video3DFormat;
  940. info.Timestamp = video.Timestamp;
  941. if (video.IsShortcut)
  942. {
  943. info.IsRemote = true;
  944. info.Path = video.ShortcutPath;
  945. info.Protocol = MediaSourceManager.GetPathProtocol(info.Path);
  946. }
  947. if (string.IsNullOrEmpty(info.Container))
  948. {
  949. if (video.VideoType == VideoType.VideoFile || video.VideoType == VideoType.Iso)
  950. {
  951. if (protocol.HasValue && protocol.Value == MediaProtocol.File)
  952. {
  953. info.Container = System.IO.Path.GetExtension(item.Path).TrimStart('.');
  954. }
  955. }
  956. }
  957. }
  958. if (string.IsNullOrEmpty(info.Container))
  959. {
  960. if (protocol.HasValue && protocol.Value == MediaProtocol.File)
  961. {
  962. info.Container = System.IO.Path.GetExtension(item.Path).TrimStart('.');
  963. }
  964. }
  965. if (info.SupportsDirectStream && !string.IsNullOrEmpty(info.Path))
  966. {
  967. info.SupportsDirectStream = MediaSourceManager.SupportsDirectStream(info.Path, info.Protocol);
  968. }
  969. if (video != null && video.VideoType != VideoType.VideoFile)
  970. {
  971. info.SupportsDirectStream = false;
  972. }
  973. info.Bitrate = item.TotalBitrate;
  974. info.InferTotalBitrate();
  975. return info;
  976. }
  977. private string GetMediaSourceName(BaseItem item)
  978. {
  979. var terms = new List<string>();
  980. var path = item.Path;
  981. if (item.IsFileProtocol && !string.IsNullOrEmpty(path))
  982. {
  983. if (HasLocalAlternateVersions)
  984. {
  985. var displayName = System.IO.Path.GetFileNameWithoutExtension(path)
  986. .Replace(System.IO.Path.GetFileName(ContainingFolderPath), string.Empty, StringComparison.OrdinalIgnoreCase)
  987. .TrimStart(new char[] { ' ', '-' });
  988. if (!string.IsNullOrEmpty(displayName))
  989. {
  990. terms.Add(displayName);
  991. }
  992. }
  993. if (terms.Count == 0)
  994. {
  995. var displayName = System.IO.Path.GetFileNameWithoutExtension(path);
  996. terms.Add(displayName);
  997. }
  998. }
  999. if (terms.Count == 0)
  1000. {
  1001. terms.Add(item.Name);
  1002. }
  1003. var video = item as Video;
  1004. if (video != null)
  1005. {
  1006. if (video.Video3DFormat.HasValue)
  1007. {
  1008. terms.Add("3D");
  1009. }
  1010. if (video.VideoType == VideoType.BluRay)
  1011. {
  1012. terms.Add("Bluray");
  1013. }
  1014. else if (video.VideoType == VideoType.Dvd)
  1015. {
  1016. terms.Add("DVD");
  1017. }
  1018. else if (video.VideoType == VideoType.Iso)
  1019. {
  1020. if (video.IsoType.HasValue)
  1021. {
  1022. if (video.IsoType.Value == IsoType.BluRay)
  1023. {
  1024. terms.Add("Bluray");
  1025. }
  1026. else if (video.IsoType.Value == IsoType.Dvd)
  1027. {
  1028. terms.Add("DVD");
  1029. }
  1030. }
  1031. else
  1032. {
  1033. terms.Add("ISO");
  1034. }
  1035. }
  1036. }
  1037. return string.Join("/", terms.ToArray());
  1038. }
  1039. /// <summary>
  1040. /// Loads the theme songs.
  1041. /// </summary>
  1042. /// <returns>List{Audio.Audio}.</returns>
  1043. private static Audio.Audio[] LoadThemeSongs(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
  1044. {
  1045. var files = fileSystemChildren.Where(i => i.IsDirectory)
  1046. .Where(i => string.Equals(i.Name, ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
  1047. .SelectMany(i => FileSystem.GetFiles(i.FullName))
  1048. .ToList();
  1049. // Support plex/xbmc convention
  1050. files.AddRange(fileSystemChildren
  1051. .Where(i => !i.IsDirectory && string.Equals(FileSystem.GetFileNameWithoutExtension(i), ThemeSongFilename, StringComparison.OrdinalIgnoreCase)));
  1052. return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
  1053. .OfType<Audio.Audio>()
  1054. .Select(audio =>
  1055. {
  1056. // Try to retrieve it from the db. If we don't find it, use the resolved version
  1057. var dbItem = LibraryManager.GetItemById(audio.Id) as Audio.Audio;
  1058. if (dbItem != null)
  1059. {
  1060. audio = dbItem;
  1061. }
  1062. else
  1063. {
  1064. // item is new
  1065. audio.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeSong;
  1066. }
  1067. return audio;
  1068. // Sort them so that the list can be easily compared for changes
  1069. }).OrderBy(i => i.Path).ToArray();
  1070. }
  1071. /// <summary>
  1072. /// Loads the video backdrops.
  1073. /// </summary>
  1074. /// <returns>List{Video}.</returns>
  1075. private static Video[] LoadThemeVideos(IEnumerable<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
  1076. {
  1077. var files = fileSystemChildren.Where(i => i.IsDirectory)
  1078. .Where(i => string.Equals(i.Name, ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
  1079. .SelectMany(i => FileSystem.GetFiles(i.FullName));
  1080. return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
  1081. .OfType<Video>()
  1082. .Select(item =>
  1083. {
  1084. // Try to retrieve it from the db. If we don't find it, use the resolved version
  1085. if (LibraryManager.GetItemById(item.Id) is Video dbItem)
  1086. {
  1087. item = dbItem;
  1088. }
  1089. else
  1090. {
  1091. // item is new
  1092. item.ExtraType = Model.Entities.ExtraType.ThemeVideo;
  1093. }
  1094. return item;
  1095. // Sort them so that the list can be easily compared for changes
  1096. }).OrderBy(i => i.Path).ToArray();
  1097. }
  1098. protected virtual BaseItem[] LoadExtras(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
  1099. {
  1100. var extras = new List<Video>();
  1101. var folders = fileSystemChildren.Where(i => i.IsDirectory).ToArray();
  1102. foreach (var extraFolderName in AllExtrasTypesFolderNames)
  1103. {
  1104. var files = folders
  1105. .Where(i => string.Equals(i.Name, extraFolderName, StringComparison.OrdinalIgnoreCase))
  1106. .SelectMany(i => FileSystem.GetFiles(i.FullName));
  1107. extras.AddRange(LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
  1108. .OfType<Video>()
  1109. .Select(item =>
  1110. {
  1111. // Try to retrieve it from the db. If we don't find it, use the resolved version
  1112. if (LibraryManager.GetItemById(item.Id) is Video dbItem)
  1113. {
  1114. item = dbItem;
  1115. }
  1116. // Use some hackery to get the extra type based on foldername
  1117. item.ExtraType = Enum.TryParse(extraFolderName.Replace(" ", string.Empty), true, out ExtraType extraType)
  1118. ? extraType
  1119. : Model.Entities.ExtraType.Unknown;
  1120. return item;
  1121. // Sort them so that the list can be easily compared for changes
  1122. }).OrderBy(i => i.Path));
  1123. }
  1124. return extras.ToArray();
  1125. }
  1126. public Task RefreshMetadata(CancellationToken cancellationToken)
  1127. {
  1128. return RefreshMetadata(new MetadataRefreshOptions(new DirectoryService(FileSystem)), cancellationToken);
  1129. }
  1130. protected virtual void TriggerOnRefreshStart()
  1131. {
  1132. }
  1133. protected virtual void TriggerOnRefreshComplete()
  1134. {
  1135. }
  1136. /// <summary>
  1137. /// Overrides the base implementation to refresh metadata for local trailers.
  1138. /// </summary>
  1139. /// <param name="options">The options.</param>
  1140. /// <param name="cancellationToken">The cancellation token.</param>
  1141. /// <returns>true if a provider reports we changed.</returns>
  1142. public async Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken)
  1143. {
  1144. TriggerOnRefreshStart();
  1145. var requiresSave = false;
  1146. if (SupportsOwnedItems)
  1147. {
  1148. try
  1149. {
  1150. var files = IsFileProtocol ?
  1151. GetFileSystemChildren(options.DirectoryService).ToList() :
  1152. new List<FileSystemMetadata>();
  1153. var ownedItemsChanged = await RefreshedOwnedItems(options, files, cancellationToken).ConfigureAwait(false);
  1154. await LibraryManager.UpdateImagesAsync(this).ConfigureAwait(false); // ensure all image properties in DB are fresh
  1155. if (ownedItemsChanged)
  1156. {
  1157. requiresSave = true;
  1158. }
  1159. }
  1160. catch (Exception ex)
  1161. {
  1162. Logger.LogError(ex, "Error refreshing owned items for {path}", Path ?? Name);
  1163. }
  1164. }
  1165. try
  1166. {
  1167. var refreshOptions = requiresSave
  1168. ? new MetadataRefreshOptions(options)
  1169. {
  1170. ForceSave = true
  1171. }
  1172. : options;
  1173. return await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false);
  1174. }
  1175. finally
  1176. {
  1177. TriggerOnRefreshComplete();
  1178. }
  1179. }
  1180. [JsonIgnore]
  1181. protected virtual bool SupportsOwnedItems => !ParentId.Equals(Guid.Empty) && IsFileProtocol;
  1182. [JsonIgnore]
  1183. public virtual bool SupportsPeople => false;
  1184. [JsonIgnore]
  1185. public virtual bool SupportsThemeMedia => false;
  1186. /// <summary>
  1187. /// Refreshes owned items such as trailers, theme videos, special features, etc.
  1188. /// Returns true or false indicating if changes were found.
  1189. /// </summary>
  1190. /// <param name="options"></param>
  1191. /// <param name="fileSystemChildren"></param>
  1192. /// <param name="cancellationToken"></param>
  1193. /// <returns></returns>
  1194. protected virtual async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
  1195. {
  1196. var themeSongsChanged = false;
  1197. var themeVideosChanged = false;
  1198. var extrasChanged = false;
  1199. var localTrailersChanged = false;
  1200. if (IsFileProtocol && SupportsOwnedItems)
  1201. {
  1202. if (SupportsThemeMedia)
  1203. {
  1204. if (!IsInMixedFolder)
  1205. {
  1206. themeSongsChanged = await RefreshThemeSongs(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
  1207. themeVideosChanged = await RefreshThemeVideos(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
  1208. extrasChanged = await RefreshExtras(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
  1209. }
  1210. }
  1211. var hasTrailers = this as IHasTrailers;
  1212. if (hasTrailers != null)
  1213. {
  1214. localTrailersChanged = await RefreshLocalTrailers(hasTrailers, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
  1215. }
  1216. }
  1217. return themeSongsChanged || themeVideosChanged || extrasChanged || localTrailersChanged;
  1218. }
  1219. protected virtual FileSystemMetadata[] GetFileSystemChildren(IDirectoryService directoryService)
  1220. {
  1221. var path = ContainingFolderPath;
  1222. return directoryService.GetFileSystemEntries(path);
  1223. }
  1224. private async Task<bool> RefreshLocalTrailers(IHasTrailers item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
  1225. {
  1226. var newItems = LibraryManager.FindTrailers(this, fileSystemChildren, options.DirectoryService);
  1227. var newItemIds = newItems.Select(i => i.Id);
  1228. var itemsChanged = !item.LocalTrailerIds.SequenceEqual(newItemIds);
  1229. var ownerId = item.Id;
  1230. var tasks = newItems.Select(i =>
  1231. {
  1232. var subOptions = new MetadataRefreshOptions(options);
  1233. if (i.ExtraType != Model.Entities.ExtraType.Trailer ||
  1234. i.OwnerId != ownerId ||
  1235. !i.ParentId.Equals(Guid.Empty))
  1236. {
  1237. i.ExtraType = Model.Entities.ExtraType.Trailer;
  1238. i.OwnerId = ownerId;
  1239. i.ParentId = Guid.Empty;
  1240. subOptions.ForceSave = true;
  1241. }
  1242. return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
  1243. });
  1244. await Task.WhenAll(tasks).ConfigureAwait(false);
  1245. item.LocalTrailerIds = newItemIds.ToArray();
  1246. return itemsChanged;
  1247. }
  1248. private async Task<bool> RefreshExtras(BaseItem item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
  1249. {
  1250. var extras = LoadExtras(fileSystemChildren, options.DirectoryService);
  1251. var themeVideos = LoadThemeVideos(fileSystemChildren, options.DirectoryService);
  1252. var themeSongs = LoadThemeSongs(fileSystemChildren, options.DirectoryService);
  1253. var newExtras = new BaseItem[extras.Length + themeVideos.Length + themeSongs.Length];
  1254. extras.CopyTo(newExtras, 0);
  1255. themeVideos.CopyTo(newExtras, extras.Length);
  1256. themeSongs.CopyTo(newExtras, extras.Length + themeVideos.Length);
  1257. var newExtraIds = newExtras.Select(i => i.Id).ToArray();
  1258. var extrasChanged = !item.ExtraIds.SequenceEqual(newExtraIds);
  1259. if (extrasChanged)
  1260. {
  1261. var ownerId = item.Id;
  1262. var tasks = newExtras.Select(i =>
  1263. {
  1264. var subOptions = new MetadataRefreshOptions(options);
  1265. if (i.OwnerId != ownerId || i.ParentId != Guid.Empty)
  1266. {
  1267. i.OwnerId = ownerId;
  1268. i.ParentId = Guid.Empty;
  1269. subOptions.ForceSave = true;
  1270. }
  1271. return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
  1272. });
  1273. await Task.WhenAll(tasks).ConfigureAwait(false);
  1274. item.ExtraIds = newExtraIds;
  1275. }
  1276. return extrasChanged;
  1277. }
  1278. private async Task<bool> RefreshThemeVideos(BaseItem item, MetadataRefreshOptions options, IEnumerable<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
  1279. {
  1280. var newThemeVideos = LoadThemeVideos(fileSystemChildren, options.DirectoryService);
  1281. var newThemeVideoIds = newThemeVideos.Select(i => i.Id).ToArray();
  1282. var themeVideosChanged = !item.ThemeVideoIds.SequenceEqual(newThemeVideoIds);
  1283. var ownerId = item.Id;
  1284. var tasks = newThemeVideos.Select(i =>
  1285. {
  1286. var subOptions = new MetadataRefreshOptions(options);
  1287. if (!i.ExtraType.HasValue ||
  1288. i.ExtraType.Value != Model.Entities.ExtraType.ThemeVideo ||
  1289. i.OwnerId != ownerId ||
  1290. !i.ParentId.Equals(Guid.Empty))
  1291. {
  1292. i.ExtraType = Model.Entities.ExtraType.ThemeVideo;
  1293. i.OwnerId = ownerId;
  1294. i.ParentId = Guid.Empty;
  1295. subOptions.ForceSave = true;
  1296. }
  1297. return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
  1298. });
  1299. await Task.WhenAll(tasks).ConfigureAwait(false);
  1300. // They are expected to be sorted by SortName
  1301. item.ThemeVideoIds = newThemeVideos.OrderBy(i => i.SortName).Select(i => i.Id).ToArray();
  1302. return themeVideosChanged;
  1303. }
  1304. /// <summary>
  1305. /// Refreshes the theme songs.
  1306. /// </summary>
  1307. private async Task<bool> RefreshThemeSongs(BaseItem item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
  1308. {
  1309. var newThemeSongs = LoadThemeSongs(fileSystemChildren, options.DirectoryService);
  1310. var newThemeSongIds = newThemeSongs.Select(i => i.Id).ToArray();
  1311. var themeSongsChanged = !item.ThemeSongIds.SequenceEqual(newThemeSongIds);
  1312. var ownerId = item.Id;
  1313. var tasks = newThemeSongs.Select(i =>
  1314. {
  1315. var subOptions = new MetadataRefreshOptions(options);
  1316. if (!i.ExtraType.HasValue ||
  1317. i.ExtraType.Value != Model.Entities.ExtraType.ThemeSong ||
  1318. i.OwnerId != ownerId ||
  1319. !i.ParentId.Equals(Guid.Empty))
  1320. {
  1321. i.ExtraType = Model.Entities.ExtraType.ThemeSong;
  1322. i.OwnerId = ownerId;
  1323. i.ParentId = Guid.Empty;
  1324. subOptions.ForceSave = true;
  1325. }
  1326. return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
  1327. });
  1328. await Task.WhenAll(tasks).ConfigureAwait(false);
  1329. // They are expected to be sorted by SortName
  1330. item.ThemeSongIds = newThemeSongs.OrderBy(i => i.SortName).Select(i => i.Id).ToArray();
  1331. return themeSongsChanged;
  1332. }
  1333. /// <summary>
  1334. /// Gets or sets the provider ids.
  1335. /// </summary>
  1336. /// <value>The provider ids.</value>
  1337. [JsonIgnore]
  1338. public Dictionary<string, string> ProviderIds { get; set; }
  1339. [JsonIgnore]
  1340. public virtual Folder LatestItemsIndexContainer => null;
  1341. public virtual double GetDefaultPrimaryImageAspectRatio()
  1342. {
  1343. return 0;
  1344. }
  1345. public virtual string CreatePresentationUniqueKey()
  1346. {
  1347. return Id.ToString("N", CultureInfo.InvariantCulture);
  1348. }
  1349. [JsonIgnore]
  1350. public string PresentationUniqueKey { get; set; }
  1351. public string GetPresentationUniqueKey()
  1352. {
  1353. return PresentationUniqueKey ?? CreatePresentationUniqueKey();
  1354. }
  1355. public virtual bool RequiresRefresh()
  1356. {
  1357. return false;
  1358. }
  1359. public virtual List<string> GetUserDataKeys()
  1360. {
  1361. var list = new List<string>();
  1362. if (SourceType == SourceType.Channel)
  1363. {
  1364. if (!string.IsNullOrEmpty(ExternalId))
  1365. {
  1366. list.Add(ExternalId);
  1367. }
  1368. }
  1369. list.Add(Id.ToString());
  1370. return list;
  1371. }
  1372. internal virtual ItemUpdateType UpdateFromResolvedItem(BaseItem newItem)
  1373. {
  1374. var updateType = ItemUpdateType.None;
  1375. if (IsInMixedFolder != newItem.IsInMixedFolder)
  1376. {
  1377. IsInMixedFolder = newItem.IsInMixedFolder;
  1378. updateType |= ItemUpdateType.MetadataImport;
  1379. }
  1380. return updateType;
  1381. }
  1382. public void AfterMetadataRefresh()
  1383. {
  1384. _sortName = null;
  1385. }
  1386. /// <summary>
  1387. /// Gets the preferred metadata language.
  1388. /// </summary>
  1389. /// <returns>System.String.</returns>
  1390. public string GetPreferredMetadataLanguage()
  1391. {
  1392. string lang = PreferredMetadataLanguage;
  1393. if (string.IsNullOrEmpty(lang))
  1394. {
  1395. lang = GetParents()
  1396. .Select(i => i.PreferredMetadataLanguage)
  1397. .FirstOrDefault(i => !string.IsNullOrEmpty(i));
  1398. }
  1399. if (string.IsNullOrEmpty(lang))
  1400. {
  1401. lang = LibraryManager.GetCollectionFolders(this)
  1402. .Select(i => i.PreferredMetadataLanguage)
  1403. .FirstOrDefault(i => !string.IsNullOrEmpty(i));
  1404. }
  1405. if (string.IsNullOrEmpty(lang))
  1406. {
  1407. lang = LibraryManager.GetLibraryOptions(this).PreferredMetadataLanguage;
  1408. }
  1409. if (string.IsNullOrEmpty(lang))
  1410. {
  1411. lang = ConfigurationManager.Configuration.PreferredMetadataLanguage;
  1412. }
  1413. return lang;
  1414. }
  1415. /// <summary>
  1416. /// Gets the preferred metadata language.
  1417. /// </summary>
  1418. /// <returns>System.String.</returns>
  1419. public string GetPreferredMetadataCountryCode()
  1420. {
  1421. string lang = PreferredMetadataCountryCode;
  1422. if (string.IsNullOrEmpty(lang))
  1423. {
  1424. lang = GetParents()
  1425. .Select(i => i.PreferredMetadataCountryCode)
  1426. .FirstOrDefault(i => !string.IsNullOrEmpty(i));
  1427. }
  1428. if (string.IsNullOrEmpty(lang))
  1429. {
  1430. lang = LibraryManager.GetCollectionFolders(this)
  1431. .Select(i => i.PreferredMetadataCountryCode)
  1432. .FirstOrDefault(i => !string.IsNullOrEmpty(i));
  1433. }
  1434. if (string.IsNullOrEmpty(lang))
  1435. {
  1436. lang = LibraryManager.GetLibraryOptions(this).MetadataCountryCode;
  1437. }
  1438. if (string.IsNullOrEmpty(lang))
  1439. {
  1440. lang = ConfigurationManager.Configuration.MetadataCountryCode;
  1441. }
  1442. return lang;
  1443. }
  1444. public virtual bool IsSaveLocalMetadataEnabled()
  1445. {
  1446. if (SourceType == SourceType.Channel)
  1447. {
  1448. return false;
  1449. }
  1450. var libraryOptions = LibraryManager.GetLibraryOptions(this);
  1451. return libraryOptions.SaveLocalMetadata;
  1452. }
  1453. /// <summary>
  1454. /// Determines if a given user has access to this item.
  1455. /// </summary>
  1456. /// <param name="user">The user.</param>
  1457. /// <returns><c>true</c> if [is parental allowed] [the specified user]; otherwise, <c>false</c>.</returns>
  1458. /// <exception cref="ArgumentNullException">user</exception>
  1459. public bool IsParentalAllowed(User user)
  1460. {
  1461. if (user == null)
  1462. {
  1463. throw new ArgumentNullException(nameof(user));
  1464. }
  1465. if (!IsVisibleViaTags(user))
  1466. {
  1467. return false;
  1468. }
  1469. var maxAllowedRating = user.MaxParentalAgeRating;
  1470. if (maxAllowedRating == null)
  1471. {
  1472. return true;
  1473. }
  1474. var rating = CustomRatingForComparison;
  1475. if (string.IsNullOrEmpty(rating))
  1476. {
  1477. rating = OfficialRatingForComparison;
  1478. }
  1479. if (string.IsNullOrEmpty(rating))
  1480. {
  1481. return !GetBlockUnratedValue(user);
  1482. }
  1483. var value = LocalizationManager.GetRatingLevel(rating);
  1484. // Could not determine the integer value
  1485. if (!value.HasValue)
  1486. {
  1487. var isAllowed = !GetBlockUnratedValue(user);
  1488. if (!isAllowed)
  1489. {
  1490. Logger.LogDebug("{0} has an unrecognized parental rating of {1}.", Name, rating);
  1491. }
  1492. return isAllowed;
  1493. }
  1494. return value.Value <= maxAllowedRating.Value;
  1495. }
  1496. public int? GetParentalRatingValue()
  1497. {
  1498. var rating = CustomRating;
  1499. if (string.IsNullOrEmpty(rating))
  1500. {
  1501. rating = OfficialRating;
  1502. }
  1503. if (string.IsNullOrEmpty(rating))
  1504. {
  1505. return null;
  1506. }
  1507. return LocalizationManager.GetRatingLevel(rating);
  1508. }
  1509. public int? GetInheritedParentalRatingValue()
  1510. {
  1511. var rating = CustomRatingForComparison;
  1512. if (string.IsNullOrEmpty(rating))
  1513. {
  1514. rating = OfficialRatingForComparison;
  1515. }
  1516. if (string.IsNullOrEmpty(rating))
  1517. {
  1518. return null;
  1519. }
  1520. return LocalizationManager.GetRatingLevel(rating);
  1521. }
  1522. public List<string> GetInheritedTags()
  1523. {
  1524. var list = new List<string>();
  1525. list.AddRange(Tags);
  1526. foreach (var parent in GetParents())
  1527. {
  1528. list.AddRange(parent.Tags);
  1529. }
  1530. return list.Distinct(StringComparer.OrdinalIgnoreCase).ToList();
  1531. }
  1532. private bool IsVisibleViaTags(User user)
  1533. {
  1534. if (user.GetPreference(PreferenceKind.BlockedTags).Any(i => Tags.Contains(i, StringComparer.OrdinalIgnoreCase)))
  1535. {
  1536. return false;
  1537. }
  1538. return true;
  1539. }
  1540. protected virtual bool IsAllowTagFilterEnforced()
  1541. {
  1542. return true;
  1543. }
  1544. public virtual UnratedItem GetBlockUnratedType()
  1545. {
  1546. if (SourceType == SourceType.Channel)
  1547. {
  1548. return UnratedItem.ChannelContent;
  1549. }
  1550. return UnratedItem.Other;
  1551. }
  1552. /// <summary>
  1553. /// Gets the block unrated value.
  1554. /// </summary>
  1555. /// <param name="user">The configuration.</param>
  1556. /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
  1557. protected virtual bool GetBlockUnratedValue(User user)
  1558. {
  1559. // Don't block plain folders that are unrated. Let the media underneath get blocked
  1560. // Special folders like series and albums will override this method.
  1561. if (IsFolder || this is IItemByName)
  1562. {
  1563. return false;
  1564. }
  1565. return user.GetPreferenceValues<UnratedItem>(PreferenceKind.BlockUnratedItems).Contains(GetBlockUnratedType());
  1566. }
  1567. /// <summary>
  1568. /// Determines if this folder should be visible to a given user.
  1569. /// Default is just parental allowed. Can be overridden for more functionality.
  1570. /// </summary>
  1571. /// <param name="user">The user.</param>
  1572. /// <returns><c>true</c> if the specified user is visible; otherwise, <c>false</c>.</returns>
  1573. /// <exception cref="ArgumentNullException">user</exception>
  1574. public virtual bool IsVisible(User user)
  1575. {
  1576. if (user == null)
  1577. {
  1578. throw new ArgumentNullException(nameof(user));
  1579. }
  1580. return IsParentalAllowed(user);
  1581. }
  1582. public virtual bool IsVisibleStandalone(User user)
  1583. {
  1584. if (SourceType == SourceType.Channel)
  1585. {
  1586. return IsVisibleStandaloneInternal(user, false) && Channel.IsChannelVisible(this, user);
  1587. }
  1588. return IsVisibleStandaloneInternal(user, true);
  1589. }
  1590. [JsonIgnore]
  1591. public virtual bool SupportsInheritedParentImages => false;
  1592. protected bool IsVisibleStandaloneInternal(User user, bool checkFolders)
  1593. {
  1594. if (!IsVisible(user))
  1595. {
  1596. return false;
  1597. }
  1598. if (GetParents().Any(i => !i.IsVisible(user)))
  1599. {
  1600. return false;
  1601. }
  1602. if (checkFolders)
  1603. {
  1604. var topParent = GetParents().LastOrDefault() ?? this;
  1605. if (string.IsNullOrEmpty(topParent.Path))
  1606. {
  1607. return true;
  1608. }
  1609. var itemCollectionFolders = LibraryManager.GetCollectionFolders(this).Select(i => i.Id).ToList();
  1610. if (itemCollectionFolders.Count > 0)
  1611. {
  1612. var userCollectionFolders = LibraryManager.GetUserRootFolder().GetChildren(user, true).Select(i => i.Id).ToList();
  1613. if (!itemCollectionFolders.Any(userCollectionFolders.Contains))
  1614. {
  1615. return false;
  1616. }
  1617. }
  1618. }
  1619. return true;
  1620. }
  1621. /// <summary>
  1622. /// Gets a value indicating whether this instance is folder.
  1623. /// </summary>
  1624. /// <value><c>true</c> if this instance is folder; otherwise, <c>false</c>.</value>
  1625. [JsonIgnore]
  1626. public virtual bool IsFolder => false;
  1627. [JsonIgnore]
  1628. public virtual bool IsDisplayedAsFolder => false;
  1629. public virtual string GetClientTypeName()
  1630. {
  1631. if (IsFolder && SourceType == SourceType.Channel && !(this is Channel))
  1632. {
  1633. return "ChannelFolderItem";
  1634. }
  1635. return GetType().Name;
  1636. }
  1637. public BaseItemKind GetBaseItemKind()
  1638. {
  1639. return Enum.Parse<BaseItemKind>(GetClientTypeName());
  1640. }
  1641. /// <summary>
  1642. /// Gets the linked child.
  1643. /// </summary>
  1644. /// <param name="info">The info.</param>
  1645. /// <returns>BaseItem.</returns>
  1646. protected BaseItem GetLinkedChild(LinkedChild info)
  1647. {
  1648. // First get using the cached Id
  1649. if (info.ItemId.HasValue)
  1650. {
  1651. if (info.ItemId.Value.Equals(Guid.Empty))
  1652. {
  1653. return null;
  1654. }
  1655. var itemById = LibraryManager.GetItemById(info.ItemId.Value);
  1656. if (itemById != null)
  1657. {
  1658. return itemById;
  1659. }
  1660. }
  1661. var item = FindLinkedChild(info);
  1662. // If still null, log
  1663. if (item == null)
  1664. {
  1665. // Don't keep searching over and over
  1666. info.ItemId = Guid.Empty;
  1667. }
  1668. else
  1669. {
  1670. // Cache the id for next time
  1671. info.ItemId = item.Id;
  1672. }
  1673. return item;
  1674. }
  1675. private BaseItem FindLinkedChild(LinkedChild info)
  1676. {
  1677. var path = info.Path;
  1678. if (!string.IsNullOrEmpty(path))
  1679. {
  1680. path = FileSystem.MakeAbsolutePath(ContainingFolderPath, path);
  1681. var itemByPath = LibraryManager.FindByPath(path, null);
  1682. if (itemByPath == null)
  1683. {
  1684. Logger.LogWarning("Unable to find linked item at path {0}", info.Path);
  1685. }
  1686. return itemByPath;
  1687. }
  1688. if (!string.IsNullOrEmpty(info.LibraryItemId))
  1689. {
  1690. var item = LibraryManager.GetItemById(info.LibraryItemId);
  1691. if (item == null)
  1692. {
  1693. Logger.LogWarning("Unable to find linked item at path {0}", info.Path);
  1694. }
  1695. return item;
  1696. }
  1697. return null;
  1698. }
  1699. [JsonIgnore]
  1700. public virtual bool EnableRememberingTrackSelections => true;
  1701. /// <summary>
  1702. /// Adds a studio to the item.
  1703. /// </summary>
  1704. /// <param name="name">The name.</param>
  1705. /// <exception cref="ArgumentNullException"></exception>
  1706. public void AddStudio(string name)
  1707. {
  1708. if (string.IsNullOrEmpty(name))
  1709. {
  1710. throw new ArgumentNullException(nameof(name));
  1711. }
  1712. var current = Studios;
  1713. if (!current.Contains(name, StringComparer.OrdinalIgnoreCase))
  1714. {
  1715. int curLen = current.Length;
  1716. if (curLen == 0)
  1717. {
  1718. Studios = new[] { name };
  1719. }
  1720. else
  1721. {
  1722. var newArr = new string[curLen + 1];
  1723. current.CopyTo(newArr, 0);
  1724. newArr[curLen] = name;
  1725. Studios = newArr;
  1726. }
  1727. }
  1728. }
  1729. public void SetStudios(IEnumerable<string> names)
  1730. {
  1731. Studios = names.Distinct().ToArray();
  1732. }
  1733. /// <summary>
  1734. /// Adds a genre to the item.
  1735. /// </summary>
  1736. /// <param name="name">The name.</param>
  1737. /// <exception cref="ArgumentNullException"></exception>
  1738. public void AddGenre(string name)
  1739. {
  1740. if (string.IsNullOrEmpty(name))
  1741. {
  1742. throw new ArgumentNullException(nameof(name));
  1743. }
  1744. var genres = Genres;
  1745. if (!genres.Contains(name, StringComparer.OrdinalIgnoreCase))
  1746. {
  1747. var list = genres.ToList();
  1748. list.Add(name);
  1749. Genres = list.ToArray();
  1750. }
  1751. }
  1752. /// <summary>
  1753. /// Marks the played.
  1754. /// </summary>
  1755. /// <param name="user">The user.</param>
  1756. /// <param name="datePlayed">The date played.</param>
  1757. /// <param name="resetPosition">if set to <c>true</c> [reset position].</param>
  1758. /// <returns>Task.</returns>
  1759. /// <exception cref="ArgumentNullException"></exception>
  1760. public virtual void MarkPlayed(
  1761. User user,
  1762. DateTime? datePlayed,
  1763. bool resetPosition)
  1764. {
  1765. if (user == null)
  1766. {
  1767. throw new ArgumentNullException(nameof(user));
  1768. }
  1769. var data = UserDataManager.GetUserData(user, this);
  1770. if (datePlayed.HasValue)
  1771. {
  1772. // Increment
  1773. data.PlayCount++;
  1774. }
  1775. // Ensure it's at least one
  1776. data.PlayCount = Math.Max(data.PlayCount, 1);
  1777. if (resetPosition)
  1778. {
  1779. data.PlaybackPositionTicks = 0;
  1780. }
  1781. data.LastPlayedDate = datePlayed ?? data.LastPlayedDate ?? DateTime.UtcNow;
  1782. data.Played = true;
  1783. UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None);
  1784. }
  1785. /// <summary>
  1786. /// Marks the unplayed.
  1787. /// </summary>
  1788. /// <param name="user">The user.</param>
  1789. /// <returns>Task.</returns>
  1790. /// <exception cref="ArgumentNullException"></exception>
  1791. public virtual void MarkUnplayed(User user)
  1792. {
  1793. if (user == null)
  1794. {
  1795. throw new ArgumentNullException(nameof(user));
  1796. }
  1797. var data = UserDataManager.GetUserData(user, this);
  1798. // I think it is okay to do this here.
  1799. // if this is only called when a user is manually forcing something to un-played
  1800. // then it probably is what we want to do...
  1801. data.PlayCount = 0;
  1802. data.PlaybackPositionTicks = 0;
  1803. data.LastPlayedDate = null;
  1804. data.Played = false;
  1805. UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None);
  1806. }
  1807. /// <summary>
  1808. /// Do whatever refreshing is necessary when the filesystem pertaining to this item has changed.
  1809. /// </summary>
  1810. public virtual void ChangedExternally()
  1811. {
  1812. ProviderManager.QueueRefresh(Id, new MetadataRefreshOptions(new DirectoryService(FileSystem)), RefreshPriority.High);
  1813. }
  1814. /// <summary>
  1815. /// Gets an image.
  1816. /// </summary>
  1817. /// <param name="type">The type.</param>
  1818. /// <param name="imageIndex">Index of the image.</param>
  1819. /// <returns><c>true</c> if the specified type has image; otherwise, <c>false</c>.</returns>
  1820. /// <exception cref="ArgumentException">Backdrops should be accessed using Item.Backdrops</exception>
  1821. public bool HasImage(ImageType type, int imageIndex)
  1822. {
  1823. return GetImageInfo(type, imageIndex) != null;
  1824. }
  1825. public void SetImage(ItemImageInfo image, int index)
  1826. {
  1827. if (image.Type == ImageType.Chapter)
  1828. {
  1829. throw new ArgumentException("Cannot set chapter images using SetImagePath");
  1830. }
  1831. var existingImage = GetImageInfo(image.Type, index);
  1832. if (existingImage != null)
  1833. {
  1834. existingImage.Path = image.Path;
  1835. existingImage.DateModified = image.DateModified;
  1836. existingImage.Width = image.Width;
  1837. existingImage.Height = image.Height;
  1838. existingImage.BlurHash = image.BlurHash;
  1839. }
  1840. else
  1841. {
  1842. var current = ImageInfos;
  1843. var currentCount = current.Length;
  1844. var newArr = new ItemImageInfo[currentCount + 1];
  1845. current.CopyTo(newArr, 0);
  1846. newArr[currentCount] = image;
  1847. ImageInfos = newArr;
  1848. }
  1849. }
  1850. public void SetImagePath(ImageType type, int index, FileSystemMetadata file)
  1851. {
  1852. if (type == ImageType.Chapter)
  1853. {
  1854. throw new ArgumentException("Cannot set chapter images using SetImagePath");
  1855. }
  1856. var image = GetImageInfo(type, index);
  1857. if (image == null)
  1858. {
  1859. ImageInfos = ImageInfos.Concat(new[] { GetImageInfo(file, type) }).ToArray();
  1860. }
  1861. else
  1862. {
  1863. var imageInfo = GetImageInfo(file, type);
  1864. image.Path = file.FullName;
  1865. image.DateModified = imageInfo.DateModified;
  1866. // reset these values
  1867. image.Width = 0;
  1868. image.Height = 0;
  1869. }
  1870. }
  1871. /// <summary>
  1872. /// Deletes the image.
  1873. /// </summary>
  1874. /// <param name="type">The type.</param>
  1875. /// <param name="index">The index.</param>
  1876. public async Task DeleteImageAsync(ImageType type, int index)
  1877. {
  1878. var info = GetImageInfo(type, index);
  1879. if (info == null)
  1880. {
  1881. // Nothing to do
  1882. return;
  1883. }
  1884. // Remove it from the item
  1885. RemoveImage(info);
  1886. if (info.IsLocalFile)
  1887. {
  1888. FileSystem.DeleteFile(info.Path);
  1889. }
  1890. await UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None).ConfigureAwait(false);
  1891. }
  1892. public void RemoveImage(ItemImageInfo image)
  1893. {
  1894. RemoveImages(new List<ItemImageInfo> { image });
  1895. }
  1896. public void RemoveImages(List<ItemImageInfo> deletedImages)
  1897. {
  1898. ImageInfos = ImageInfos.Except(deletedImages).ToArray();
  1899. }
  1900. public virtual Task UpdateToRepositoryAsync(ItemUpdateType updateReason, CancellationToken cancellationToken)
  1901. => LibraryManager.UpdateItemAsync(this, GetParent(), updateReason, cancellationToken);
  1902. /// <summary>
  1903. /// Validates that images within the item are still on the filesystem.
  1904. /// </summary>
  1905. public bool ValidateImages(IDirectoryService directoryService)
  1906. {
  1907. var allFiles = ImageInfos
  1908. .Where(i => i.IsLocalFile)
  1909. .Select(i => System.IO.Path.GetDirectoryName(i.Path))
  1910. .Distinct(StringComparer.OrdinalIgnoreCase)
  1911. .SelectMany(i => directoryService.GetFilePaths(i))
  1912. .ToList();
  1913. var deletedImages = ImageInfos
  1914. .Where(image => image.IsLocalFile && !allFiles.Contains(image.Path, StringComparer.OrdinalIgnoreCase))
  1915. .ToList();
  1916. if (deletedImages.Count > 0)
  1917. {
  1918. ImageInfos = ImageInfos.Except(deletedImages).ToArray();
  1919. }
  1920. return deletedImages.Count > 0;
  1921. }
  1922. /// <summary>
  1923. /// Gets the image path.
  1924. /// </summary>
  1925. /// <param name="imageType">Type of the image.</param>
  1926. /// <param name="imageIndex">Index of the image.</param>
  1927. /// <returns>System.String.</returns>
  1928. /// <exception cref="InvalidOperationException">
  1929. /// </exception>
  1930. /// <exception cref="ArgumentNullException">item</exception>
  1931. public string GetImagePath(ImageType imageType, int imageIndex)
  1932. => GetImageInfo(imageType, imageIndex)?.Path;
  1933. /// <summary>
  1934. /// Gets the image information.
  1935. /// </summary>
  1936. /// <param name="imageType">Type of the image.</param>
  1937. /// <param name="imageIndex">Index of the image.</param>
  1938. /// <returns>ItemImageInfo.</returns>
  1939. public ItemImageInfo GetImageInfo(ImageType imageType, int imageIndex)
  1940. {
  1941. if (imageType == ImageType.Chapter)
  1942. {
  1943. var chapter = ItemRepository.GetChapter(this, imageIndex);
  1944. if (chapter == null)
  1945. {
  1946. return null;
  1947. }
  1948. var path = chapter.ImagePath;
  1949. if (string.IsNullOrEmpty(path))
  1950. {
  1951. return null;
  1952. }
  1953. return new ItemImageInfo
  1954. {
  1955. Path = path,
  1956. DateModified = chapter.ImageDateModified,
  1957. Type = imageType
  1958. };
  1959. }
  1960. return GetImages(imageType)
  1961. .ElementAtOrDefault(imageIndex);
  1962. }
  1963. /// <summary>
  1964. /// Computes image index for given image or raises if no matching image found.
  1965. /// </summary>
  1966. /// <param name="image">Image to compute index for.</param>
  1967. /// <exception cref="ArgumentException">Image index cannot be computed as no matching image found.
  1968. /// </exception>
  1969. /// <returns>Image index.</returns>
  1970. public int GetImageIndex(ItemImageInfo image)
  1971. {
  1972. if (image == null)
  1973. {
  1974. throw new ArgumentNullException(nameof(image));
  1975. }
  1976. if (image.Type == ImageType.Chapter)
  1977. {
  1978. var chapters = ItemRepository.GetChapters(this);
  1979. for (var i = 0; i < chapters.Count; i++)
  1980. {
  1981. if (chapters[i].ImagePath == image.Path)
  1982. {
  1983. return i;
  1984. }
  1985. }
  1986. throw new ArgumentException("No chapter index found for image path", image.Path);
  1987. }
  1988. var images = GetImages(image.Type).ToArray();
  1989. for (var i = 0; i < images.Length; i++)
  1990. {
  1991. if (images[i].Path == image.Path)
  1992. {
  1993. return i;
  1994. }
  1995. }
  1996. throw new ArgumentException("No image index found for image path", image.Path);
  1997. }
  1998. public IEnumerable<ItemImageInfo> GetImages(ImageType imageType)
  1999. {
  2000. if (imageType == ImageType.Chapter)
  2001. {
  2002. throw new ArgumentException("No image info for chapter images");
  2003. }
  2004. return ImageInfos.Where(i => i.Type == imageType);
  2005. }
  2006. /// <summary>
  2007. /// Adds the images.
  2008. /// </summary>
  2009. /// <param name="imageType">Type of the image.</param>
  2010. /// <param name="images">The images.</param>
  2011. /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
  2012. /// <exception cref="ArgumentException">Cannot call AddImages with chapter images</exception>
  2013. public bool AddImages(ImageType imageType, List<FileSystemMetadata> images)
  2014. {
  2015. if (imageType == ImageType.Chapter)
  2016. {
  2017. throw new ArgumentException("Cannot call AddImages with chapter images");
  2018. }
  2019. var existingImages = GetImages(imageType)
  2020. .ToList();
  2021. var newImageList = new List<FileSystemMetadata>();
  2022. var imageAdded = false;
  2023. var imageUpdated = false;
  2024. foreach (var newImage in images)
  2025. {
  2026. if (newImage == null)
  2027. {
  2028. throw new ArgumentException("null image found in list");
  2029. }
  2030. var existing = existingImages
  2031. .FirstOrDefault(i => string.Equals(i.Path, newImage.FullName, StringComparison.OrdinalIgnoreCase));
  2032. if (existing == null)
  2033. {
  2034. newImageList.Add(newImage);
  2035. imageAdded = true;
  2036. }
  2037. else
  2038. {
  2039. if (existing.IsLocalFile)
  2040. {
  2041. var newDateModified = FileSystem.GetLastWriteTimeUtc(newImage);
  2042. // If date changed then we need to reset saved image dimensions
  2043. if (existing.DateModified != newDateModified && (existing.Width > 0 || existing.Height > 0))
  2044. {
  2045. existing.Width = 0;
  2046. existing.Height = 0;
  2047. imageUpdated = true;
  2048. }
  2049. existing.DateModified = newDateModified;
  2050. }
  2051. }
  2052. }
  2053. if (imageAdded || images.Count != existingImages.Count)
  2054. {
  2055. var newImagePaths = images.Select(i => i.FullName).ToList();
  2056. var deleted = existingImages
  2057. .Where(i => i.IsLocalFile && !newImagePaths.Contains(i.Path, StringComparer.OrdinalIgnoreCase) && !File.Exists(i.Path))
  2058. .ToList();
  2059. if (deleted.Count > 0)
  2060. {
  2061. ImageInfos = ImageInfos.Except(deleted).ToArray();
  2062. }
  2063. }
  2064. if (newImageList.Count > 0)
  2065. {
  2066. ImageInfos = ImageInfos.Concat(newImageList.Select(i => GetImageInfo(i, imageType))).ToArray();
  2067. }
  2068. return imageUpdated || newImageList.Count > 0;
  2069. }
  2070. private ItemImageInfo GetImageInfo(FileSystemMetadata file, ImageType type)
  2071. {
  2072. return new ItemImageInfo
  2073. {
  2074. Path = file.FullName,
  2075. Type = type,
  2076. DateModified = FileSystem.GetLastWriteTimeUtc(file)
  2077. };
  2078. }
  2079. /// <summary>
  2080. /// Gets the file system path to delete when the item is to be deleted.
  2081. /// </summary>
  2082. /// <returns></returns>
  2083. public virtual IEnumerable<FileSystemMetadata> GetDeletePaths()
  2084. {
  2085. return new[] {
  2086. new FileSystemMetadata
  2087. {
  2088. FullName = Path,
  2089. IsDirectory = IsFolder
  2090. }
  2091. }.Concat(GetLocalMetadataFilesToDelete());
  2092. }
  2093. protected List<FileSystemMetadata> GetLocalMetadataFilesToDelete()
  2094. {
  2095. if (IsFolder || !IsInMixedFolder)
  2096. {
  2097. return new List<FileSystemMetadata>();
  2098. }
  2099. var filename = System.IO.Path.GetFileNameWithoutExtension(Path);
  2100. return FileSystem.GetFiles(System.IO.Path.GetDirectoryName(Path), _supportedExtensions, false, false)
  2101. .Where(i => System.IO.Path.GetFileNameWithoutExtension(i.FullName).StartsWith(filename, StringComparison.OrdinalIgnoreCase))
  2102. .ToList();
  2103. }
  2104. public bool AllowsMultipleImages(ImageType type)
  2105. {
  2106. return type == ImageType.Backdrop || type == ImageType.Screenshot || type == ImageType.Chapter;
  2107. }
  2108. public Task SwapImagesAsync(ImageType type, int index1, int index2)
  2109. {
  2110. if (!AllowsMultipleImages(type))
  2111. {
  2112. throw new ArgumentException("The change index operation is only applicable to backdrops and screen shots");
  2113. }
  2114. var info1 = GetImageInfo(type, index1);
  2115. var info2 = GetImageInfo(type, index2);
  2116. if (info1 == null || info2 == null)
  2117. {
  2118. // Nothing to do
  2119. return Task.CompletedTask;
  2120. }
  2121. if (!info1.IsLocalFile || !info2.IsLocalFile)
  2122. {
  2123. // TODO: Not supported yet
  2124. return Task.CompletedTask;
  2125. }
  2126. var path1 = info1.Path;
  2127. var path2 = info2.Path;
  2128. FileSystem.SwapFiles(path1, path2);
  2129. // Refresh these values
  2130. info1.DateModified = FileSystem.GetLastWriteTimeUtc(info1.Path);
  2131. info2.DateModified = FileSystem.GetLastWriteTimeUtc(info2.Path);
  2132. info1.Width = 0;
  2133. info1.Height = 0;
  2134. info2.Width = 0;
  2135. info2.Height = 0;
  2136. return UpdateToRepositoryAsync(ItemUpdateType.ImageUpdate, CancellationToken.None);
  2137. }
  2138. public virtual bool IsPlayed(User user)
  2139. {
  2140. var userdata = UserDataManager.GetUserData(user, this);
  2141. return userdata != null && userdata.Played;
  2142. }
  2143. public bool IsFavoriteOrLiked(User user)
  2144. {
  2145. var userdata = UserDataManager.GetUserData(user, this);
  2146. return userdata != null && (userdata.IsFavorite || (userdata.Likes ?? false));
  2147. }
  2148. public virtual bool IsUnplayed(User user)
  2149. {
  2150. if (user == null)
  2151. {
  2152. throw new ArgumentNullException(nameof(user));
  2153. }
  2154. var userdata = UserDataManager.GetUserData(user, this);
  2155. return userdata == null || !userdata.Played;
  2156. }
  2157. ItemLookupInfo IHasLookupInfo<ItemLookupInfo>.GetLookupInfo()
  2158. {
  2159. return GetItemLookupInfo<ItemLookupInfo>();
  2160. }
  2161. protected T GetItemLookupInfo<T>()
  2162. where T : ItemLookupInfo, new()
  2163. {
  2164. return new T
  2165. {
  2166. Path = Path,
  2167. MetadataCountryCode = GetPreferredMetadataCountryCode(),
  2168. MetadataLanguage = GetPreferredMetadataLanguage(),
  2169. Name = GetNameForMetadataLookup(),
  2170. ProviderIds = ProviderIds,
  2171. IndexNumber = IndexNumber,
  2172. ParentIndexNumber = ParentIndexNumber,
  2173. Year = ProductionYear,
  2174. PremiereDate = PremiereDate
  2175. };
  2176. }
  2177. protected virtual string GetNameForMetadataLookup()
  2178. {
  2179. return Name;
  2180. }
  2181. /// <summary>
  2182. /// This is called before any metadata refresh and returns true if changes were made.
  2183. /// </summary>
  2184. public virtual bool BeforeMetadataRefresh(bool replaceAllMetdata)
  2185. {
  2186. _sortName = null;
  2187. var hasChanges = false;
  2188. if (string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(Path))
  2189. {
  2190. Name = System.IO.Path.GetFileNameWithoutExtension(Path);
  2191. hasChanges = true;
  2192. }
  2193. return hasChanges;
  2194. }
  2195. protected static string GetMappedPath(BaseItem item, string path, MediaProtocol? protocol)
  2196. {
  2197. if (protocol.HasValue && protocol.Value == MediaProtocol.File)
  2198. {
  2199. return LibraryManager.GetPathAfterNetworkSubstitution(path, item);
  2200. }
  2201. return path;
  2202. }
  2203. public virtual void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, BaseItemDto itemDto, User user, DtoOptions fields)
  2204. {
  2205. if (RunTimeTicks.HasValue)
  2206. {
  2207. double pct = RunTimeTicks.Value;
  2208. if (pct > 0)
  2209. {
  2210. pct = userData.PlaybackPositionTicks / pct;
  2211. if (pct > 0)
  2212. {
  2213. dto.PlayedPercentage = 100 * pct;
  2214. }
  2215. }
  2216. }
  2217. }
  2218. protected Task RefreshMetadataForOwnedItem(BaseItem ownedItem, bool copyTitleMetadata, MetadataRefreshOptions options, CancellationToken cancellationToken)
  2219. {
  2220. var newOptions = new MetadataRefreshOptions(options);
  2221. newOptions.SearchResult = null;
  2222. var item = this;
  2223. if (copyTitleMetadata)
  2224. {
  2225. // Take some data from the main item, for querying purposes
  2226. if (!item.Genres.SequenceEqual(ownedItem.Genres, StringComparer.Ordinal))
  2227. {
  2228. newOptions.ForceSave = true;
  2229. ownedItem.Genres = item.Genres;
  2230. }
  2231. if (!item.Studios.SequenceEqual(ownedItem.Studios, StringComparer.Ordinal))
  2232. {
  2233. newOptions.ForceSave = true;
  2234. ownedItem.Studios = item.Studios;
  2235. }
  2236. if (!item.ProductionLocations.SequenceEqual(ownedItem.ProductionLocations, StringComparer.Ordinal))
  2237. {
  2238. newOptions.ForceSave = true;
  2239. ownedItem.ProductionLocations = item.ProductionLocations;
  2240. }
  2241. if (item.CommunityRating != ownedItem.CommunityRating)
  2242. {
  2243. ownedItem.CommunityRating = item.CommunityRating;
  2244. newOptions.ForceSave = true;
  2245. }
  2246. if (item.CriticRating != ownedItem.CriticRating)
  2247. {
  2248. ownedItem.CriticRating = item.CriticRating;
  2249. newOptions.ForceSave = true;
  2250. }
  2251. if (!string.Equals(item.Overview, ownedItem.Overview, StringComparison.Ordinal))
  2252. {
  2253. ownedItem.Overview = item.Overview;
  2254. newOptions.ForceSave = true;
  2255. }
  2256. if (!string.Equals(item.OfficialRating, ownedItem.OfficialRating, StringComparison.Ordinal))
  2257. {
  2258. ownedItem.OfficialRating = item.OfficialRating;
  2259. newOptions.ForceSave = true;
  2260. }
  2261. if (!string.Equals(item.CustomRating, ownedItem.CustomRating, StringComparison.Ordinal))
  2262. {
  2263. ownedItem.CustomRating = item.CustomRating;
  2264. newOptions.ForceSave = true;
  2265. }
  2266. }
  2267. return ownedItem.RefreshMetadata(newOptions, cancellationToken);
  2268. }
  2269. protected Task RefreshMetadataForOwnedVideo(MetadataRefreshOptions options, bool copyTitleMetadata, string path, CancellationToken cancellationToken)
  2270. {
  2271. var newOptions = new MetadataRefreshOptions(options);
  2272. newOptions.SearchResult = null;
  2273. var id = LibraryManager.GetNewItemId(path, typeof(Video));
  2274. // Try to retrieve it from the db. If we don't find it, use the resolved version
  2275. var video = LibraryManager.GetItemById(id) as Video;
  2276. if (video == null)
  2277. {
  2278. video = LibraryManager.ResolvePath(FileSystem.GetFileSystemInfo(path)) as Video;
  2279. newOptions.ForceSave = true;
  2280. }
  2281. // var parentId = Id;
  2282. // if (!video.IsOwnedItem || video.ParentId != parentId)
  2283. //{
  2284. // video.IsOwnedItem = true;
  2285. // video.ParentId = parentId;
  2286. // newOptions.ForceSave = true;
  2287. //}
  2288. if (video == null)
  2289. {
  2290. return Task.FromResult(true);
  2291. }
  2292. return RefreshMetadataForOwnedItem(video, copyTitleMetadata, newOptions, cancellationToken);
  2293. }
  2294. public string GetEtag(User user)
  2295. {
  2296. var list = GetEtagValues(user);
  2297. return string.Join("|", list).GetMD5().ToString("N", CultureInfo.InvariantCulture);
  2298. }
  2299. protected virtual List<string> GetEtagValues(User user)
  2300. {
  2301. return new List<string>
  2302. {
  2303. DateLastSaved.Ticks.ToString(CultureInfo.InvariantCulture)
  2304. };
  2305. }
  2306. public virtual IEnumerable<Guid> GetAncestorIds()
  2307. {
  2308. return GetParents().Select(i => i.Id).Concat(LibraryManager.GetCollectionFolders(this).Select(i => i.Id));
  2309. }
  2310. public BaseItem GetTopParent()
  2311. {
  2312. if (IsTopParent)
  2313. {
  2314. return this;
  2315. }
  2316. return GetParents().FirstOrDefault(parent => parent.IsTopParent);
  2317. }
  2318. [JsonIgnore]
  2319. public virtual bool IsTopParent
  2320. {
  2321. get
  2322. {
  2323. if (this is BasePluginFolder || this is Channel)
  2324. {
  2325. return true;
  2326. }
  2327. if (this is IHasCollectionType view)
  2328. {
  2329. if (string.Equals(view.CollectionType, CollectionType.LiveTv, StringComparison.OrdinalIgnoreCase))
  2330. {
  2331. return true;
  2332. }
  2333. }
  2334. if (GetParent() is AggregateFolder)
  2335. {
  2336. return true;
  2337. }
  2338. return false;
  2339. }
  2340. }
  2341. [JsonIgnore]
  2342. public virtual bool SupportsAncestors => true;
  2343. [JsonIgnore]
  2344. public virtual bool StopRefreshIfLocalMetadataFound => true;
  2345. public virtual IEnumerable<Guid> GetIdsForAncestorQuery()
  2346. {
  2347. return new[] { Id };
  2348. }
  2349. public virtual List<ExternalUrl> GetRelatedUrls()
  2350. {
  2351. return new List<ExternalUrl>();
  2352. }
  2353. public virtual double? GetRefreshProgress()
  2354. {
  2355. return null;
  2356. }
  2357. public virtual ItemUpdateType OnMetadataChanged()
  2358. {
  2359. var updateType = ItemUpdateType.None;
  2360. var item = this;
  2361. var inheritedParentalRatingValue = item.GetInheritedParentalRatingValue() ?? 0;
  2362. if (inheritedParentalRatingValue != item.InheritedParentalRatingValue)
  2363. {
  2364. item.InheritedParentalRatingValue = inheritedParentalRatingValue;
  2365. updateType |= ItemUpdateType.MetadataImport;
  2366. }
  2367. return updateType;
  2368. }
  2369. /// <summary>
  2370. /// Updates the official rating based on content and returns true or false indicating if it changed.
  2371. /// </summary>
  2372. /// <returns></returns>
  2373. public bool UpdateRatingToItems(IList<BaseItem> children)
  2374. {
  2375. var currentOfficialRating = OfficialRating;
  2376. // Gather all possible ratings
  2377. var ratings = children
  2378. .Select(i => i.OfficialRating)
  2379. .Where(i => !string.IsNullOrEmpty(i))
  2380. .Distinct(StringComparer.OrdinalIgnoreCase)
  2381. .Select(i => new Tuple<string, int?>(i, LocalizationManager.GetRatingLevel(i)))
  2382. .OrderBy(i => i.Item2 ?? 1000)
  2383. .Select(i => i.Item1);
  2384. OfficialRating = ratings.FirstOrDefault() ?? currentOfficialRating;
  2385. return !string.Equals(currentOfficialRating ?? string.Empty, OfficialRating ?? string.Empty,
  2386. StringComparison.OrdinalIgnoreCase);
  2387. }
  2388. public IEnumerable<BaseItem> GetThemeSongs()
  2389. {
  2390. return ThemeSongIds.Select(LibraryManager.GetItemById);
  2391. }
  2392. public IEnumerable<BaseItem> GetThemeVideos()
  2393. {
  2394. return ThemeVideoIds.Select(LibraryManager.GetItemById);
  2395. }
  2396. /// <summary>
  2397. /// Gets or sets the remote trailers.
  2398. /// </summary>
  2399. /// <value>The remote trailers.</value>
  2400. public IReadOnlyList<MediaUrl> RemoteTrailers { get; set; }
  2401. /// <summary>
  2402. /// Get all extras associated with this item, sorted by <see cref="SortName"/>.
  2403. /// </summary>
  2404. /// <returns>An enumerable containing the items.</returns>
  2405. public IEnumerable<BaseItem> GetExtras()
  2406. {
  2407. return ExtraIds
  2408. .Select(LibraryManager.GetItemById)
  2409. .Where(i => i != null)
  2410. .OrderBy(i => i.SortName);
  2411. }
  2412. /// <summary>
  2413. /// Get all extras with specific types that are associated with this item.
  2414. /// </summary>
  2415. /// <param name="extraTypes">The types of extras to retrieve.</param>
  2416. /// <returns>An enumerable containing the extras.</returns>
  2417. public IEnumerable<BaseItem> GetExtras(IReadOnlyCollection<ExtraType> extraTypes)
  2418. {
  2419. return ExtraIds
  2420. .Select(LibraryManager.GetItemById)
  2421. .Where(i => i != null)
  2422. .Where(i => i.ExtraType.HasValue && extraTypes.Contains(i.ExtraType.Value));
  2423. }
  2424. public IEnumerable<BaseItem> GetTrailers()
  2425. {
  2426. if (this is IHasTrailers)
  2427. {
  2428. return ((IHasTrailers)this).LocalTrailerIds.Select(LibraryManager.GetItemById).Where(i => i != null).OrderBy(i => i.SortName);
  2429. }
  2430. else
  2431. {
  2432. return Array.Empty<BaseItem>();
  2433. }
  2434. }
  2435. public virtual bool IsHD => Height >= 720;
  2436. public bool IsShortcut { get; set; }
  2437. public string ShortcutPath { get; set; }
  2438. public int Width { get; set; }
  2439. public int Height { get; set; }
  2440. public Guid[] ExtraIds { get; set; }
  2441. public virtual long GetRunTimeTicksForPlayState()
  2442. {
  2443. return RunTimeTicks ?? 0;
  2444. }
  2445. /// <summary>
  2446. /// Extra types that should be counted and displayed as "Special Features" in the UI.
  2447. /// </summary>
  2448. public static readonly IReadOnlyCollection<ExtraType> DisplayExtraTypes = new HashSet<ExtraType>
  2449. {
  2450. Model.Entities.ExtraType.Unknown,
  2451. Model.Entities.ExtraType.BehindTheScenes,
  2452. Model.Entities.ExtraType.Clip,
  2453. Model.Entities.ExtraType.DeletedScene,
  2454. Model.Entities.ExtraType.Interview,
  2455. Model.Entities.ExtraType.Sample,
  2456. Model.Entities.ExtraType.Scene
  2457. };
  2458. public virtual bool SupportsExternalTransfer => false;
  2459. /// <inheritdoc />
  2460. public override bool Equals(object obj)
  2461. {
  2462. return obj is BaseItem baseItem && this.Equals(baseItem);
  2463. }
  2464. /// <inheritdoc />
  2465. public bool Equals(BaseItem item) => Object.Equals(Id, item?.Id);
  2466. /// <inheritdoc />
  2467. public override int GetHashCode() => HashCode.Combine(Id);
  2468. }
  2469. }