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-02-25 00:47:57 +01:00
|
|
|
|
using NzbDrone.Common.Eventing;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-02-25 00:47:57 +01:00
|
|
|
|
using NzbDrone.Core.Download;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
2013-03-06 22:20:33 +01:00
|
|
|
|
using NzbDrone.Core.Organizer;
|
2013-02-19 07:01:03 +01:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2011-10-12 05:44:19 +02:00
|
|
|
|
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();
|
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" };
|
2011-06-20 03:59:31 +02:00
|
|
|
|
private readonly DiskProvider _diskProvider;
|
2013-02-22 01:47:09 +01:00
|
|
|
|
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;
|
2013-03-06 22:20:33 +01:00
|
|
|
|
private readonly IBuildFileNames _buildFileNames;
|
2012-09-04 08:49:04 +02:00
|
|
|
|
private readonly RecycleBinProvider _recycleBinProvider;
|
2013-01-21 01:35:42 +01:00
|
|
|
|
private readonly MediaInfoProvider _mediaInfoProvider;
|
2013-02-19 07:56:02 +01:00
|
|
|
|
private readonly ISeriesRepository _seriesRepository;
|
2013-02-25 00:47:57 +01:00
|
|
|
|
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,
|
2013-02-25 00:47:57 +01:00
|
|
|
|
RecycleBinProvider recycleBinProvider, MediaInfoProvider mediaInfoProvider, ISeriesRepository seriesRepository, IEventAggregator eventAggregator)
|
2011-06-20 03:59:31 +02:00
|
|
|
|
{
|
|
|
|
|
_diskProvider = diskProvider;
|
2013-02-20 03:05:15 +01:00
|
|
|
|
_episodeService = episodeService;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
_mediaFileService = mediaFileService;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
_configService = configService;
|
2013-03-06 22:20:33 +01:00
|
|
|
|
_buildFileNames = buildFileNames;
|
2012-09-04 08:49:04 +02:00
|
|
|
|
_recycleBinProvider = recycleBinProvider;
|
2013-01-21 01:35:42 +01:00
|
|
|
|
_mediaInfoProvider = mediaInfoProvider;
|
2013-02-19 07:56:02 +01:00
|
|
|
|
_seriesRepository = seriesRepository;
|
2013-02-25 00:47:57 +01:00
|
|
|
|
_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
|
|
|
|
{
|
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>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-26 04:58:57 +01:00
|
|
|
|
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);
|
2011-06-21 08:34:45 +02:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
2013-02-08 02:47:24 +01:00
|
|
|
|
var size = _diskProvider.GetSize(filePath);
|
|
|
|
|
var runTime = _mediaInfoProvider.GetRunTime(filePath);
|
|
|
|
|
|
2013-03-04 06:53:02 +01:00
|
|
|
|
if (series.SeriesTypes == SeriesTypes.Daily || parseResult.SeasonNumber > 0)
|
2013-02-08 02:47:24 +01:00
|
|
|
|
{
|
|
|
|
|
if (size < Constants.IgnoreFileSize && runTime < 180)
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-17 09:39:06 +02:00
|
|
|
|
if (!_diskProvider.IsChildOfPath(filePath, series.Path))
|
|
|
|
|
parseResult.SceneSource = true;
|
|
|
|
|
|
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
|
|
|
|
|
2013-02-20 03:05:15 +01: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
|
|
|
|
{
|
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
|
2012-09-04 08:49:04 +02:00
|
|
|
|
episodes.Where(e => e.EpisodeFile != null).Select(e => e.EpisodeFile.Path).Distinct().ToList().ForEach(p => _recycleBinProvider.DeleteFile(p));
|
2011-08-26 08:23:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
2013-02-26 04:58:57 +01:00
|
|
|
|
episodeFile.SeriesId = series.Id;
|
2011-11-21 01:35:29 +01:00
|
|
|
|
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;
|
2012-08-03 09:01:34 +02:00
|
|
|
|
episodeFile.SceneName = Path.GetFileNameWithoutExtension(filePath.NormalizePath());
|
2012-08-06 08:33:07 +02:00
|
|
|
|
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
|
|
|
|
{
|
2013-02-20 03:05:15 +01:00
|
|
|
|
ep.EpisodeFile = episodeFile;
|
2011-10-23 04:31:28 +02:00
|
|
|
|
ep.PostDownloadStatus = PostDownloadStatusType.NoError;
|
2013-02-20 03:05:15 +01:00
|
|
|
|
_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
|
|
|
|
}
|
|
|
|
|
|
2012-07-12 23:08:21 +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
|
|
|
|
|
2011-12-14 07:42:24 +01: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))
|
2011-12-14 07:42:24 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Skipping file rename, source and destination are the same: {0}", episodeFile.Path);
|
2012-07-12 23:08:21 +02:00
|
|
|
|
return null;
|
2011-12-14 07:42:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 03:05:15 +01:00
|
|
|
|
if (!_diskProvider.FileExists(episodeFile.Path))
|
2013-01-14 00:09:44 +01:00
|
|
|
|
{
|
|
|
|
|
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);
|
2011-06-22 05:40:24 +02:00
|
|
|
|
|
2013-03-06 23:20:34 +01:00
|
|
|
|
Logger.Debug("Moving [{0}] > [{1}]", episodeFile.Path, newFile);
|
|
|
|
|
_diskProvider.MoveFile(episodeFile.Path, newFile);
|
2012-11-07 01:53:56 +01:00
|
|
|
|
|
|
|
|
|
//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);
|
2012-11-07 01:53:56 +01:00
|
|
|
|
}
|
|
|
|
|
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);
|
2012-11-07 01:53:56 +01:00
|
|
|
|
}
|
2011-10-11 06:00:31 +02:00
|
|
|
|
|
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
|
|
|
|
|
2011-07-28 09:21:49 +02:00
|
|
|
|
var parseResult = Parser.ParsePath(episodeFile.Path);
|
|
|
|
|
parseResult.Series = series;
|
2013-02-20 03:05:15 +01:00
|
|
|
|
parseResult.Quality = new QualityModel { Quality = episodeFile.Quality, Proper = episodeFile.Proper };
|
2012-10-17 09:39:06 +02:00
|
|
|
|
parseResult.Episodes = episodes;
|
2011-07-28 09:21:49 +02:00
|
|
|
|
|
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
|
|
|
|
{
|
2013-02-25 00:47:57 +01:00
|
|
|
|
_eventAggregator.Publish(new EpisodeDownloadedEvent(parseResult));
|
2011-10-23 04:31:28 +02:00
|
|
|
|
}
|
2011-07-28 09:21:49 +02:00
|
|
|
|
|
2012-07-12 23:08:21 +02:00
|
|
|
|
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>
|
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
|
|
|
|
{
|
2013-02-20 03:05:15 +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
|
2013-03-01 08:03:41 +01:00
|
|
|
|
foreach (var episode in _episodeService.GetEpisodesByFileId(episodeFile.Id))
|
2011-12-14 05:52:01 +01:00
|
|
|
|
{
|
2013-02-26 04:58:57 +01:00
|
|
|
|
Logger.Trace("Detaching episode {0} from file.", episode.Id);
|
2013-02-20 03:05:15 +01:00
|
|
|
|
episode.EpisodeFile = null;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
episode.Ignored = _configService.AutoIgnorePreviouslyDownloadedEpisodes;
|
2012-01-17 05:05:36 +01:00
|
|
|
|
episode.GrabDate = null;
|
|
|
|
|
episode.PostDownloadStatus = PostDownloadStatusType.Unknown;
|
2013-02-20 03:05:15 +01:00
|
|
|
|
_episodeService.UpdateEpisode(episode);
|
2011-12-14 05:52:01 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//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
|
|
|
|
}
|
2011-12-14 05:52:01 +01: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);
|
2011-12-15 02:26:22 +01:00
|
|
|
|
Logger.ErrorException(message, ex);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 23:44:20 +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);
|
|
|
|
|
|
2013-02-20 03:05:15 +01:00
|
|
|
|
foreach (var file in filesOnDisk)
|
2012-04-17 23:44:20 +02:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-03-01 08:03:41 +01:00
|
|
|
|
var episodeFile = _mediaFileService.GetFileByPath(file);
|
2012-04-17 23:44:20 +02:00
|
|
|
|
|
|
|
|
|
if (episodeFile != null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("[{0}] was imported but not moved, moving it now", file);
|
|
|
|
|
|
2012-04-25 17:06:38 +02:00
|
|
|
|
MoveEpisodeFile(episodeFile, true);
|
2012-04-17 23:44:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.WarnException("Failed to move epiosde file from drop folder: " + file, ex);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-06-20 03:59:31 +02:00
|
|
|
|
|
2012-08-29 17:34:51 +02:00
|
|
|
|
public virtual List<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);
|
2011-06-20 03:59:31 +02:00
|
|
|
|
return mediaFileList;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-06-20 05:25:04 +02:00
|
|
|
|
}
|