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
|
|
|
|
{
|
2020-11-10 18:23:10 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Resolve if file is stub (.disc).
|
|
|
|
/// </summary>
|
2019-01-18 19:40:08 +00:00
|
|
|
public static class StubResolver
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-11-10 18:23:10 +00:00
|
|
|
/// <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>
|
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;
|
|
|
|
|
2020-11-05 15:59:15 +00:00
|
|
|
if (string.IsNullOrEmpty(path))
|
2019-05-10 18:37:42 +00:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|