< Summary - Jellyfin

Information
Class: Emby.Naming.Video.ExtraRuleResolver
Assembly: Emby.Naming
File(s): /srv/git/jellyfin/Emby.Naming/Video/ExtraRuleResolver.cs
Line coverage
100%
Covered lines: 33
Uncovered lines: 0
Coverable lines: 33
Total lines: 91
Line coverage: 100%
Branch coverage
100%
Covered branches: 30
Total branches: 30
Branch coverage: 100%
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
.cctor()100%11100%
GetExtraInfo(...)100%3030100%

File(s)

/srv/git/jellyfin/Emby.Naming/Video/ExtraRuleResolver.cs

#LineLine coverage
 1using System;
 2using System.IO;
 3using System.Text.RegularExpressions;
 4using Emby.Naming.Audio;
 5using Emby.Naming.Common;
 6
 7namespace Emby.Naming.Video
 8{
 9    /// <summary>
 10    /// Resolve if file is extra for video.
 11    /// </summary>
 12    public static class ExtraRuleResolver
 13    {
 214        private static readonly char[] _digits = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
 15
 16        /// <summary>
 17        /// Attempts to resolve if file is extra.
 18        /// </summary>
 19        /// <param name="path">Path to file.</param>
 20        /// <param name="namingOptions">The naming options.</param>
 21        /// <param name="libraryRoot">Top-level folder for the containing library.</param>
 22        /// <returns>Returns <see cref="ExtraResult"/> object.</returns>
 23        public static ExtraResult GetExtraInfo(string path, NamingOptions namingOptions, string? libraryRoot = "")
 24        {
 36425            var result = new ExtraResult();
 26
 1987027            for (var i = 0; i < namingOptions.VideoExtraRules.Length; i++)
 28            {
 971529                var rule = namingOptions.VideoExtraRules[i];
 971530                if ((rule.MediaType == MediaType.Audio && !AudioFileParser.IsAudioFile(path, namingOptions))
 971531                    || (rule.MediaType == MediaType.Video && !VideoResolver.IsVideoFile(path, namingOptions)))
 32                {
 33                    continue;
 34                }
 35
 846936                var pathSpan = path.AsSpan();
 846937                if (rule.RuleType == ExtraRuleType.Filename)
 38                {
 50839                    var filename = Path.GetFileNameWithoutExtension(pathSpan);
 40
 50841                    if (filename.Equals(rule.Token, StringComparison.OrdinalIgnoreCase))
 42                    {
 1743                        result.ExtraType = rule.ExtraType;
 1744                        result.Rule = rule;
 45                    }
 46                }
 796147                else if (rule.RuleType == ExtraRuleType.Suffix)
 48                {
 49                    // Trim the digits from the end of the filename so we can recognize things like -trailer2
 399150                    var filename = Path.GetFileNameWithoutExtension(pathSpan).TrimEnd(_digits);
 51
 399152                    if (filename.EndsWith(rule.Token, StringComparison.OrdinalIgnoreCase))
 53                    {
 5654                        result.ExtraType = rule.ExtraType;
 5655                        result.Rule = rule;
 56                    }
 57                }
 397058                else if (rule.RuleType == ExtraRuleType.Regex)
 59                {
 160                    var filename = Path.GetFileName(path.AsSpan());
 61
 162                    var isMatch = Regex.IsMatch(filename, rule.Token, RegexOptions.IgnoreCase | RegexOptions.Compiled);
 63
 164                    if (isMatch)
 65                    {
 166                        result.ExtraType = rule.ExtraType;
 167                        result.Rule = rule;
 68                    }
 69                }
 396970                else if (rule.RuleType == ExtraRuleType.DirectoryName)
 71                {
 396972                    var directoryName = Path.GetFileName(Path.GetDirectoryName(pathSpan));
 396973                    string fullDirectory = Path.GetDirectoryName(pathSpan).ToString();
 396974                    if (directoryName.Equals(rule.Token, StringComparison.OrdinalIgnoreCase)
 396975                        && !string.Equals(fullDirectory, libraryRoot, StringComparison.OrdinalIgnoreCase))
 76                    {
 7077                        result.ExtraType = rule.ExtraType;
 7078                        result.Rule = rule;
 79                    }
 80                }
 81
 846982                if (result.ExtraType is not null)
 83                {
 14484                    return result;
 85                }
 86            }
 87
 22088            return result;
 89        }
 90    }
 91}