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.
37 lines
1.0 KiB
37 lines
1.0 KiB
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)
|
|
{
|
|
var result = new StubResult();
|
|
var extension = Path.GetExtension(path) ?? string.Empty;
|
|
|
|
if (options.StubFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase))
|
|
{
|
|
result.IsStub = true;
|
|
|
|
path = Path.GetFileNameWithoutExtension(path);
|
|
|
|
var token = (Path.GetExtension(path) ?? string.Empty).TrimStart('.');
|
|
|
|
foreach (var rule in options.StubTypes)
|
|
{
|
|
if (string.Equals(rule.Token, token, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
result.StubType = rule.StubType;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|
|
}
|