You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
#pragma warning disable CS1591
|
|
#pragma warning disable SA1600
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using Emby.Naming.Common;
|
|
|
|
namespace Emby.Naming.Video
|
|
{
|
|
public static class StubResolver
|
|
{
|
|
public static StubResult ResolveFile(string path, NamingOptions options)
|
|
{
|
|
if (path == null)
|
|
{
|
|
return default;
|
|
}
|
|
|
|
var extension = Path.GetExtension(path);
|
|
|
|
if (!options.StubFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase))
|
|
{
|
|
return default;
|
|
}
|
|
|
|
var result = new StubResult()
|
|
{
|
|
IsStub = true
|
|
};
|
|
|
|
path = Path.GetFileNameWithoutExtension(path);
|
|
var token = Path.GetExtension(path).TrimStart('.');
|
|
|
|
foreach (var rule in options.StubTypes)
|
|
{
|
|
if (string.Equals(rule.Token, token, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
result.StubType = rule.StubType;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|
|
}
|