2013-09-12 22:42:01 +00:00
|
|
|
|
using System.IO;
|
2011-06-20 01:59:31 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2011-11-13 04:07:06 +00:00
|
|
|
|
using NzbDrone.Common;
|
2013-09-11 06:33:47 +00:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
2013-05-13 00:36:23 +00:00
|
|
|
|
using NzbDrone.Core.MediaFiles.Commands;
|
2013-07-06 21:47:49 +00:00
|
|
|
|
using NzbDrone.Core.MediaFiles.EpisodeImport;
|
2013-09-14 06:42:09 +00:00
|
|
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
|
using NzbDrone.Core.Messaging.Events;
|
2013-02-19 06:01:03 +00:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-05-20 22:45:16 +00:00
|
|
|
|
using NzbDrone.Core.Tv.Events;
|
2011-06-20 01:59:31 +00:00
|
|
|
|
|
2013-05-13 00:36:23 +00:00
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
2011-06-20 01:59:31 +00:00
|
|
|
|
{
|
2013-04-15 05:27:32 +00:00
|
|
|
|
public interface IDiskScanService
|
|
|
|
|
{
|
|
|
|
|
string[] GetVideoFiles(string path, bool allDirectories = true);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-13 20:21:34 +00:00
|
|
|
|
public class DiskScanService :
|
|
|
|
|
IDiskScanService,
|
|
|
|
|
IHandle<SeriesUpdatedEvent>
|
2011-06-20 01:59:31 +00:00
|
|
|
|
{
|
2013-05-10 23:53:50 +00:00
|
|
|
|
private readonly IDiskProvider _diskProvider;
|
2013-07-06 21:47:49 +00:00
|
|
|
|
private readonly IMakeImportDecision _importDecisionMaker;
|
|
|
|
|
private readonly IImportApprovedEpisodes _importApprovedEpisodes;
|
2013-09-14 06:36:07 +00:00
|
|
|
|
private readonly ICommandExecutor _commandExecutor;
|
2013-08-18 04:28:34 +00:00
|
|
|
|
private readonly Logger _logger;
|
2011-06-20 01:59:31 +00:00
|
|
|
|
|
2013-07-06 21:47:49 +00:00
|
|
|
|
public DiskScanService(IDiskProvider diskProvider,
|
2013-07-13 20:21:34 +00:00
|
|
|
|
IMakeImportDecision importDecisionMaker,
|
2013-07-06 21:47:49 +00:00
|
|
|
|
IImportApprovedEpisodes importApprovedEpisodes,
|
2013-09-14 06:36:07 +00:00
|
|
|
|
ICommandExecutor commandExecutor, Logger logger)
|
2011-06-20 01:59:31 +00:00
|
|
|
|
{
|
|
|
|
|
_diskProvider = diskProvider;
|
2013-07-06 21:47:49 +00:00
|
|
|
|
_importDecisionMaker = importDecisionMaker;
|
|
|
|
|
_importApprovedEpisodes = importApprovedEpisodes;
|
2013-09-14 06:36:07 +00:00
|
|
|
|
_commandExecutor = commandExecutor;
|
2013-08-18 04:28:34 +00:00
|
|
|
|
_logger = logger;
|
2011-06-20 01:59:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 00:36:23 +00:00
|
|
|
|
private void Scan(Series series)
|
2011-06-20 01:59:31 +00:00
|
|
|
|
{
|
2013-09-11 06:33:47 +00:00
|
|
|
|
_logger.ProgressInfo("Scanning disk for {0}", series.Title);
|
2013-09-14 06:36:07 +00:00
|
|
|
|
_commandExecutor.PublishCommand(new CleanMediaFileDb(series.Id));
|
2013-07-13 20:21:34 +00:00
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
if (!_diskProvider.FolderExists(series.Path))
|
2011-10-22 19:03:54 +00:00
|
|
|
|
{
|
2013-08-18 04:28:34 +00:00
|
|
|
|
_logger.Debug("Series folder doesn't exist: {0}", series.Path);
|
2013-04-15 01:41:39 +00:00
|
|
|
|
return;
|
2011-06-20 01:59:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
var mediaFileList = GetVideoFiles(series.Path);
|
2011-06-20 01:59:31 +00:00
|
|
|
|
|
2013-07-23 05:50:32 +00:00
|
|
|
|
var decisions = _importDecisionMaker.GetImportDecisions(mediaFileList, series, false);
|
2013-07-06 21:47:49 +00:00
|
|
|
|
_importApprovedEpisodes.Import(decisions);
|
2011-06-20 01:59:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 00:36:23 +00:00
|
|
|
|
public string[] GetVideoFiles(string path, bool allDirectories = true)
|
2011-06-20 01:59:31 +00:00
|
|
|
|
{
|
2013-08-18 04:28:34 +00:00
|
|
|
|
_logger.Debug("Scanning '{0}' for video files", path);
|
2011-06-20 01:59:31 +00:00
|
|
|
|
|
2012-08-27 10:15:22 +00:00
|
|
|
|
var searchOption = allDirectories ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly;
|
|
|
|
|
var filesOnDisk = _diskProvider.GetFiles(path, searchOption);
|
2011-06-20 01:59:31 +00:00
|
|
|
|
|
2013-09-12 06:33:28 +00:00
|
|
|
|
var mediaFileList = filesOnDisk.Where(c => MediaFileExtensions.Extensions.Contains(Path.GetExtension(c).ToLower())).ToList();
|
2011-06-20 01:59:31 +00:00
|
|
|
|
|
2013-08-18 04:28:34 +00:00
|
|
|
|
_logger.Trace("{0} video files were found in {1}", mediaFileList.Count, path);
|
2013-04-15 01:41:39 +00:00
|
|
|
|
return mediaFileList.ToArray();
|
2011-06-20 01:59:31 +00:00
|
|
|
|
}
|
2013-05-13 00:36:23 +00:00
|
|
|
|
|
2013-07-13 20:21:34 +00:00
|
|
|
|
public void Handle(SeriesUpdatedEvent message)
|
2013-05-20 22:45:16 +00:00
|
|
|
|
{
|
|
|
|
|
Scan(message.Series);
|
|
|
|
|
}
|
2011-06-20 01:59:31 +00:00
|
|
|
|
}
|
2011-06-20 03:25:04 +00:00
|
|
|
|
}
|