jellyfin/Emby.Naming/Video/StubResolver.cs

48 lines
1.1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
#pragma warning disable SA1600
using System;
2018-09-12 13:26:21 -04:00
using System.IO;
using System.Linq;
2019-01-13 14:17:29 -05:00
using Emby.Naming.Common;
2018-09-12 13:26:21 -04:00
namespace Emby.Naming.Video
{
public static class StubResolver
2018-09-12 13:26:21 -04:00
{
public static StubResult ResolveFile(string path, NamingOptions options)
2018-09-12 13:26:21 -04:00
{
2019-05-10 14:37:42 -04:00
if (path == null)
{
2019-12-06 14:40:06 -05:00
return default;
2019-05-10 14:37:42 -04:00
}
var extension = Path.GetExtension(path);
2019-01-07 18:27:46 -05:00
2019-05-10 14:37:42 -04:00
if (!options.StubFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase))
2018-09-12 13:26:21 -04:00
{
2019-12-06 14:40:06 -05:00
return default;
2019-05-10 14:37:42 -04:00
}
2018-09-12 13:26:21 -04:00
2019-05-10 14:37:42 -04:00
var result = new StubResult()
{
IsStub = true
};
2018-09-12 13:26:21 -04:00
2019-05-10 14:37:42 -04:00
path = Path.GetFileNameWithoutExtension(path);
var token = Path.GetExtension(path).TrimStart('.');
2018-09-12 13:26:21 -04:00
2019-05-10 14:37:42 -04:00
foreach (var rule in options.StubTypes)
{
if (string.Equals(rule.Token, token, StringComparison.OrdinalIgnoreCase))
2018-09-12 13:26:21 -04:00
{
2019-05-10 14:37:42 -04:00
result.StubType = rule.StubType;
break;
2018-09-12 13:26:21 -04:00
}
}
return result;
}
}
}