jellyfin/Emby.Naming/Video/StubResolver.cs

51 lines
1.5 KiB
C#
Raw Normal View History

using System;
2018-09-12 13:26:21 -04:00
using System.IO;
2019-01-13 14:17:29 -05:00
using Emby.Naming.Common;
2021-12-20 07:31:07 -05:00
using Jellyfin.Extensions;
2018-09-12 13:26:21 -04:00
namespace Emby.Naming.Video
{
2020-11-10 13:23:10 -05:00
/// <summary>
/// Resolve if file is stub (.disc).
/// </summary>
public static class StubResolver
2018-09-12 13:26:21 -04:00
{
2020-11-10 13:23:10 -05:00
/// <summary>
/// Tries to resolve if file is stub (.disc).
/// </summary>
/// <param name="path">Path to file.</param>
/// <param name="options">NamingOptions containing StubFileExtensions and StubTypes.</param>
/// <param name="stubType">Stub type.</param>
/// <returns>True if file is a stub.</returns>
2020-01-22 16:18:56 -05:00
public static bool TryResolveFile(string path, NamingOptions options, out string? stubType)
2018-09-12 13:26:21 -04:00
{
2020-01-22 16:18:56 -05:00
stubType = default;
2020-11-05 10:59:15 -05:00
if (string.IsNullOrEmpty(path))
2019-05-10 14:37:42 -04:00
{
2020-01-22 16:18:56 -05:00
return false;
2019-05-10 14:37:42 -04:00
}
var extension = Path.GetExtension(path.AsSpan());
2019-01-07 18:27:46 -05:00
2021-12-20 07:31:07 -05:00
if (!options.StubFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase))
2018-09-12 13:26:21 -04:00
{
2020-01-22 16:18:56 -05:00
return false;
2019-05-10 14:37:42 -04:00
}
2018-09-12 13:26:21 -04:00
var token = Path.GetExtension(Path.GetFileNameWithoutExtension(path.AsSpan())).TrimStart('.');
2018-09-12 13:26:21 -04:00
2019-05-10 14:37:42 -04:00
foreach (var rule in options.StubTypes)
{
if (token.Equals(rule.Token, StringComparison.OrdinalIgnoreCase))
2018-09-12 13:26:21 -04:00
{
2020-01-22 16:18:56 -05:00
stubType = rule.StubType;
return true;
2018-09-12 13:26:21 -04:00
}
}
2020-01-22 16:18:56 -05:00
return true;
2018-09-12 13:26:21 -04:00
}
}
}