< Summary - Jellyfin

Information
Class: Emby.Naming.Video.VideoResolver
Assembly: Emby.Naming
File(s): /srv/git/jellyfin/Emby.Naming/Video/VideoResolver.cs
Line coverage
100%
Covered lines: 42
Uncovered lines: 0
Coverable lines: 42
Total lines: 160
Line coverage: 100%
Branch coverage
100%
Covered branches: 14
Total branches: 14
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
ResolveDirectory(...)100%11100%
ResolveFile(...)100%11100%
Resolve(...)100%1414100%
IsVideoFile(...)100%11100%
IsStubFile(...)100%11100%
TryCleanString(...)100%11100%
CleanDateTime(...)100%11100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Diagnostics.CodeAnalysis;
 3using System.IO;
 4using Emby.Naming.Common;
 5using Jellyfin.Extensions;
 6
 7namespace Emby.Naming.Video
 8{
 9    /// <summary>
 10    /// Resolves <see cref="VideoFileInfo"/> from file path.
 11    /// </summary>
 12    public static class VideoResolver
 13    {
 14        /// <summary>
 15        /// Resolves the directory.
 16        /// </summary>
 17        /// <param name="path">The path.</param>
 18        /// <param name="namingOptions">The naming options.</param>
 19        /// <param name="parseName">Whether to parse the name or use the filename.</param>
 20        /// <param name="libraryRoot">Top-level folder for the containing library.</param>
 21        /// <returns>VideoFileInfo.</returns>
 22        public static VideoFileInfo? ResolveDirectory(string? path, NamingOptions namingOptions, bool parseName = true, 
 23        {
 324            return Resolve(path, true, namingOptions, parseName, libraryRoot);
 25        }
 26
 27        /// <summary>
 28        /// Resolves the file.
 29        /// </summary>
 30        /// <param name="path">The path.</param>
 31        /// <param name="namingOptions">The naming options.</param>
 32        /// <param name="libraryRoot">Top-level folder for the containing library.</param>
 33        /// <returns>VideoFileInfo.</returns>
 34        public static VideoFileInfo? ResolveFile(string? path, NamingOptions namingOptions, string? libraryRoot = "")
 35        {
 1936            return Resolve(path, false, namingOptions, libraryRoot: libraryRoot);
 37        }
 38
 39        /// <summary>
 40        /// Resolves the specified path.
 41        /// </summary>
 42        /// <param name="path">The path.</param>
 43        /// <param name="isDirectory">if set to <c>true</c> [is folder].</param>
 44        /// <param name="namingOptions">The naming options.</param>
 45        /// <param name="parseName">Whether or not the name should be parsed for info.</param>
 46        /// <param name="libraryRoot">Top-level folder for the containing library.</param>
 47        /// <returns>VideoFileInfo.</returns>
 48        /// <exception cref="ArgumentNullException"><c>path</c> is <c>null</c>.</exception>
 49        public static VideoFileInfo? Resolve(string? path, bool isDirectory, NamingOptions namingOptions, bool parseName
 50        {
 22251            if (string.IsNullOrEmpty(path))
 52            {
 253                return null;
 54            }
 55
 22056            bool isStub = false;
 22057            ReadOnlySpan<char> container = ReadOnlySpan<char>.Empty;
 22058            string? stubType = null;
 59
 22060            if (!isDirectory)
 61            {
 21162                var extension = Path.GetExtension(path.AsSpan());
 63
 64                // Check supported extensions
 21165                if (!namingOptions.VideoFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase))
 66                {
 67                    // It's not supported. Check stub extensions
 668                    if (!StubResolver.TryResolveFile(path, namingOptions, out stubType))
 69                    {
 170                        return null;
 71                    }
 72
 573                    isStub = true;
 74                }
 75
 21076                container = extension.TrimStart('.');
 77            }
 78
 21979            var format3DResult = Format3DParser.Parse(path, namingOptions);
 80
 21981            var extraResult = ExtraRuleResolver.GetExtraInfo(path, namingOptions, libraryRoot);
 82
 21983            var name = Path.GetFileNameWithoutExtension(path);
 84
 21985            int? year = null;
 86
 21987            if (parseName)
 88            {
 21089                var cleanDateTimeResult = CleanDateTime(name, namingOptions);
 21090                name = cleanDateTimeResult.Name;
 21091                year = cleanDateTimeResult.Year;
 92
 21093                if (TryCleanString(name, namingOptions, out var newName))
 94                {
 4795                    name = newName;
 96                }
 97            }
 98
 21999            return new VideoFileInfo(
 219100                path: path,
 219101                container: container.IsEmpty ? null : container.ToString(),
 219102                isStub: isStub,
 219103                name: name,
 219104                year: year,
 219105                stubType: stubType,
 219106                is3D: format3DResult.Is3D,
 219107                format3D: format3DResult.Format3D,
 219108                extraType: extraResult.ExtraType,
 219109                isDirectory: isDirectory,
 219110                extraRule: extraResult.Rule);
 111        }
 112
 113        /// <summary>
 114        /// Determines if path is video file based on extension.
 115        /// </summary>
 116        /// <param name="path">Path to file.</param>
 117        /// <param name="namingOptions">The naming options.</param>
 118        /// <returns>True if is video file.</returns>
 119        public static bool IsVideoFile(string path, NamingOptions namingOptions)
 120        {
 9365121            var extension = Path.GetExtension(path.AsSpan());
 9365122            return namingOptions.VideoFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase);
 123        }
 124
 125        /// <summary>
 126        /// Determines if path is video file stub based on extension.
 127        /// </summary>
 128        /// <param name="path">Path to file.</param>
 129        /// <param name="namingOptions">The naming options.</param>
 130        /// <returns>True if is video file stub.</returns>
 131        public static bool IsStubFile(string path, NamingOptions namingOptions)
 132        {
 1133            var extension = Path.GetExtension(path.AsSpan());
 1134            return namingOptions.StubFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase);
 135        }
 136
 137        /// <summary>
 138        /// Tries to clean name of clutter.
 139        /// </summary>
 140        /// <param name="name">Raw name.</param>
 141        /// <param name="namingOptions">The naming options.</param>
 142        /// <param name="newName">Clean name.</param>
 143        /// <returns>True if cleaning of name was successful.</returns>
 144        public static bool TryCleanString([NotNullWhen(true)] string? name, NamingOptions namingOptions, out string newN
 145        {
 237146            return CleanStringParser.TryClean(name, namingOptions.CleanStringRegexes, out newName);
 147        }
 148
 149        /// <summary>
 150        /// Tries to get name and year from raw name.
 151        /// </summary>
 152        /// <param name="name">Raw name.</param>
 153        /// <param name="namingOptions">The naming options.</param>
 154        /// <returns>Returns <see cref="CleanDateTimeResult"/> with name and optional year.</returns>
 155        public static CleanDateTimeResult CleanDateTime(string name, NamingOptions namingOptions)
 156        {
 252157            return CleanDateTimeParser.Clean(name, namingOptions.CleanDateTimeRegexes);
 158        }
 159    }
 160}