mirror of
https://github.com/sphildreth/roadie
synced 2024-11-14 00:17:12 +00:00
253 lines
No EOL
11 KiB
C#
253 lines
No EOL
11 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using Roadie.Library.Caching;
|
|
using Roadie.Library.Configuration;
|
|
using Roadie.Library.Encoding;
|
|
using Roadie.Library.Engines;
|
|
using Roadie.Library.Extensions;
|
|
using Roadie.Library.Factories;
|
|
using Roadie.Library.Imaging;
|
|
using Roadie.Library.MetaData.Audio;
|
|
using Roadie.Library.Utility;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Library.FilePlugins
|
|
{
|
|
public class Audio : PluginBase
|
|
{
|
|
private Guid _artistId = Guid.Empty;
|
|
private Guid _releaseId = Guid.Empty;
|
|
|
|
public IAudioMetaDataHelper AudioMetaDataHelper { get; }
|
|
|
|
public override string[] HandlesTypes
|
|
{
|
|
get
|
|
{
|
|
return new string[1] { "audio/mpeg" };
|
|
}
|
|
}
|
|
|
|
public Audio(IRoadieSettings configuration,
|
|
IHttpEncoder httpEncoder,
|
|
IArtistFactory artistFactory,
|
|
IReleaseFactory releaseFactory,
|
|
IImageFactory imageFactory,
|
|
ICacheManager cacheManager,
|
|
ILogger logger,
|
|
IArtistLookupEngine artistLookupEngine,
|
|
IReleaseLookupEngine releaseLookupEngine,
|
|
IAudioMetaDataHelper audioMetaDataHelper)
|
|
: base(configuration, httpEncoder, artistFactory, releaseFactory, imageFactory, cacheManager, logger, artistLookupEngine, releaseLookupEngine)
|
|
{
|
|
this.AudioMetaDataHelper = audioMetaDataHelper;
|
|
}
|
|
|
|
public override async Task<OperationResult<bool>> Process(string destinationRoot, FileInfo fileInfo, bool doJustInfo, int? submissionId)
|
|
{
|
|
this.Logger.LogTrace(">> Audio: Process destinationRoot [{0}], FileInfo [{1}], doJustInfo [{2}], submissionId [{3}]", destinationRoot, fileInfo, doJustInfo, submissionId);
|
|
var sw = Stopwatch.StartNew();
|
|
var result = new OperationResult<bool>();
|
|
|
|
try
|
|
{
|
|
var dr = destinationRoot ?? fileInfo.DirectoryName;
|
|
|
|
string destinationName = null;
|
|
|
|
var metaData = await this.AudioMetaDataHelper.GetInfo(fileInfo, doJustInfo);
|
|
if (!metaData.IsValid)
|
|
{
|
|
var minWeight = this.MinWeightToDelete;
|
|
if (metaData.ValidWeight < minWeight && minWeight > 0)
|
|
{
|
|
this.Logger.LogTrace("Invalid File{3}: ValidWeight [{0}], Under MinWeightToDelete [{1}]. Deleting File [{2}]", metaData.ValidWeight, minWeight, fileInfo.FullName, doJustInfo ? " [Read Only Mode] " : string.Empty);
|
|
if (!doJustInfo)
|
|
{
|
|
fileInfo.Delete();
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
var artist = metaData.Artist.CleanString(this.Configuration);
|
|
var album = metaData.Release.CleanString(this.Configuration);
|
|
var title = metaData.Title.CleanString(this.Configuration).ToTitleCase(false);
|
|
var year = metaData.Year;
|
|
var trackNumber = metaData.TrackNumber ?? 0;
|
|
var diskNumber = metaData.Disk ?? 0;
|
|
|
|
SimpleContract.Requires(metaData.IsValid, "Track MetaData Invalid");
|
|
SimpleContract.Requires<ArgumentException>(!string.IsNullOrEmpty(artist), "Missing Track Artist");
|
|
SimpleContract.Requires<ArgumentException>(!string.IsNullOrEmpty(album), "Missing Track Album");
|
|
SimpleContract.Requires<ArgumentException>(!string.IsNullOrEmpty(title), "Missing Track Title");
|
|
SimpleContract.Requires<ArgumentException>(year > 0, string.Format("Invalid Track Year [{0}]", year));
|
|
SimpleContract.Requires<ArgumentException>(trackNumber > 0, "Missing Track Number");
|
|
|
|
var artistFolder = await this.DetermineArtistFolder(dr, metaData, doJustInfo);
|
|
if (string.IsNullOrEmpty(artistFolder))
|
|
{
|
|
this.Logger.LogWarning("Unable To Find ArtistFolder [{0}] For MetaData [{1}]", artistFolder, metaData.ToString());
|
|
return new OperationResult<bool>("Unable To Find Artist Folder");
|
|
}
|
|
var releaseFolder = await this.DetermineReleaseFolder(artistFolder, metaData, doJustInfo, submissionId);
|
|
if (string.IsNullOrEmpty(releaseFolder))
|
|
{
|
|
this.Logger.LogWarning("Unable To Find ReleaseFolder For MetaData [{0}]", metaData.ToString());
|
|
return new OperationResult<bool>("Unable To Find Release Folder");
|
|
}
|
|
destinationName = FolderPathHelper.TrackFullPath(this.Configuration, metaData, dr, artistFolder, releaseFolder);
|
|
this.Logger.LogTrace("Info: FileInfo [{0}], Artist Folder [{1}], Release Folder [{1}], Destination Name [{3}]", fileInfo.FullName, artistFolder, releaseFolder, destinationName);
|
|
|
|
if (doJustInfo)
|
|
{
|
|
result.IsSuccess = metaData.IsValid;
|
|
return result;
|
|
}
|
|
|
|
PluginBase.CheckMakeFolder(artistFolder);
|
|
PluginBase.CheckMakeFolder(releaseFolder);
|
|
|
|
// See if folder has "cover" image if so then move to release folder for metadata
|
|
var imageFiles = ImageHelper.ImageFilesInFolder(fileInfo.DirectoryName);
|
|
if (imageFiles != null && imageFiles.Any())
|
|
{
|
|
foreach (var imageFile in imageFiles)
|
|
{
|
|
var i = new FileInfo(imageFile);
|
|
var iName = i.Name.ToLower().Trim();
|
|
this.Logger.LogDebug("Found Image File [{0}] [{1}]", imageFile, iName);
|
|
var isCoverArtType = iName.Contains("cover") || iName.Contains("folder") || iName.Contains("front") || iName.Contains("release") || iName.Contains("album");
|
|
if (isCoverArtType)
|
|
{
|
|
var coverFileName = Path.Combine(releaseFolder, Factories.ReleaseFactory.CoverFilename);
|
|
if (coverFileName != i.FullName)
|
|
{
|
|
// Read image and convert to jpeg
|
|
var imageBytes = File.ReadAllBytes(i.FullName);
|
|
imageBytes = ImageHelper.ConvertToJpegFormat(imageBytes);
|
|
|
|
// Move cover to release folder
|
|
if (!doJustInfo)
|
|
{
|
|
File.WriteAllBytes(coverFileName, imageBytes);
|
|
i.Delete();
|
|
}
|
|
this.Logger.LogDebug("Found Image File [{0}], Moved to release folder", i.Name);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
var doesFileExistsForTrack = File.Exists(destinationName);
|
|
if (doesFileExistsForTrack)
|
|
{
|
|
var existing = new FileInfo(destinationName);
|
|
|
|
// If Exists determine which is better - if same do nothing
|
|
var existingMetaData = await this.AudioMetaDataHelper.GetInfo(existing, doJustInfo);
|
|
|
|
var areSameFile = existing.FullName.Replace("\\", "").Replace("/", "").Equals(fileInfo.FullName.Replace("\\", "").Replace("/", ""), StringComparison.OrdinalIgnoreCase);
|
|
var currentBitRate = metaData.AudioBitrate;
|
|
var existingBitRate = existingMetaData.AudioBitrate;
|
|
|
|
if (!areSameFile)
|
|
{
|
|
if (!existingMetaData.IsValid || (currentBitRate > existingBitRate))
|
|
{
|
|
this.Logger.LogTrace("Newer Is Better: Deleting Existing File [{0}]", existing);
|
|
if (!doJustInfo)
|
|
{
|
|
existing.Delete();
|
|
fileInfo.MoveTo(destinationName);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this.Logger.LogTrace("Existing [{0}] Is Better or Equal: Deleting Found File [{1}]", existing, fileInfo.FullName);
|
|
if (!doJustInfo)
|
|
{
|
|
fileInfo.Delete();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this.Logger.LogTrace("Moving File To [{0}]", destinationName);
|
|
if (!doJustInfo)
|
|
{
|
|
try
|
|
{
|
|
fileInfo.MoveTo(destinationName);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.Logger.LogError(ex, "Error Moving File [{0}}", destinationName);
|
|
}
|
|
}
|
|
}
|
|
|
|
result.AdditionalData.Add(PluginResultInfo.AdditionalDataKeyPluginResultInfo, new PluginResultInfo
|
|
{
|
|
ArtistFolder = artistFolder,
|
|
ArtistId = this._artistId,
|
|
ReleaseFolder = releaseFolder,
|
|
ReleaseId = this._releaseId,
|
|
Filename = fileInfo.FullName,
|
|
TrackNumber = metaData.TrackNumber,
|
|
TrackTitle = metaData.Title
|
|
});
|
|
result.IsSuccess = true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.Logger.LogError(ex, "Error Processing File [{0}}", fileInfo);
|
|
}
|
|
|
|
sw.Stop();
|
|
this.Logger.LogTrace("<< Audio: Process Complete. ElapsedTime [{0}]", sw.ElapsedMilliseconds);
|
|
return result;
|
|
}
|
|
|
|
private async Task<string> DetermineArtistFolder(string destinationRoot, AudioMetaData metaData, bool doJustInfo)
|
|
{
|
|
var artist = await this.ArtistLookupEngine.GetByName(metaData, !doJustInfo);
|
|
if (!artist.IsSuccess)
|
|
{
|
|
return null;
|
|
}
|
|
try
|
|
{
|
|
return artist.Data.ArtistFileFolder(this.Configuration, destinationRoot);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.Logger.LogError(ex, ex.Serialize());
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private async Task<string> DetermineReleaseFolder(string artistFolder, AudioMetaData metaData, bool doJustInfo, int? submissionId)
|
|
{
|
|
var artist = await this.ArtistLookupEngine.GetByName(metaData, !doJustInfo);
|
|
if (!artist.IsSuccess)
|
|
{
|
|
return null;
|
|
}
|
|
this._artistId = artist.Data.RoadieId;
|
|
var release = await this.ReleaseLookupEngine.GetByName(artist.Data, metaData, !doJustInfo, submissionId: submissionId);
|
|
if (!release.IsSuccess)
|
|
{
|
|
return null;
|
|
}
|
|
this._releaseId = release.Data.RoadieId;
|
|
release.Data.ReleaseDate = SafeParser.ToDateTime(metaData.Year);
|
|
return release.Data.ReleaseFileFolder(artistFolder);
|
|
}
|
|
}
|
|
} |