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