jellyfin/Emby.Naming/Video/CleanStringParser.cs

56 lines
1.8 KiB
C#
Raw Normal View History

using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
2018-09-12 19:26:21 +02:00
using System.Text.RegularExpressions;
namespace Emby.Naming.Video
{
/// <summary>
2019-12-06 20:40:06 +01:00
/// <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
2018-09-12 19:26:21 +02:00
/// </summary>
2020-01-11 20:25:06 +01:00
public static class CleanStringParser
2018-09-12 19:26:21 +02:00
{
2020-11-10 17:11:48 +01:00
/// <summary>
/// Attempts to extract clean name with regular expressions.
/// </summary>
/// <param name="name">Name of file.</param>
/// <param name="expressions">List of regex to parse name and year from.</param>
/// <param name="newName">Parsing result string.</param>
/// <returns>True if parsing was successful.</returns>
public static bool TryClean([NotNullWhen(true)] string? name, IReadOnlyList<Regex> expressions, out string newName)
2018-09-12 19:26:21 +02:00
{
if (string.IsNullOrEmpty(name))
{
newName = string.Empty;
return false;
}
// Iteratively apply the regexps to clean the string.
bool cleaned = false;
for (int i = 0; i < expressions.Count; i++)
2018-09-12 19:26:21 +02:00
{
if (TryClean(name, expressions[i], out newName))
2018-09-12 19:26:21 +02:00
{
cleaned = true;
name = newName;
2018-09-12 19:26:21 +02:00
}
}
newName = cleaned ? name : string.Empty;
return cleaned;
2018-09-12 19:26:21 +02:00
}
private static bool TryClean(string name, Regex expression, out string newName)
2018-09-12 19:26:21 +02:00
{
var match = expression.Match(name);
if (match.Success && match.Groups.TryGetValue("cleaned", out var cleaned))
2018-09-12 19:26:21 +02:00
{
newName = cleaned.Value;
2020-01-11 21:16:36 +01:00
return true;
2018-09-12 19:26:21 +02:00
}
newName = string.Empty;
2020-01-11 21:16:36 +01:00
return false;
2018-09-12 19:26:21 +02:00
}
}
}