| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Linq; |
| | 6 | | using MediaBrowser.Model.Entities; |
| | 7 | | using MediaBrowser.Model.Querying; |
| | 8 | |
|
| | 9 | | namespace MediaBrowser.Controller.Dto |
| | 10 | | { |
| | 11 | | public class DtoOptions |
| | 12 | | { |
| 2 | 13 | | private static readonly ItemFields[] DefaultExcludedFields = new[] |
| 2 | 14 | | { |
| 2 | 15 | | ItemFields.SeasonUserData, |
| 2 | 16 | | ItemFields.RefreshState |
| 2 | 17 | | }; |
| | 18 | |
|
| 2 | 19 | | private static readonly ImageType[] AllImageTypes = Enum.GetValues<ImageType>(); |
| | 20 | |
|
| 2 | 21 | | private static readonly ItemFields[] AllItemFields = Enum.GetValues<ItemFields>() |
| 2 | 22 | | .Except(DefaultExcludedFields) |
| 2 | 23 | | .ToArray(); |
| | 24 | |
|
| | 25 | | public DtoOptions() |
| 711 | 26 | | : this(true) |
| | 27 | | { |
| 711 | 28 | | } |
| | 29 | |
|
| | 30 | | public DtoOptions(bool allFields) |
| | 31 | | { |
| 936 | 32 | | ImageTypeLimit = int.MaxValue; |
| 936 | 33 | | EnableImages = true; |
| 936 | 34 | | EnableUserData = true; |
| 936 | 35 | | AddCurrentProgram = true; |
| | 36 | |
|
| 936 | 37 | | Fields = allFields ? AllItemFields : []; |
| 936 | 38 | | ImageTypes = AllImageTypes; |
| 936 | 39 | | } |
| | 40 | |
|
| | 41 | | public IReadOnlyList<ItemFields> Fields { get; set; } |
| | 42 | |
|
| | 43 | | public IReadOnlyList<ImageType> ImageTypes { get; set; } |
| | 44 | |
|
| | 45 | | public int ImageTypeLimit { get; set; } |
| | 46 | |
|
| | 47 | | public bool EnableImages { get; set; } |
| | 48 | |
|
| | 49 | | public bool AddProgramRecordingInfo { get; set; } |
| | 50 | |
|
| | 51 | | public bool EnableUserData { get; set; } |
| | 52 | |
|
| | 53 | | public bool AddCurrentProgram { get; set; } |
| | 54 | |
|
| | 55 | | public bool ContainsField(ItemFields field) |
| 330 | 56 | | => Fields.Contains(field); |
| | 57 | |
|
| | 58 | | public int GetImageLimit(ImageType type) |
| | 59 | | { |
| 9 | 60 | | if (EnableImages && ImageTypes.Contains(type)) |
| | 61 | | { |
| 9 | 62 | | return ImageTypeLimit; |
| | 63 | | } |
| | 64 | |
|
| 0 | 65 | | return 0; |
| | 66 | | } |
| | 67 | | } |
| | 68 | | } |