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