| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Globalization; |
| | 6 | | using System.IO; |
| | 7 | | using System.Linq; |
| | 8 | | using Jellyfin.Data.Enums; |
| | 9 | | using Jellyfin.Database.Implementations.Entities; |
| | 10 | | using Jellyfin.Extensions; |
| | 11 | | using MediaBrowser.Common; |
| | 12 | | using MediaBrowser.Controller.Channels; |
| | 13 | | using MediaBrowser.Controller.Chapters; |
| | 14 | | using MediaBrowser.Controller.Drawing; |
| | 15 | | using MediaBrowser.Controller.Dto; |
| | 16 | | using MediaBrowser.Controller.Entities; |
| | 17 | | using MediaBrowser.Controller.Entities.Audio; |
| | 18 | | using MediaBrowser.Controller.Library; |
| | 19 | | using MediaBrowser.Controller.LiveTv; |
| | 20 | | using MediaBrowser.Controller.Persistence; |
| | 21 | | using MediaBrowser.Controller.Playlists; |
| | 22 | | using MediaBrowser.Controller.Providers; |
| | 23 | | using MediaBrowser.Controller.Trickplay; |
| | 24 | | using MediaBrowser.Model.Dto; |
| | 25 | | using MediaBrowser.Model.Entities; |
| | 26 | | using MediaBrowser.Model.Querying; |
| | 27 | | using Microsoft.Extensions.Logging; |
| | 28 | | using Book = MediaBrowser.Controller.Entities.Book; |
| | 29 | | using Episode = MediaBrowser.Controller.Entities.TV.Episode; |
| | 30 | | using Movie = MediaBrowser.Controller.Entities.Movies.Movie; |
| | 31 | | using MusicAlbum = MediaBrowser.Controller.Entities.Audio.MusicAlbum; |
| | 32 | | using Person = MediaBrowser.Controller.Entities.Person; |
| | 33 | | using Photo = MediaBrowser.Controller.Entities.Photo; |
| | 34 | | using Season = MediaBrowser.Controller.Entities.TV.Season; |
| | 35 | | using Series = MediaBrowser.Controller.Entities.TV.Series; |
| | 36 | |
|
| | 37 | | namespace Emby.Server.Implementations.Dto |
| | 38 | | { |
| | 39 | | public class DtoService : IDtoService |
| | 40 | | { |
| | 41 | | private readonly ILogger<DtoService> _logger; |
| | 42 | | private readonly ILibraryManager _libraryManager; |
| | 43 | | private readonly IUserDataManager _userDataRepository; |
| | 44 | |
|
| | 45 | | private readonly IImageProcessor _imageProcessor; |
| | 46 | | private readonly IProviderManager _providerManager; |
| | 47 | | private readonly IRecordingsManager _recordingsManager; |
| | 48 | |
|
| | 49 | | private readonly IApplicationHost _appHost; |
| | 50 | | private readonly IMediaSourceManager _mediaSourceManager; |
| | 51 | | private readonly Lazy<ILiveTvManager> _livetvManagerFactory; |
| | 52 | |
|
| | 53 | | private readonly ITrickplayManager _trickplayManager; |
| | 54 | | private readonly IChapterRepository _chapterRepository; |
| | 55 | |
|
| | 56 | | public DtoService( |
| | 57 | | ILogger<DtoService> logger, |
| | 58 | | ILibraryManager libraryManager, |
| | 59 | | IUserDataManager userDataRepository, |
| | 60 | | IImageProcessor imageProcessor, |
| | 61 | | IProviderManager providerManager, |
| | 62 | | IRecordingsManager recordingsManager, |
| | 63 | | IApplicationHost appHost, |
| | 64 | | IMediaSourceManager mediaSourceManager, |
| | 65 | | Lazy<ILiveTvManager> livetvManagerFactory, |
| | 66 | | ITrickplayManager trickplayManager, |
| | 67 | | IChapterRepository chapterRepository) |
| | 68 | | { |
| 21 | 69 | | _logger = logger; |
| 21 | 70 | | _libraryManager = libraryManager; |
| 21 | 71 | | _userDataRepository = userDataRepository; |
| 21 | 72 | | _imageProcessor = imageProcessor; |
| 21 | 73 | | _providerManager = providerManager; |
| 21 | 74 | | _recordingsManager = recordingsManager; |
| 21 | 75 | | _appHost = appHost; |
| 21 | 76 | | _mediaSourceManager = mediaSourceManager; |
| 21 | 77 | | _livetvManagerFactory = livetvManagerFactory; |
| 21 | 78 | | _trickplayManager = trickplayManager; |
| 21 | 79 | | _chapterRepository = chapterRepository; |
| 21 | 80 | | } |
| | 81 | |
|
| 0 | 82 | | private ILiveTvManager LivetvManager => _livetvManagerFactory.Value; |
| | 83 | |
|
| | 84 | | /// <inheritdoc /> |
| | 85 | | public IReadOnlyList<BaseItemDto> GetBaseItemDtos(IReadOnlyList<BaseItem> items, DtoOptions options, User? user |
| | 86 | | { |
| 4 | 87 | | var accessibleItems = user is null ? items : items.Where(x => x.IsVisible(user)).ToList(); |
| 4 | 88 | | var returnItems = new BaseItemDto[accessibleItems.Count]; |
| 4 | 89 | | List<(BaseItem, BaseItemDto)>? programTuples = null; |
| 4 | 90 | | List<(BaseItemDto, LiveTvChannel)>? channelTuples = null; |
| | 91 | |
|
| 14 | 92 | | for (int index = 0; index < accessibleItems.Count; index++) |
| | 93 | | { |
| 3 | 94 | | var item = accessibleItems[index]; |
| 3 | 95 | | var dto = GetBaseItemDtoInternal(item, options, user, owner); |
| | 96 | |
|
| 3 | 97 | | if (item is LiveTvChannel tvChannel) |
| | 98 | | { |
| 0 | 99 | | (channelTuples ??= []).Add((dto, tvChannel)); |
| | 100 | | } |
| 3 | 101 | | else if (item is LiveTvProgram) |
| | 102 | | { |
| 0 | 103 | | (programTuples ??= []).Add((item, dto)); |
| | 104 | | } |
| | 105 | |
|
| 3 | 106 | | if (item is IItemByName byName) |
| | 107 | | { |
| 0 | 108 | | if (options.ContainsField(ItemFields.ItemCounts)) |
| | 109 | | { |
| 0 | 110 | | var libraryItems = byName.GetTaggedItems(new InternalItemsQuery(user) |
| 0 | 111 | | { |
| 0 | 112 | | Recursive = true, |
| 0 | 113 | | DtoOptions = new DtoOptions(false) |
| 0 | 114 | | { |
| 0 | 115 | | EnableImages = false |
| 0 | 116 | | } |
| 0 | 117 | | }); |
| | 118 | |
|
| 0 | 119 | | SetItemByNameInfo(item, dto, libraryItems); |
| | 120 | | } |
| | 121 | | } |
| | 122 | |
|
| 3 | 123 | | returnItems[index] = dto; |
| | 124 | | } |
| | 125 | |
|
| 4 | 126 | | if (programTuples is not null) |
| | 127 | | { |
| 0 | 128 | | LivetvManager.AddInfoToProgramDto(programTuples, options.Fields, user).GetAwaiter().GetResult(); |
| | 129 | | } |
| | 130 | |
|
| 4 | 131 | | if (channelTuples is not null) |
| | 132 | | { |
| 0 | 133 | | LivetvManager.AddChannelInfo(channelTuples, options, user); |
| | 134 | | } |
| | 135 | |
|
| 4 | 136 | | return returnItems; |
| | 137 | | } |
| | 138 | |
|
| | 139 | | public BaseItemDto GetBaseItemDto(BaseItem item, DtoOptions options, User? user = null, BaseItem? owner = null) |
| | 140 | | { |
| 6 | 141 | | var dto = GetBaseItemDtoInternal(item, options, user, owner); |
| 6 | 142 | | if (item is LiveTvChannel tvChannel) |
| | 143 | | { |
| 0 | 144 | | LivetvManager.AddChannelInfo(new[] { (dto, tvChannel) }, options, user); |
| | 145 | | } |
| 6 | 146 | | else if (item is LiveTvProgram) |
| | 147 | | { |
| 0 | 148 | | LivetvManager.AddInfoToProgramDto(new[] { (item, dto) }, options.Fields, user).GetAwaiter().GetResult(); |
| | 149 | | } |
| | 150 | |
|
| 6 | 151 | | if (item is IItemByName itemByName |
| 6 | 152 | | && options.ContainsField(ItemFields.ItemCounts)) |
| | 153 | | { |
| 0 | 154 | | SetItemByNameInfo( |
| 0 | 155 | | item, |
| 0 | 156 | | dto, |
| 0 | 157 | | GetTaggedItems( |
| 0 | 158 | | itemByName, |
| 0 | 159 | | user, |
| 0 | 160 | | new DtoOptions(false) |
| 0 | 161 | | { |
| 0 | 162 | | EnableImages = false |
| 0 | 163 | | })); |
| | 164 | | } |
| | 165 | |
|
| 6 | 166 | | return dto; |
| | 167 | | } |
| | 168 | |
|
| | 169 | | private static IReadOnlyList<BaseItem> GetTaggedItems(IItemByName byName, User? user, DtoOptions options) |
| | 170 | | { |
| 0 | 171 | | return byName.GetTaggedItems( |
| 0 | 172 | | new InternalItemsQuery(user) |
| 0 | 173 | | { |
| 0 | 174 | | Recursive = true, |
| 0 | 175 | | DtoOptions = options |
| 0 | 176 | | }); |
| | 177 | | } |
| | 178 | |
|
| | 179 | | private BaseItemDto GetBaseItemDtoInternal(BaseItem item, DtoOptions options, User? user = null, BaseItem? owner |
| | 180 | | { |
| 9 | 181 | | var dto = new BaseItemDto |
| 9 | 182 | | { |
| 9 | 183 | | ServerId = _appHost.SystemId |
| 9 | 184 | | }; |
| | 185 | |
|
| 9 | 186 | | if (item.SourceType == SourceType.Channel) |
| | 187 | | { |
| 0 | 188 | | dto.SourceType = item.SourceType.ToString(); |
| | 189 | | } |
| | 190 | |
|
| 9 | 191 | | if (options.ContainsField(ItemFields.People)) |
| | 192 | | { |
| 6 | 193 | | AttachPeople(dto, item, user); |
| | 194 | | } |
| | 195 | |
|
| 9 | 196 | | if (options.ContainsField(ItemFields.PrimaryImageAspectRatio)) |
| | 197 | | { |
| | 198 | | try |
| | 199 | | { |
| 6 | 200 | | AttachPrimaryImageAspectRatio(dto, item); |
| 6 | 201 | | } |
| 0 | 202 | | catch (Exception ex) |
| | 203 | | { |
| | 204 | | // Have to use a catch-all unfortunately because some .net image methods throw plain Exceptions |
| 0 | 205 | | _logger.LogError(ex, "Error generating PrimaryImageAspectRatio for {ItemName}", item.Name); |
| 0 | 206 | | } |
| | 207 | | } |
| | 208 | |
|
| 9 | 209 | | if (options.ContainsField(ItemFields.DisplayPreferencesId)) |
| | 210 | | { |
| 6 | 211 | | dto.DisplayPreferencesId = item.DisplayPreferencesId.ToString("N", CultureInfo.InvariantCulture); |
| | 212 | | } |
| | 213 | |
|
| 9 | 214 | | if (user is not null) |
| | 215 | | { |
| 9 | 216 | | AttachUserSpecificInfo(dto, item, user, options); |
| | 217 | | } |
| | 218 | |
|
| 9 | 219 | | if (item is IHasMediaSources |
| 9 | 220 | | && options.ContainsField(ItemFields.MediaSources)) |
| | 221 | | { |
| 0 | 222 | | dto.MediaSources = _mediaSourceManager.GetStaticMediaSources(item, true, user).ToArray(); |
| | 223 | |
|
| 0 | 224 | | NormalizeMediaSourceContainers(dto); |
| | 225 | | } |
| | 226 | |
|
| 9 | 227 | | if (options.ContainsField(ItemFields.Studios)) |
| | 228 | | { |
| 6 | 229 | | AttachStudios(dto, item); |
| | 230 | | } |
| | 231 | |
|
| 9 | 232 | | AttachBasicFields(dto, item, owner, options); |
| | 233 | |
|
| 9 | 234 | | if (options.ContainsField(ItemFields.CanDelete)) |
| | 235 | | { |
| 6 | 236 | | dto.CanDelete = user is null |
| 6 | 237 | | ? item.CanDelete() |
| 6 | 238 | | : item.CanDelete(user); |
| | 239 | | } |
| | 240 | |
|
| 9 | 241 | | if (options.ContainsField(ItemFields.CanDownload)) |
| | 242 | | { |
| 6 | 243 | | dto.CanDownload = user is null |
| 6 | 244 | | ? item.CanDownload() |
| 6 | 245 | | : item.CanDownload(user); |
| | 246 | | } |
| | 247 | |
|
| 9 | 248 | | if (options.ContainsField(ItemFields.Etag)) |
| | 249 | | { |
| 6 | 250 | | dto.Etag = item.GetEtag(user); |
| | 251 | | } |
| | 252 | |
|
| 9 | 253 | | var activeRecording = _recordingsManager.GetActiveRecordingInfo(item.Path); |
| 9 | 254 | | if (activeRecording is not null) |
| | 255 | | { |
| 0 | 256 | | dto.Type = BaseItemKind.Recording; |
| 0 | 257 | | dto.CanDownload = false; |
| 0 | 258 | | dto.RunTimeTicks = null; |
| | 259 | |
|
| 0 | 260 | | if (!string.IsNullOrEmpty(dto.SeriesName)) |
| | 261 | | { |
| 0 | 262 | | dto.EpisodeTitle = dto.Name; |
| 0 | 263 | | dto.Name = dto.SeriesName; |
| | 264 | | } |
| | 265 | |
|
| 0 | 266 | | LivetvManager.AddInfoToRecordingDto(item, dto, activeRecording, user); |
| | 267 | | } |
| | 268 | |
|
| 9 | 269 | | if (item is Audio audio) |
| | 270 | | { |
| 0 | 271 | | dto.HasLyrics = audio.GetMediaStreams().Any(s => s.Type == MediaStreamType.Lyric); |
| | 272 | | } |
| | 273 | |
|
| 9 | 274 | | return dto; |
| | 275 | | } |
| | 276 | |
|
| | 277 | | private static void NormalizeMediaSourceContainers(BaseItemDto dto) |
| | 278 | | { |
| 0 | 279 | | foreach (var mediaSource in dto.MediaSources) |
| | 280 | | { |
| 0 | 281 | | var container = mediaSource.Container; |
| 0 | 282 | | if (string.IsNullOrEmpty(container)) |
| | 283 | | { |
| | 284 | | continue; |
| | 285 | | } |
| | 286 | |
|
| 0 | 287 | | var containers = container.Split(','); |
| 0 | 288 | | if (containers.Length < 2) |
| | 289 | | { |
| | 290 | | continue; |
| | 291 | | } |
| | 292 | |
|
| 0 | 293 | | var path = mediaSource.Path; |
| 0 | 294 | | string? fileExtensionContainer = null; |
| | 295 | |
|
| 0 | 296 | | if (!string.IsNullOrEmpty(path)) |
| | 297 | | { |
| 0 | 298 | | path = Path.GetExtension(path); |
| 0 | 299 | | if (!string.IsNullOrEmpty(path)) |
| | 300 | | { |
| 0 | 301 | | path = Path.GetExtension(path); |
| 0 | 302 | | if (!string.IsNullOrEmpty(path)) |
| | 303 | | { |
| 0 | 304 | | path = path.TrimStart('.'); |
| | 305 | | } |
| | 306 | |
|
| 0 | 307 | | if (!string.IsNullOrEmpty(path) && containers.Contains(path, StringComparison.OrdinalIgnoreCase) |
| | 308 | | { |
| 0 | 309 | | fileExtensionContainer = path; |
| | 310 | | } |
| | 311 | | } |
| | 312 | | } |
| | 313 | |
|
| 0 | 314 | | mediaSource.Container = fileExtensionContainer ?? containers[0]; |
| | 315 | | } |
| 0 | 316 | | } |
| | 317 | |
|
| | 318 | | /// <inheritdoc /> |
| | 319 | | public BaseItemDto GetItemByNameDto(BaseItem item, DtoOptions options, List<BaseItem>? taggedItems, User? user = |
| | 320 | | { |
| 0 | 321 | | var dto = GetBaseItemDtoInternal(item, options, user); |
| | 322 | |
|
| 0 | 323 | | if (taggedItems is not null && options.ContainsField(ItemFields.ItemCounts)) |
| | 324 | | { |
| 0 | 325 | | SetItemByNameInfo(item, dto, taggedItems); |
| | 326 | | } |
| | 327 | |
|
| 0 | 328 | | return dto; |
| | 329 | | } |
| | 330 | |
|
| | 331 | | private static void SetItemByNameInfo(BaseItem item, BaseItemDto dto, IReadOnlyList<BaseItem> taggedItems) |
| | 332 | | { |
| 0 | 333 | | if (item is MusicArtist) |
| | 334 | | { |
| 0 | 335 | | dto.AlbumCount = taggedItems.Count(i => i is MusicAlbum); |
| 0 | 336 | | dto.MusicVideoCount = taggedItems.Count(i => i is MusicVideo); |
| 0 | 337 | | dto.SongCount = taggedItems.Count(i => i is Audio); |
| | 338 | | } |
| 0 | 339 | | else if (item is MusicGenre) |
| | 340 | | { |
| 0 | 341 | | dto.ArtistCount = taggedItems.Count(i => i is MusicArtist); |
| 0 | 342 | | dto.AlbumCount = taggedItems.Count(i => i is MusicAlbum); |
| 0 | 343 | | dto.MusicVideoCount = taggedItems.Count(i => i is MusicVideo); |
| 0 | 344 | | dto.SongCount = taggedItems.Count(i => i is Audio); |
| | 345 | | } |
| | 346 | | else |
| | 347 | | { |
| | 348 | | // This populates them all and covers Genre, Person, Studio, Year |
| | 349 | |
|
| 0 | 350 | | dto.ArtistCount = taggedItems.Count(i => i is MusicArtist); |
| 0 | 351 | | dto.AlbumCount = taggedItems.Count(i => i is MusicAlbum); |
| 0 | 352 | | dto.EpisodeCount = taggedItems.Count(i => i is Episode); |
| 0 | 353 | | dto.MovieCount = taggedItems.Count(i => i is Movie); |
| 0 | 354 | | dto.TrailerCount = taggedItems.Count(i => i is Trailer); |
| 0 | 355 | | dto.MusicVideoCount = taggedItems.Count(i => i is MusicVideo); |
| 0 | 356 | | dto.SeriesCount = taggedItems.Count(i => i is Series); |
| 0 | 357 | | dto.ProgramCount = taggedItems.Count(i => i is LiveTvProgram); |
| 0 | 358 | | dto.SongCount = taggedItems.Count(i => i is Audio); |
| | 359 | | } |
| | 360 | |
|
| 0 | 361 | | dto.ChildCount = taggedItems.Count; |
| 0 | 362 | | } |
| | 363 | |
|
| | 364 | | /// <summary> |
| | 365 | | /// Attaches the user specific info. |
| | 366 | | /// </summary> |
| | 367 | | private void AttachUserSpecificInfo(BaseItemDto dto, BaseItem item, User user, DtoOptions options) |
| | 368 | | { |
| 9 | 369 | | if (item.IsFolder) |
| | 370 | | { |
| 9 | 371 | | var folder = (Folder)item; |
| | 372 | |
|
| 9 | 373 | | if (options.EnableUserData) |
| | 374 | | { |
| 9 | 375 | | dto.UserData = _userDataRepository.GetUserDataDto(item, dto, user, options); |
| | 376 | | } |
| | 377 | |
|
| 9 | 378 | | if (!dto.ChildCount.HasValue && item.SourceType == SourceType.Library) |
| | 379 | | { |
| | 380 | | // For these types we can try to optimize and assume these values will be equal |
| 9 | 381 | | if (item is MusicAlbum || item is Season || item is Playlist) |
| | 382 | | { |
| 0 | 383 | | dto.ChildCount = dto.RecursiveItemCount; |
| 0 | 384 | | var folderChildCount = folder.LinkedChildren.Length; |
| | 385 | | // The default is an empty array, so we can't reliably use the count when it's empty |
| 0 | 386 | | if (folderChildCount > 0) |
| | 387 | | { |
| 0 | 388 | | dto.ChildCount ??= folderChildCount; |
| | 389 | | } |
| | 390 | | } |
| | 391 | |
|
| 9 | 392 | | if (options.ContainsField(ItemFields.ChildCount)) |
| | 393 | | { |
| 6 | 394 | | dto.ChildCount ??= GetChildCount(folder, user); |
| | 395 | | } |
| | 396 | | } |
| | 397 | |
|
| 9 | 398 | | if (options.ContainsField(ItemFields.CumulativeRunTimeTicks)) |
| | 399 | | { |
| 6 | 400 | | dto.CumulativeRunTimeTicks = item.RunTimeTicks; |
| | 401 | | } |
| | 402 | |
|
| 9 | 403 | | if (options.ContainsField(ItemFields.DateLastMediaAdded)) |
| | 404 | | { |
| 6 | 405 | | dto.DateLastMediaAdded = folder.DateLastMediaAdded; |
| | 406 | | } |
| | 407 | | } |
| | 408 | | else |
| | 409 | | { |
| 0 | 410 | | if (options.EnableUserData) |
| | 411 | | { |
| 0 | 412 | | dto.UserData = _userDataRepository.GetUserDataDto(item, user); |
| | 413 | | } |
| | 414 | | } |
| | 415 | |
|
| 9 | 416 | | if (options.ContainsField(ItemFields.PlayAccess)) |
| | 417 | | { |
| 6 | 418 | | dto.PlayAccess = item.GetPlayAccess(user); |
| | 419 | | } |
| 9 | 420 | | } |
| | 421 | |
|
| | 422 | | private static int GetChildCount(Folder folder, User user) |
| | 423 | | { |
| | 424 | | // Right now this is too slow to calculate for top level folders on a per-user basis |
| | 425 | | // Just return something so that apps that are expecting a value won't think the folders are empty |
| 6 | 426 | | if (folder is ICollectionFolder || folder is UserView) |
| | 427 | | { |
| 0 | 428 | | return Random.Shared.Next(1, 10); |
| | 429 | | } |
| | 430 | |
|
| 6 | 431 | | return folder.GetChildCount(user); |
| | 432 | | } |
| | 433 | |
|
| | 434 | | private static void SetBookProperties(BaseItemDto dto, Book item) |
| | 435 | | { |
| 0 | 436 | | dto.SeriesName = item.SeriesName; |
| 0 | 437 | | } |
| | 438 | |
|
| | 439 | | private static void SetPhotoProperties(BaseItemDto dto, Photo item) |
| | 440 | | { |
| 0 | 441 | | dto.CameraMake = item.CameraMake; |
| 0 | 442 | | dto.CameraModel = item.CameraModel; |
| 0 | 443 | | dto.Software = item.Software; |
| 0 | 444 | | dto.ExposureTime = item.ExposureTime; |
| 0 | 445 | | dto.FocalLength = item.FocalLength; |
| 0 | 446 | | dto.ImageOrientation = item.Orientation; |
| 0 | 447 | | dto.Aperture = item.Aperture; |
| 0 | 448 | | dto.ShutterSpeed = item.ShutterSpeed; |
| | 449 | |
|
| 0 | 450 | | dto.Latitude = item.Latitude; |
| 0 | 451 | | dto.Longitude = item.Longitude; |
| 0 | 452 | | dto.Altitude = item.Altitude; |
| 0 | 453 | | dto.IsoSpeedRating = item.IsoSpeedRating; |
| | 454 | |
|
| 0 | 455 | | var album = item.AlbumEntity; |
| | 456 | |
|
| 0 | 457 | | if (album is not null) |
| | 458 | | { |
| 0 | 459 | | dto.Album = album.Name; |
| 0 | 460 | | dto.AlbumId = album.Id; |
| | 461 | | } |
| 0 | 462 | | } |
| | 463 | |
|
| | 464 | | private void SetMusicVideoProperties(BaseItemDto dto, MusicVideo item) |
| | 465 | | { |
| 0 | 466 | | if (!string.IsNullOrEmpty(item.Album)) |
| | 467 | | { |
| 0 | 468 | | var parentAlbumIds = _libraryManager.GetItemIds(new InternalItemsQuery |
| 0 | 469 | | { |
| 0 | 470 | | IncludeItemTypes = new[] { BaseItemKind.MusicAlbum }, |
| 0 | 471 | | Name = item.Album, |
| 0 | 472 | | Limit = 1 |
| 0 | 473 | | }); |
| | 474 | |
|
| 0 | 475 | | if (parentAlbumIds.Count > 0) |
| | 476 | | { |
| 0 | 477 | | dto.AlbumId = parentAlbumIds[0]; |
| | 478 | | } |
| | 479 | | } |
| | 480 | |
|
| 0 | 481 | | dto.Album = item.Album; |
| 0 | 482 | | } |
| | 483 | |
|
| | 484 | | private string[] GetImageTags(BaseItem item, List<ItemImageInfo> images) |
| | 485 | | { |
| 9 | 486 | | return images |
| 9 | 487 | | .Select(p => GetImageCacheTag(item, p)) |
| 9 | 488 | | .Where(i => i is not null) |
| 9 | 489 | | .ToArray()!; // null values got filtered out |
| | 490 | | } |
| | 491 | |
|
| | 492 | | private string? GetImageCacheTag(BaseItem item, ItemImageInfo image) |
| | 493 | | { |
| | 494 | | try |
| | 495 | | { |
| 0 | 496 | | return _imageProcessor.GetImageCacheTag(item, image); |
| | 497 | | } |
| 0 | 498 | | catch (Exception ex) |
| | 499 | | { |
| 0 | 500 | | _logger.LogError(ex, "Error getting {ImageType} image info for {Path}", image.Type, image.Path); |
| 0 | 501 | | return null; |
| | 502 | | } |
| 0 | 503 | | } |
| | 504 | |
|
| | 505 | | /// <summary> |
| | 506 | | /// Attaches People DTO's to a DTOBaseItem. |
| | 507 | | /// </summary> |
| | 508 | | /// <param name="dto">The dto.</param> |
| | 509 | | /// <param name="item">The item.</param> |
| | 510 | | /// <param name="user">The requesting user.</param> |
| | 511 | | private void AttachPeople(BaseItemDto dto, BaseItem item, User? user = null) |
| | 512 | | { |
| | 513 | | // Ordering by person type to ensure actors and artists are at the front. |
| | 514 | | // This is taking advantage of the fact that they both begin with A |
| | 515 | | // This should be improved in the future |
| 6 | 516 | | var people = _libraryManager.GetPeople(item).OrderBy(i => i.SortOrder ?? int.MaxValue) |
| 6 | 517 | | .ThenBy(i => |
| 6 | 518 | | { |
| 6 | 519 | | if (i.IsType(PersonKind.Actor)) |
| 6 | 520 | | { |
| 6 | 521 | | return 0; |
| 6 | 522 | | } |
| 6 | 523 | |
|
| 6 | 524 | | if (i.IsType(PersonKind.GuestStar)) |
| 6 | 525 | | { |
| 6 | 526 | | return 1; |
| 6 | 527 | | } |
| 6 | 528 | |
|
| 6 | 529 | | if (i.IsType(PersonKind.Director)) |
| 6 | 530 | | { |
| 6 | 531 | | return 2; |
| 6 | 532 | | } |
| 6 | 533 | |
|
| 6 | 534 | | if (i.IsType(PersonKind.Writer)) |
| 6 | 535 | | { |
| 6 | 536 | | return 3; |
| 6 | 537 | | } |
| 6 | 538 | |
|
| 6 | 539 | | if (i.IsType(PersonKind.Producer)) |
| 6 | 540 | | { |
| 6 | 541 | | return 4; |
| 6 | 542 | | } |
| 6 | 543 | |
|
| 6 | 544 | | if (i.IsType(PersonKind.Composer)) |
| 6 | 545 | | { |
| 6 | 546 | | return 4; |
| 6 | 547 | | } |
| 6 | 548 | |
|
| 6 | 549 | | return 10; |
| 6 | 550 | | }) |
| 6 | 551 | | .ToList(); |
| | 552 | |
|
| 6 | 553 | | var list = new List<BaseItemPerson>(); |
| | 554 | |
|
| 6 | 555 | | Dictionary<string, Person> dictionary = people.Select(p => p.Name) |
| 6 | 556 | | .Distinct(StringComparer.OrdinalIgnoreCase).Select(c => |
| 6 | 557 | | { |
| 6 | 558 | | try |
| 6 | 559 | | { |
| 6 | 560 | | return _libraryManager.GetPerson(c); |
| 6 | 561 | | } |
| 6 | 562 | | catch (Exception ex) |
| 6 | 563 | | { |
| 6 | 564 | | _logger.LogError(ex, "Error getting person {Name}", c); |
| 6 | 565 | | return null; |
| 6 | 566 | | } |
| 6 | 567 | | }).Where(i => i is not null) |
| 6 | 568 | | .Where(i => user is null || i!.IsVisible(user)) |
| 6 | 569 | | .DistinctBy(x => x!.Name, StringComparer.OrdinalIgnoreCase) |
| 6 | 570 | | .ToDictionary(i => i!.Name, StringComparer.OrdinalIgnoreCase)!; // null values got filtered out |
| | 571 | |
|
| 12 | 572 | | for (var i = 0; i < people.Count; i++) |
| | 573 | | { |
| 0 | 574 | | var person = people[i]; |
| | 575 | |
|
| 0 | 576 | | var baseItemPerson = new BaseItemPerson |
| 0 | 577 | | { |
| 0 | 578 | | Name = person.Name, |
| 0 | 579 | | Role = person.Role, |
| 0 | 580 | | Type = person.Type |
| 0 | 581 | | }; |
| | 582 | |
|
| 0 | 583 | | if (dictionary.TryGetValue(person.Name, out Person? entity)) |
| | 584 | | { |
| 0 | 585 | | baseItemPerson.PrimaryImageTag = GetTagAndFillBlurhash(dto, entity, ImageType.Primary); |
| 0 | 586 | | baseItemPerson.Id = entity.Id; |
| 0 | 587 | | if (dto.ImageBlurHashes is not null) |
| | 588 | | { |
| | 589 | | // Only add BlurHash for the person's image. |
| 0 | 590 | | baseItemPerson.ImageBlurHashes = []; |
| 0 | 591 | | foreach (var (imageType, blurHash) in dto.ImageBlurHashes) |
| | 592 | | { |
| 0 | 593 | | if (blurHash is not null) |
| | 594 | | { |
| 0 | 595 | | baseItemPerson.ImageBlurHashes[imageType] = []; |
| 0 | 596 | | foreach (var (imageId, blurHashValue) in blurHash) |
| | 597 | | { |
| 0 | 598 | | if (string.Equals(baseItemPerson.PrimaryImageTag, imageId, StringComparison.OrdinalI |
| | 599 | | { |
| 0 | 600 | | baseItemPerson.ImageBlurHashes[imageType][imageId] = blurHashValue; |
| | 601 | | } |
| | 602 | | } |
| | 603 | | } |
| | 604 | | } |
| | 605 | | } |
| | 606 | |
|
| 0 | 607 | | list.Add(baseItemPerson); |
| | 608 | | } |
| | 609 | | } |
| | 610 | |
|
| 6 | 611 | | dto.People = list.ToArray(); |
| 6 | 612 | | } |
| | 613 | |
|
| | 614 | | /// <summary> |
| | 615 | | /// Attaches the studios. |
| | 616 | | /// </summary> |
| | 617 | | /// <param name="dto">The dto.</param> |
| | 618 | | /// <param name="item">The item.</param> |
| | 619 | | private void AttachStudios(BaseItemDto dto, BaseItem item) |
| | 620 | | { |
| 6 | 621 | | dto.Studios = item.Studios |
| 6 | 622 | | .Where(i => !string.IsNullOrEmpty(i)) |
| 6 | 623 | | .Select(i => new NameGuidPair |
| 6 | 624 | | { |
| 6 | 625 | | Name = i, |
| 6 | 626 | | Id = _libraryManager.GetStudioId(i) |
| 6 | 627 | | }) |
| 6 | 628 | | .ToArray(); |
| 6 | 629 | | } |
| | 630 | |
|
| | 631 | | private void AttachGenreItems(BaseItemDto dto, BaseItem item) |
| | 632 | | { |
| 6 | 633 | | dto.GenreItems = item.Genres |
| 6 | 634 | | .Where(i => !string.IsNullOrEmpty(i)) |
| 6 | 635 | | .Select(i => new NameGuidPair |
| 6 | 636 | | { |
| 6 | 637 | | Name = i, |
| 6 | 638 | | Id = GetGenreId(i, item) |
| 6 | 639 | | }) |
| 6 | 640 | | .ToArray(); |
| 6 | 641 | | } |
| | 642 | |
|
| | 643 | | private Guid GetGenreId(string name, BaseItem owner) |
| | 644 | | { |
| 0 | 645 | | if (owner is IHasMusicGenres) |
| | 646 | | { |
| 0 | 647 | | return _libraryManager.GetMusicGenreId(name); |
| | 648 | | } |
| | 649 | |
|
| 0 | 650 | | return _libraryManager.GetGenreId(name); |
| | 651 | | } |
| | 652 | |
|
| | 653 | | private string? GetTagAndFillBlurhash(BaseItemDto dto, BaseItem item, ImageType imageType, int imageIndex = 0) |
| | 654 | | { |
| 0 | 655 | | var image = item.GetImageInfo(imageType, imageIndex); |
| 0 | 656 | | if (image is not null) |
| | 657 | | { |
| 0 | 658 | | return GetTagAndFillBlurhash(dto, item, image); |
| | 659 | | } |
| | 660 | |
|
| 0 | 661 | | return null; |
| | 662 | | } |
| | 663 | |
|
| | 664 | | private string? GetTagAndFillBlurhash(BaseItemDto dto, BaseItem item, ItemImageInfo image) |
| | 665 | | { |
| 0 | 666 | | var tag = GetImageCacheTag(item, image); |
| 0 | 667 | | if (tag is null) |
| | 668 | | { |
| 0 | 669 | | return null; |
| | 670 | | } |
| | 671 | |
|
| 0 | 672 | | if (!string.IsNullOrEmpty(image.BlurHash)) |
| | 673 | | { |
| 0 | 674 | | dto.ImageBlurHashes ??= []; |
| | 675 | |
|
| 0 | 676 | | if (!dto.ImageBlurHashes.TryGetValue(image.Type, out var value)) |
| | 677 | | { |
| 0 | 678 | | value = []; |
| 0 | 679 | | dto.ImageBlurHashes[image.Type] = value; |
| | 680 | | } |
| | 681 | |
|
| 0 | 682 | | value[tag] = image.BlurHash; |
| | 683 | | } |
| | 684 | |
|
| 0 | 685 | | return tag; |
| | 686 | | } |
| | 687 | |
|
| | 688 | | private string[] GetTagsAndFillBlurhashes(BaseItemDto dto, BaseItem item, ImageType imageType, int limit) |
| | 689 | | { |
| 9 | 690 | | return GetTagsAndFillBlurhashes(dto, item, imageType, item.GetImages(imageType).Take(limit).ToList()); |
| | 691 | | } |
| | 692 | |
|
| | 693 | | private string[] GetTagsAndFillBlurhashes(BaseItemDto dto, BaseItem item, ImageType imageType, List<ItemImageInf |
| | 694 | | { |
| 9 | 695 | | var tags = GetImageTags(item, images); |
| 9 | 696 | | var hashes = new Dictionary<string, string>(); |
| 18 | 697 | | for (int i = 0; i < images.Count; i++) |
| | 698 | | { |
| 0 | 699 | | var img = images[i]; |
| 0 | 700 | | if (!string.IsNullOrEmpty(img.BlurHash)) |
| | 701 | | { |
| 0 | 702 | | var tag = tags[i]; |
| 0 | 703 | | hashes[tag] = img.BlurHash; |
| | 704 | | } |
| | 705 | | } |
| | 706 | |
|
| 9 | 707 | | if (hashes.Count > 0) |
| | 708 | | { |
| 0 | 709 | | dto.ImageBlurHashes ??= []; |
| | 710 | |
|
| 0 | 711 | | dto.ImageBlurHashes[imageType] = hashes; |
| | 712 | | } |
| | 713 | |
|
| 9 | 714 | | return tags; |
| | 715 | | } |
| | 716 | |
|
| | 717 | | /// <summary> |
| | 718 | | /// Sets simple property values on a DTOBaseItem. |
| | 719 | | /// </summary> |
| | 720 | | /// <param name="dto">The dto.</param> |
| | 721 | | /// <param name="item">The item.</param> |
| | 722 | | /// <param name="owner">The owner.</param> |
| | 723 | | /// <param name="options">The options.</param> |
| | 724 | | private void AttachBasicFields(BaseItemDto dto, BaseItem item, BaseItem? owner, DtoOptions options) |
| | 725 | | { |
| 9 | 726 | | if (options.ContainsField(ItemFields.DateCreated)) |
| | 727 | | { |
| 6 | 728 | | dto.DateCreated = item.DateCreated; |
| | 729 | | } |
| | 730 | |
|
| 9 | 731 | | if (options.ContainsField(ItemFields.Settings)) |
| | 732 | | { |
| 6 | 733 | | dto.LockedFields = item.LockedFields; |
| 6 | 734 | | dto.LockData = item.IsLocked; |
| 6 | 735 | | dto.ForcedSortName = item.ForcedSortName; |
| | 736 | | } |
| | 737 | |
|
| 9 | 738 | | dto.Container = item.Container; |
| 9 | 739 | | dto.EndDate = item.EndDate; |
| | 740 | |
|
| 9 | 741 | | if (options.ContainsField(ItemFields.ExternalUrls)) |
| | 742 | | { |
| 6 | 743 | | dto.ExternalUrls = _providerManager.GetExternalUrls(item).ToArray(); |
| | 744 | | } |
| | 745 | |
|
| 9 | 746 | | if (options.ContainsField(ItemFields.Tags)) |
| | 747 | | { |
| 6 | 748 | | dto.Tags = item.Tags; |
| | 749 | | } |
| | 750 | |
|
| 9 | 751 | | if (item is IHasAspectRatio hasAspectRatio) |
| | 752 | | { |
| 0 | 753 | | dto.AspectRatio = hasAspectRatio.AspectRatio; |
| | 754 | | } |
| | 755 | |
|
| 9 | 756 | | dto.ImageBlurHashes = []; |
| | 757 | |
|
| 9 | 758 | | var backdropLimit = options.GetImageLimit(ImageType.Backdrop); |
| 9 | 759 | | if (backdropLimit > 0) |
| | 760 | | { |
| 9 | 761 | | dto.BackdropImageTags = GetTagsAndFillBlurhashes(dto, item, ImageType.Backdrop, backdropLimit); |
| | 762 | | } |
| | 763 | |
|
| 9 | 764 | | if (options.ContainsField(ItemFields.Genres)) |
| | 765 | | { |
| 6 | 766 | | dto.Genres = item.Genres; |
| 6 | 767 | | AttachGenreItems(dto, item); |
| | 768 | | } |
| | 769 | |
|
| 9 | 770 | | if (options.EnableImages) |
| | 771 | | { |
| 9 | 772 | | dto.ImageTags = []; |
| | 773 | |
|
| | 774 | | // Prevent implicitly captured closure |
| 9 | 775 | | var currentItem = item; |
| 18 | 776 | | foreach (var image in currentItem.ImageInfos.Where(i => !currentItem.AllowsMultipleImages(i.Type))) |
| | 777 | | { |
| 0 | 778 | | if (options.GetImageLimit(image.Type) > 0) |
| | 779 | | { |
| 0 | 780 | | var tag = GetTagAndFillBlurhash(dto, item, image); |
| | 781 | |
|
| 0 | 782 | | if (tag is not null) |
| | 783 | | { |
| 0 | 784 | | dto.ImageTags[image.Type] = tag; |
| | 785 | | } |
| | 786 | | } |
| | 787 | | } |
| | 788 | | } |
| | 789 | |
|
| 9 | 790 | | dto.Id = item.Id; |
| 9 | 791 | | dto.IndexNumber = item.IndexNumber; |
| 9 | 792 | | dto.ParentIndexNumber = item.ParentIndexNumber; |
| | 793 | |
|
| 9 | 794 | | if (item.IsFolder) |
| | 795 | | { |
| 9 | 796 | | dto.IsFolder = true; |
| | 797 | | } |
| 0 | 798 | | else if (item is IHasMediaSources) |
| | 799 | | { |
| 0 | 800 | | dto.IsFolder = false; |
| | 801 | | } |
| | 802 | |
|
| 9 | 803 | | dto.MediaType = item.MediaType; |
| | 804 | |
|
| 9 | 805 | | if (item is not LiveTvProgram) |
| | 806 | | { |
| 9 | 807 | | dto.LocationType = item.LocationType; |
| | 808 | | } |
| | 809 | |
|
| 9 | 810 | | dto.Audio = item.Audio; |
| | 811 | |
|
| 9 | 812 | | if (options.ContainsField(ItemFields.Settings)) |
| | 813 | | { |
| 6 | 814 | | dto.PreferredMetadataCountryCode = item.PreferredMetadataCountryCode; |
| 6 | 815 | | dto.PreferredMetadataLanguage = item.PreferredMetadataLanguage; |
| | 816 | | } |
| | 817 | |
|
| 9 | 818 | | dto.CriticRating = item.CriticRating; |
| | 819 | |
|
| 9 | 820 | | if (item is IHasDisplayOrder hasDisplayOrder) |
| | 821 | | { |
| 0 | 822 | | dto.DisplayOrder = hasDisplayOrder.DisplayOrder; |
| | 823 | | } |
| | 824 | |
|
| 9 | 825 | | if (item is IHasCollectionType hasCollectionType) |
| | 826 | | { |
| 3 | 827 | | dto.CollectionType = hasCollectionType.CollectionType; |
| | 828 | | } |
| | 829 | |
|
| 9 | 830 | | if (options.ContainsField(ItemFields.RemoteTrailers)) |
| | 831 | | { |
| 6 | 832 | | dto.RemoteTrailers = item.RemoteTrailers; |
| | 833 | | } |
| | 834 | |
|
| 9 | 835 | | dto.Name = item.Name; |
| 9 | 836 | | dto.OfficialRating = item.OfficialRating; |
| | 837 | |
|
| 9 | 838 | | if (options.ContainsField(ItemFields.Overview)) |
| | 839 | | { |
| 6 | 840 | | dto.Overview = item.Overview; |
| | 841 | | } |
| | 842 | |
|
| 9 | 843 | | if (options.ContainsField(ItemFields.OriginalTitle)) |
| | 844 | | { |
| 6 | 845 | | dto.OriginalTitle = item.OriginalTitle; |
| | 846 | | } |
| | 847 | |
|
| 9 | 848 | | if (options.ContainsField(ItemFields.ParentId)) |
| | 849 | | { |
| 6 | 850 | | dto.ParentId = item.DisplayParentId; |
| | 851 | | } |
| | 852 | |
|
| 9 | 853 | | AddInheritedImages(dto, item, options, owner); |
| | 854 | |
|
| 9 | 855 | | if (options.ContainsField(ItemFields.Path)) |
| | 856 | | { |
| 6 | 857 | | dto.Path = GetMappedPath(item, owner); |
| | 858 | | } |
| | 859 | |
|
| 9 | 860 | | if (options.ContainsField(ItemFields.EnableMediaSourceDisplay)) |
| | 861 | | { |
| 6 | 862 | | dto.EnableMediaSourceDisplay = item.EnableMediaSourceDisplay; |
| | 863 | | } |
| | 864 | |
|
| 9 | 865 | | dto.PremiereDate = item.PremiereDate; |
| 9 | 866 | | dto.ProductionYear = item.ProductionYear; |
| | 867 | |
|
| 9 | 868 | | if (options.ContainsField(ItemFields.ProviderIds)) |
| | 869 | | { |
| 6 | 870 | | dto.ProviderIds = item.ProviderIds; |
| | 871 | | } |
| | 872 | |
|
| 9 | 873 | | dto.RunTimeTicks = item.RunTimeTicks; |
| | 874 | |
|
| 9 | 875 | | if (options.ContainsField(ItemFields.SortName)) |
| | 876 | | { |
| 6 | 877 | | dto.SortName = item.SortName; |
| | 878 | | } |
| | 879 | |
|
| 9 | 880 | | if (options.ContainsField(ItemFields.CustomRating)) |
| | 881 | | { |
| 6 | 882 | | dto.CustomRating = item.CustomRating; |
| | 883 | | } |
| | 884 | |
|
| 9 | 885 | | if (options.ContainsField(ItemFields.Taglines)) |
| | 886 | | { |
| 6 | 887 | | if (!string.IsNullOrEmpty(item.Tagline)) |
| | 888 | | { |
| 0 | 889 | | dto.Taglines = new string[] { item.Tagline }; |
| | 890 | | } |
| | 891 | |
|
| 6 | 892 | | dto.Taglines ??= Array.Empty<string>(); |
| | 893 | | } |
| | 894 | |
|
| 9 | 895 | | dto.Type = item.GetBaseItemKind(); |
| 9 | 896 | | if ((item.CommunityRating ?? 0) > 0) |
| | 897 | | { |
| 0 | 898 | | dto.CommunityRating = item.CommunityRating; |
| | 899 | | } |
| | 900 | |
|
| 9 | 901 | | if (item is ISupportsPlaceHolders supportsPlaceHolders && supportsPlaceHolders.IsPlaceHolder) |
| | 902 | | { |
| 0 | 903 | | dto.IsPlaceHolder = supportsPlaceHolders.IsPlaceHolder; |
| | 904 | | } |
| | 905 | |
|
| 9 | 906 | | if (item.LUFS.HasValue) |
| | 907 | | { |
| | 908 | | // -18 LUFS reference, same as ReplayGain 2.0, compatible with ReplayGain 1.0 |
| 0 | 909 | | dto.NormalizationGain = -18f - item.LUFS; |
| | 910 | | } |
| 9 | 911 | | else if (item.NormalizationGain.HasValue) |
| | 912 | | { |
| 0 | 913 | | dto.NormalizationGain = item.NormalizationGain; |
| | 914 | | } |
| | 915 | |
|
| | 916 | | // Add audio info |
| 9 | 917 | | if (item is Audio audio) |
| | 918 | | { |
| 0 | 919 | | dto.Album = audio.Album; |
| 0 | 920 | | dto.ExtraType = audio.ExtraType; |
| | 921 | |
|
| 0 | 922 | | var albumParent = audio.AlbumEntity; |
| | 923 | |
|
| 0 | 924 | | if (albumParent is not null) |
| | 925 | | { |
| 0 | 926 | | dto.AlbumId = albumParent.Id; |
| 0 | 927 | | dto.AlbumPrimaryImageTag = GetTagAndFillBlurhash(dto, albumParent, ImageType.Primary); |
| | 928 | | } |
| | 929 | |
|
| | 930 | | // if (options.ContainsField(ItemFields.MediaSourceCount)) |
| | 931 | | // { |
| | 932 | | // Songs always have one |
| | 933 | | // } |
| | 934 | | } |
| | 935 | |
|
| 9 | 936 | | if (item is IHasArtist hasArtist) |
| | 937 | | { |
| 0 | 938 | | dto.Artists = hasArtist.Artists; |
| | 939 | |
|
| | 940 | | // var artistItems = _libraryManager.GetArtists(new InternalItemsQuery |
| | 941 | | // { |
| | 942 | | // EnableTotalRecordCount = false, |
| | 943 | | // ItemIds = new[] { item.Id.ToString("N", CultureInfo.InvariantCulture) } |
| | 944 | | // }); |
| | 945 | |
|
| | 946 | | // dto.ArtistItems = artistItems.Items |
| | 947 | | // .Select(i => |
| | 948 | | // { |
| | 949 | | // var artist = i.Item1; |
| | 950 | | // return new NameIdPair |
| | 951 | | // { |
| | 952 | | // Name = artist.Name, |
| | 953 | | // Id = artist.Id.ToString("N", CultureInfo.InvariantCulture) |
| | 954 | | // }; |
| | 955 | | // }) |
| | 956 | | // .ToList(); |
| | 957 | |
|
| | 958 | | // Include artists that are not in the database yet, e.g., just added via metadata editor |
| | 959 | | // var foundArtists = artistItems.Items.Select(i => i.Item1.Name).ToList(); |
| 0 | 960 | | dto.ArtistItems = hasArtist.Artists |
| 0 | 961 | | // .Except(foundArtists, new DistinctNameComparer()) |
| 0 | 962 | | .Select(i => |
| 0 | 963 | | { |
| 0 | 964 | | // This should not be necessary but we're seeing some cases of it |
| 0 | 965 | | if (string.IsNullOrEmpty(i)) |
| 0 | 966 | | { |
| 0 | 967 | | return null; |
| 0 | 968 | | } |
| 0 | 969 | |
|
| 0 | 970 | | var artist = _libraryManager.GetArtist(i, new DtoOptions(false) |
| 0 | 971 | | { |
| 0 | 972 | | EnableImages = false |
| 0 | 973 | | }); |
| 0 | 974 | | if (artist is not null) |
| 0 | 975 | | { |
| 0 | 976 | | return new NameGuidPair |
| 0 | 977 | | { |
| 0 | 978 | | Name = artist.Name, |
| 0 | 979 | | Id = artist.Id |
| 0 | 980 | | }; |
| 0 | 981 | | } |
| 0 | 982 | |
|
| 0 | 983 | | return null; |
| 0 | 984 | | }).Where(i => i is not null).ToArray(); |
| | 985 | | } |
| | 986 | |
|
| 9 | 987 | | if (item is IHasAlbumArtist hasAlbumArtist) |
| | 988 | | { |
| 0 | 989 | | dto.AlbumArtist = hasAlbumArtist.AlbumArtists.FirstOrDefault(); |
| | 990 | |
|
| | 991 | | // var artistItems = _libraryManager.GetAlbumArtists(new InternalItemsQuery |
| | 992 | | // { |
| | 993 | | // EnableTotalRecordCount = false, |
| | 994 | | // ItemIds = new[] { item.Id.ToString("N", CultureInfo.InvariantCulture) } |
| | 995 | | // }); |
| | 996 | |
|
| | 997 | | // dto.AlbumArtists = artistItems.Items |
| | 998 | | // .Select(i => |
| | 999 | | // { |
| | 1000 | | // var artist = i.Item1; |
| | 1001 | | // return new NameIdPair |
| | 1002 | | // { |
| | 1003 | | // Name = artist.Name, |
| | 1004 | | // Id = artist.Id.ToString("N", CultureInfo.InvariantCulture) |
| | 1005 | | // }; |
| | 1006 | | // }) |
| | 1007 | | // .ToList(); |
| | 1008 | |
|
| 0 | 1009 | | dto.AlbumArtists = hasAlbumArtist.AlbumArtists |
| 0 | 1010 | | // .Except(foundArtists, new DistinctNameComparer()) |
| 0 | 1011 | | .Select(i => |
| 0 | 1012 | | { |
| 0 | 1013 | | // This should not be necessary but we're seeing some cases of it |
| 0 | 1014 | | if (string.IsNullOrEmpty(i)) |
| 0 | 1015 | | { |
| 0 | 1016 | | return null; |
| 0 | 1017 | | } |
| 0 | 1018 | |
|
| 0 | 1019 | | var artist = _libraryManager.GetArtist(i, new DtoOptions(false) |
| 0 | 1020 | | { |
| 0 | 1021 | | EnableImages = false |
| 0 | 1022 | | }); |
| 0 | 1023 | | if (artist is not null) |
| 0 | 1024 | | { |
| 0 | 1025 | | return new NameGuidPair |
| 0 | 1026 | | { |
| 0 | 1027 | | Name = artist.Name, |
| 0 | 1028 | | Id = artist.Id |
| 0 | 1029 | | }; |
| 0 | 1030 | | } |
| 0 | 1031 | |
|
| 0 | 1032 | | return null; |
| 0 | 1033 | | }).Where(i => i is not null).ToArray(); |
| | 1034 | | } |
| | 1035 | |
|
| | 1036 | | // Add video info |
| 9 | 1037 | | if (item is Video video) |
| | 1038 | | { |
| 0 | 1039 | | dto.VideoType = video.VideoType; |
| 0 | 1040 | | dto.Video3DFormat = video.Video3DFormat; |
| 0 | 1041 | | dto.IsoType = video.IsoType; |
| | 1042 | |
|
| 0 | 1043 | | if (video.HasSubtitles) |
| | 1044 | | { |
| 0 | 1045 | | dto.HasSubtitles = video.HasSubtitles; |
| | 1046 | | } |
| | 1047 | |
|
| 0 | 1048 | | if (video.AdditionalParts.Length != 0) |
| | 1049 | | { |
| 0 | 1050 | | dto.PartCount = video.AdditionalParts.Length + 1; |
| | 1051 | | } |
| | 1052 | |
|
| 0 | 1053 | | if (options.ContainsField(ItemFields.MediaSourceCount)) |
| | 1054 | | { |
| 0 | 1055 | | var mediaSourceCount = video.MediaSourceCount; |
| 0 | 1056 | | if (mediaSourceCount != 1) |
| | 1057 | | { |
| 0 | 1058 | | dto.MediaSourceCount = mediaSourceCount; |
| | 1059 | | } |
| | 1060 | | } |
| | 1061 | |
|
| 0 | 1062 | | if (options.ContainsField(ItemFields.Chapters)) |
| | 1063 | | { |
| 0 | 1064 | | dto.Chapters = _chapterRepository.GetChapters(item.Id).ToList(); |
| | 1065 | | } |
| | 1066 | |
|
| 0 | 1067 | | if (options.ContainsField(ItemFields.Trickplay)) |
| | 1068 | | { |
| 0 | 1069 | | dto.Trickplay = _trickplayManager.GetTrickplayManifest(item).GetAwaiter().GetResult(); |
| | 1070 | | } |
| | 1071 | |
|
| 0 | 1072 | | dto.ExtraType = video.ExtraType; |
| | 1073 | | } |
| | 1074 | |
|
| 9 | 1075 | | if (options.ContainsField(ItemFields.MediaStreams)) |
| | 1076 | | { |
| | 1077 | | // Add VideoInfo |
| 6 | 1078 | | if (item is IHasMediaSources) |
| | 1079 | | { |
| | 1080 | | MediaStream[] mediaStreams; |
| | 1081 | |
|
| 0 | 1082 | | if (dto.MediaSources is not null && dto.MediaSources.Length > 0) |
| | 1083 | | { |
| 0 | 1084 | | if (item.SourceType == SourceType.Channel) |
| | 1085 | | { |
| 0 | 1086 | | mediaStreams = dto.MediaSources[0].MediaStreams.ToArray(); |
| | 1087 | | } |
| | 1088 | | else |
| | 1089 | | { |
| 0 | 1090 | | string id = item.Id.ToString("N", CultureInfo.InvariantCulture); |
| 0 | 1091 | | mediaStreams = dto.MediaSources.Where(i => string.Equals(i.Id, id, StringComparison.OrdinalI |
| 0 | 1092 | | .SelectMany(i => i.MediaStreams) |
| 0 | 1093 | | .ToArray(); |
| | 1094 | | } |
| | 1095 | | } |
| | 1096 | | else |
| | 1097 | | { |
| 0 | 1098 | | mediaStreams = _mediaSourceManager.GetStaticMediaSources(item, true)[0].MediaStreams.ToArray(); |
| | 1099 | | } |
| | 1100 | |
|
| 0 | 1101 | | dto.MediaStreams = mediaStreams; |
| | 1102 | | } |
| | 1103 | | } |
| | 1104 | |
|
| 9 | 1105 | | BaseItem[]? allExtras = null; |
| | 1106 | |
|
| 9 | 1107 | | if (options.ContainsField(ItemFields.SpecialFeatureCount)) |
| | 1108 | | { |
| 6 | 1109 | | allExtras = item.GetExtras().ToArray(); |
| 6 | 1110 | | dto.SpecialFeatureCount = allExtras.Count(i => i.ExtraType.HasValue && BaseItem.DisplayExtraTypes.Contai |
| | 1111 | | } |
| | 1112 | |
|
| 9 | 1113 | | if (options.ContainsField(ItemFields.LocalTrailerCount)) |
| | 1114 | | { |
| 6 | 1115 | | if (item is IHasTrailers hasTrailers) |
| | 1116 | | { |
| 0 | 1117 | | dto.LocalTrailerCount = hasTrailers.LocalTrailers.Count; |
| | 1118 | | } |
| | 1119 | | else |
| | 1120 | | { |
| 6 | 1121 | | dto.LocalTrailerCount = (allExtras ?? item.GetExtras()).Count(i => i.ExtraType == ExtraType.Trailer) |
| | 1122 | | } |
| | 1123 | | } |
| | 1124 | |
|
| | 1125 | | // Add EpisodeInfo |
| 9 | 1126 | | if (item is Episode episode) |
| | 1127 | | { |
| 0 | 1128 | | dto.IndexNumberEnd = episode.IndexNumberEnd; |
| 0 | 1129 | | dto.SeriesName = episode.SeriesName; |
| | 1130 | |
|
| 0 | 1131 | | if (options.ContainsField(ItemFields.SpecialEpisodeNumbers)) |
| | 1132 | | { |
| 0 | 1133 | | dto.AirsAfterSeasonNumber = episode.AirsAfterSeasonNumber; |
| 0 | 1134 | | dto.AirsBeforeEpisodeNumber = episode.AirsBeforeEpisodeNumber; |
| 0 | 1135 | | dto.AirsBeforeSeasonNumber = episode.AirsBeforeSeasonNumber; |
| | 1136 | | } |
| | 1137 | |
|
| 0 | 1138 | | dto.SeasonName = episode.SeasonName; |
| 0 | 1139 | | dto.SeasonId = episode.SeasonId; |
| 0 | 1140 | | dto.SeriesId = episode.SeriesId; |
| | 1141 | |
|
| 0 | 1142 | | Series? episodeSeries = null; |
| | 1143 | |
|
| | 1144 | | // this block will add the series poster for episodes without a poster |
| | 1145 | | // TODO maybe remove the if statement entirely |
| | 1146 | | // if (options.ContainsField(ItemFields.SeriesPrimaryImage)) |
| | 1147 | | { |
| 0 | 1148 | | episodeSeries ??= episode.Series; |
| 0 | 1149 | | if (episodeSeries is not null) |
| | 1150 | | { |
| 0 | 1151 | | dto.SeriesPrimaryImageTag = GetTagAndFillBlurhash(dto, episodeSeries, ImageType.Primary); |
| 0 | 1152 | | if (dto.ImageTags is null || !dto.ImageTags.ContainsKey(ImageType.Primary)) |
| | 1153 | | { |
| 0 | 1154 | | AttachPrimaryImageAspectRatio(dto, episodeSeries); |
| | 1155 | | } |
| | 1156 | | } |
| | 1157 | | } |
| | 1158 | |
|
| 0 | 1159 | | if (options.ContainsField(ItemFields.SeriesStudio)) |
| | 1160 | | { |
| 0 | 1161 | | episodeSeries ??= episode.Series; |
| 0 | 1162 | | if (episodeSeries is not null) |
| | 1163 | | { |
| 0 | 1164 | | dto.SeriesStudio = episodeSeries.Studios.FirstOrDefault(); |
| | 1165 | | } |
| | 1166 | | } |
| | 1167 | | } |
| | 1168 | |
|
| | 1169 | | // Add SeriesInfo |
| | 1170 | | Series? series; |
| 9 | 1171 | | if (item is Series tmp) |
| | 1172 | | { |
| 0 | 1173 | | series = tmp; |
| 0 | 1174 | | dto.AirDays = series.AirDays; |
| 0 | 1175 | | dto.AirTime = series.AirTime; |
| 0 | 1176 | | dto.Status = series.Status?.ToString(); |
| | 1177 | | } |
| | 1178 | |
|
| | 1179 | | // Add SeasonInfo |
| 9 | 1180 | | if (item is Season season) |
| | 1181 | | { |
| 0 | 1182 | | dto.SeriesName = season.SeriesName; |
| 0 | 1183 | | dto.SeriesId = season.SeriesId; |
| | 1184 | |
|
| 0 | 1185 | | series = null; |
| | 1186 | |
|
| 0 | 1187 | | if (options.ContainsField(ItemFields.SeriesStudio)) |
| | 1188 | | { |
| 0 | 1189 | | series ??= season.Series; |
| 0 | 1190 | | if (series is not null) |
| | 1191 | | { |
| 0 | 1192 | | dto.SeriesStudio = series.Studios.FirstOrDefault(); |
| | 1193 | | } |
| | 1194 | | } |
| | 1195 | |
|
| | 1196 | | // this block will add the series poster for seasons without a poster |
| | 1197 | | // TODO maybe remove the if statement entirely |
| | 1198 | | // if (options.ContainsField(ItemFields.SeriesPrimaryImage)) |
| | 1199 | | { |
| 0 | 1200 | | series ??= season.Series; |
| 0 | 1201 | | if (series is not null) |
| | 1202 | | { |
| 0 | 1203 | | dto.SeriesPrimaryImageTag = GetTagAndFillBlurhash(dto, series, ImageType.Primary); |
| 0 | 1204 | | if (dto.ImageTags is null || !dto.ImageTags.ContainsKey(ImageType.Primary)) |
| | 1205 | | { |
| 0 | 1206 | | AttachPrimaryImageAspectRatio(dto, series); |
| | 1207 | | } |
| | 1208 | | } |
| | 1209 | | } |
| | 1210 | | } |
| | 1211 | |
|
| 9 | 1212 | | if (item is MusicVideo musicVideo) |
| | 1213 | | { |
| 0 | 1214 | | SetMusicVideoProperties(dto, musicVideo); |
| | 1215 | | } |
| | 1216 | |
|
| 9 | 1217 | | if (item is Book book) |
| | 1218 | | { |
| 0 | 1219 | | SetBookProperties(dto, book); |
| | 1220 | | } |
| | 1221 | |
|
| 9 | 1222 | | if (options.ContainsField(ItemFields.ProductionLocations)) |
| | 1223 | | { |
| 6 | 1224 | | if (item.ProductionLocations.Length > 0 || item is Movie) |
| | 1225 | | { |
| 0 | 1226 | | dto.ProductionLocations = item.ProductionLocations; |
| | 1227 | | } |
| | 1228 | | } |
| | 1229 | |
|
| 9 | 1230 | | if (options.ContainsField(ItemFields.Width)) |
| | 1231 | | { |
| 6 | 1232 | | var width = item.Width; |
| 6 | 1233 | | if (width > 0) |
| | 1234 | | { |
| 0 | 1235 | | dto.Width = width; |
| | 1236 | | } |
| | 1237 | | } |
| | 1238 | |
|
| 9 | 1239 | | if (options.ContainsField(ItemFields.Height)) |
| | 1240 | | { |
| 6 | 1241 | | var height = item.Height; |
| 6 | 1242 | | if (height > 0) |
| | 1243 | | { |
| 0 | 1244 | | dto.Height = height; |
| | 1245 | | } |
| | 1246 | | } |
| | 1247 | |
|
| 9 | 1248 | | if (options.ContainsField(ItemFields.IsHD)) |
| | 1249 | | { |
| | 1250 | | // Compatibility |
| 6 | 1251 | | if (item.IsHD) |
| | 1252 | | { |
| 0 | 1253 | | dto.IsHD = true; |
| | 1254 | | } |
| | 1255 | | } |
| | 1256 | |
|
| 9 | 1257 | | if (item is Photo photo) |
| | 1258 | | { |
| 0 | 1259 | | SetPhotoProperties(dto, photo); |
| | 1260 | | } |
| | 1261 | |
|
| 9 | 1262 | | dto.ChannelId = item.ChannelId; |
| | 1263 | |
|
| 9 | 1264 | | if (item.SourceType == SourceType.Channel) |
| | 1265 | | { |
| 0 | 1266 | | var channel = _libraryManager.GetItemById(item.ChannelId); |
| 0 | 1267 | | if (channel is not null) |
| | 1268 | | { |
| 0 | 1269 | | dto.ChannelName = channel.Name; |
| | 1270 | | } |
| | 1271 | | } |
| 9 | 1272 | | } |
| | 1273 | |
|
| | 1274 | | private BaseItem? GetImageDisplayParent(BaseItem currentItem, BaseItem originalItem) |
| | 1275 | | { |
| 0 | 1276 | | if (currentItem is MusicAlbum musicAlbum) |
| | 1277 | | { |
| 0 | 1278 | | var artist = musicAlbum.GetMusicArtist(new DtoOptions(false)); |
| 0 | 1279 | | if (artist is not null) |
| | 1280 | | { |
| 0 | 1281 | | return artist; |
| | 1282 | | } |
| | 1283 | | } |
| | 1284 | |
|
| 0 | 1285 | | var parent = currentItem.DisplayParent ?? currentItem.GetOwner() ?? currentItem.GetParent(); |
| | 1286 | |
|
| 0 | 1287 | | if (parent is null && originalItem is not UserRootFolder && originalItem is not UserView && originalItem is |
| | 1288 | | { |
| 0 | 1289 | | parent = _libraryManager.GetCollectionFolders(originalItem).FirstOrDefault(); |
| | 1290 | | } |
| | 1291 | |
|
| 0 | 1292 | | return parent; |
| | 1293 | | } |
| | 1294 | |
|
| | 1295 | | private void AddInheritedImages(BaseItemDto dto, BaseItem item, DtoOptions options, BaseItem? owner) |
| | 1296 | | { |
| 9 | 1297 | | if (!item.SupportsInheritedParentImages) |
| | 1298 | | { |
| 9 | 1299 | | return; |
| | 1300 | | } |
| | 1301 | |
|
| 0 | 1302 | | var logoLimit = options.GetImageLimit(ImageType.Logo); |
| 0 | 1303 | | var artLimit = options.GetImageLimit(ImageType.Art); |
| 0 | 1304 | | var thumbLimit = options.GetImageLimit(ImageType.Thumb); |
| 0 | 1305 | | var backdropLimit = options.GetImageLimit(ImageType.Backdrop); |
| | 1306 | |
|
| | 1307 | | // For now. Emby apps are not using this |
| 0 | 1308 | | artLimit = 0; |
| | 1309 | |
|
| 0 | 1310 | | if (logoLimit == 0 && artLimit == 0 && thumbLimit == 0 && backdropLimit == 0) |
| | 1311 | | { |
| 0 | 1312 | | return; |
| | 1313 | | } |
| | 1314 | |
|
| 0 | 1315 | | BaseItem? parent = null; |
| 0 | 1316 | | var isFirst = true; |
| | 1317 | |
|
| 0 | 1318 | | var imageTags = dto.ImageTags; |
| | 1319 | |
|
| 0 | 1320 | | while ((!(imageTags is not null && imageTags.ContainsKey(ImageType.Logo)) && logoLimit > 0) |
| 0 | 1321 | | || (!(imageTags is not null && imageTags.ContainsKey(ImageType.Art)) && artLimit > 0) |
| 0 | 1322 | | || (!(imageTags is not null && imageTags.ContainsKey(ImageType.Thumb)) && thumbLimit > 0) |
| 0 | 1323 | | || parent is Series) |
| | 1324 | | { |
| 0 | 1325 | | parent ??= isFirst ? GetImageDisplayParent(item, item) ?? owner : parent; |
| 0 | 1326 | | if (parent is null) |
| | 1327 | | { |
| | 1328 | | break; |
| | 1329 | | } |
| | 1330 | |
|
| 0 | 1331 | | var allImages = parent.ImageInfos; |
| | 1332 | |
|
| 0 | 1333 | | if (logoLimit > 0 && !(imageTags is not null && imageTags.ContainsKey(ImageType.Logo)) && dto.ParentLogo |
| | 1334 | | { |
| 0 | 1335 | | var image = allImages.FirstOrDefault(i => i.Type == ImageType.Logo); |
| | 1336 | |
|
| 0 | 1337 | | if (image is not null) |
| | 1338 | | { |
| 0 | 1339 | | dto.ParentLogoItemId = parent.Id; |
| 0 | 1340 | | dto.ParentLogoImageTag = GetTagAndFillBlurhash(dto, parent, image); |
| | 1341 | | } |
| | 1342 | | } |
| | 1343 | |
|
| 0 | 1344 | | if (artLimit > 0 && !(imageTags is not null && imageTags.ContainsKey(ImageType.Art)) && dto.ParentArtIte |
| | 1345 | | { |
| 0 | 1346 | | var image = allImages.FirstOrDefault(i => i.Type == ImageType.Art); |
| | 1347 | |
|
| 0 | 1348 | | if (image is not null) |
| | 1349 | | { |
| 0 | 1350 | | dto.ParentArtItemId = parent.Id; |
| 0 | 1351 | | dto.ParentArtImageTag = GetTagAndFillBlurhash(dto, parent, image); |
| | 1352 | | } |
| | 1353 | | } |
| | 1354 | |
|
| 0 | 1355 | | if (thumbLimit > 0 && !(imageTags is not null && imageTags.ContainsKey(ImageType.Thumb)) && (dto.ParentT |
| | 1356 | | { |
| 0 | 1357 | | var image = allImages.FirstOrDefault(i => i.Type == ImageType.Thumb); |
| | 1358 | |
|
| 0 | 1359 | | if (image is not null) |
| | 1360 | | { |
| 0 | 1361 | | dto.ParentThumbItemId = parent.Id; |
| 0 | 1362 | | dto.ParentThumbImageTag = GetTagAndFillBlurhash(dto, parent, image); |
| | 1363 | | } |
| | 1364 | | } |
| | 1365 | |
|
| 0 | 1366 | | if (backdropLimit > 0 && !((dto.BackdropImageTags is not null && dto.BackdropImageTags.Length > 0) || (d |
| | 1367 | | { |
| 0 | 1368 | | var images = allImages.Where(i => i.Type == ImageType.Backdrop).Take(backdropLimit).ToList(); |
| | 1369 | |
|
| 0 | 1370 | | if (images.Count > 0) |
| | 1371 | | { |
| 0 | 1372 | | dto.ParentBackdropItemId = parent.Id; |
| 0 | 1373 | | dto.ParentBackdropImageTags = GetTagsAndFillBlurhashes(dto, parent, ImageType.Backdrop, images); |
| | 1374 | | } |
| | 1375 | | } |
| | 1376 | |
|
| 0 | 1377 | | isFirst = false; |
| | 1378 | |
|
| 0 | 1379 | | if (!parent.SupportsInheritedParentImages) |
| | 1380 | | { |
| | 1381 | | break; |
| | 1382 | | } |
| | 1383 | |
|
| 0 | 1384 | | parent = GetImageDisplayParent(parent, item); |
| | 1385 | | } |
| 0 | 1386 | | } |
| | 1387 | |
|
| | 1388 | | private string GetMappedPath(BaseItem item, BaseItem? ownerItem) |
| | 1389 | | { |
| 6 | 1390 | | var path = item.Path; |
| | 1391 | |
|
| 6 | 1392 | | if (item.IsFileProtocol) |
| | 1393 | | { |
| 6 | 1394 | | path = _libraryManager.GetPathAfterNetworkSubstitution(path, ownerItem ?? item); |
| | 1395 | | } |
| | 1396 | |
|
| 6 | 1397 | | return path; |
| | 1398 | | } |
| | 1399 | |
|
| | 1400 | | /// <summary> |
| | 1401 | | /// Attaches the primary image aspect ratio. |
| | 1402 | | /// </summary> |
| | 1403 | | /// <param name="dto">The dto.</param> |
| | 1404 | | /// <param name="item">The item.</param> |
| | 1405 | | public void AttachPrimaryImageAspectRatio(IItemDto dto, BaseItem item) |
| | 1406 | | { |
| 6 | 1407 | | dto.PrimaryImageAspectRatio = GetPrimaryImageAspectRatio(item); |
| 6 | 1408 | | } |
| | 1409 | |
|
| | 1410 | | public double? GetPrimaryImageAspectRatio(BaseItem item) |
| | 1411 | | { |
| 6 | 1412 | | var imageInfo = item.GetImageInfo(ImageType.Primary, 0); |
| | 1413 | |
|
| 6 | 1414 | | if (imageInfo is null) |
| | 1415 | | { |
| 6 | 1416 | | return null; |
| | 1417 | | } |
| | 1418 | |
|
| 0 | 1419 | | if (!imageInfo.IsLocalFile) |
| | 1420 | | { |
| 0 | 1421 | | return item.GetDefaultPrimaryImageAspectRatio(); |
| | 1422 | | } |
| | 1423 | |
|
| | 1424 | | try |
| | 1425 | | { |
| 0 | 1426 | | var size = _imageProcessor.GetImageDimensions(item, imageInfo); |
| 0 | 1427 | | var width = size.Width; |
| 0 | 1428 | | var height = size.Height; |
| 0 | 1429 | | if (width > 0 && height > 0) |
| | 1430 | | { |
| 0 | 1431 | | return (double)width / height; |
| | 1432 | | } |
| 0 | 1433 | | } |
| 0 | 1434 | | catch (Exception ex) |
| | 1435 | | { |
| 0 | 1436 | | _logger.LogError(ex, "Failed to determine primary image aspect ratio for {ImagePath}", imageInfo.Path); |
| 0 | 1437 | | } |
| | 1438 | |
|
| 0 | 1439 | | return item.GetDefaultPrimaryImageAspectRatio(); |
| 0 | 1440 | | } |
| | 1441 | | } |
| | 1442 | | } |