2019-12-13 19:11:37 +00:00
|
|
|
#pragma warning disable CS1591
|
2020-01-22 21:18:56 +00:00
|
|
|
#nullable enable
|
2019-12-13 19:11:37 +00:00
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2018-09-12 17:26:21 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2019-01-13 19:17:29 +00:00
|
|
|
using Emby.Naming.Common;
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
2019-01-18 19:40:08 +00:00
|
|
|
public static class StubResolver
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-01-22 21:18:56 +00:00
|
|
|
public static bool TryResolveFile(string path, NamingOptions options, out string? stubType)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-01-22 21:18:56 +00:00
|
|
|
stubType = default;
|
|
|
|
|
2019-05-10 18:37:42 +00:00
|
|
|
if (path == null)
|
|
|
|
{
|
2020-01-22 21:18:56 +00:00
|
|
|
return false;
|
2019-05-10 18:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var extension = Path.GetExtension(path);
|
2019-01-07 23:27:46 +00:00
|
|
|
|
2019-05-10 18:37:42 +00:00
|
|
|
if (!options.StubFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase))
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-01-22 21:18:56 +00:00
|
|
|
return false;
|
2019-05-10 18:37:42 +00:00
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-05-10 18:37:42 +00:00
|
|
|
path = Path.GetFileNameWithoutExtension(path);
|
|
|
|
var token = Path.GetExtension(path).TrimStart('.');
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-05-10 18:37:42 +00:00
|
|
|
foreach (var rule in options.StubTypes)
|
|
|
|
{
|
|
|
|
if (string.Equals(rule.Token, token, StringComparison.OrdinalIgnoreCase))
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-01-22 21:18:56 +00:00
|
|
|
stubType = rule.StubType;
|
|
|
|
return true;
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 21:18:56 +00:00
|
|
|
return true;
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|