|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using NLog;
|
|
|
|
using NzbDrone.Common.Disk;
|
|
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
using NzbDrone.Core.Extras.Files;
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
|
|
|
using NzbDrone.Core.Music;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Extras.Others
|
|
|
|
{
|
|
|
|
public class OtherExtraService : ExtraFileManager<OtherExtraFile>
|
|
|
|
{
|
|
|
|
private readonly IOtherExtraFileService _otherExtraFileService;
|
|
|
|
|
|
|
|
public OtherExtraService(IConfigService configService,
|
|
|
|
IDiskProvider diskProvider,
|
|
|
|
IDiskTransferService diskTransferService,
|
|
|
|
IOtherExtraFileService otherExtraFileService,
|
|
|
|
Logger logger)
|
|
|
|
: base(configService, diskProvider, diskTransferService, logger)
|
|
|
|
{
|
|
|
|
_otherExtraFileService = otherExtraFileService;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override int Order => 2;
|
|
|
|
|
|
|
|
public override IEnumerable<ExtraFile> CreateAfterArtistScan(Artist artist, List<Album> albums, List<TrackFile> trackFiles)
|
|
|
|
{
|
|
|
|
return Enumerable.Empty<ExtraFile>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IEnumerable<ExtraFile> CreateAfterTrackImport(Artist artist, TrackFile trackFile)
|
|
|
|
{
|
|
|
|
return Enumerable.Empty<ExtraFile>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IEnumerable<ExtraFile> CreateAfterTrackImport(Artist artist, string artistFolder, string albumFolder)
|
|
|
|
{
|
|
|
|
return Enumerable.Empty<ExtraFile>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IEnumerable<ExtraFile> MoveFilesAfterRename(Artist artist, List<TrackFile> trackFiles)
|
|
|
|
{
|
|
|
|
var extraFiles = _otherExtraFileService.GetFilesByArtist(artist.Id);
|
|
|
|
var movedFiles = new List<OtherExtraFile>();
|
|
|
|
|
|
|
|
foreach (var trackFile in trackFiles)
|
|
|
|
{
|
|
|
|
var extraFilesForTrackFile = extraFiles.Where(m => m.TrackFileId == trackFile.Id).ToList();
|
|
|
|
|
|
|
|
foreach (var extraFile in extraFilesForTrackFile)
|
|
|
|
{
|
|
|
|
movedFiles.AddIfNotNull(MoveFile(artist, trackFile, extraFile));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_otherExtraFileService.Upsert(movedFiles);
|
|
|
|
|
|
|
|
return movedFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override ExtraFile Import(Artist artist, TrackFile trackFile, string path, string extension, bool readOnly)
|
|
|
|
{
|
|
|
|
// If the extension is .nfo we need to change it to .nfo-orig
|
|
|
|
if (Path.GetExtension(path).Equals(".nfo", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
extension += "-orig";
|
|
|
|
}
|
|
|
|
|
|
|
|
var extraFile = ImportFile(artist, trackFile, path, readOnly, extension, null);
|
|
|
|
|
|
|
|
_otherExtraFileService.Upsert(extraFile);
|
|
|
|
|
|
|
|
return extraFile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|