jellyfin/Emby.Naming/Video/StubResolver.cs

45 lines
1.1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
2020-01-22 22:18:56 +01:00
#nullable enable
using System;
2018-09-12 19:26:21 +02:00
using System.IO;
using System.Linq;
2019-01-13 20:17:29 +01:00
using Emby.Naming.Common;
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Video
{
public static class StubResolver
2018-09-12 19:26:21 +02:00
{
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;
2019-05-10 20:37:42 +02:00
if (path == null)
{
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
2019-05-10 20:37:42 +02:00
if (!options.StubFileExtensions.Contains(extension, StringComparer.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
}
}
}