2020-01-11 20:16:36 +00:00
|
|
|
using System;
|
2019-01-06 20:50:43 +00:00
|
|
|
using System.Collections.Generic;
|
2021-03-09 00:28:21 +00:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2018-09-12 17:26:21 +00:00
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-12-06 19:40:06 +00:00
|
|
|
/// <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
|
2018-09-12 17:26:21 +00:00
|
|
|
/// </summary>
|
2020-01-11 19:25:06 +00:00
|
|
|
public static class CleanStringParser
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-11-10 16:11:48 +00: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>
|
2021-03-09 00:28:21 +00:00
|
|
|
public static bool TryClean([NotNullWhen(true)] string? name, IReadOnlyList<Regex> expressions, out ReadOnlySpan<char> newName)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2021-03-09 00:28:21 +00:00
|
|
|
if (string.IsNullOrEmpty(name))
|
|
|
|
{
|
|
|
|
newName = ReadOnlySpan<char>.Empty;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-05 06:25:54 +00:00
|
|
|
// Iteratively apply the regexps to clean the string.
|
|
|
|
bool cleaned = false;
|
|
|
|
for (int i = 0; i < expressions.Count; i++)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2021-08-05 06:25:54 +00:00
|
|
|
if (TryClean(name, expressions[i], out newName))
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2021-08-05 06:25:54 +00:00
|
|
|
cleaned = true;
|
|
|
|
name = newName.ToString();
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-05 06:25:54 +00:00
|
|
|
newName = cleaned ? name.AsSpan() : ReadOnlySpan<char>.Empty;
|
2021-08-05 20:09:42 +00:00
|
|
|
return cleaned;
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2021-03-07 21:59:08 +00:00
|
|
|
private static bool TryClean(string name, Regex expression, out ReadOnlySpan<char> newName)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
|
|
|
var match = expression.Match(name);
|
2020-01-11 20:16:36 +00:00
|
|
|
int index = match.Index;
|
2021-08-03 20:46:56 +00:00
|
|
|
if (match.Success)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2021-08-03 20:46:56 +00:00
|
|
|
var found = match.Groups.TryGetValue("cleaned", out var cleaned);
|
|
|
|
if (!found || cleaned == null)
|
|
|
|
{
|
|
|
|
newName = ReadOnlySpan<char>.Empty;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
newName = name.AsSpan().Slice(cleaned.Index, cleaned.Length);
|
2020-01-11 20:16:36 +00:00
|
|
|
return true;
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2021-03-07 21:59:08 +00:00
|
|
|
newName = ReadOnlySpan<char>.Empty;
|
2020-01-11 20:16:36 +00:00
|
|
|
return false;
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|