mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
Fixed: Hookup BulkMovieMovieCommand
This commit is contained in:
parent
a2cad761b9
commit
a368cbd265
@ -1,4 +1,6 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
using FizzWare.NBuilder;
|
using FizzWare.NBuilder;
|
||||||
using Moq;
|
using Moq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
@ -16,6 +18,7 @@ public class MoveMovieServiceFixture : CoreTest<MoveMovieService>
|
|||||||
{
|
{
|
||||||
private Movie _movie;
|
private Movie _movie;
|
||||||
private MoveMovieCommand _command;
|
private MoveMovieCommand _command;
|
||||||
|
private BulkMoveMovieCommand _bulkCommand;
|
||||||
|
|
||||||
[SetUp]
|
[SetUp]
|
||||||
public void Setup()
|
public void Setup()
|
||||||
@ -31,9 +34,26 @@ public void Setup()
|
|||||||
DestinationPath = @"C:\Test\Movies2\Movie".AsOsAgnostic()
|
DestinationPath = @"C:\Test\Movies2\Movie".AsOsAgnostic()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
_bulkCommand = new BulkMoveMovieCommand
|
||||||
|
{
|
||||||
|
Movies = new List<BulkMoveMovie>
|
||||||
|
{
|
||||||
|
new BulkMoveMovie
|
||||||
|
{
|
||||||
|
MovieId = 1,
|
||||||
|
SourcePath = @"C:\Test\Movies\Movie".AsOsAgnostic()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
DestinationRootFolder = @"C:\Test\Movies2".AsOsAgnostic()
|
||||||
|
};
|
||||||
|
|
||||||
Mocker.GetMock<IMovieService>()
|
Mocker.GetMock<IMovieService>()
|
||||||
.Setup(s => s.GetMovie(It.IsAny<int>()))
|
.Setup(s => s.GetMovie(It.IsAny<int>()))
|
||||||
.Returns(_movie);
|
.Returns(_movie);
|
||||||
|
|
||||||
|
Mocker.GetMock<IDiskProvider>()
|
||||||
|
.Setup(s => s.FolderExists(It.IsAny<string>()))
|
||||||
|
.Returns(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void GivenFailedMove()
|
private void GivenFailedMove()
|
||||||
@ -48,49 +68,64 @@ public void should_log_error_when_move_throws_an_exception()
|
|||||||
{
|
{
|
||||||
GivenFailedMove();
|
GivenFailedMove();
|
||||||
|
|
||||||
Assert.Throws<IOException>(() => Subject.Execute(_command));
|
Subject.Execute(_command);
|
||||||
|
|
||||||
ExceptionVerification.ExpectedErrors(1);
|
ExceptionVerification.ExpectedErrors(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void should_no_update_movie_path_on_error()
|
public void should_revert_movie_path_on_error()
|
||||||
{
|
{
|
||||||
GivenFailedMove();
|
GivenFailedMove();
|
||||||
|
|
||||||
Assert.Throws<IOException>(() => Subject.Execute(_command));
|
Subject.Execute(_command);
|
||||||
|
|
||||||
ExceptionVerification.ExpectedErrors(1);
|
ExceptionVerification.ExpectedErrors(1);
|
||||||
|
|
||||||
Mocker.GetMock<IMovieService>()
|
Mocker.GetMock<IMovieService>()
|
||||||
.Verify(v => v.UpdateMovie(It.IsAny<Movie>()), Times.Never());
|
.Verify(v => v.UpdateMovie(It.IsAny<Movie>()), Times.Once());
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_use_destination_path()
|
||||||
|
{
|
||||||
|
Subject.Execute(_command);
|
||||||
|
|
||||||
|
Mocker.GetMock<IDiskTransferService>()
|
||||||
|
.Verify(v => v.TransferFolder(_command.SourcePath, _command.DestinationPath, TransferMode.Move, It.IsAny<bool>()), Times.Once());
|
||||||
|
|
||||||
|
Mocker.GetMock<IBuildFileNames>()
|
||||||
|
.Verify(v => v.GetMovieFolder(It.IsAny<Movie>(), null), Times.Never());
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void should_build_new_path_when_root_folder_is_provided()
|
public void should_build_new_path_when_root_folder_is_provided()
|
||||||
{
|
{
|
||||||
_command.DestinationPath = null;
|
var movieFolder = "Movie";
|
||||||
_command.DestinationRootFolder = @"C:\Test\Movie3".AsOsAgnostic();
|
var expectedPath = Path.Combine(_bulkCommand.DestinationRootFolder, movieFolder);
|
||||||
|
|
||||||
var expectedPath = @"C:\Test\Movie3\Movie".AsOsAgnostic();
|
|
||||||
|
|
||||||
Mocker.GetMock<IBuildFileNames>()
|
Mocker.GetMock<IBuildFileNames>()
|
||||||
.Setup(s => s.GetMovieFolder(It.IsAny<Movie>(), null))
|
.Setup(s => s.GetMovieFolder(It.IsAny<Movie>(), null))
|
||||||
.Returns("Movie");
|
.Returns(movieFolder);
|
||||||
|
|
||||||
Subject.Execute(_command);
|
Subject.Execute(_bulkCommand);
|
||||||
|
|
||||||
Mocker.GetMock<IMovieService>()
|
Mocker.GetMock<IDiskTransferService>()
|
||||||
.Verify(v => v.UpdateMovie(It.Is<Movie>(s => s.Path == expectedPath)), Times.Once());
|
.Verify(v => v.TransferFolder(_bulkCommand.Movies.First().SourcePath, expectedPath, TransferMode.Move, It.IsAny<bool>()), Times.Once());
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void should_use_destination_path_if_destination_root_folder_is_blank()
|
public void should_skip_movie_folder_if_it_does_not_exist()
|
||||||
{
|
{
|
||||||
|
Mocker.GetMock<IDiskProvider>()
|
||||||
|
.Setup(s => s.FolderExists(It.IsAny<string>()))
|
||||||
|
.Returns(false);
|
||||||
|
|
||||||
|
|
||||||
Subject.Execute(_command);
|
Subject.Execute(_command);
|
||||||
|
|
||||||
Mocker.GetMock<IMovieService>()
|
Mocker.GetMock<IDiskTransferService>()
|
||||||
.Verify(v => v.UpdateMovie(It.Is<Movie>(s => s.Path == _command.DestinationPath)), Times.Once());
|
.Verify(v => v.TransferFolder(_command.SourcePath, _command.DestinationPath, TransferMode.Move, It.IsAny<bool>()), Times.Never());
|
||||||
|
|
||||||
Mocker.GetMock<IBuildFileNames>()
|
Mocker.GetMock<IBuildFileNames>()
|
||||||
.Verify(v => v.GetMovieFolder(It.IsAny<Movie>(), null), Times.Never());
|
.Verify(v => v.GetMovieFolder(It.IsAny<Movie>(), null), Times.Never());
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common.Disk;
|
using NzbDrone.Common.Disk;
|
||||||
using NzbDrone.Common.Extensions;
|
|
||||||
using NzbDrone.Common.Instrumentation.Extensions;
|
using NzbDrone.Common.Instrumentation.Extensions;
|
||||||
using NzbDrone.Core.Messaging.Commands;
|
using NzbDrone.Core.Messaging.Commands;
|
||||||
using NzbDrone.Core.Messaging.Events;
|
using NzbDrone.Core.Messaging.Events;
|
||||||
@ -11,61 +10,94 @@
|
|||||||
|
|
||||||
namespace NzbDrone.Core.Movies
|
namespace NzbDrone.Core.Movies
|
||||||
{
|
{
|
||||||
public class MoveMovieService : IExecute<MoveMovieCommand>
|
public class MoveMovieService : IExecute<MoveMovieCommand>, IExecute<BulkMoveMovieCommand>
|
||||||
{
|
{
|
||||||
private readonly IMovieService _movieService;
|
private readonly IMovieService _movieService;
|
||||||
private readonly IBuildFileNames _filenameBuilder;
|
private readonly IBuildFileNames _filenameBuilder;
|
||||||
|
private readonly IDiskProvider _diskProvider;
|
||||||
private readonly IDiskTransferService _diskTransferService;
|
private readonly IDiskTransferService _diskTransferService;
|
||||||
private readonly IEventAggregator _eventAggregator;
|
private readonly IEventAggregator _eventAggregator;
|
||||||
private readonly Logger _logger;
|
private readonly Logger _logger;
|
||||||
|
|
||||||
public MoveMovieService(IMovieService movieService,
|
public MoveMovieService(IMovieService movieService,
|
||||||
IBuildFileNames filenameBuilder,
|
IBuildFileNames filenameBuilder,
|
||||||
|
IDiskProvider diskProvider,
|
||||||
IDiskTransferService diskTransferService,
|
IDiskTransferService diskTransferService,
|
||||||
IEventAggregator eventAggregator,
|
IEventAggregator eventAggregator,
|
||||||
Logger logger)
|
Logger logger)
|
||||||
{
|
{
|
||||||
_movieService = movieService;
|
_movieService = movieService;
|
||||||
_filenameBuilder = filenameBuilder;
|
_filenameBuilder = filenameBuilder;
|
||||||
|
_diskProvider = diskProvider;
|
||||||
_diskTransferService = diskTransferService;
|
_diskTransferService = diskTransferService;
|
||||||
_eventAggregator = eventAggregator;
|
_eventAggregator = eventAggregator;
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Execute(MoveMovieCommand message)
|
private void MoveSingleMovie(Movie movie, string sourcePath, string destinationPath, int? index = null, int? total = null)
|
||||||
{
|
{
|
||||||
var movie = _movieService.GetMovie(message.MovieId);
|
if (!_diskProvider.FolderExists(sourcePath))
|
||||||
var source = message.SourcePath;
|
|
||||||
var destination = message.DestinationPath;
|
|
||||||
|
|
||||||
if (!message.DestinationRootFolder.IsNullOrWhiteSpace())
|
|
||||||
{
|
{
|
||||||
_logger.Debug("Buiding destination path using root folder: {0} and the movie title", message.DestinationRootFolder);
|
_logger.Debug("Folder '{0}' for '{1}' does not exist, not moving.", sourcePath, movie.Title);
|
||||||
destination = Path.Combine(message.DestinationRootFolder, _filenameBuilder.GetMovieFolder(movie));
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger.ProgressInfo("Moving {0} from '{1}' to '{2}'", movie.Title, source, destination);
|
if (index != null && total != null)
|
||||||
|
{
|
||||||
|
_logger.ProgressInfo("Moving {0} from '{1}' to '{2}' ({3}/{4})", movie.Title, sourcePath, destinationPath, index + 1, total);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.ProgressInfo("Moving {0} from '{1}' to '{2}'", movie.Title, sourcePath, destinationPath);
|
||||||
|
}
|
||||||
|
|
||||||
//TODO: Move to transactional disk operations
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_diskTransferService.TransferFolder(source, destination, TransferMode.Move);
|
_diskTransferService.TransferFolder(sourcePath, destinationPath, TransferMode.Move);
|
||||||
}
|
|
||||||
catch (IOException ex)
|
|
||||||
{
|
|
||||||
var errorMessage = string.Format("Unable to move movie from '{0}' to '{1}'", source, destination);
|
|
||||||
|
|
||||||
_logger.Error(ex, errorMessage);
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
|
|
||||||
_logger.ProgressInfo("{0} moved successfully to {1}", movie.Title, movie.Path);
|
_logger.ProgressInfo("{0} moved successfully to {1}", movie.Title, movie.Path);
|
||||||
|
|
||||||
//Update the movie path to the new path
|
_eventAggregator.PublishEvent(new MovieMovedEvent(movie, sourcePath, destinationPath));
|
||||||
movie.Path = destination;
|
}
|
||||||
movie = _movieService.UpdateMovie(movie);
|
catch (IOException ex)
|
||||||
|
{
|
||||||
|
_logger.Error(ex, "Unable to move movie from '{0}' to '{1}'. Try moving files manually", sourcePath, destinationPath);
|
||||||
|
|
||||||
_eventAggregator.PublishEvent(new MovieMovedEvent(movie, source, destination));
|
RevertPath(movie.Id, sourcePath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RevertPath(int movieId, string path)
|
||||||
|
{
|
||||||
|
var movie = _movieService.GetMovie(movieId);
|
||||||
|
|
||||||
|
movie.Path = path;
|
||||||
|
_movieService.UpdateMovie(movie);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Execute(MoveMovieCommand message)
|
||||||
|
{
|
||||||
|
var movie = _movieService.GetMovie(message.MovieId);
|
||||||
|
MoveSingleMovie(movie, message.SourcePath, message.DestinationPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Execute(BulkMoveMovieCommand message)
|
||||||
|
{
|
||||||
|
var moviesToMove = message.Movies;
|
||||||
|
var destinationRootFolder = message.DestinationRootFolder;
|
||||||
|
|
||||||
|
_logger.ProgressInfo("Moving {0} movies to '{1}'", moviesToMove.Count, destinationRootFolder);
|
||||||
|
|
||||||
|
for (var index = 0; index < moviesToMove.Count; index++)
|
||||||
|
{
|
||||||
|
var s = moviesToMove[index];
|
||||||
|
var movie = _movieService.GetMovie(s.MovieId);
|
||||||
|
var destinationPath = Path.Combine(destinationRootFolder, _filenameBuilder.GetMovieFolder(movie));
|
||||||
|
|
||||||
|
MoveSingleMovie(movie, s.SourcePath, destinationPath, index, moviesToMove.Count);
|
||||||
|
}
|
||||||
|
|
||||||
|
_logger.ProgressInfo("Finished moving {0} movies to '{1}'", moviesToMove.Count, destinationRootFolder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user