2011-06-20 03:59:31 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Ninject;
|
|
|
|
|
using NLog;
|
2011-11-13 05:07:06 +01:00
|
|
|
|
using NzbDrone.Common;
|
2011-10-12 05:44:19 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-06-20 05:04:08 +02:00
|
|
|
|
public class DiskScanProvider
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2012-02-07 06:08:07 +01:00
|
|
|
|
private static readonly string[] mediaExtentions = new[] { ".mkv", ".avi", ".wmv", ".mp4", ".mpg", ".mpeg", ".xvid", ".flv", ".mov", ".rm", ".rmvb", ".divx", ".dvr-ms", ".ts", ".ogm" };
|
2011-06-20 03:59:31 +02:00
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
|
private readonly EpisodeProvider _episodeProvider;
|
2011-06-20 05:04:08 +02:00
|
|
|
|
private readonly MediaFileProvider _mediaFileProvider;
|
2011-06-20 05:25:04 +02:00
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
2011-07-28 09:21:49 +02:00
|
|
|
|
private readonly ExternalNotificationProvider _externalNotificationProvider;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
private readonly DownloadProvider _downloadProvider;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
|
|
|
|
[Inject]
|
|
|
|
|
public DiskScanProvider(DiskProvider diskProvider, EpisodeProvider episodeProvider,
|
2011-07-28 09:21:49 +02:00
|
|
|
|
SeriesProvider seriesProvider, MediaFileProvider mediaFileProvider,
|
2012-02-07 06:08:07 +01:00
|
|
|
|
ExternalNotificationProvider externalNotificationProvider, DownloadProvider downloadProvider)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_episodeProvider = episodeProvider;
|
|
|
|
|
_seriesProvider = seriesProvider;
|
2011-06-20 05:04:08 +02:00
|
|
|
|
_mediaFileProvider = mediaFileProvider;
|
2011-07-28 09:21:49 +02:00
|
|
|
|
_externalNotificationProvider = externalNotificationProvider;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
_downloadProvider = downloadProvider;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DiskScanProvider()
|
|
|
|
|
{
|
2011-06-20 05:04:08 +02:00
|
|
|
|
}
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Scans the specified series folder for media files
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name = "series">The series to be scanned</param>
|
|
|
|
|
public virtual List<EpisodeFile> Scan(Series series)
|
2011-06-20 05:04:08 +02:00
|
|
|
|
{
|
|
|
|
|
return Scan(series, series.Path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Scans the specified series folder for media files
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name = "series">The series to be scanned</param>
|
|
|
|
|
/// <param name="path">Path to scan</param>
|
|
|
|
|
public virtual List<EpisodeFile> Scan(Series series, string path)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2012-01-17 05:05:36 +01:00
|
|
|
|
_mediaFileProvider.CleanUpDatabase();
|
2011-06-21 08:34:45 +02:00
|
|
|
|
|
2011-10-22 21:03:54 +02:00
|
|
|
|
if (!_diskProvider.FolderExists(path))
|
|
|
|
|
{
|
2011-10-23 04:31:28 +02:00
|
|
|
|
Logger.Warn("Series folder doesn't exist: {0}", path);
|
2011-10-22 21:03:54 +02:00
|
|
|
|
return new List<EpisodeFile>();
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-20 03:59:31 +02:00
|
|
|
|
if (_episodeProvider.GetEpisodeBySeries(series.SeriesId).Count == 0)
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Series {0} has no episodes. skipping", series.Title);
|
|
|
|
|
return new List<EpisodeFile>();
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-21 08:34:45 +02:00
|
|
|
|
var seriesFile = _mediaFileProvider.GetSeriesFiles(series.SeriesId);
|
|
|
|
|
CleanUp(seriesFile);
|
|
|
|
|
|
2011-06-20 05:04:08 +02:00
|
|
|
|
var mediaFileList = GetVideoFiles(path);
|
2011-06-21 07:44:01 +02:00
|
|
|
|
var importedFiles = new List<EpisodeFile>();
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
|
|
|
|
foreach (var filePath in mediaFileList)
|
|
|
|
|
{
|
|
|
|
|
var file = ImportFile(series, filePath);
|
|
|
|
|
if (file != null)
|
2011-10-23 04:31:28 +02:00
|
|
|
|
{
|
2011-06-21 07:44:01 +02:00
|
|
|
|
importedFiles.Add(file);
|
2011-10-23 04:31:28 +02:00
|
|
|
|
}
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
series.LastDiskSync = DateTime.Now;
|
|
|
|
|
_seriesProvider.UpdateSeries(series);
|
|
|
|
|
|
2011-06-21 07:44:01 +02:00
|
|
|
|
return importedFiles;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual EpisodeFile ImportFile(Series series, string filePath)
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Importing file to database [{0}]", filePath);
|
|
|
|
|
|
2011-06-22 03:12:20 +02:00
|
|
|
|
if (_mediaFileProvider.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
|
|
|
|
|
2011-06-20 05:25:04 +02:00
|
|
|
|
long size = _diskProvider.GetSize(filePath);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2011-06-21 07:44:01 +02:00
|
|
|
|
//If Size is less than 40MB and contains sample. Check for Size to ensure its not an episode with sample in the title
|
2011-10-25 07:15:20 +02:00
|
|
|
|
if (size < Constants.IgnoreFileSize && filePath.ToLower().Contains("sample"))
|
2011-06-20 05:04:08 +02:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-30 01:31:16 +02:00
|
|
|
|
var parseResult = Parser.ParsePath(filePath);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2011-06-20 05:04:08 +02:00
|
|
|
|
if (parseResult == null)
|
|
|
|
|
return null;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2012-01-20 06:37:08 +01:00
|
|
|
|
parseResult.SeriesTitle = series.Title; //replaces the nasty path as title to help with logging
|
2011-06-22 03:12:20 +02:00
|
|
|
|
parseResult.Series = series;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2011-06-22 03:12:20 +02:00
|
|
|
|
var episodes = _episodeProvider.GetEpisodesByParseResult(parseResult);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2011-06-20 05:04:08 +02:00
|
|
|
|
if (episodes.Count <= 0)
|
2011-06-22 03:12:20 +02:00
|
|
|
|
{
|
2011-08-26 08:23:21 +02:00
|
|
|
|
Logger.Debug("Can't find any matching episodes in the database. Skipping {0}", filePath);
|
2011-06-20 05:04:08 +02:00
|
|
|
|
return null;
|
2011-06-22 03:12:20 +02:00
|
|
|
|
}
|
2011-06-21 07:44:01 +02:00
|
|
|
|
|
2011-08-26 08:23:21 +02:00
|
|
|
|
//Make sure this file is an upgrade for ALL episodes already on disk
|
|
|
|
|
if (episodes.All(e => e.EpisodeFile == null || e.EpisodeFile.QualityWrapper <= parseResult.Quality))
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Deleting the existing file(s) on disk to upgrade to: {0}", filePath);
|
|
|
|
|
//Do the delete for files where there is already an episode on disk
|
|
|
|
|
episodes.Where(e => e.EpisodeFile != null).Select(e => e.EpisodeFile.Path).Distinct().ToList().ForEach(p => _diskProvider.DeleteFile(p));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
2011-06-21 07:44:01 +02:00
|
|
|
|
{
|
2011-08-26 08:23:21 +02:00
|
|
|
|
//Skip this file because its not an upgrade
|
|
|
|
|
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;
|
|
|
|
|
episodeFile.SeriesId = series.SeriesId;
|
2011-11-21 01:35:29 +01:00
|
|
|
|
episodeFile.Path = filePath.NormalizePath();
|
2011-06-20 05:04:08 +02:00
|
|
|
|
episodeFile.Size = size;
|
|
|
|
|
episodeFile.Quality = parseResult.Quality.QualityType;
|
|
|
|
|
episodeFile.Proper = parseResult.Quality.Proper;
|
|
|
|
|
episodeFile.SeasonNumber = parseResult.SeasonNumber;
|
2011-06-22 03:12:20 +02:00
|
|
|
|
var fileId = _mediaFileProvider.Add(episodeFile);
|
2011-06-20 05:04:08 +02:00
|
|
|
|
|
2011-06-22 03:12:20 +02:00
|
|
|
|
//Link file to all episodes
|
2011-06-20 05:04:08 +02:00
|
|
|
|
foreach (var ep in episodes)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2011-06-20 05:04:08 +02:00
|
|
|
|
ep.EpisodeFileId = fileId;
|
2011-10-23 04:31:28 +02:00
|
|
|
|
ep.PostDownloadStatus = PostDownloadStatusType.NoError;
|
2011-06-20 05:04:08 +02:00
|
|
|
|
_episodeProvider.UpdateEpisode(ep);
|
2011-07-06 08:17:21 +02:00
|
|
|
|
Logger.Debug("Linking [{0}] > [{1}]", filePath, ep);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
2011-06-22 03:12:20 +02:00
|
|
|
|
|
2011-06-20 05:04:08 +02:00
|
|
|
|
|
|
|
|
|
return episodeFile;
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-07-28 09:21:49 +02:00
|
|
|
|
public virtual bool MoveEpisodeFile(EpisodeFile episodeFile, bool newDownload = false)
|
2011-06-20 05:04:08 +02:00
|
|
|
|
{
|
|
|
|
|
if (episodeFile == null)
|
|
|
|
|
throw new ArgumentNullException("episodeFile");
|
|
|
|
|
|
|
|
|
|
var series = _seriesProvider.GetSeries(episodeFile.SeriesId);
|
|
|
|
|
var episodes = _episodeProvider.GetEpisodesByFileId(episodeFile.EpisodeFileId);
|
2012-01-22 20:25:59 +01:00
|
|
|
|
string newFileName = _mediaFileProvider.GetNewFilename(episodes, series.Title, episodeFile.Quality, episodeFile.Proper);
|
2011-06-21 07:44:01 +02:00
|
|
|
|
var newFile = _mediaFileProvider.CalculateFilePath(series, episodes.First().SeasonNumber, newFileName, Path.GetExtension(episodeFile.Path));
|
2011-06-20 05:04:08 +02:00
|
|
|
|
|
2011-12-14 07:42:24 +01:00
|
|
|
|
//Only rename if existing and new filenames don't match
|
2011-12-15 02:26:22 +01:00
|
|
|
|
if (DiskProvider.PathEquals(episodeFile.Path, newFile.FullName))
|
2011-12-14 07:42:24 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Skipping file rename, source and destination are the same: {0}", episodeFile.Path);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-22 05:40:24 +02:00
|
|
|
|
_diskProvider.CreateDirectory(newFile.DirectoryName);
|
|
|
|
|
|
2011-07-06 08:17:21 +02:00
|
|
|
|
Logger.Debug("Moving [{0}] > [{1}]", episodeFile.Path, newFile.FullName);
|
2011-06-22 03:12:20 +02:00
|
|
|
|
_diskProvider.MoveFile(episodeFile.Path, newFile.FullName);
|
2011-06-20 05:04:08 +02:00
|
|
|
|
|
2011-10-11 06:00:31 +02:00
|
|
|
|
_diskProvider.InheritFolderPermissions(newFile.FullName);
|
|
|
|
|
|
2011-06-20 05:04:08 +02:00
|
|
|
|
episodeFile.Path = newFile.FullName;
|
|
|
|
|
_mediaFileProvider.Update(episodeFile);
|
|
|
|
|
|
2011-07-28 09:21:49 +02:00
|
|
|
|
var parseResult = Parser.ParsePath(episodeFile.Path);
|
|
|
|
|
parseResult.Series = series;
|
|
|
|
|
|
2012-02-07 06:08:07 +01:00
|
|
|
|
var message = _downloadProvider.GetDownloadTitle(parseResult);
|
2011-10-23 04:31:28 +02:00
|
|
|
|
|
2011-07-28 09:21:49 +02:00
|
|
|
|
if (newDownload)
|
2011-10-23 04:31:28 +02:00
|
|
|
|
{
|
2011-07-28 09:21:49 +02:00
|
|
|
|
_externalNotificationProvider.OnDownload(message, series);
|
2011-10-23 04:31:28 +02:00
|
|
|
|
}
|
2011-07-28 09:21:49 +02:00
|
|
|
|
else
|
2011-10-23 04:31:28 +02:00
|
|
|
|
{
|
2011-07-28 09:21:49 +02:00
|
|
|
|
_externalNotificationProvider.OnRename(message, series);
|
2011-10-23 04:31:28 +02:00
|
|
|
|
}
|
2011-07-28 09:21:49 +02:00
|
|
|
|
|
2011-06-20 05:04:08 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-20 03:59:31 +02:00
|
|
|
|
/// <summary>
|
2011-06-20 05:25:04 +02:00
|
|
|
|
/// Removes files that no longer exist on disk from the database
|
2011-06-20 03:59:31 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name = "files">list of files to verify</param>
|
2011-06-21 08:34:45 +02:00
|
|
|
|
public virtual void CleanUp(IList<EpisodeFile> files)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
foreach (var episodeFile in files)
|
|
|
|
|
{
|
2011-12-14 05:52:01 +01:00
|
|
|
|
try
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2011-12-14 05:52:01 +01:00
|
|
|
|
if(!_diskProvider.FileExists(episodeFile.Path))
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
2011-12-14 05:52:01 +01:00
|
|
|
|
Logger.Trace("File [{0}] no longer exists on disk. removing from db", episodeFile.Path);
|
|
|
|
|
|
|
|
|
|
//Set the EpisodeFileId for each episode attached to this file to 0
|
|
|
|
|
foreach(var episode in _episodeProvider.GetEpisodesByFileId(episodeFile.EpisodeFileId))
|
|
|
|
|
{
|
2012-01-17 05:05:36 +01:00
|
|
|
|
Logger.Trace("Setting EpisodeFileId for Episode: [{0}] to 0", episode.EpisodeId);
|
2011-12-14 05:52:01 +01:00
|
|
|
|
episode.EpisodeFileId = 0;
|
2012-01-17 05:05:36 +01:00
|
|
|
|
episode.Ignored = true;
|
|
|
|
|
episode.GrabDate = null;
|
|
|
|
|
episode.PostDownloadStatus = PostDownloadStatusType.Unknown;
|
2011-12-14 05:52:01 +01:00
|
|
|
|
_episodeProvider.UpdateEpisode(episode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Delete it from the DB
|
|
|
|
|
Logger.Trace("Removing EpisodeFile from DB.");
|
|
|
|
|
_mediaFileProvider.Delete(episodeFile.EpisodeFileId);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
2011-12-14 05:52:01 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2011-12-15 02:26:22 +01:00
|
|
|
|
var message = String.Format("Unable to cleanup EpisodeFile in DB: {0}", episodeFile.EpisodeFileId);
|
|
|
|
|
Logger.ErrorException(message, ex);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private List<string> GetVideoFiles(string path)
|
|
|
|
|
{
|
2011-11-26 00:46:29 +01:00
|
|
|
|
Logger.Debug("Scanning '{0}' for video files", path);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2011-07-05 09:09:07 +02:00
|
|
|
|
var filesOnDisk = _diskProvider.GetFiles(path, SearchOption.AllDirectories);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2012-02-07 06:08:07 +01:00
|
|
|
|
var mediaFileList = filesOnDisk.Where(c => mediaExtentions.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);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
return mediaFileList;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-06-20 05:25:04 +02:00
|
|
|
|
}
|