From 2cf2ebcbb28a59537533f36e4433349dbd76b473 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Fri, 19 Jan 2024 23:30:24 -0600 Subject: [PATCH] Improve Release Title Custom Format debugging (cherry picked from commit ec40bc6eea1eb282cb804b8dd5461bf5ade332e9) Closes #4485 --- .../CustomFormatCalculationService.cs | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs b/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs index a6ef214fc7..253bdcfdc4 100644 --- a/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs +++ b/src/NzbDrone.Core/CustomFormats/CustomFormatCalculationService.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; +using NLog; using NzbDrone.Common.Extensions; using NzbDrone.Core.Blocklisting; using NzbDrone.Core.History; @@ -23,10 +24,12 @@ public interface ICustomFormatCalculationService public class CustomFormatCalculationService : ICustomFormatCalculationService { private readonly ICustomFormatService _formatService; + private readonly Logger _logger; - public CustomFormatCalculationService(ICustomFormatService formatService) + public CustomFormatCalculationService(ICustomFormatService formatService, Logger logger) { _formatService = formatService; + _logger = logger; } public List ParseCustomFormat(RemoteAlbum remoteAlbum, long size) @@ -145,26 +148,30 @@ private static List ParseCustomFormat(CustomFormatInput input, Lis return matches.OrderBy(x => x.Name).ToList(); } - private static List ParseCustomFormat(TrackFile trackFile, Artist artist, List allCustomFormats) + private List ParseCustomFormat(TrackFile trackFile, Artist artist, List allCustomFormats) { - var sceneName = string.Empty; + var releaseTitle = string.Empty; + if (trackFile.SceneName.IsNotNullOrWhiteSpace()) { - sceneName = trackFile.SceneName; + _logger.Trace("Using scene name for release title: {0}", trackFile.SceneName); + releaseTitle = trackFile.SceneName; } else if (trackFile.OriginalFilePath.IsNotNullOrWhiteSpace()) { - sceneName = trackFile.OriginalFilePath; + _logger.Trace("Using original file path for release title: {0}", Path.GetFileName(trackFile.OriginalFilePath)); + releaseTitle = trackFile.OriginalFilePath; } else if (trackFile.Path.IsNotNullOrWhiteSpace()) { - sceneName = Path.GetFileName(trackFile.Path); + _logger.Trace("Using path for release title: {0}", Path.GetFileName(trackFile.Path)); + releaseTitle = Path.GetFileName(trackFile.Path); } var episodeInfo = new ParsedAlbumInfo { ArtistName = artist.Name, - ReleaseTitle = sceneName, + ReleaseTitle = releaseTitle, Quality = trackFile.Quality, ReleaseGroup = trackFile.ReleaseGroup };