< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.Audio.MusicGenre
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/Audio/MusicGenre.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 32
Coverable lines: 32
Total lines: 127
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/Audio/MusicGenre.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.Audio
 13{
 14    /// <summary>
 15    /// Class MusicGenre.
 16    /// </summary>
 17    [Common.RequiresSourceSerialisation]
 18    public class MusicGenre : BaseItem, IItemByName
 19    {
 20        [JsonIgnore]
 021        public override bool SupportsAddingToPlaylist => true;
 22
 23        [JsonIgnore]
 024        public override bool SupportsAncestors => false;
 25
 26        [JsonIgnore]
 027        public override bool IsDisplayedAsFolder => true;
 28
 29        /// <summary>
 30        /// Gets the folder containing the item.
 31        /// If the item is a folder, it returns the folder itself.
 32        /// </summary>
 33        /// <value>The containing folder path.</value>
 34        [JsonIgnore]
 035        public override string ContainingFolderPath => Path;
 36
 37        [JsonIgnore]
 038        public override bool SupportsPeople => 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 override double GetDefaultPrimaryImageAspectRatio()
 54        {
 055            return 1;
 56        }
 57
 58        public override bool CanDelete()
 59        {
 060            return false;
 61        }
 62
 63        public override bool IsSaveLocalMetadataEnabled()
 64        {
 065            return true;
 66        }
 67
 68        public IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query)
 69        {
 070            query.GenreIds = new[] { Id };
 071            query.IncludeItemTypes = new[] { BaseItemKind.MusicVideo, BaseItemKind.Audio, BaseItemKind.MusicAlbum, BaseI
 72
 073            return LibraryManager.GetItemList(query);
 74        }
 75
 76        public static string GetPath(string name)
 77        {
 078            return GetPath(name, true);
 79        }
 80
 81        public static string GetPath(string name, bool normalizeName)
 82        {
 83            // Trim the period at the end because windows will have a hard time with that
 084            var validName = normalizeName ?
 085                FileSystem.GetValidFilename(name).Trim().TrimEnd('.') :
 086                name;
 87
 088            return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.MusicGenrePath, validName);
 89        }
 90
 91        private string GetRebasedPath()
 92        {
 093            return GetPath(System.IO.Path.GetFileName(Path), false);
 94        }
 95
 96        public override bool RequiresRefresh()
 97        {
 098            var newPath = GetRebasedPath();
 099            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 100            {
 0101                Logger.LogDebug("{0} path has changed from {1} to {2}", GetType().Name, Path, newPath);
 0102                return true;
 103            }
 104
 0105            return base.RequiresRefresh();
 106        }
 107
 108        /// <summary>
 109        /// This is called before any metadata refresh and returns true or false indicating if changes were made.
 110        /// </summary>
 111        /// <param name="replaceAllMetadata">Option to replace metadata.</param>
 112        /// <returns>True if metadata changed.</returns>
 113        public override bool BeforeMetadataRefresh(bool replaceAllMetadata)
 114        {
 0115            var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata);
 116
 0117            var newPath = GetRebasedPath();
 0118            if (!string.Equals(Path, newPath, StringComparison.Ordinal))
 119            {
 0120                Path = newPath;
 0121                hasChanges = true;
 122            }
 123
 0124            return hasChanges;
 125        }
 126    }
 127}