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.
52 lines
1.5 KiB
52 lines
1.5 KiB
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using Emby.Naming.Common;
|
|
|
|
namespace Emby.Naming.Video
|
|
{
|
|
/// <summary>
|
|
/// Resolve if file is stub (.disc).
|
|
/// </summary>
|
|
public static class StubResolver
|
|
{
|
|
/// <summary>
|
|
/// Tries to resolve if file is stub (.disc).
|
|
/// </summary>
|
|
/// <param name="path">Path to file.</param>
|
|
/// <param name="options">NamingOptions containing StubFileExtensions and StubTypes.</param>
|
|
/// <param name="stubType">Stub type.</param>
|
|
/// <returns>True if file is a stub.</returns>
|
|
public static bool TryResolveFile(string path, NamingOptions options, out string? stubType)
|
|
{
|
|
stubType = default;
|
|
|
|
if (string.IsNullOrEmpty(path))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var extension = Path.GetExtension(path);
|
|
|
|
if (!options.StubFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
path = Path.GetFileNameWithoutExtension(path);
|
|
var token = Path.GetExtension(path).TrimStart('.');
|
|
|
|
foreach (var rule in options.StubTypes)
|
|
{
|
|
if (string.Equals(rule.Token, token, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
stubType = rule.StubType;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|