2013-08-17 21:40:23 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2011-11-13 05:07:06 +01:00
|
|
|
|
using NzbDrone.Common;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
|
using NzbDrone.Core.MediaFiles.Commands;
|
2013-07-06 23:47:49 +02:00
|
|
|
|
using NzbDrone.Core.MediaFiles.EpisodeImport;
|
2013-02-19 07:01:03 +01:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-05-21 00:45:16 +02:00
|
|
|
|
using NzbDrone.Core.Tv.Events;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-05-13 02:36:23 +02:00
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2013-04-15 07:27:32 +02:00
|
|
|
|
public interface IDiskScanService
|
|
|
|
|
{
|
|
|
|
|
string[] GetVideoFiles(string path, bool allDirectories = true);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-13 22:21:34 +02:00
|
|
|
|
public class DiskScanService :
|
|
|
|
|
IDiskScanService,
|
|
|
|
|
IHandle<SeriesUpdatedEvent>
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2013-08-18 06:28:34 +02:00
|
|
|
|
private readonly HashSet<string> _mediaExtensions;
|
|
|
|
|
|
|
|
|
|
private const string EXTENSIONS =
|
2013-08-18 06:35:36 +02:00
|
|
|
|
//XBMC
|
2013-08-27 07:20:08 +02:00
|
|
|
|
".m4v .3gp .nsv .ts .ty .strm .rm .rmvb .m3u .ifo .mov .qt .divx .xvid .bivx .vob .nrg .img " +
|
2013-08-18 06:28:34 +02:00
|
|
|
|
".iso .pva .wmv .asf .asx .ogm .m2v .avi .bin .dat .dvr-ms .mpg .mpeg .mp4 .mkv .avc .vp3 " +
|
2013-08-27 07:20:08 +02:00
|
|
|
|
".svq3 .nuv .viv .dv .fli .flv .wpl " +
|
2013-08-18 06:35:36 +02:00
|
|
|
|
//Other
|
|
|
|
|
".m2ts";
|
2013-08-18 06:28:34 +02:00
|
|
|
|
|
2013-05-11 01:53:50 +02:00
|
|
|
|
private readonly IDiskProvider _diskProvider;
|
2013-07-06 23:47:49 +02:00
|
|
|
|
private readonly IMakeImportDecision _importDecisionMaker;
|
|
|
|
|
private readonly IImportApprovedEpisodes _importApprovedEpisodes;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
private readonly IMessageAggregator _messageAggregator;
|
2013-08-18 06:28:34 +02:00
|
|
|
|
private readonly Logger _logger;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-07-06 23:47:49 +02:00
|
|
|
|
public DiskScanService(IDiskProvider diskProvider,
|
2013-07-13 22:21:34 +02:00
|
|
|
|
IMakeImportDecision importDecisionMaker,
|
2013-07-06 23:47:49 +02:00
|
|
|
|
IImportApprovedEpisodes importApprovedEpisodes,
|
2013-08-18 06:28:34 +02:00
|
|
|
|
IMessageAggregator messageAggregator, Logger logger)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
_diskProvider = diskProvider;
|
2013-07-06 23:47:49 +02:00
|
|
|
|
_importDecisionMaker = importDecisionMaker;
|
|
|
|
|
_importApprovedEpisodes = importApprovedEpisodes;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
_messageAggregator = messageAggregator;
|
2013-08-18 06:28:34 +02:00
|
|
|
|
_logger = logger;
|
|
|
|
|
|
2013-08-18 06:35:36 +02:00
|
|
|
|
_mediaExtensions = new HashSet<string>(EXTENSIONS.Split(' ').Select(c => c.ToLower()));
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:36:23 +02:00
|
|
|
|
private void Scan(Series series)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2013-07-12 03:47:22 +02:00
|
|
|
|
_messageAggregator.PublishCommand(new CleanMediaFileDb(series.Id));
|
2013-07-13 22:21:34 +02:00
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
|
if (!_diskProvider.FolderExists(series.Path))
|
2011-10-22 21:03:54 +02:00
|
|
|
|
{
|
2013-08-18 06:28:34 +02:00
|
|
|
|
_logger.Debug("Series folder doesn't exist: {0}", series.Path);
|
2013-04-15 03:41:39 +02:00
|
|
|
|
return;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
|
var mediaFileList = GetVideoFiles(series.Path);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-07-23 07:50:32 +02:00
|
|
|
|
var decisions = _importDecisionMaker.GetImportDecisions(mediaFileList, series, false);
|
2013-07-06 23:47:49 +02:00
|
|
|
|
_importApprovedEpisodes.Import(decisions);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:36:23 +02:00
|
|
|
|
public string[] GetVideoFiles(string path, bool allDirectories = true)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2013-08-18 06:28:34 +02:00
|
|
|
|
_logger.Debug("Scanning '{0}' for video files", path);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2012-08-27 12:15:22 +02:00
|
|
|
|
var searchOption = allDirectories ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly;
|
|
|
|
|
var filesOnDisk = _diskProvider.GetFiles(path, searchOption);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-08-18 06:28:34 +02:00
|
|
|
|
var mediaFileList = filesOnDisk.Where(c => _mediaExtensions.Contains(Path.GetExtension(c).ToLower())).ToList();
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-08-18 06:28:34 +02:00
|
|
|
|
_logger.Trace("{0} video files were found in {1}", mediaFileList.Count, path);
|
2013-04-15 03:41:39 +02:00
|
|
|
|
return mediaFileList.ToArray();
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
2013-05-13 02:36:23 +02:00
|
|
|
|
|
2013-07-13 22:21:34 +02:00
|
|
|
|
public void Handle(SeriesUpdatedEvent message)
|
2013-05-21 00:45:16 +02:00
|
|
|
|
{
|
|
|
|
|
Scan(message.Series);
|
|
|
|
|
}
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
2011-06-20 05:25:04 +02:00
|
|
|
|
}
|