jellyfin/Emby.Naming/Video/StubResolver.cs

52 lines
1.5 KiB
C#
Raw Normal View History

using System;
2018-09-12 19:26:21 +02:00
using System.IO;
2019-01-13 20:17:29 +01:00
using Emby.Naming.Common;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Video
{
2020-11-10 19:23:10 +01:00
/// <summary>
/// Resolve if file is stub (.disc).
/// </summary>
public static class StubResolver
2018-09-12 19:26:21 +02:00
{
2020-11-10 19:23:10 +01: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 22:18:56 +01:00
public static bool TryResolveFile(string path, NamingOptions options, out string? stubType)
2018-09-12 19:26:21 +02:00
{
2020-01-22 22:18:56 +01:00
stubType = default;
2020-11-05 16:59:15 +01:00
if (string.IsNullOrEmpty(path))
2019-05-10 20:37:42 +02:00
{
2020-01-22 22:18:56 +01:00
return false;
2019-05-10 20:37:42 +02:00
}
var extension = Path.GetExtension(path);
2019-01-08 00:27:46 +01:00
2021-12-20 13:31:07 +01:00
if (!options.StubFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase))
2018-09-12 19:26:21 +02:00
{
2020-01-22 22:18:56 +01:00
return false;
2019-05-10 20:37:42 +02:00
}
2018-09-12 19:26:21 +02:00
2019-05-10 20:37:42 +02:00
path = Path.GetFileNameWithoutExtension(path);
var token = Path.GetExtension(path).TrimStart('.');
2018-09-12 19:26:21 +02:00
2019-05-10 20:37:42 +02:00
foreach (var rule in options.StubTypes)
{
if (string.Equals(rule.Token, token, StringComparison.OrdinalIgnoreCase))
2018-09-12 19:26:21 +02:00
{
2020-01-22 22:18:56 +01:00
stubType = rule.StubType;
return true;
2018-09-12 19:26:21 +02:00
}
}
2020-01-22 22:18:56 +01:00
return true;
2018-09-12 19:26:21 +02:00
}
}
}