< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.Genre
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/Genre.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 37
Coverable lines: 37
Total lines: 130
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 8
Branch coverage: 0%
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/Genre.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.Data.Enums;
 9using Jellyfin.Extensions;
 10using Microsoft.Extensions.Logging;
 11
 12namespace MediaBrowser.Controller.Entities
 13{
 14    /// <summary>
 15    /// Class Genre.
 16    /// </summary>
 17    [Common.RequiresSourceSerialisation]
 18    public class Genre : BaseItem, IItemByName
 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        [JsonIgnore]
 029        public override bool IsDisplayedAsFolder => true;
 30
 31        [JsonIgnore]
 032        public override bool SupportsAncestors => false;
 33
 34        [JsonIgnore]
 035        public override bool SupportsPeople => false;
 36
 37        public override List<string> GetUserDataKeys()
 38        {
 039            var list = base.GetUserDataKeys();
 40
 041            list.Insert(0, GetType().Name + "-" + (Name ?? string.Empty).RemoveDiacritics());
 042            return list;
 43        }
 44
 45        public override string CreatePresentationUniqueKey()
 46        {
 047            return GetUserDataKeys()[0];
 48        }
 49
 50        public override double GetDefaultPrimaryImageAspectRatio()
 51        {
 052            return 1;
 53        }
 54
 55        public override bool IsSaveLocalMetadataEnabled()
 56        {
 057            return true;
 58        }
 59
 60        public override bool CanDelete()
 61        {
 062            return false;
 63        }
 64
 65        public IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query)
 66        {
 067            query.GenreIds = new[] { Id };
 068            query.ExcludeItemTypes = new[]
 069            {
 070                BaseItemKind.MusicVideo,
 071                BaseItemKind.Audio,
 072                BaseItemKind.MusicAlbum,
 073                BaseItemKind.MusicArtist
 074            };
 75
 076            return LibraryManager.GetItemList(query);
 77        }
 78
 79        public static string GetPath(string name)
 80        {
 081            return GetPath(name, true);
 82        }
 83
 84        public static string GetPath(string name, bool normalizeName)
 85        {
 86            // Trim the period at the end because windows will have a hard time with that
 087            var validName = normalizeName ?
 088                FileSystem.GetValidFilename(name).Trim().TrimEnd('.') :
 089                name;
 90
 091            return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.GenrePath, validName);
 92        }
 93
 94        private string GetRebasedPath()
 95        {
 096            return GetPath(System.IO.Path.GetFileName(Path), false);
 97        }
 98
 99        public override bool RequiresRefresh()
 100        {
 0101            var newPath = GetRebasedPath();
 0102            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 103            {
 0104                Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath);
 0105                return true;
 106            }
 107
 0108            return base.RequiresRefresh();
 109        }
 110
 111        /// <summary>
 112        /// This is called before any metadata refresh and returns true if changes were made.
 113        /// </summary>
 114        /// <param name="replaceAllMetadata">Whether to replace all metadata.</param>
 115        /// <returns>true if the item has change, else false.</returns>
 116        public override bool BeforeMetadataRefresh(bool replaceAllMetadata)
 117        {
 0118            var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata);
 119
 0120            var newPath = GetRebasedPath();
 0121            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 122            {
 0123                Path = newPath;
 0124                hasChanges = true;
 125            }
 126
 0127            return hasChanges;
 128        }
 129    }
 130}