| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Security.Claims; |
| | 4 | | using Jellyfin.Extensions; |
| | 5 | | using MediaBrowser.Controller.Dto; |
| | 6 | | using MediaBrowser.Model.Entities; |
| | 7 | | using MediaBrowser.Model.Querying; |
| | 8 | |
|
| | 9 | | namespace Jellyfin.Api.Extensions; |
| | 10 | |
|
| | 11 | | /// <summary> |
| | 12 | | /// Dto Extensions. |
| | 13 | | /// </summary> |
| | 14 | | public static class DtoExtensions |
| | 15 | | { |
| | 16 | | /// <summary> |
| | 17 | | /// Add additional fields depending on client. |
| | 18 | | /// </summary> |
| | 19 | | /// <remarks> |
| | 20 | | /// Use in place of GetDtoOptions. |
| | 21 | | /// Legacy order: 2. |
| | 22 | | /// </remarks> |
| | 23 | | /// <param name="dtoOptions">DtoOptions object.</param> |
| | 24 | | /// <param name="user">Current claims principal.</param> |
| | 25 | | /// <returns>Modified DtoOptions object.</returns> |
| | 26 | | internal static DtoOptions AddClientFields( |
| | 27 | | this DtoOptions dtoOptions, ClaimsPrincipal user) |
| | 28 | | { |
| 12 | 29 | | string? client = user.GetClient(); |
| | 30 | |
|
| | 31 | | // No client in claim |
| 12 | 32 | | if (string.IsNullOrEmpty(client)) |
| | 33 | | { |
| 0 | 34 | | return dtoOptions; |
| | 35 | | } |
| | 36 | |
|
| 12 | 37 | | if (!dtoOptions.ContainsField(ItemFields.RecursiveItemCount)) |
| | 38 | | { |
| 4 | 39 | | if (client.Contains("kodi", StringComparison.OrdinalIgnoreCase) || |
| 4 | 40 | | client.Contains("wmc", StringComparison.OrdinalIgnoreCase) || |
| 4 | 41 | | client.Contains("media center", StringComparison.OrdinalIgnoreCase) || |
| 4 | 42 | | client.Contains("classic", StringComparison.OrdinalIgnoreCase)) |
| | 43 | | { |
| 0 | 44 | | dtoOptions.Fields = [..dtoOptions.Fields, ItemFields.RecursiveItemCount]; |
| | 45 | | } |
| | 46 | | } |
| | 47 | |
|
| 12 | 48 | | if (!dtoOptions.ContainsField(ItemFields.ChildCount)) |
| | 49 | | { |
| 4 | 50 | | if (client.Contains("kodi", StringComparison.OrdinalIgnoreCase) || |
| 4 | 51 | | client.Contains("wmc", StringComparison.OrdinalIgnoreCase) || |
| 4 | 52 | | client.Contains("media center", StringComparison.OrdinalIgnoreCase) || |
| 4 | 53 | | client.Contains("classic", StringComparison.OrdinalIgnoreCase) || |
| 4 | 54 | | client.Contains("roku", StringComparison.OrdinalIgnoreCase) || |
| 4 | 55 | | client.Contains("samsung", StringComparison.OrdinalIgnoreCase) || |
| 4 | 56 | | client.Contains("androidtv", StringComparison.OrdinalIgnoreCase)) |
| | 57 | | { |
| 0 | 58 | | dtoOptions.Fields = [..dtoOptions.Fields, ItemFields.ChildCount]; |
| | 59 | | } |
| | 60 | | } |
| | 61 | |
|
| 12 | 62 | | return dtoOptions; |
| | 63 | | } |
| | 64 | |
|
| | 65 | | /// <summary> |
| | 66 | | /// Add additional DtoOptions. |
| | 67 | | /// </summary> |
| | 68 | | /// <remarks> |
| | 69 | | /// Converted from IHasDtoOptions. |
| | 70 | | /// Legacy order: 3. |
| | 71 | | /// </remarks> |
| | 72 | | /// <param name="dtoOptions">DtoOptions object.</param> |
| | 73 | | /// <param name="enableImages">Enable images.</param> |
| | 74 | | /// <param name="enableUserData">Enable user data.</param> |
| | 75 | | /// <param name="imageTypeLimit">Image type limit.</param> |
| | 76 | | /// <param name="enableImageTypes">Enable image types.</param> |
| | 77 | | /// <returns>Modified DtoOptions object.</returns> |
| | 78 | | internal static DtoOptions AddAdditionalDtoOptions( |
| | 79 | | this DtoOptions dtoOptions, |
| | 80 | | bool? enableImages, |
| | 81 | | bool? enableUserData, |
| | 82 | | int? imageTypeLimit, |
| | 83 | | IReadOnlyList<ImageType> enableImageTypes) |
| | 84 | | { |
| 4 | 85 | | dtoOptions.EnableImages = enableImages ?? true; |
| | 86 | |
|
| 4 | 87 | | if (imageTypeLimit.HasValue) |
| | 88 | | { |
| 0 | 89 | | dtoOptions.ImageTypeLimit = imageTypeLimit.Value; |
| | 90 | | } |
| | 91 | |
|
| 4 | 92 | | if (enableUserData.HasValue) |
| | 93 | | { |
| 0 | 94 | | dtoOptions.EnableUserData = enableUserData.Value; |
| | 95 | | } |
| | 96 | |
|
| 4 | 97 | | if (enableImageTypes.Count != 0) |
| | 98 | | { |
| 0 | 99 | | dtoOptions.ImageTypes = enableImageTypes; |
| | 100 | | } |
| | 101 | |
|
| 4 | 102 | | return dtoOptions; |
| | 103 | | } |
| | 104 | | } |