BaseItem.cs 93 KB

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