2020-01-11 13:31:35 -07:00
|
|
|
using System.Collections.Generic;
|
2018-09-12 10:26:21 -07:00
|
|
|
using System.Globalization;
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-10-25 03:47:20 -07:00
|
|
|
/// <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
|
2018-09-12 10:26:21 -07:00
|
|
|
/// </summary>
|
2020-01-11 13:31:35 -07:00
|
|
|
public static class CleanDateTimeParser
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2020-11-10 09:11:48 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Attempts to clean the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="name">Name of video.</param>
|
|
|
|
/// <param name="cleanDateTimeRegexes">Optional list of regexes to clean the name.</param>
|
|
|
|
/// <returns>Returns <see cref="CleanDateTimeResult"/> object.</returns>
|
2020-01-11 13:31:35 -07:00
|
|
|
public static CleanDateTimeResult Clean(string name, IReadOnlyList<Regex> cleanDateTimeRegexes)
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2020-01-11 13:18:30 -07:00
|
|
|
CleanDateTimeResult result = new CleanDateTimeResult(name);
|
2020-11-09 06:10:16 -07:00
|
|
|
if (string.IsNullOrEmpty(name))
|
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-01-11 13:31:35 -07:00
|
|
|
var len = cleanDateTimeRegexes.Count;
|
2020-01-11 13:16:36 -07:00
|
|
|
for (int i = 0; i < len; i++)
|
|
|
|
{
|
2020-01-11 13:31:35 -07:00
|
|
|
if (TryClean(name, cleanDateTimeRegexes[i], ref result))
|
2020-01-11 13:16:36 -07:00
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2020-01-11 13:16:36 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static bool TryClean(string name, Regex expression, ref CleanDateTimeResult result)
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
var match = expression.Match(name);
|
|
|
|
|
2019-05-10 11:37:42 -07:00
|
|
|
if (match.Success
|
2020-01-11 12:25:06 -07:00
|
|
|
&& match.Groups.Count == 5
|
2019-05-10 11:37:42 -07:00
|
|
|
&& match.Groups[1].Success
|
|
|
|
&& match.Groups[2].Success
|
|
|
|
&& int.TryParse(match.Groups[2].Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out var year))
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2020-01-11 13:16:36 -07:00
|
|
|
result = new CleanDateTimeResult(match.Groups[1].Value.TrimEnd(), year);
|
|
|
|
return true;
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
|
|
|
|
2020-01-11 13:16:36 -07:00
|
|
|
return false;
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|