added input validation around MoveFile

This commit is contained in:
kayone 2013-11-26 22:52:11 -08:00
parent 95324b53d2
commit 7efac124c7
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,7 @@ using System.IO;
using System.Linq;
using NLog;
using NzbDrone.Common;
using NzbDrone.Common.EnsureThat;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.Organizer;
@ -59,6 +60,10 @@ namespace NzbDrone.Core.MediaFiles
private void MoveFile(EpisodeFile episodeFile, Series series, string destinationFilename)
{
Ensure.That(() => episodeFile).IsNotNull();
Ensure.That(() => series).IsNotNull();
Ensure.That(() => destinationFilename).IsValidPath();
if (!_diskProvider.FileExists(episodeFile.Path))
{
throw new FileNotFoundException("Episode file path does not exist", episodeFile.Path);