| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.Linq; |
| | 9 | | using System.Text.Json.Serialization; |
| | 10 | | using System.Threading; |
| | 11 | | using System.Threading.Tasks; |
| | 12 | | using Jellyfin.Data.Enums; |
| | 13 | | using Jellyfin.Extensions; |
| | 14 | | using MediaBrowser.Controller.Library; |
| | 15 | | using MediaBrowser.Controller.LiveTv; |
| | 16 | | using MediaBrowser.Controller.Persistence; |
| | 17 | | using MediaBrowser.Controller.Providers; |
| | 18 | | using MediaBrowser.Model.Dto; |
| | 19 | | using MediaBrowser.Model.Entities; |
| | 20 | | using MediaBrowser.Model.IO; |
| | 21 | | using MediaBrowser.Model.MediaInfo; |
| | 22 | |
|
| | 23 | | namespace MediaBrowser.Controller.Entities |
| | 24 | | { |
| | 25 | | /// <summary> |
| | 26 | | /// Class Video. |
| | 27 | | /// </summary> |
| | 28 | | public class Video : BaseItem, |
| | 29 | | IHasAspectRatio, |
| | 30 | | ISupportsPlaceHolders, |
| | 31 | | IHasMediaSources |
| | 32 | | { |
| 426 | 33 | | public Video() |
| | 34 | | { |
| 426 | 35 | | AdditionalParts = Array.Empty<string>(); |
| 426 | 36 | | LocalAlternateVersions = Array.Empty<string>(); |
| 426 | 37 | | SubtitleFiles = Array.Empty<string>(); |
| 426 | 38 | | AudioFiles = Array.Empty<string>(); |
| 426 | 39 | | LinkedAlternateVersions = Array.Empty<LinkedChild>(); |
| 426 | 40 | | } |
| | 41 | |
|
| | 42 | | [JsonIgnore] |
| | 43 | | public string PrimaryVersionId { get; set; } |
| | 44 | |
|
| | 45 | | public string[] AdditionalParts { get; set; } |
| | 46 | |
|
| | 47 | | public string[] LocalAlternateVersions { get; set; } |
| | 48 | |
|
| | 49 | | public LinkedChild[] LinkedAlternateVersions { get; set; } |
| | 50 | |
|
| | 51 | | [JsonIgnore] |
| 0 | 52 | | public override bool SupportsPlayedStatus => true; |
| | 53 | |
|
| | 54 | | [JsonIgnore] |
| 0 | 55 | | public override bool SupportsPeople => true; |
| | 56 | |
|
| | 57 | | [JsonIgnore] |
| 0 | 58 | | public override bool SupportsInheritedParentImages => true; |
| | 59 | |
|
| | 60 | | [JsonIgnore] |
| | 61 | | public override bool SupportsPositionTicksResume |
| | 62 | | { |
| | 63 | | get |
| | 64 | | { |
| 0 | 65 | | var extraType = ExtraType; |
| 0 | 66 | | if (extraType.HasValue) |
| | 67 | | { |
| 0 | 68 | | if (extraType.Value == Model.Entities.ExtraType.Sample) |
| | 69 | | { |
| 0 | 70 | | return false; |
| | 71 | | } |
| | 72 | |
|
| 0 | 73 | | if (extraType.Value == Model.Entities.ExtraType.ThemeVideo) |
| | 74 | | { |
| 0 | 75 | | return false; |
| | 76 | | } |
| | 77 | |
|
| 0 | 78 | | if (extraType.Value == Model.Entities.ExtraType.Trailer) |
| | 79 | | { |
| 0 | 80 | | return false; |
| | 81 | | } |
| | 82 | | } |
| | 83 | |
|
| 0 | 84 | | return true; |
| | 85 | | } |
| | 86 | | } |
| | 87 | |
|
| | 88 | | [JsonIgnore] |
| 0 | 89 | | public override bool SupportsThemeMedia => true; |
| | 90 | |
|
| | 91 | | /// <summary> |
| | 92 | | /// Gets or sets the timestamp. |
| | 93 | | /// </summary> |
| | 94 | | /// <value>The timestamp.</value> |
| | 95 | | public TransportStreamTimestamp? Timestamp { get; set; } |
| | 96 | |
|
| | 97 | | /// <summary> |
| | 98 | | /// Gets or sets the subtitle paths. |
| | 99 | | /// </summary> |
| | 100 | | /// <value>The subtitle paths.</value> |
| | 101 | | public string[] SubtitleFiles { get; set; } |
| | 102 | |
|
| | 103 | | /// <summary> |
| | 104 | | /// Gets or sets the audio paths. |
| | 105 | | /// </summary> |
| | 106 | | /// <value>The audio paths.</value> |
| | 107 | | public string[] AudioFiles { get; set; } |
| | 108 | |
|
| | 109 | | /// <summary> |
| | 110 | | /// Gets or sets a value indicating whether this instance has subtitles. |
| | 111 | | /// </summary> |
| | 112 | | /// <value><c>true</c> if this instance has subtitles; otherwise, <c>false</c>.</value> |
| | 113 | | public bool HasSubtitles { get; set; } |
| | 114 | |
|
| | 115 | | public bool IsPlaceHolder { get; set; } |
| | 116 | |
|
| | 117 | | /// <summary> |
| | 118 | | /// Gets or sets the default index of the video stream. |
| | 119 | | /// </summary> |
| | 120 | | /// <value>The default index of the video stream.</value> |
| | 121 | | public int? DefaultVideoStreamIndex { get; set; } |
| | 122 | |
|
| | 123 | | /// <summary> |
| | 124 | | /// Gets or sets the type of the video. |
| | 125 | | /// </summary> |
| | 126 | | /// <value>The type of the video.</value> |
| | 127 | | public VideoType VideoType { get; set; } |
| | 128 | |
|
| | 129 | | /// <summary> |
| | 130 | | /// Gets or sets the type of the iso. |
| | 131 | | /// </summary> |
| | 132 | | /// <value>The type of the iso.</value> |
| | 133 | | public IsoType? IsoType { get; set; } |
| | 134 | |
|
| | 135 | | /// <summary> |
| | 136 | | /// Gets or sets the video3 D format. |
| | 137 | | /// </summary> |
| | 138 | | /// <value>The video3 D format.</value> |
| | 139 | | public Video3DFormat? Video3DFormat { get; set; } |
| | 140 | |
|
| | 141 | | /// <summary> |
| | 142 | | /// Gets or sets the aspect ratio. |
| | 143 | | /// </summary> |
| | 144 | | /// <value>The aspect ratio.</value> |
| | 145 | | public string AspectRatio { get; set; } |
| | 146 | |
|
| | 147 | | [JsonIgnore] |
| 0 | 148 | | public override bool SupportsAddingToPlaylist => true; |
| | 149 | |
|
| | 150 | | [JsonIgnore] |
| | 151 | | public int MediaSourceCount |
| | 152 | | { |
| | 153 | | get |
| | 154 | | { |
| 0 | 155 | | if (!string.IsNullOrEmpty(PrimaryVersionId)) |
| | 156 | | { |
| 0 | 157 | | var item = LibraryManager.GetItemById(PrimaryVersionId); |
| 0 | 158 | | if (item is Video video) |
| | 159 | | { |
| 0 | 160 | | return video.MediaSourceCount; |
| | 161 | | } |
| | 162 | | } |
| | 163 | |
|
| 0 | 164 | | return LinkedAlternateVersions.Length + LocalAlternateVersions.Length + 1; |
| | 165 | | } |
| | 166 | | } |
| | 167 | |
|
| | 168 | | [JsonIgnore] |
| 46 | 169 | | public bool IsStacked => AdditionalParts.Length > 0; |
| | 170 | |
|
| | 171 | | [JsonIgnore] |
| 4 | 172 | | public override bool HasLocalAlternateVersions => LocalAlternateVersions.Length > 0; |
| | 173 | |
|
| | 174 | | public static IRecordingsManager RecordingsManager { get; set; } |
| | 175 | |
|
| | 176 | | [JsonIgnore] |
| | 177 | | public override SourceType SourceType |
| | 178 | | { |
| | 179 | | get |
| | 180 | | { |
| 28 | 181 | | if (IsActiveRecording()) |
| | 182 | | { |
| 0 | 183 | | return SourceType.LiveTV; |
| | 184 | | } |
| | 185 | |
|
| 28 | 186 | | return base.SourceType; |
| | 187 | | } |
| | 188 | | } |
| | 189 | |
|
| | 190 | | [JsonIgnore] |
| | 191 | | public bool IsCompleteMedia |
| | 192 | | { |
| | 193 | | get |
| | 194 | | { |
| 0 | 195 | | if (SourceType == SourceType.Channel) |
| | 196 | | { |
| 0 | 197 | | return !Tags.Contains("livestream", StringComparison.OrdinalIgnoreCase); |
| | 198 | | } |
| | 199 | |
|
| 0 | 200 | | return !IsActiveRecording(); |
| | 201 | | } |
| | 202 | | } |
| | 203 | |
|
| | 204 | | [JsonIgnore] |
| 0 | 205 | | protected virtual bool EnableDefaultVideoUserDataKeys => true; |
| | 206 | |
|
| | 207 | | [JsonIgnore] |
| | 208 | | public override string ContainingFolderPath |
| | 209 | | { |
| | 210 | | get |
| | 211 | | { |
| 46 | 212 | | if (IsStacked) |
| | 213 | | { |
| 0 | 214 | | return System.IO.Path.GetDirectoryName(Path); |
| | 215 | | } |
| | 216 | |
|
| 46 | 217 | | if (!IsPlaceHolder) |
| | 218 | | { |
| 46 | 219 | | if (VideoType == VideoType.BluRay || VideoType == VideoType.Dvd) |
| | 220 | | { |
| 1 | 221 | | return Path; |
| | 222 | | } |
| | 223 | | } |
| | 224 | |
|
| 45 | 225 | | return base.ContainingFolderPath; |
| | 226 | | } |
| | 227 | | } |
| | 228 | |
|
| | 229 | | [JsonIgnore] |
| | 230 | | public override string FileNameWithoutExtension |
| | 231 | | { |
| | 232 | | get |
| | 233 | | { |
| 31 | 234 | | if (IsFileProtocol) |
| | 235 | | { |
| 31 | 236 | | if (VideoType == VideoType.BluRay || VideoType == VideoType.Dvd) |
| | 237 | | { |
| 0 | 238 | | return System.IO.Path.GetFileName(Path); |
| | 239 | | } |
| | 240 | |
|
| 31 | 241 | | return System.IO.Path.GetFileNameWithoutExtension(Path); |
| | 242 | | } |
| | 243 | |
|
| 0 | 244 | | return null; |
| | 245 | | } |
| | 246 | | } |
| | 247 | |
|
| | 248 | | /// <summary> |
| | 249 | | /// Gets a value indicating whether [is3 D]. |
| | 250 | | /// </summary> |
| | 251 | | /// <value><c>true</c> if [is3 D]; otherwise, <c>false</c>.</value> |
| | 252 | | [JsonIgnore] |
| 0 | 253 | | public bool Is3D => Video3DFormat.HasValue; |
| | 254 | |
|
| | 255 | | /// <summary> |
| | 256 | | /// Gets the type of the media. |
| | 257 | | /// </summary> |
| | 258 | | /// <value>The type of the media.</value> |
| | 259 | | [JsonIgnore] |
| 0 | 260 | | public override MediaType MediaType => MediaType.Video; |
| | 261 | |
|
| | 262 | | public override List<string> GetUserDataKeys() |
| | 263 | | { |
| 0 | 264 | | var list = base.GetUserDataKeys(); |
| | 265 | |
|
| 0 | 266 | | if (EnableDefaultVideoUserDataKeys) |
| | 267 | | { |
| 0 | 268 | | if (ExtraType.HasValue) |
| | 269 | | { |
| 0 | 270 | | var key = this.GetProviderId(MetadataProvider.Tmdb); |
| 0 | 271 | | if (!string.IsNullOrEmpty(key)) |
| | 272 | | { |
| 0 | 273 | | list.Insert(0, GetUserDataKey(key)); |
| | 274 | | } |
| | 275 | |
|
| 0 | 276 | | key = this.GetProviderId(MetadataProvider.Imdb); |
| 0 | 277 | | if (!string.IsNullOrEmpty(key)) |
| | 278 | | { |
| 0 | 279 | | list.Insert(0, GetUserDataKey(key)); |
| | 280 | | } |
| | 281 | | } |
| | 282 | | else |
| | 283 | | { |
| 0 | 284 | | var key = this.GetProviderId(MetadataProvider.Imdb); |
| 0 | 285 | | if (!string.IsNullOrEmpty(key)) |
| | 286 | | { |
| 0 | 287 | | list.Insert(0, key); |
| | 288 | | } |
| | 289 | |
|
| 0 | 290 | | key = this.GetProviderId(MetadataProvider.Tmdb); |
| 0 | 291 | | if (!string.IsNullOrEmpty(key)) |
| | 292 | | { |
| 0 | 293 | | list.Insert(0, key); |
| | 294 | | } |
| | 295 | | } |
| | 296 | | } |
| | 297 | |
|
| 0 | 298 | | return list; |
| | 299 | | } |
| | 300 | |
|
| | 301 | | public void SetPrimaryVersionId(string id) |
| | 302 | | { |
| 0 | 303 | | if (string.IsNullOrEmpty(id)) |
| | 304 | | { |
| 0 | 305 | | PrimaryVersionId = null; |
| | 306 | | } |
| | 307 | | else |
| | 308 | | { |
| 0 | 309 | | PrimaryVersionId = id; |
| | 310 | | } |
| | 311 | |
|
| 0 | 312 | | PresentationUniqueKey = CreatePresentationUniqueKey(); |
| 0 | 313 | | } |
| | 314 | |
|
| | 315 | | public override string CreatePresentationUniqueKey() |
| | 316 | | { |
| 0 | 317 | | if (!string.IsNullOrEmpty(PrimaryVersionId)) |
| | 318 | | { |
| 0 | 319 | | return PrimaryVersionId; |
| | 320 | | } |
| | 321 | |
|
| 0 | 322 | | return base.CreatePresentationUniqueKey(); |
| | 323 | | } |
| | 324 | |
|
| | 325 | | public override bool CanDownload() |
| | 326 | | { |
| 0 | 327 | | if (VideoType == VideoType.Dvd || VideoType == VideoType.BluRay) |
| | 328 | | { |
| 0 | 329 | | return false; |
| | 330 | | } |
| | 331 | |
|
| 0 | 332 | | return IsFileProtocol; |
| | 333 | | } |
| | 334 | |
|
| | 335 | | protected override bool IsActiveRecording() |
| | 336 | | { |
| 28 | 337 | | return RecordingsManager.GetActiveRecordingInfo(Path) is not null; |
| | 338 | | } |
| | 339 | |
|
| | 340 | | public override bool CanDelete() |
| | 341 | | { |
| 0 | 342 | | if (IsActiveRecording()) |
| | 343 | | { |
| 0 | 344 | | return false; |
| | 345 | | } |
| | 346 | |
|
| 0 | 347 | | return base.CanDelete(); |
| | 348 | | } |
| | 349 | |
|
| | 350 | | public IEnumerable<Guid> GetAdditionalPartIds() |
| | 351 | | { |
| 0 | 352 | | return AdditionalParts.Select(i => LibraryManager.GetNewItemId(i, typeof(Video))); |
| | 353 | | } |
| | 354 | |
|
| | 355 | | public IEnumerable<Guid> GetLocalAlternateVersionIds() |
| | 356 | | { |
| 0 | 357 | | return LocalAlternateVersions.Select(i => LibraryManager.GetNewItemId(i, typeof(Video))); |
| | 358 | | } |
| | 359 | |
|
| | 360 | | private string GetUserDataKey(string providerId) |
| | 361 | | { |
| 0 | 362 | | var key = providerId + "-" + ExtraType.ToString().ToLowerInvariant(); |
| | 363 | |
|
| | 364 | | // Make sure different trailers have their own data. |
| 0 | 365 | | if (RunTimeTicks.HasValue) |
| | 366 | | { |
| 0 | 367 | | key += "-" + RunTimeTicks.Value.ToString(CultureInfo.InvariantCulture); |
| | 368 | | } |
| | 369 | |
|
| 0 | 370 | | return key; |
| | 371 | | } |
| | 372 | |
|
| | 373 | | public IEnumerable<Video> GetLinkedAlternateVersions() |
| | 374 | | { |
| 0 | 375 | | return LinkedAlternateVersions |
| 0 | 376 | | .Select(GetLinkedChild) |
| 0 | 377 | | .Where(i => i is not null) |
| 0 | 378 | | .OfType<Video>() |
| 0 | 379 | | .OrderBy(i => i.SortName); |
| | 380 | | } |
| | 381 | |
|
| | 382 | | /// <summary> |
| | 383 | | /// Gets the additional parts. |
| | 384 | | /// </summary> |
| | 385 | | /// <returns>IEnumerable{Video}.</returns> |
| | 386 | | public IOrderedEnumerable<Video> GetAdditionalParts() |
| | 387 | | { |
| 0 | 388 | | return GetAdditionalPartIds() |
| 0 | 389 | | .Select(i => LibraryManager.GetItemById(i)) |
| 0 | 390 | | .Where(i => i is not null) |
| 0 | 391 | | .OfType<Video>() |
| 0 | 392 | | .OrderBy(i => i.SortName); |
| | 393 | | } |
| | 394 | |
|
| | 395 | | internal override ItemUpdateType UpdateFromResolvedItem(BaseItem newItem) |
| | 396 | | { |
| 0 | 397 | | var updateType = base.UpdateFromResolvedItem(newItem); |
| | 398 | |
|
| 0 | 399 | | if (newItem is Video newVideo) |
| | 400 | | { |
| 0 | 401 | | if (!AdditionalParts.SequenceEqual(newVideo.AdditionalParts, StringComparer.Ordinal)) |
| | 402 | | { |
| 0 | 403 | | AdditionalParts = newVideo.AdditionalParts; |
| 0 | 404 | | updateType |= ItemUpdateType.MetadataImport; |
| | 405 | | } |
| | 406 | |
|
| 0 | 407 | | if (!LocalAlternateVersions.SequenceEqual(newVideo.LocalAlternateVersions, StringComparer.Ordinal)) |
| | 408 | | { |
| 0 | 409 | | LocalAlternateVersions = newVideo.LocalAlternateVersions; |
| 0 | 410 | | updateType |= ItemUpdateType.MetadataImport; |
| | 411 | | } |
| | 412 | |
|
| 0 | 413 | | if (VideoType != newVideo.VideoType) |
| | 414 | | { |
| 0 | 415 | | VideoType = newVideo.VideoType; |
| 0 | 416 | | updateType |= ItemUpdateType.MetadataImport; |
| | 417 | | } |
| | 418 | | } |
| | 419 | |
|
| 0 | 420 | | return updateType; |
| | 421 | | } |
| | 422 | |
|
| | 423 | | protected override async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, IReadOnlyList<FileSystem |
| | 424 | | { |
| | 425 | | var hasChanges = await base.RefreshedOwnedItems(options, fileSystemChildren, cancellationToken).ConfigureAwa |
| | 426 | |
|
| | 427 | | if (IsStacked) |
| | 428 | | { |
| | 429 | | var tasks = AdditionalParts |
| | 430 | | .Select(i => RefreshMetadataForOwnedVideo(options, true, i, cancellationToken)); |
| | 431 | |
|
| | 432 | | await Task.WhenAll(tasks).ConfigureAwait(false); |
| | 433 | | } |
| | 434 | |
|
| | 435 | | // Must have a parent to have additional parts or alternate versions |
| | 436 | | // In other words, it must be part of the Parent/Child tree |
| | 437 | | // The additional parts won't have additional parts themselves |
| | 438 | | if (IsFileProtocol && SupportsOwnedItems) |
| | 439 | | { |
| | 440 | | if (!IsStacked) |
| | 441 | | { |
| | 442 | | RefreshLinkedAlternateVersions(); |
| | 443 | |
|
| | 444 | | var tasks = LocalAlternateVersions |
| | 445 | | .Select(i => RefreshMetadataForOwnedVideo(options, false, i, cancellationToken)); |
| | 446 | |
|
| | 447 | | await Task.WhenAll(tasks).ConfigureAwait(false); |
| | 448 | | } |
| | 449 | | } |
| | 450 | |
|
| | 451 | | return hasChanges; |
| | 452 | | } |
| | 453 | |
|
| | 454 | | private void RefreshLinkedAlternateVersions() |
| | 455 | | { |
| 0 | 456 | | foreach (var child in LinkedAlternateVersions) |
| | 457 | | { |
| | 458 | | // Reset the cached value |
| 0 | 459 | | if (child.ItemId.IsNullOrEmpty()) |
| | 460 | | { |
| 0 | 461 | | child.ItemId = null; |
| | 462 | | } |
| | 463 | | } |
| 0 | 464 | | } |
| | 465 | |
|
| | 466 | | /// <inheritdoc /> |
| | 467 | | public override async Task UpdateToRepositoryAsync(ItemUpdateType updateReason, CancellationToken cancellationTo |
| | 468 | | { |
| | 469 | | await base.UpdateToRepositoryAsync(updateReason, cancellationToken).ConfigureAwait(false); |
| | 470 | |
|
| | 471 | | var localAlternates = GetLocalAlternateVersionIds() |
| | 472 | | .Select(i => LibraryManager.GetItemById(i)) |
| | 473 | | .Where(i => i is not null); |
| | 474 | |
|
| | 475 | | foreach (var item in localAlternates) |
| | 476 | | { |
| | 477 | | item.ImageInfos = ImageInfos; |
| | 478 | | item.Overview = Overview; |
| | 479 | | item.ProductionYear = ProductionYear; |
| | 480 | | item.PremiereDate = PremiereDate; |
| | 481 | | item.CommunityRating = CommunityRating; |
| | 482 | | item.OfficialRating = OfficialRating; |
| | 483 | | item.Genres = Genres; |
| | 484 | | item.ProviderIds = ProviderIds; |
| | 485 | |
|
| | 486 | | await item.UpdateToRepositoryAsync(ItemUpdateType.MetadataDownload, cancellationToken).ConfigureAwait(fa |
| | 487 | | } |
| | 488 | | } |
| | 489 | |
|
| | 490 | | public override IEnumerable<FileSystemMetadata> GetDeletePaths() |
| | 491 | | { |
| 0 | 492 | | if (!IsInMixedFolder) |
| | 493 | | { |
| 0 | 494 | | return new[] |
| 0 | 495 | | { |
| 0 | 496 | | new FileSystemMetadata |
| 0 | 497 | | { |
| 0 | 498 | | FullName = ContainingFolderPath, |
| 0 | 499 | | IsDirectory = true |
| 0 | 500 | | } |
| 0 | 501 | | }; |
| | 502 | | } |
| | 503 | |
|
| 0 | 504 | | return base.GetDeletePaths(); |
| | 505 | | } |
| | 506 | |
|
| | 507 | | public virtual MediaStream GetDefaultVideoStream() |
| | 508 | | { |
| 0 | 509 | | if (!DefaultVideoStreamIndex.HasValue) |
| | 510 | | { |
| 0 | 511 | | return null; |
| | 512 | | } |
| | 513 | |
|
| 0 | 514 | | return MediaSourceManager.GetMediaStreams(new MediaStreamQuery |
| 0 | 515 | | { |
| 0 | 516 | | ItemId = Id, |
| 0 | 517 | | Index = DefaultVideoStreamIndex.Value |
| 0 | 518 | | }).FirstOrDefault(); |
| | 519 | | } |
| | 520 | |
|
| | 521 | | protected override IEnumerable<(BaseItem Item, MediaSourceType MediaSourceType)> GetAllItemsForMediaSources() |
| | 522 | | { |
| 0 | 523 | | var list = new List<(BaseItem, MediaSourceType)> |
| 0 | 524 | | { |
| 0 | 525 | | (this, MediaSourceType.Default) |
| 0 | 526 | | }; |
| | 527 | |
|
| 0 | 528 | | list.AddRange(GetLinkedAlternateVersions().Select(i => ((BaseItem)i, MediaSourceType.Grouping))); |
| | 529 | |
|
| 0 | 530 | | if (!string.IsNullOrEmpty(PrimaryVersionId)) |
| | 531 | | { |
| 0 | 532 | | if (LibraryManager.GetItemById(PrimaryVersionId) is Video primary) |
| | 533 | | { |
| 0 | 534 | | var existingIds = list.Select(i => i.Item1.Id).ToList(); |
| 0 | 535 | | list.Add((primary, MediaSourceType.Grouping)); |
| 0 | 536 | | list.AddRange(primary.GetLinkedAlternateVersions().Where(i => !existingIds.Contains(i.Id)).Select(i |
| | 537 | | } |
| | 538 | | } |
| | 539 | |
|
| 0 | 540 | | var localAlternates = list |
| 0 | 541 | | .SelectMany(i => |
| 0 | 542 | | { |
| 0 | 543 | | return i.Item1 is Video video ? video.GetLocalAlternateVersionIds() : Enumerable.Empty<Guid>(); |
| 0 | 544 | | }) |
| 0 | 545 | | .Select(LibraryManager.GetItemById) |
| 0 | 546 | | .Where(i => i is not null) |
| 0 | 547 | | .ToList(); |
| | 548 | |
|
| 0 | 549 | | list.AddRange(localAlternates.Select(i => (i, MediaSourceType.Default))); |
| | 550 | |
|
| 0 | 551 | | return list; |
| | 552 | | } |
| | 553 | | } |
| | 554 | | } |