jellyfin/Emby.Naming/AudioBook/AudioBookResolver.cs

63 lines
1.6 KiB
C#
Raw Normal View History

using System;
2018-09-12 19:26:21 +02:00
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 ParseFile(string path)
{
return Resolve(path, false);
}
public AudioBookFileInfo ParseDirectory(string path)
{
return Resolve(path, true);
}
2019-05-10 20:37:42 +02:00
public AudioBookFileInfo Resolve(string path, bool isDirectory = false)
2018-09-12 19:26:21 +02:00
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException(nameof(path));
2018-09-12 19:26:21 +02:00
}
2019-05-10 20:37:42 +02:00
// TODO
if (isDirectory)
{
2018-09-12 19:26:21 +02:00
return null;
}
2018-09-12 19:26:21 +02:00
2019-01-25 21:52:10 +01:00
var extension = Path.GetExtension(path);
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
// Check supported extensions
if (!_options.AudioFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase))
{
return null;
}
var container = extension.TrimStart('.');
2019-05-10 20:37:42 +02:00
var parsingResult = new AudioBookFilePathParser(_options).Parse(path);
2019-01-08 00:27:46 +01:00
2018-09-12 19:26:21 +02:00
return new AudioBookFileInfo
{
Path = path,
Container = container,
PartNumber = parsingResult.PartNumber,
ChapterNumber = parsingResult.ChapterNumber,
2019-05-10 20:37:42 +02:00
IsDirectory = isDirectory
2018-09-12 19:26:21 +02:00
};
}
}
}