< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.PeopleHelper
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/PeopleHelper.cs
Line coverage
47%
Covered lines: 17
Uncovered lines: 19
Coverable lines: 36
Total lines: 100
Line coverage: 47.2%
Branch coverage
35%
Covered branches: 10
Total branches: 28
Branch coverage: 35.7%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
AddPerson(...)45.45%672254.83%
MergeExisting(...)0%4260%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Entities/PeopleHelper.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System;
 4using System.Collections.Generic;
 5using System.Linq;
 6using Jellyfin.Data.Enums;
 7using MediaBrowser.Model.Entities;
 8
 9namespace MediaBrowser.Controller.Entities
 10{
 11    public static class PeopleHelper
 12    {
 13        public static void AddPerson(ICollection<PersonInfo> people, PersonInfo person)
 14        {
 6315            ArgumentNullException.ThrowIfNull(person);
 6316            ArgumentException.ThrowIfNullOrEmpty(person.Name);
 17
 6318            person.Name = person.Name.Trim();
 19
 20            // Normalize
 6321            if (string.Equals(person.Role, PersonType.GuestStar, StringComparison.OrdinalIgnoreCase))
 22            {
 023                person.Type = PersonKind.GuestStar;
 24            }
 6325            else if (string.Equals(person.Role, PersonType.Director, StringComparison.OrdinalIgnoreCase))
 26            {
 027                person.Type = PersonKind.Director;
 28            }
 6329            else if (string.Equals(person.Role, PersonType.Producer, StringComparison.OrdinalIgnoreCase))
 30            {
 031                person.Type = PersonKind.Producer;
 32            }
 6333            else if (string.Equals(person.Role, PersonType.Writer, StringComparison.OrdinalIgnoreCase))
 34            {
 035                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
 6339            if (person.Type == PersonKind.GuestStar)
 40            {
 041                var existing = people.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase)
 42
 043                if (existing is not null)
 44                {
 045                    existing.Type = PersonKind.GuestStar;
 046                    MergeExisting(existing, person);
 047                    return;
 48                }
 49            }
 50
 6351            if (person.Type == PersonKind.Actor)
 52            {
 53                // If the actor already exists without a role and we have one, fill it in
 5454                var existing = people.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase)
 5455                if (existing is null)
 56                {
 57                    // Wasn't there - add it
 5458                    people.Add(person);
 59                }
 60                else
 61                {
 62                    // Was there, if no role and we have one - fill it in
 063                    if (string.IsNullOrEmpty(existing.Role) && !string.IsNullOrEmpty(person.Role))
 64                    {
 065                        existing.Role = person.Role;
 66                    }
 67
 068                    MergeExisting(existing, person);
 69                }
 70            }
 71            else
 72            {
 973                var existing = people.FirstOrDefault(p =>
 974                    string.Equals(p.Name, person.Name, StringComparison.OrdinalIgnoreCase)
 975                    && p.Type == person.Type);
 76
 77                // Check for dupes based on the combination of Name and Type
 978                if (existing is null)
 79                {
 980                    people.Add(person);
 81                }
 82                else
 83                {
 084                    MergeExisting(existing, person);
 85                }
 86            }
 087        }
 88
 89        private static void MergeExisting(PersonInfo existing, PersonInfo person)
 90        {
 091            existing.SortOrder = person.SortOrder ?? existing.SortOrder;
 092            existing.ImageUrl = person.ImageUrl ?? existing.ImageUrl;
 93
 094            foreach (var id in person.ProviderIds)
 95            {
 096                existing.SetProviderId(id.Key, id.Value);
 97            }
 098        }
 99    }
 100}