| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Linq; |
| | 6 | | using Jellyfin.Data.Enums; |
| | 7 | | using MediaBrowser.Model.Entities; |
| | 8 | |
|
| | 9 | | namespace MediaBrowser.Controller.Entities |
| | 10 | | { |
| | 11 | | public static class PeopleHelper |
| | 12 | | { |
| | 13 | | public static void AddPerson(ICollection<PersonInfo> people, PersonInfo person) |
| | 14 | | { |
| 63 | 15 | | ArgumentNullException.ThrowIfNull(person); |
| 63 | 16 | | ArgumentException.ThrowIfNullOrEmpty(person.Name); |
| | 17 | |
|
| 63 | 18 | | person.Name = person.Name.Trim(); |
| | 19 | |
|
| | 20 | | // Normalize |
| 63 | 21 | | if (string.Equals(person.Role, PersonType.GuestStar, StringComparison.OrdinalIgnoreCase)) |
| | 22 | | { |
| 0 | 23 | | person.Type = PersonKind.GuestStar; |
| | 24 | | } |
| 63 | 25 | | else if (string.Equals(person.Role, PersonType.Director, StringComparison.OrdinalIgnoreCase)) |
| | 26 | | { |
| 0 | 27 | | person.Type = PersonKind.Director; |
| | 28 | | } |
| 63 | 29 | | else if (string.Equals(person.Role, PersonType.Producer, StringComparison.OrdinalIgnoreCase)) |
| | 30 | | { |
| 0 | 31 | | person.Type = PersonKind.Producer; |
| | 32 | | } |
| 63 | 33 | | else if (string.Equals(person.Role, PersonType.Writer, StringComparison.OrdinalIgnoreCase)) |
| | 34 | | { |
| 0 | 35 | | person.Type = PersonKind.Writer; |
| | 36 | | } |
| | 37 | |
|
| | 38 | | // If the type is GuestStar and there's already an Actor entry, then update it to avoid dupes |
| 63 | 39 | | if (person.Type == PersonKind.GuestStar) |
| | 40 | | { |
| 0 | 41 | | var existing = people.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase) |
| | 42 | |
|
| 0 | 43 | | if (existing is not null) |
| | 44 | | { |
| 0 | 45 | | existing.Type = PersonKind.GuestStar; |
| 0 | 46 | | MergeExisting(existing, person); |
| 0 | 47 | | return; |
| | 48 | | } |
| | 49 | | } |
| | 50 | |
|
| 63 | 51 | | if (person.Type == PersonKind.Actor) |
| | 52 | | { |
| | 53 | | // If the actor already exists without a role and we have one, fill it in |
| 54 | 54 | | var existing = people.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase) |
| 54 | 55 | | if (existing is null) |
| | 56 | | { |
| | 57 | | // Wasn't there - add it |
| 54 | 58 | | people.Add(person); |
| | 59 | | } |
| | 60 | | else |
| | 61 | | { |
| | 62 | | // Was there, if no role and we have one - fill it in |
| 0 | 63 | | if (string.IsNullOrEmpty(existing.Role) && !string.IsNullOrEmpty(person.Role)) |
| | 64 | | { |
| 0 | 65 | | existing.Role = person.Role; |
| | 66 | | } |
| | 67 | |
|
| 0 | 68 | | MergeExisting(existing, person); |
| | 69 | | } |
| | 70 | | } |
| | 71 | | else |
| | 72 | | { |
| 9 | 73 | | var existing = people.FirstOrDefault(p => |
| 9 | 74 | | string.Equals(p.Name, person.Name, StringComparison.OrdinalIgnoreCase) |
| 9 | 75 | | && p.Type == person.Type); |
| | 76 | |
|
| | 77 | | // Check for dupes based on the combination of Name and Type |
| 9 | 78 | | if (existing is null) |
| | 79 | | { |
| 9 | 80 | | people.Add(person); |
| | 81 | | } |
| | 82 | | else |
| | 83 | | { |
| 0 | 84 | | MergeExisting(existing, person); |
| | 85 | | } |
| | 86 | | } |
| 0 | 87 | | } |
| | 88 | |
|
| | 89 | | private static void MergeExisting(PersonInfo existing, PersonInfo person) |
| | 90 | | { |
| 0 | 91 | | existing.SortOrder = person.SortOrder ?? existing.SortOrder; |
| 0 | 92 | | existing.ImageUrl = person.ImageUrl ?? existing.ImageUrl; |
| | 93 | |
|
| 0 | 94 | | foreach (var id in person.ProviderIds) |
| | 95 | | { |
| 0 | 96 | | existing.SetProviderId(id.Key, id.Value); |
| | 97 | | } |
| 0 | 98 | | } |
| | 99 | | } |
| | 100 | | } |