jellyfin-server/Emby.Naming/AudioBook/AudioBookListResolver.cs

49 lines
1.6 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
2018-09-12 17:26:21 +00:00
using System.Linq;
using Emby.Naming.Common;
using Emby.Naming.Video;
using MediaBrowser.Model.IO;
namespace Emby.Naming.AudioBook
{
public class AudioBookListResolver
{
private readonly NamingOptions _options;
public AudioBookListResolver(NamingOptions options)
{
_options = options;
}
2019-05-10 18:37:42 +00:00
public IEnumerable<AudioBookInfo> Resolve(IEnumerable<FileSystemMetadata> files)
2018-09-12 17:26:21 +00:00
{
var audioBookResolver = new AudioBookResolver(_options);
var audiobookFileInfos = files
.Select(i => audioBookResolver.Resolve(i.FullName, i.IsDirectory))
2020-11-01 09:47:31 +00:00
.OfType<AudioBookFileInfo>()
2018-09-12 17:26:21 +00:00
.ToList();
// Filter out all extras, otherwise they could cause stacks to not be resolved
// See the unit test TestStackedWithTrailer
var metadata = audiobookFileInfos
2020-03-25 16:53:03 +00:00
.Select(i => new FileSystemMetadata { FullName = i.Path, IsDirectory = i.IsDirectory });
2018-09-12 17:26:21 +00:00
var stackResult = new StackResolver(_options)
.ResolveAudioBooks(metadata);
2020-01-22 21:18:56 +00:00
foreach (var stack in stackResult)
2018-09-12 17:26:21 +00:00
{
2020-11-01 09:47:31 +00:00
var stackFiles = stack.Files.Select(i => audioBookResolver.Resolve(i, stack.IsDirectoryStack)).OfType<AudioBookFileInfo>().ToList();
2018-09-12 17:26:21 +00:00
stackFiles.Sort();
2020-11-01 09:47:31 +00:00
// TODO nullable discover if name can be empty
var info = new AudioBookInfo(stack.Name ?? string.Empty) { Files = stackFiles };
2018-09-12 17:26:21 +00:00
2020-01-22 21:18:56 +00:00
yield return info;
}
2018-09-12 17:26:21 +00:00
}
}
}