Improve Release Title Custom Format debugging

(cherry picked from commit ec40bc6eea1eb282cb804b8dd5461bf5ade332e9)

Closes #3235
pull/3259/head
bakerboy448 5 months ago committed by Bogdan
parent 5704adfbc5
commit a259684916

@ -1,6 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using NLog;
using NzbDrone.Common.Extensions; using NzbDrone.Common.Extensions;
using NzbDrone.Core.Blocklisting; using NzbDrone.Core.Blocklisting;
using NzbDrone.Core.Books; using NzbDrone.Core.Books;
@ -23,10 +24,12 @@ namespace NzbDrone.Core.CustomFormats
public class CustomFormatCalculationService : ICustomFormatCalculationService public class CustomFormatCalculationService : ICustomFormatCalculationService
{ {
private readonly ICustomFormatService _formatService; private readonly ICustomFormatService _formatService;
private readonly Logger _logger;
public CustomFormatCalculationService(ICustomFormatService formatService) public CustomFormatCalculationService(ICustomFormatService formatService, Logger logger)
{ {
_formatService = formatService; _formatService = formatService;
_logger = logger;
} }
public List<CustomFormat> ParseCustomFormat(RemoteBook remoteBook, long size) public List<CustomFormat> ParseCustomFormat(RemoteBook remoteBook, long size)
@ -145,26 +148,30 @@ namespace NzbDrone.Core.CustomFormats
return matches.OrderBy(x => x.Name).ToList(); return matches.OrderBy(x => x.Name).ToList();
} }
private static List<CustomFormat> ParseCustomFormat(BookFile bookFile, Author author, List<CustomFormat> allCustomFormats) private List<CustomFormat> ParseCustomFormat(BookFile bookFile, Author author, List<CustomFormat> allCustomFormats)
{ {
var sceneName = string.Empty; var releaseTitle = string.Empty;
if (bookFile.SceneName.IsNotNullOrWhiteSpace()) if (bookFile.SceneName.IsNotNullOrWhiteSpace())
{ {
sceneName = bookFile.SceneName; _logger.Trace("Using scene name for release title: {0}", bookFile.SceneName);
releaseTitle = bookFile.SceneName;
} }
else if (bookFile.OriginalFilePath.IsNotNullOrWhiteSpace()) else if (bookFile.OriginalFilePath.IsNotNullOrWhiteSpace())
{ {
sceneName = bookFile.OriginalFilePath; _logger.Trace("Using original file path for release title: {0}", bookFile.OriginalFilePath);
releaseTitle = bookFile.OriginalFilePath;
} }
else if (bookFile.Path.IsNotNullOrWhiteSpace()) else if (bookFile.Path.IsNotNullOrWhiteSpace())
{ {
sceneName = Path.GetFileName(bookFile.Path); _logger.Trace("Using path for release title: {0}", Path.GetFileName(bookFile.Path));
releaseTitle = Path.GetFileName(bookFile.Path);
} }
var bookInfo = new ParsedBookInfo var bookInfo = new ParsedBookInfo
{ {
AuthorName = author.Name, AuthorName = author.Name,
ReleaseTitle = sceneName, ReleaseTitle = releaseTitle,
Quality = bookFile.Quality, Quality = bookFile.Quality,
ReleaseGroup = bookFile.ReleaseGroup ReleaseGroup = bookFile.ReleaseGroup
}; };

Loading…
Cancel
Save