2011-06-20 03:59:31 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
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-04-15 03:41:39 +02:00
|
|
|
|
using NzbDrone.Core.Parser;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
using NzbDrone.Core.Providers;
|
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
|
|
|
|
|
{
|
|
|
|
|
EpisodeFile ImportFile(Series series, string filePath);
|
|
|
|
|
string[] GetVideoFiles(string path, bool allDirectories = true);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 00:45:16 +02:00
|
|
|
|
public class DiskScanService : IDiskScanService, IExecute<DiskScanCommand>, IHandle<EpisodeInfoAddedEvent>
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2013-03-06 22:20:33 +01:00
|
|
|
|
private static readonly string[] MediaExtensions = new[] { ".mkv", ".avi", ".wmv", ".mp4", ".mpg", ".mpeg", ".xvid", ".flv", ".mov", ".rm", ".rmvb", ".divx", ".dvr-ms", ".ts", ".ogm", ".m4v", ".strm" };
|
2013-05-11 01:53:50 +02:00
|
|
|
|
private readonly IDiskProvider _diskProvider;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
private readonly ISeriesService _seriesService;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
private readonly IMediaFileService _mediaFileService;
|
2013-04-15 03:41:39 +02:00
|
|
|
|
private readonly IVideoFileInfoReader _videoFileInfoReader;
|
|
|
|
|
private readonly IParsingService _parsingService;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
private readonly IMessageAggregator _messageAggregator;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-05-13 02:36:23 +02:00
|
|
|
|
public DiskScanService(IDiskProvider diskProvider, ISeriesService seriesService, IMediaFileService mediaFileService, IVideoFileInfoReader videoFileInfoReader,
|
|
|
|
|
IParsingService parsingService, IMessageAggregator messageAggregator)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
_diskProvider = diskProvider;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
_seriesService = seriesService;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
_mediaFileService = mediaFileService;
|
2013-04-15 03:41:39 +02:00
|
|
|
|
_videoFileInfoReader = videoFileInfoReader;
|
|
|
|
|
_parsingService = parsingService;
|
2013-05-13 02:36:23 +02:00
|
|
|
|
_messageAggregator = messageAggregator;
|
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-04-15 03:41:39 +02:00
|
|
|
|
if (!_diskProvider.FolderExists(series.Path))
|
2011-10-22 21:03:54 +02:00
|
|
|
|
{
|
2013-04-15 03:41:39 +02:00
|
|
|
|
Logger.Warn("Series folder doesn't exist: {0}", series.Path);
|
|
|
|
|
return;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:36:23 +02:00
|
|
|
|
_messageAggregator.PublishCommand(new CleanMediaFileDb(series.Id));
|
2011-06-21 08:34:45 +02:00
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
|
var mediaFileList = GetVideoFiles(series.Path);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
|
|
|
|
foreach (var filePath in mediaFileList)
|
|
|
|
|
{
|
2013-04-15 03:41:39 +02:00
|
|
|
|
ImportFile(series, filePath);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-20 00:15:31 +01:00
|
|
|
|
//Todo: Find the "best" episode file for all found episodes and import that one
|
|
|
|
|
//Todo: Move the episode linking to here, instead of import (or rename import)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:36:23 +02:00
|
|
|
|
public EpisodeFile ImportFile(Series series, string filePath)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Importing file to database [{0}]", filePath);
|
|
|
|
|
|
2013-03-01 08:03:41 +01:00
|
|
|
|
if (_mediaFileService.Exists(filePath))
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2011-06-20 05:04:08 +02:00
|
|
|
|
Logger.Trace("[{0}] already exists in the database. skipping.", filePath);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
|
var parsedEpisode = _parsingService.GetEpisodes(filePath, series);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
|
if (parsedEpisode == null || !parsedEpisode.Episodes.Any())
|
|
|
|
|
{
|
2011-06-20 05:04:08 +02:00
|
|
|
|
return null;
|
2013-04-15 03:41:39 +02:00
|
|
|
|
}
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2013-02-08 02:47:24 +01:00
|
|
|
|
var size = _diskProvider.GetSize(filePath);
|
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
|
if (series.SeriesType == SeriesTypes.Daily || parsedEpisode.SeasonNumber > 0)
|
2013-02-08 02:47:24 +01:00
|
|
|
|
{
|
2013-04-15 03:41:39 +02:00
|
|
|
|
var runTime = _videoFileInfoReader.GetRunTime(filePath);
|
|
|
|
|
if (size < Constants.IgnoreFileSize && runTime.TotalMinutes < 3)
|
2013-02-08 02:47:24 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 02:36:23 +02:00
|
|
|
|
if (parsedEpisode.Episodes.Any(e => e.EpisodeFileId != 0 && e.EpisodeFile.Value.Quality > parsedEpisode.Quality))
|
2011-08-26 08:23:21 +02:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("This file isn't an upgrade for all episodes. Skipping {0}", filePath);
|
2011-06-21 07:44:01 +02:00
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-20 05:04:08 +02:00
|
|
|
|
var episodeFile = new EpisodeFile();
|
|
|
|
|
episodeFile.DateAdded = DateTime.Now;
|
2013-02-26 04:58:57 +01:00
|
|
|
|
episodeFile.SeriesId = series.Id;
|
2013-04-30 02:04:14 +02:00
|
|
|
|
episodeFile.Path = filePath.CleanPath();
|
2011-06-20 05:04:08 +02:00
|
|
|
|
episodeFile.Size = size;
|
2013-04-15 03:41:39 +02:00
|
|
|
|
episodeFile.Quality = parsedEpisode.Quality;
|
|
|
|
|
episodeFile.SeasonNumber = parsedEpisode.SeasonNumber;
|
2013-04-30 02:04:14 +02:00
|
|
|
|
episodeFile.SceneName = Path.GetFileNameWithoutExtension(filePath.CleanPath());
|
2013-05-13 02:36:23 +02:00
|
|
|
|
episodeFile.Episodes = parsedEpisode.Episodes;
|
2013-01-20 00:15:31 +01:00
|
|
|
|
|
|
|
|
|
//Todo: We shouldn't actually import the file until we confirm its the only one we want.
|
|
|
|
|
//Todo: Separate episodeFile creation from importing (pass file to import to import)
|
2013-03-05 06:33:34 +01:00
|
|
|
|
_mediaFileService.Add(episodeFile);
|
2011-06-20 05:04:08 +02:00
|
|
|
|
return episodeFile;
|
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
|
|
|
|
{
|
2011-11-26 00:46:29 +01: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-03-06 22:20:33 +01:00
|
|
|
|
var mediaFileList = filesOnDisk.Where(c => MediaExtensions.Contains(Path.GetExtension(c).ToLower())).ToList();
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2011-06-22 08:34:33 +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
|
|
|
|
|
|
|
|
|
public void Execute(DiskScanCommand message)
|
|
|
|
|
{
|
|
|
|
|
var seriesToScan = new List<Series>();
|
|
|
|
|
|
|
|
|
|
if (message.SeriesId.HasValue)
|
|
|
|
|
{
|
|
|
|
|
seriesToScan.Add(_seriesService.GetSeries(message.SeriesId.Value));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
seriesToScan.AddRange(_seriesService.GetAllSeries());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var series in seriesToScan)
|
|
|
|
|
{
|
|
|
|
|
Scan(series);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-21 00:45:16 +02:00
|
|
|
|
|
|
|
|
|
public void Handle(EpisodeInfoAddedEvent message)
|
|
|
|
|
{
|
|
|
|
|
Scan(message.Series);
|
|
|
|
|
}
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
2011-06-20 05:25:04 +02:00
|
|
|
|
}
|