jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParser.cs

79 lines
2.6 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
2019-05-10 20:37:42 +02:00
using System;
using System.Globalization;
2018-09-12 19:26:21 +02:00
using System.IO;
using System.Text.RegularExpressions;
using Emby.Naming.Common;
namespace Emby.Naming.AudioBook
{
public class AudioBookFilePathParser
{
private readonly NamingOptions _options;
public AudioBookFilePathParser(NamingOptions options)
{
_options = options;
}
2019-05-10 20:37:42 +02:00
public AudioBookFilePathParserResult Parse(string path)
2018-09-12 19:26:21 +02:00
{
2019-05-10 20:37:42 +02:00
if (path == null)
{
throw new ArgumentNullException(nameof(path));
}
2018-09-12 19:26:21 +02:00
var result = new AudioBookFilePathParserResult();
var fileName = Path.GetFileNameWithoutExtension(path);
foreach (var expression in _options.AudioBookPartsExpressions)
{
var match = new Regex(expression, RegexOptions.IgnoreCase).Match(fileName);
if (match.Success)
{
if (!result.ChapterNumber.HasValue)
{
var value = match.Groups["chapter"];
if (value.Success)
{
if (int.TryParse(value.Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out var intValue))
2018-09-12 19:26:21 +02:00
{
result.ChapterNumber = intValue;
}
}
}
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
if (!result.PartNumber.HasValue)
{
var value = match.Groups["part"];
if (value.Success)
{
if (int.TryParse(value.Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out var intValue))
2018-09-12 19:26:21 +02:00
{
result.ChapterNumber = intValue;
}
}
}
}
}
/*var matches = _iRegexProvider.GetRegex("\\d+", RegexOptions.IgnoreCase).Matches(fileName);
if (matches.Count > 0)
{
if (!result.ChapterNumber.HasValue)
{
result.ChapterNumber = int.Parse(matches[0].Groups[0].Value);
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
if (matches.Count > 1)
{
result.PartNumber = int.Parse(matches[matches.Count - 1].Groups[0].Value);
}
}*/
result.Success = result.PartNumber.HasValue || result.ChapterNumber.HasValue;
return result;
}
}
}