jellyfin/Emby.Naming/Video/ExtraResolver.cs

107 lines
3.8 KiB
C#
Raw Normal View History

using System;
2018-09-12 19:26:21 +02:00
using System.IO;
using System.Text.RegularExpressions;
2019-01-13 20:17:29 +01:00
using Emby.Naming.Audio;
using Emby.Naming.Common;
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Video
{
2020-11-10 19:23:10 +01:00
/// <summary>
/// Resolve if file is extra for video.
/// </summary>
2018-09-12 19:26:21 +02:00
public class ExtraResolver
{
2021-10-05 21:47:59 +02:00
private static readonly char[] _digits = new[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
2018-09-12 19:26:21 +02:00
private readonly NamingOptions _options;
2020-11-10 19:23:10 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ExtraResolver"/> class.
/// </summary>
/// <param name="options"><see cref="NamingOptions"/> object containing VideoExtraRules and passed to <see cref="AudioFileParser"/> and <see cref="VideoResolver"/>.</param>
2018-09-12 19:26:21 +02:00
public ExtraResolver(NamingOptions options)
{
_options = options;
}
2020-11-10 19:23:10 +01:00
/// <summary>
/// Attempts to resolve if file is extra.
/// </summary>
/// <param name="path">Path to file.</param>
/// <returns>Returns <see cref="ExtraResult"/> object.</returns>
2018-09-12 19:26:21 +02:00
public ExtraResult GetExtraInfo(string path)
{
var result = new ExtraResult();
2021-05-16 14:49:11 +02:00
for (var i = 0; i < _options.VideoExtraRules.Length; i++)
2018-09-12 19:26:21 +02:00
{
2021-05-16 14:49:11 +02:00
var rule = _options.VideoExtraRules[i];
if (rule.MediaType == MediaType.Audio)
2018-09-12 19:26:21 +02:00
{
2021-05-16 14:49:11 +02:00
if (!AudioFileParser.IsAudioFile(path, _options))
{
continue;
}
2018-09-12 19:26:21 +02:00
}
2021-05-16 14:49:11 +02:00
else if (rule.MediaType == MediaType.Video)
2018-09-12 19:26:21 +02:00
{
2021-05-24 00:30:41 +02:00
if (!VideoResolver.IsVideoFile(path, _options))
2021-05-16 14:49:11 +02:00
{
continue;
}
2018-09-12 19:26:21 +02:00
}
2021-05-16 14:49:11 +02:00
var pathSpan = path.AsSpan();
if (rule.RuleType == ExtraRuleType.Filename)
2018-09-12 19:26:21 +02:00
{
2021-05-16 14:49:11 +02:00
var filename = Path.GetFileNameWithoutExtension(pathSpan);
2018-09-12 19:26:21 +02:00
2021-05-16 14:49:11 +02:00
if (filename.Equals(rule.Token, StringComparison.OrdinalIgnoreCase))
{
result.ExtraType = rule.ExtraType;
result.Rule = rule;
}
}
else if (rule.RuleType == ExtraRuleType.Suffix)
2018-09-12 19:26:21 +02:00
{
2021-10-05 21:47:59 +02:00
// Trim the digits from the end of the filename so we can recognize things like -trailer2
var filename = Path.GetFileNameWithoutExtension(pathSpan).TrimEnd(_digits);
2021-05-16 14:49:11 +02:00
2021-10-05 21:47:59 +02:00
if (filename.EndsWith(rule.Token, StringComparison.OrdinalIgnoreCase))
2021-05-16 14:49:11 +02:00
{
result.ExtraType = rule.ExtraType;
result.Rule = rule;
}
2018-09-12 19:26:21 +02:00
}
2021-05-16 14:49:11 +02:00
else if (rule.RuleType == ExtraRuleType.Regex)
{
var filename = Path.GetFileName(path);
2018-09-12 19:26:21 +02:00
2021-05-16 14:49:11 +02:00
var regex = new Regex(rule.Token, RegexOptions.IgnoreCase);
2018-09-12 19:26:21 +02:00
2021-05-16 14:49:11 +02:00
if (regex.IsMatch(filename))
{
result.ExtraType = rule.ExtraType;
result.Rule = rule;
}
}
else if (rule.RuleType == ExtraRuleType.DirectoryName)
2018-09-12 19:26:21 +02:00
{
2021-05-16 14:49:11 +02:00
var directoryName = Path.GetFileName(Path.GetDirectoryName(pathSpan));
if (directoryName.Equals(rule.Token, StringComparison.OrdinalIgnoreCase))
{
result.ExtraType = rule.ExtraType;
result.Rule = rule;
}
2018-09-12 19:26:21 +02:00
}
2021-05-16 14:49:11 +02:00
if (result.ExtraType != null)
{
2021-05-16 14:49:11 +02:00
return result;
}
}
2018-09-12 19:26:21 +02:00
return result;
}
}
}