1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Providers/DiskScanProvider.cs

319 lines
13 KiB
C#
Raw Normal View History

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;
using NzbDrone.Common.Eventing;
2013-02-24 07:48:52 +01:00
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Download;
2013-03-01 08:03:41 +01:00
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Organizer;
using NzbDrone.Core.Tv;
using NzbDrone.Core.Model;
2011-06-20 03:59:31 +02:00
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();
private static readonly string[] MediaExtensions = new[] { ".mkv", ".avi", ".wmv", ".mp4", ".mpg", ".mpeg", ".xvid", ".flv", ".mov", ".rm", ".rmvb", ".divx", ".dvr-ms", ".ts", ".ogm", ".m4v", ".strm" };
2011-06-20 03:59:31 +02:00
private readonly DiskProvider _diskProvider;
private readonly IEpisodeService _episodeService;
2013-03-01 08:03:41 +01:00
private readonly IMediaFileService _mediaFileService;
2013-02-24 07:48:52 +01:00
private readonly IConfigService _configService;
private readonly IBuildFileNames _buildFileNames;
private readonly RecycleBinProvider _recycleBinProvider;
private readonly MediaInfoProvider _mediaInfoProvider;
2013-02-19 07:56:02 +01:00
private readonly ISeriesRepository _seriesRepository;
private readonly IEventAggregator _eventAggregator;
2011-06-20 03:59:31 +02:00
2013-03-06 22:35:39 +01:00
public DiskScanProvider(DiskProvider diskProvider, IEpisodeService episodeService, IMediaFileService mediaFileService, IConfigService configService, IBuildFileNames buildFileNames,
RecycleBinProvider recycleBinProvider, MediaInfoProvider mediaInfoProvider, ISeriesRepository seriesRepository, IEventAggregator eventAggregator)
2011-06-20 03:59:31 +02:00
{
_diskProvider = diskProvider;
_episodeService = episodeService;
2013-03-01 08:03:41 +01:00
_mediaFileService = mediaFileService;
2013-02-24 07:48:52 +01:00
_configService = configService;
_buildFileNames = buildFileNames;
_recycleBinProvider = recycleBinProvider;
_mediaInfoProvider = mediaInfoProvider;
2013-02-19 07:56:02 +01:00
_seriesRepository = seriesRepository;
_eventAggregator = eventAggregator;
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
{
if (!_diskProvider.FolderExists(path))
{
Logger.Warn("Series folder doesn't exist: {0}", path);
return new List<EpisodeFile>();
}
if (_episodeService.GetEpisodeBySeries(series.Id).Count == 0)
2011-06-20 03:59:31 +02:00
{
Logger.Debug("Series {0} has no episodes. skipping", series.Title);
return new List<EpisodeFile>();
}
2013-03-01 08:03:41 +01:00
var seriesFile = _mediaFileService.GetFilesBySeries(series.Id);
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-06-21 07:44:01 +02:00
importedFiles.Add(file);
}
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
series.LastDiskSync = DateTime.Now;
2013-02-19 07:56:02 +01:00
_seriesRepository.Update(series);
2011-06-20 03:59:31 +02:00
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);
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
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
var size = _diskProvider.GetSize(filePath);
var runTime = _mediaInfoProvider.GetRunTime(filePath);
if (series.SeriesTypes == SeriesTypes.Daily || parseResult.SeasonNumber > 0)
{
if (size < Constants.IgnoreFileSize && runTime < 180)
{
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);
return null;
}
}
if (!_diskProvider.IsChildOfPath(filePath, series.Path))
parseResult.SceneSource = true;
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
var episodes = _episodeService.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
{
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
//Make sure this file is an upgrade for ALL episodes already on disk
if (episodes.All(e => e.EpisodeFile == null || e.EpisodeFile.QualityModel <= 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 => _recycleBinProvider.DeleteFile(p));
}
else
2011-06-21 07:44:01 +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.Id;
episodeFile.Path = filePath.NormalizePath();
2011-06-20 05:04:08 +02:00
episodeFile.Size = size;
2012-10-14 02:36:16 +02:00
episodeFile.Quality = parseResult.Quality.Quality;
2011-06-20 05:04:08 +02:00
episodeFile.Proper = parseResult.Quality.Proper;
episodeFile.SeasonNumber = parseResult.SeasonNumber;
episodeFile.SceneName = Path.GetFileNameWithoutExtension(filePath.NormalizePath());
episodeFile.ReleaseGroup = parseResult.ReleaseGroup;
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
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
{
ep.EpisodeFile = episodeFile;
ep.PostDownloadStatus = PostDownloadStatusType.NoError;
_episodeService.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
}
public virtual EpisodeFile MoveEpisodeFile(EpisodeFile episodeFile, bool newDownload = false)
2011-06-20 05:04:08 +02:00
{
if (episodeFile == null)
throw new ArgumentNullException("episodeFile");
2013-02-19 07:56:02 +01:00
var series = _seriesRepository.Get(episodeFile.SeriesId);
2013-03-01 08:03:41 +01:00
var episodes = _episodeService.GetEpisodesByFileId(episodeFile.Id);
2013-03-06 22:35:39 +01:00
string newFileName = _buildFileNames.BuildFilename(episodes, series, episodeFile);
var newFile = _buildFileNames.BuildFilePath(series, episodes.First().SeasonNumber, newFileName, Path.GetExtension(episodeFile.Path));
2011-06-20 05:04:08 +02:00
//Only rename if existing and new filenames don't match
2013-03-06 23:20:34 +01:00
if (DiskProvider.PathEquals(episodeFile.Path, newFile))
{
Logger.Debug("Skipping file rename, source and destination are the same: {0}", episodeFile.Path);
return null;
}
if (!_diskProvider.FileExists(episodeFile.Path))
{
Logger.Error("Episode file path does not exist, {0}", episodeFile.Path);
return null;
}
2013-03-06 23:20:34 +01:00
_diskProvider.CreateDirectory(new FileInfo(newFile).DirectoryName);
2013-03-06 23:20:34 +01:00
Logger.Debug("Moving [{0}] > [{1}]", episodeFile.Path, newFile);
_diskProvider.MoveFile(episodeFile.Path, newFile);
//Wrapped in Try/Catch to prevent this from causing issues with remote NAS boxes, the move worked, which is more important.
try
{
2013-03-06 23:20:34 +01:00
_diskProvider.InheritFolderPermissions(newFile);
}
catch (UnauthorizedAccessException ex)
{
2013-03-06 23:20:34 +01:00
Logger.Debug("Unable to apply folder permissions to: ", newFile);
2012-11-21 17:14:57 +01:00
Logger.TraceException(ex.Message, ex);
}
2013-03-06 23:20:34 +01:00
episodeFile.Path = newFile;
2013-03-01 08:03:41 +01:00
_mediaFileService.Update(episodeFile);
2011-06-20 05:04:08 +02:00
var parseResult = Parser.ParsePath(episodeFile.Path);
parseResult.Series = series;
parseResult.Quality = new QualityModel { Quality = episodeFile.Quality, Proper = episodeFile.Proper };
parseResult.Episodes = episodes;
if (newDownload)
{
_eventAggregator.Publish(new EpisodeDownloadedEvent(parseResult));
}
return episodeFile;
2011-06-20 05:04:08 +02:00
}
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>
public virtual void CleanUp(IList<EpisodeFile> files)
2011-06-20 03:59:31 +02:00
{
foreach (var episodeFile in files)
{
try
2011-06-20 03:59:31 +02:00
{
if (!_diskProvider.FileExists(episodeFile.Path))
2011-06-20 03:59:31 +02: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
2013-03-01 08:03:41 +01:00
foreach (var episode in _episodeService.GetEpisodesByFileId(episodeFile.Id))
{
Logger.Trace("Detaching episode {0} from file.", episode.Id);
episode.EpisodeFile = null;
2013-02-24 07:48:52 +01:00
episode.Ignored = _configService.AutoIgnorePreviouslyDownloadedEpisodes;
episode.GrabDate = null;
episode.PostDownloadStatus = PostDownloadStatusType.Unknown;
_episodeService.UpdateEpisode(episode);
}
//Delete it from the DB
Logger.Trace("Removing EpisodeFile from DB.");
2013-03-01 08:03:41 +01:00
_mediaFileService.Delete(episodeFile.Id);
2011-06-20 03:59:31 +02:00
}
}
catch (Exception ex)
{
2013-03-01 08:03:41 +01:00
var message = String.Format("Unable to cleanup EpisodeFile in DB: {0}", episodeFile.Id);
Logger.ErrorException(message, ex);
2011-06-20 03:59:31 +02:00
}
}
}
public virtual void CleanUpDropFolder(string path)
{
//Todo: We should rename files before importing them to prevent this issue from ever happening
var filesOnDisk = GetVideoFiles(path);
foreach (var file in filesOnDisk)
{
try
{
2013-03-01 08:03:41 +01:00
var episodeFile = _mediaFileService.GetFileByPath(file);
if (episodeFile != null)
{
Logger.Trace("[{0}] was imported but not moved, moving it now", file);
MoveEpisodeFile(episodeFile, true);
}
}
catch (Exception ex)
{
Logger.WarnException("Failed to move epiosde file from drop folder: " + file, ex);
throw;
}
}
}
2011-06-20 03:59:31 +02:00
public virtual List<string> GetVideoFiles(string path, bool allDirectories = true)
2011-06-20 03:59:31 +02:00
{
Logger.Debug("Scanning '{0}' for video files", path);
2011-06-20 03:59:31 +02:00
var searchOption = allDirectories ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly;
var filesOnDisk = _diskProvider.GetFiles(path, searchOption);
2011-06-20 03:59:31 +02: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);
2011-06-20 03:59:31 +02:00
return mediaFileList;
}
}
2011-06-20 05:25:04 +02:00
}