using System; using System.IO; using Image; using Image.Core; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; namespace ConsoleInterface { /// /// SimpleOutputFormatter keeps the original file name of the image when formatting it. /// SimpleOutputFormatter also saves all the file names into a new directory. /// path. /// public class SimpleOutputSink : IOutputSink { public static ILogger Logger = NullLogger.Instance; private readonly string _outputDirectory; /// /// Creates an instance of SimpleOutputFormatter. /// /// The output directory. public SimpleOutputSink(string outputDirectory) { if (outputDirectory.Equals("")) outputDirectory = "."; else FileSystemHelpers.CreateDestinationDirectory(outputDirectory); _outputDirectory = outputDirectory; } public bool Save(IMetadataRemover metadataRemover) { var newFilePath = GetOutputPath(metadataRemover.GetImagePath()); var fileExists = FileSystemHelpers.CheckIfFileExists(newFilePath); if (fileExists) { Logger.LogWarning($"File {newFilePath} exists, skipping"); return false; } // Save the image under the same name in the new directory. metadataRemover.CleanImage(newFilePath); return true; } /// /// Returns a path containing the file name in the output directory. /// /// The initial path of the image. /// An absolute path of the form output_directory/initialFileName.jpg public string GetOutputPath(string initialFilePath) { Logger.LogDebug($"KeepFilenameFormatter - {_outputDirectory} - {initialFilePath}"); if (string.IsNullOrEmpty(initialFilePath)) throw new ArgumentException("The output file path cannot be null or empty!"); var fileName = Path.GetFileName(initialFilePath).Split('.')[0]; var path = Path.Combine(_outputDirectory, $"{fileName}.jpg"); return path; } /// /// Creates an instance of OriginalFilenameFileOutputPathFormatter. /// /// The output directory. public static SimpleOutputSink Create(string outputDirectory) { return new SimpleOutputSink(outputDirectory); } } }