< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.Person
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/Person.cs
Line coverage
31%
Covered lines: 13
Uncovered lines: 28
Coverable lines: 41
Total lines: 149
Line coverage: 31.7%
Branch coverage
35%
Covered branches: 5
Total branches: 14
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

File(s)

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

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7using System.Text.Json.Serialization;
 8using Jellyfin.Extensions;
 9using MediaBrowser.Controller.Providers;
 10using Microsoft.Extensions.Logging;
 11
 12namespace MediaBrowser.Controller.Entities
 13{
 14    /// <summary>
 15    /// This is the full Person object that can be retrieved with all of it's data.
 16    /// </summary>
 17    [Common.RequiresSourceSerialisation]
 18    public class Person : BaseItem, IItemByName, IHasLookupInfo<PersonLookupInfo>
 19    {
 20        /// <summary>
 21        /// Gets the folder containing the item.
 22        /// If the item is a folder, it returns the folder itself.
 23        /// </summary>
 24        /// <value>The containing folder path.</value>
 25        [JsonIgnore]
 026        public override string ContainingFolderPath => Path;
 27
 28        /// <summary>
 29        /// Gets a value indicating whether to enable alpha numeric sorting.
 30        /// </summary>
 31        [JsonIgnore]
 032        public override bool EnableAlphaNumericSorting => false;
 33
 34        [JsonIgnore]
 035        public override bool SupportsPeople => false;
 36
 37        [JsonIgnore]
 038        public override bool SupportsAncestors => false;
 39
 40        public override List<string> GetUserDataKeys()
 41        {
 042            var list = base.GetUserDataKeys();
 43
 044            list.Insert(0, GetType().Name + "-" + (Name ?? string.Empty).RemoveDiacritics());
 045            return list;
 46        }
 47
 48        public override string CreatePresentationUniqueKey()
 49        {
 050            return GetUserDataKeys()[0];
 51        }
 52
 53        public PersonLookupInfo GetLookupInfo()
 54        {
 055            return GetItemLookupInfo<PersonLookupInfo>();
 56        }
 57
 58        public override double GetDefaultPrimaryImageAspectRatio()
 59        {
 060            double value = 2;
 061            value /= 3;
 62
 063            return value;
 64        }
 65
 66        public IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query)
 67        {
 068            query.PersonIds = new[] { Id };
 69
 070            return LibraryManager.GetItemList(query);
 71        }
 72
 73        public override bool CanDelete()
 74        {
 075            return false;
 76        }
 77
 78        public override bool IsSaveLocalMetadataEnabled()
 79        {
 080            return true;
 81        }
 82
 83        public static string GetPath(string name)
 84        {
 185            return GetPath(name, true);
 86        }
 87
 88        public static string GetPath(string name, bool normalizeName)
 89        {
 90            // Trim the period at the end because windows will have a hard time with that
 191            var validFilename = normalizeName ?
 192                FileSystem.GetValidFilename(name).Trim().TrimEnd('.') :
 193                name;
 94
 195            string subFolderPrefix = null;
 96
 397            foreach (char c in validFilename)
 98            {
 199                if (char.IsLetterOrDigit(c))
 100                {
 1101                    subFolderPrefix = c.ToString();
 1102                    break;
 103                }
 104            }
 105
 1106            var path = ConfigurationManager.ApplicationPaths.PeoplePath;
 107
 1108            return string.IsNullOrEmpty(subFolderPrefix) ?
 1109                System.IO.Path.Combine(path, validFilename) :
 1110                System.IO.Path.Combine(path, subFolderPrefix, validFilename);
 111        }
 112
 113        private string GetRebasedPath()
 114        {
 0115            return GetPath(System.IO.Path.GetFileName(Path), false);
 116        }
 117
 118        public override bool RequiresRefresh()
 119        {
 0120            var newPath = GetRebasedPath();
 0121            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 122            {
 0123                Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath);
 0124                return true;
 125            }
 126
 0127            return base.RequiresRefresh();
 128        }
 129
 130        /// <summary>
 131        /// This is called before any metadata refresh and returns true or false indicating if changes were made.
 132        /// </summary>
 133        /// <param name="replaceAllMetadata"><c>true</c> to replace all metadata, <c>false</c> to not.</param>
 134        /// <returns><c>true</c> if changes were made, <c>false</c> if not.</returns>
 135        public override bool BeforeMetadataRefresh(bool replaceAllMetadata)
 136        {
 0137            var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata);
 138
 0139            var newPath = GetRebasedPath();
 0140            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 141            {
 0142                Path = newPath;
 0143                hasChanges = true;
 144            }
 145
 0146            return hasChanges;
 147        }
 148    }
 149}