aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/ExtraRuleResolver.cs
blob: 2e0caa612f8dc750b0d77f96b70384a01fc32a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.IO;
using System.Text.RegularExpressions;
using Emby.Naming.Audio;
using Emby.Naming.Common;

namespace Emby.Naming.Video
{
    /// <summary>
    /// Resolve if file is extra for video.
    /// </summary>
    public static class ExtraRuleResolver
    {
        private static readonly char[] _digits = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };

        /// <summary>
        /// Attempts to resolve if file is extra.
        /// </summary>
        /// <param name="path">Path to file.</param>
        /// <param name="namingOptions">The naming options.</param>
        /// <param name="libraryRoot">Top-level folder for the containing library.</param>
        /// <returns>Returns <see cref="ExtraResult"/> object.</returns>
        public static ExtraResult GetExtraInfo(string path, NamingOptions namingOptions, string? libraryRoot = "")
        {
            ExtraResult result = new ExtraResult();

            bool isAudioFile = AudioFileParser.IsAudioFile(path, namingOptions);
            bool isVideoFile = VideoResolver.IsVideoFile(path, namingOptions);

            ReadOnlySpan<char> pathSpan = path.AsSpan();
            ReadOnlySpan<char> fileName = Path.GetFileName(pathSpan);
            ReadOnlySpan<char> fileNameWithoutExtension = Path.GetFileNameWithoutExtension(pathSpan);
            // Trim the digits from the end of the filename so we can recognize things like -trailer2
            ReadOnlySpan<char> trimmedFileNameWithoutExtension = fileNameWithoutExtension.TrimEnd(_digits);
            ReadOnlySpan<char> directoryName = Path.GetFileName(Path.GetDirectoryName(pathSpan));
            string fullDirectory = Path.GetDirectoryName(pathSpan).ToString();

            foreach (ExtraRule rule in namingOptions.VideoExtraRules)
            {
                if ((rule.MediaType == MediaType.Audio && !isAudioFile)
                    || (rule.MediaType == MediaType.Video && !isVideoFile))
                {
                    continue;
                }

                bool isMatch = rule.RuleType switch
                {
                    ExtraRuleType.Filename => fileNameWithoutExtension.Equals(rule.Token, StringComparison.OrdinalIgnoreCase),
                    ExtraRuleType.Suffix => trimmedFileNameWithoutExtension.EndsWith(rule.Token, StringComparison.OrdinalIgnoreCase),
                    ExtraRuleType.Regex => Regex.IsMatch(fileName, rule.Token, RegexOptions.IgnoreCase | RegexOptions.Compiled),
                    ExtraRuleType.DirectoryName => directoryName.Equals(rule.Token, StringComparison.OrdinalIgnoreCase)
                                                 && !string.Equals(fullDirectory, libraryRoot, StringComparison.OrdinalIgnoreCase),
                    _ => false,
                };

                if (!isMatch)
                {
                    continue;
                }

                result.ExtraType = rule.ExtraType;
                result.Rule = rule;
                return result;
            }

            return result;
        }
    }
}