mirror of
https://github.com/Readarr/Readarr
synced 2026-02-18 12:41:47 +01:00
117 lines
4.8 KiB
C#
117 lines
4.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using NLog;
|
|
using NzbDrone.Common.Disk;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Extras.Files
|
|
{
|
|
public interface IManageExtraFiles
|
|
{
|
|
int Order { get; }
|
|
IEnumerable<ExtraFile> CreateAfterSeriesScan(Series series, List<EpisodeFile> episodeFiles);
|
|
IEnumerable<ExtraFile> CreateAfterEpisodeImport(Series series, EpisodeFile episodeFile);
|
|
IEnumerable<ExtraFile> CreateAfterEpisodeImport(Series series, string seriesFolder, string seasonFolder);
|
|
IEnumerable<ExtraFile> MoveFilesAfterRename(Series series, List<EpisodeFile> episodeFiles);
|
|
ExtraFile Import(Series series, EpisodeFile episodeFile, string path, string extension, bool readOnly);
|
|
}
|
|
|
|
public abstract class ExtraFileManager<TExtraFile> : IManageExtraFiles
|
|
where TExtraFile : ExtraFile, new()
|
|
|
|
{
|
|
private readonly IConfigService _configService;
|
|
private readonly IDiskProvider _diskProvider;
|
|
private readonly IDiskTransferService _diskTransferService;
|
|
private readonly Logger _logger;
|
|
|
|
public ExtraFileManager(IConfigService configService,
|
|
IDiskProvider diskProvider,
|
|
IDiskTransferService diskTransferService,
|
|
Logger logger)
|
|
{
|
|
_configService = configService;
|
|
_diskProvider = diskProvider;
|
|
_diskTransferService = diskTransferService;
|
|
_logger = logger;
|
|
}
|
|
|
|
public abstract int Order { get; }
|
|
public abstract IEnumerable<ExtraFile> CreateAfterSeriesScan(Series series, List<EpisodeFile> episodeFiles);
|
|
public abstract IEnumerable<ExtraFile> CreateAfterEpisodeImport(Series series, EpisodeFile episodeFile);
|
|
public abstract IEnumerable<ExtraFile> CreateAfterEpisodeImport(Series series, string seriesFolder, string seasonFolder);
|
|
public abstract IEnumerable<ExtraFile> MoveFilesAfterRename(Series series, List<EpisodeFile> episodeFiles);
|
|
public abstract ExtraFile Import(Series series, EpisodeFile episodeFile, string path, string extension, bool readOnly);
|
|
|
|
protected TExtraFile ImportFile(Series series, EpisodeFile episodeFile, string path, bool readOnly, string extension, string fileNameSuffix = null)
|
|
{
|
|
var newFolder = Path.GetDirectoryName(Path.Combine(series.Path, episodeFile.RelativePath));
|
|
var filenameBuilder = new StringBuilder(Path.GetFileNameWithoutExtension(episodeFile.RelativePath));
|
|
|
|
if (fileNameSuffix.IsNotNullOrWhiteSpace())
|
|
{
|
|
filenameBuilder.Append(fileNameSuffix);
|
|
}
|
|
|
|
filenameBuilder.Append(extension);
|
|
|
|
var newFileName = Path.Combine(newFolder, filenameBuilder.ToString());
|
|
var transferMode = TransferMode.Move;
|
|
|
|
if (readOnly)
|
|
{
|
|
transferMode = _configService.CopyUsingHardlinks ? TransferMode.HardLinkOrCopy : TransferMode.Copy;
|
|
}
|
|
|
|
_diskTransferService.TransferFile(path, newFileName, transferMode, true, false);
|
|
|
|
return new TExtraFile
|
|
{
|
|
SeriesId = series.Id,
|
|
SeasonNumber = episodeFile.SeasonNumber,
|
|
EpisodeFileId = episodeFile.Id,
|
|
RelativePath = series.Path.GetRelativePath(newFileName),
|
|
Extension = extension
|
|
};
|
|
}
|
|
|
|
protected TExtraFile MoveFile(Series series, EpisodeFile episodeFile, TExtraFile extraFile, string fileNameSuffix = null)
|
|
{
|
|
var newFolder = Path.GetDirectoryName(Path.Combine(series.Path, episodeFile.RelativePath));
|
|
var filenameBuilder = new StringBuilder(Path.GetFileNameWithoutExtension(episodeFile.RelativePath));
|
|
|
|
if (fileNameSuffix.IsNotNullOrWhiteSpace())
|
|
{
|
|
filenameBuilder.Append(fileNameSuffix);
|
|
}
|
|
|
|
filenameBuilder.Append(".");
|
|
filenameBuilder.Append(extraFile.Extension);
|
|
|
|
var existingFileName = Path.Combine(series.Path, extraFile.RelativePath);
|
|
var newFileName = Path.Combine(newFolder, filenameBuilder.ToString());
|
|
|
|
if (newFileName.PathNotEquals(existingFileName))
|
|
{
|
|
try
|
|
{
|
|
_diskProvider.MoveFile(existingFileName, newFileName);
|
|
extraFile.RelativePath = series.Path.GetRelativePath(newFileName);
|
|
|
|
return extraFile;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.Warn(ex, "Unable to move file after rename: {0}", existingFileName);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|