| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CA1002, CA2227, CS1591 |
| | 4 | |
|
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Linq; |
| | 7 | | using MediaBrowser.Controller.Entities; |
| | 8 | | using MediaBrowser.Model.Entities; |
| | 9 | |
|
| | 10 | | namespace MediaBrowser.Controller.Providers |
| | 11 | | { |
| | 12 | | public class MetadataResult<T> |
| | 13 | | { |
| | 14 | | // Images aren't always used so the allocation is a waste a lot of the time |
| | 15 | | private List<LocalImageInfo> _images; |
| | 16 | | private List<(string Url, ImageType Type)> _remoteImages; |
| | 17 | | private List<PersonInfo> _people; |
| | 18 | |
|
| | 19 | | public MetadataResult() |
| | 20 | | { |
| 398 | 21 | | ResultLanguage = "en"; |
| 398 | 22 | | } |
| | 23 | |
|
| | 24 | | public List<LocalImageInfo> Images |
| | 25 | | { |
| 5 | 26 | | get => _images ??= []; |
| 0 | 27 | | set => _images = value; |
| | 28 | | } |
| | 29 | |
|
| | 30 | | public List<(string Url, ImageType Type)> RemoteImages |
| | 31 | | { |
| 203 | 32 | | get => _remoteImages ??= []; |
| 0 | 33 | | set => _remoteImages = value; |
| | 34 | | } |
| | 35 | |
|
| | 36 | | public IReadOnlyList<PersonInfo> People |
| | 37 | | { |
| 317 | 38 | | get => _people; |
| 215 | 39 | | set => _people = value?.ToList(); |
| | 40 | | } |
| | 41 | |
|
| | 42 | | public bool HasMetadata { get; set; } |
| | 43 | |
|
| | 44 | | public T Item { get; set; } |
| | 45 | |
|
| | 46 | | public string ResultLanguage { get; set; } |
| | 47 | |
|
| | 48 | | public string Provider { get; set; } |
| | 49 | |
|
| | 50 | | public bool QueriedById { get; set; } |
| | 51 | |
|
| | 52 | | public void AddPerson(PersonInfo p) |
| | 53 | | { |
| 63 | 54 | | People ??= new List<PersonInfo>(); |
| | 55 | |
|
| 63 | 56 | | PeopleHelper.AddPerson(_people, p); |
| 63 | 57 | | } |
| | 58 | |
|
| | 59 | | /// <summary> |
| | 60 | | /// Not only does this clear, but initializes the list so that services can differentiate between a null list an |
| | 61 | | /// </summary> |
| | 62 | | public void ResetPeople() |
| | 63 | | { |
| 16 | 64 | | if (People is null) |
| | 65 | | { |
| 16 | 66 | | People = new List<PersonInfo>(); |
| | 67 | | } |
| | 68 | | else |
| | 69 | | { |
| 0 | 70 | | _people.Clear(); |
| | 71 | | } |
| 0 | 72 | | } |
| | 73 | | } |
| | 74 | | } |