|
@@ -5,12 +5,12 @@
|
|
|
using System;
|
|
using System;
|
|
|
using System.IO;
|
|
using System.IO;
|
|
|
using System.Linq;
|
|
using System.Linq;
|
|
|
|
|
+using Emby.Naming.Book;
|
|
|
using Jellyfin.Data.Enums;
|
|
using Jellyfin.Data.Enums;
|
|
|
using Jellyfin.Extensions;
|
|
using Jellyfin.Extensions;
|
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Library;
|
|
|
using MediaBrowser.Controller.Resolvers;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
|
-using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.Library.Resolvers.Books
|
|
namespace Emby.Server.Implementations.Library.Resolvers.Books
|
|
|
{
|
|
{
|
|
@@ -35,17 +35,22 @@ namespace Emby.Server.Implementations.Library.Resolvers.Books
|
|
|
|
|
|
|
|
var extension = Path.GetExtension(args.Path.AsSpan());
|
|
var extension = Path.GetExtension(args.Path.AsSpan());
|
|
|
|
|
|
|
|
- if (_validExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
|
|
+ if (!_validExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase))
|
|
|
{
|
|
{
|
|
|
- // It's a book
|
|
|
|
|
- return new Book
|
|
|
|
|
- {
|
|
|
|
|
- Path = args.Path,
|
|
|
|
|
- IsInMixedFolder = true
|
|
|
|
|
- };
|
|
|
|
|
|
|
+ return null;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- return null;
|
|
|
|
|
|
|
+ var result = BookFileNameParser.Parse(Path.GetFileNameWithoutExtension(args.Path));
|
|
|
|
|
+
|
|
|
|
|
+ return new Book
|
|
|
|
|
+ {
|
|
|
|
|
+ Path = args.Path,
|
|
|
|
|
+ Name = result.Name ?? string.Empty,
|
|
|
|
|
+ IndexNumber = result.Index,
|
|
|
|
|
+ ProductionYear = result.Year,
|
|
|
|
|
+ SeriesName = result.SeriesName ?? Path.GetFileName(Path.GetDirectoryName(args.Path)),
|
|
|
|
|
+ IsInMixedFolder = true,
|
|
|
|
|
+ };
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
private Book GetBook(ItemResolveArgs args)
|
|
private Book GetBook(ItemResolveArgs args)
|
|
@@ -59,15 +64,22 @@ namespace Emby.Server.Implementations.Library.Resolvers.Books
|
|
|
StringComparison.OrdinalIgnoreCase);
|
|
StringComparison.OrdinalIgnoreCase);
|
|
|
}).ToList();
|
|
}).ToList();
|
|
|
|
|
|
|
|
- // Don't return a Book if there is more (or less) than one document in the directory
|
|
|
|
|
|
|
+ // directory is only considered a book when it contains exactly one supported file
|
|
|
|
|
+ // other library structures with multiple books to a directory will get picked up as individual files
|
|
|
if (bookFiles.Count != 1)
|
|
if (bookFiles.Count != 1)
|
|
|
{
|
|
{
|
|
|
return null;
|
|
return null;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ var result = BookFileNameParser.Parse(Path.GetFileName(args.Path));
|
|
|
|
|
+
|
|
|
return new Book
|
|
return new Book
|
|
|
{
|
|
{
|
|
|
- Path = bookFiles[0].FullName
|
|
|
|
|
|
|
+ Path = bookFiles[0].FullName,
|
|
|
|
|
+ Name = result.Name ?? string.Empty,
|
|
|
|
|
+ IndexNumber = result.Index,
|
|
|
|
|
+ ProductionYear = result.Year,
|
|
|
|
|
+ SeriesName = result.SeriesName ?? string.Empty,
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|