jellyfin/Emby.Naming/Audio/AlbumParser.cs

77 lines
2.3 KiB
C#
Raw Normal View History

using System;
2018-09-12 19:26:21 +02:00
using System.Globalization;
using System.IO;
using System.Text.RegularExpressions;
2019-01-13 20:17:29 +01:00
using Emby.Naming.Common;
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Audio
{
2020-11-10 17:11:48 +01:00
/// <summary>
/// Helper class to determine if Album is multipart.
/// </summary>
2018-09-12 19:26:21 +02:00
public class AlbumParser
{
private readonly NamingOptions _options;
2020-11-10 17:11:48 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="AlbumParser"/> class.
/// </summary>
/// <param name="options">Naming options containing AlbumStackingPrefixes.</param>
2018-09-12 19:26:21 +02:00
public AlbumParser(NamingOptions options)
{
_options = options;
}
2020-11-10 17:11:48 +01:00
/// <summary>
/// Function that determines if album is multipart.
/// </summary>
/// <param name="path">Path to file.</param>
/// <returns>True if album is multipart.</returns>
2020-01-22 22:18:56 +01:00
public bool IsMultiPart(string path)
2018-09-12 19:26:21 +02:00
{
var filename = Path.GetFileName(path);
2020-04-19 18:27:07 +02:00
if (filename.Length == 0)
2018-09-12 19:26:21 +02:00
{
2020-01-22 22:18:56 +01:00
return false;
2018-09-12 19:26:21 +02:00
}
// TODO: Move this logic into options object
// Even better, remove the prefixes and come up with regexes
// But Kodi documentation seems to be weak for audio
// Normalize
// Remove whitespace
2019-05-10 20:37:42 +02:00
filename = filename.Replace('-', ' ');
filename = filename.Replace('.', ' ');
filename = filename.Replace('(', ' ');
filename = filename.Replace(')', ' ');
2018-09-12 19:26:21 +02:00
filename = Regex.Replace(filename, @"\s+", " ");
2020-04-19 11:57:03 +02:00
ReadOnlySpan<char> trimmedFilename = filename.TrimStart();
2018-09-12 19:26:21 +02:00
foreach (var prefix in _options.AlbumStackingPrefixes)
{
2020-04-19 11:57:03 +02:00
if (!trimmedFilename.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))
2018-09-12 19:26:21 +02:00
{
2019-05-10 20:37:42 +02:00
continue;
}
2020-04-19 11:57:03 +02:00
var tmp = trimmedFilename.Slice(prefix.Length).Trim();
2018-09-12 19:26:21 +02:00
2020-04-19 11:57:03 +02:00
int index = tmp.IndexOf(' ');
if (index != -1)
{
tmp = tmp.Slice(0, index);
}
2018-09-12 19:26:21 +02:00
2019-05-10 20:37:42 +02:00
if (int.TryParse(tmp, NumberStyles.Integer, CultureInfo.InvariantCulture, out _))
{
2020-01-22 22:18:56 +01:00
return true;
2018-09-12 19:26:21 +02:00
}
}
2020-01-22 22:18:56 +01:00
return false;
2018-09-12 19:26:21 +02:00
}
}
}