54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
#nullable enable
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using Emby.Naming.Common;
|
|
|
|
namespace Emby.Naming.AudioBook
|
|
{
|
|
public class AudioBookResolver
|
|
{
|
|
private readonly NamingOptions _options;
|
|
|
|
public AudioBookResolver(NamingOptions options)
|
|
{
|
|
_options = options;
|
|
}
|
|
|
|
public AudioBookFileInfo? Resolve(string path, bool isDirectory = false)
|
|
{
|
|
if (path.Length == 0)
|
|
{
|
|
throw new ArgumentException("String can't be empty.", nameof(path));
|
|
}
|
|
|
|
// TODO
|
|
if (isDirectory)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var extension = Path.GetExtension(path);
|
|
|
|
// Check supported extensions
|
|
if (!_options.AudioFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var container = extension.TrimStart('.');
|
|
|
|
var parsingResult = new AudioBookFilePathParser(_options).Parse(path);
|
|
|
|
return new AudioBookFileInfo(
|
|
path,
|
|
container,
|
|
chapterNumber: parsingResult.ChapterNumber,
|
|
partNumber: parsingResult.PartNumber,
|
|
isDirectory: isDirectory);
|
|
}
|
|
}
|
|
}
|