2010-10-21 01:49:23 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2011-04-04 03:50:12 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
using SubSonic.Repository;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-04-10 01:34:36 +00:00
|
|
|
|
public class MediaFileProvider
|
2010-10-21 01:49:23 +00:00
|
|
|
|
{
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2011-05-30 03:56:49 +00:00
|
|
|
|
private static readonly string[] MediaExtentions = new[] { ".mkv", ".avi", ".wmv", ".mp4" };
|
2011-04-10 02:44:01 +00:00
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
|
private readonly EpisodeProvider _episodeProvider;
|
2011-05-18 05:32:23 +00:00
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
|
|
|
|
private readonly SeasonProvider _seasonProvider;
|
2011-04-10 02:44:01 +00:00
|
|
|
|
private readonly IRepository _repository;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
|
2011-04-10 02:44:01 +00:00
|
|
|
|
public MediaFileProvider(IRepository repository, DiskProvider diskProvider,
|
2011-05-18 05:32:23 +00:00
|
|
|
|
EpisodeProvider episodeProvider, SeriesProvider seriesProvider, SeasonProvider seasonProvider)
|
2010-10-21 01:49:23 +00:00
|
|
|
|
{
|
2010-10-24 07:46:58 +00:00
|
|
|
|
_repository = repository;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_episodeProvider = episodeProvider;
|
2011-05-18 05:32:23 +00:00
|
|
|
|
_seriesProvider = seriesProvider;
|
|
|
|
|
_seasonProvider = seasonProvider;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public MediaFileProvider() { }
|
2011-04-10 02:28:54 +00:00
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
|
/// <summary>
|
2011-04-10 02:44:01 +00:00
|
|
|
|
/// Scans the specified series folder for media files
|
2010-10-21 01:49:23 +00:00
|
|
|
|
/// </summary>
|
2011-04-10 02:44:01 +00:00
|
|
|
|
/// <param name = "series">The series to be scanned</param>
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public virtual List<EpisodeFile> Scan(Series series)
|
2010-10-21 01:49:23 +00:00
|
|
|
|
{
|
2010-10-24 07:46:58 +00:00
|
|
|
|
var mediaFileList = GetMediaFileList(series.Path);
|
2011-03-03 08:50:33 +00:00
|
|
|
|
var fileList = new List<EpisodeFile>();
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
|
|
|
|
foreach (var filePath in mediaFileList)
|
|
|
|
|
{
|
2011-03-03 08:50:33 +00:00
|
|
|
|
var file = ImportFile(series, filePath);
|
|
|
|
|
if (file != null)
|
|
|
|
|
fileList.Add(file);
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
2011-03-03 08:50:33 +00:00
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
series.LastDiskSync = DateTime.Now;
|
|
|
|
|
_seriesProvider.UpdateSeries(series);
|
2011-03-03 08:50:33 +00:00
|
|
|
|
|
|
|
|
|
return fileList;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public virtual EpisodeFile ImportFile(Series series, string filePath)
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Importing file to database [{0}]", filePath);
|
|
|
|
|
|
2011-04-25 21:23:02 +00:00
|
|
|
|
try
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
2011-04-25 21:37:53 +00:00
|
|
|
|
var size = _diskProvider.GetSize(filePath);
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-04-25 21:37:53 +00:00
|
|
|
|
//If Size is less than 50MB and contains sample. Check for Size to ensure its not an episode with sample in the title
|
|
|
|
|
if (size < 40000000 && filePath.ToLower().Contains("sample"))
|
|
|
|
|
{
|
2011-05-18 05:32:23 +00:00
|
|
|
|
Logger.Trace("[{0}] appears to be a sample. skipping.", filePath);
|
2011-04-25 21:37:53 +00:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2011-04-25 21:23:02 +00:00
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
//Check to see if file already exists in the database
|
2011-04-25 21:23:02 +00:00
|
|
|
|
if (!_repository.Exists<EpisodeFile>(e => e.Path == Parser.NormalizePath(filePath)))
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
2011-04-30 23:25:35 +00:00
|
|
|
|
var parseResult = Parser.ParseEpisodeInfo(filePath);
|
2011-05-30 03:56:49 +00:00
|
|
|
|
|
2011-04-30 21:29:58 +00:00
|
|
|
|
|
|
|
|
|
if (parseResult == null)
|
|
|
|
|
return null;
|
2011-04-25 21:23:02 +00:00
|
|
|
|
|
2011-05-20 02:12:36 +00:00
|
|
|
|
parseResult.CleanTitle = series.Title;//replaces the nasty path as title to help with logging
|
|
|
|
|
|
2011-04-25 21:23:02 +00:00
|
|
|
|
//Stores the list of episodes to add to the EpisodeFile
|
|
|
|
|
var episodes = new List<Episode>();
|
2011-04-04 03:50:12 +00:00
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
//Check for daily shows
|
2011-05-24 04:12:54 +00:00
|
|
|
|
if (parseResult.EpisodeNumbers == null)
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
2011-04-25 21:37:53 +00:00
|
|
|
|
var episode = _episodeProvider.GetEpisode(series.SeriesId, parseResult.AirDate.Date);
|
2011-04-25 21:23:02 +00:00
|
|
|
|
|
|
|
|
|
if (episode != null)
|
|
|
|
|
{
|
|
|
|
|
episodes.Add(episode);
|
|
|
|
|
}
|
|
|
|
|
else
|
2011-05-18 05:32:23 +00:00
|
|
|
|
{
|
2011-05-19 03:56:19 +00:00
|
|
|
|
Logger.Warn("Unable to find [{0}] in the database.[{1}]", parseResult, filePath);
|
2011-05-18 05:32:23 +00:00
|
|
|
|
}
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
2011-04-25 21:37:53 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2011-05-24 04:12:54 +00:00
|
|
|
|
foreach (var episodeNumber in parseResult.EpisodeNumbers)
|
2011-04-25 21:37:53 +00:00
|
|
|
|
{
|
|
|
|
|
var episode = _episodeProvider.GetEpisode(series.SeriesId, parseResult.SeasonNumber,
|
|
|
|
|
episodeNumber);
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-04-25 21:37:53 +00:00
|
|
|
|
if (episode != null)
|
|
|
|
|
{
|
|
|
|
|
episodes.Add(episode);
|
|
|
|
|
}
|
|
|
|
|
else
|
2011-05-18 05:32:23 +00:00
|
|
|
|
{
|
2011-05-19 03:56:19 +00:00
|
|
|
|
Logger.Warn("Unable to find [{0}] in the database.[{1}]", parseResult, filePath);
|
2011-05-18 05:32:23 +00:00
|
|
|
|
}
|
2011-04-25 21:37:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-23 00:26:03 +00:00
|
|
|
|
|
2011-04-25 21:37:53 +00:00
|
|
|
|
//Return null if no Episodes exist in the DB for the parsed episodes from file
|
2011-05-18 05:32:23 +00:00
|
|
|
|
if (episodes.Count <= 0)
|
2011-04-25 21:23:02 +00:00
|
|
|
|
return null;
|
2011-03-03 08:50:33 +00:00
|
|
|
|
|
2011-04-25 21:23:02 +00:00
|
|
|
|
var episodeFile = new EpisodeFile();
|
|
|
|
|
episodeFile.DateAdded = DateTime.Now;
|
|
|
|
|
episodeFile.SeriesId = series.SeriesId;
|
|
|
|
|
episodeFile.Path = Parser.NormalizePath(filePath);
|
|
|
|
|
episodeFile.Size = size;
|
2011-05-28 19:23:35 +00:00
|
|
|
|
episodeFile.Quality = parseResult.Quality.QualityType;
|
|
|
|
|
episodeFile.Proper = parseResult.Quality.Proper;
|
2011-04-25 21:23:02 +00:00
|
|
|
|
var fileId = (int)_repository.Add(episodeFile);
|
|
|
|
|
|
|
|
|
|
//This is for logging + updating the episodes that are linked to this EpisodeFile
|
|
|
|
|
string episodeList = String.Empty;
|
|
|
|
|
foreach (var ep in episodes)
|
|
|
|
|
{
|
|
|
|
|
ep.EpisodeFileId = fileId;
|
|
|
|
|
_episodeProvider.UpdateEpisode(ep);
|
|
|
|
|
episodeList += String.Format(", {0}", ep.EpisodeId).Trim(' ', ',');
|
|
|
|
|
}
|
|
|
|
|
Logger.Trace("File {0}:{1} attached to episode(s): '{2}'", episodeFile.EpisodeFileId, filePath,
|
|
|
|
|
episodeList);
|
2011-03-03 08:50:33 +00:00
|
|
|
|
|
2011-04-25 21:23:02 +00:00
|
|
|
|
return episodeFile;
|
2011-02-23 00:26:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-25 21:23:02 +00:00
|
|
|
|
Logger.Trace("[{0}] already exists in the database. skipping.", filePath);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("An error has occurred while importing file " + filePath, ex);
|
|
|
|
|
throw;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
}
|
2010-10-24 07:46:58 +00:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2010-10-21 01:49:23 +00:00
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
/// <summary>
|
2011-04-10 02:44:01 +00:00
|
|
|
|
/// Removes files that no longer exist from the database
|
2010-10-24 07:46:58 +00:00
|
|
|
|
/// </summary>
|
2011-04-10 02:44:01 +00:00
|
|
|
|
/// <param name = "files">list of files to verify</param>
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public virtual void CleanUp(List<EpisodeFile> files)
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
//TODO: remove orphaned files. in files table but not linked to from episode table.
|
2010-10-24 07:46:58 +00:00
|
|
|
|
foreach (var episodeFile in files)
|
2010-10-21 01:49:23 +00:00
|
|
|
|
{
|
2010-10-24 07:46:58 +00:00
|
|
|
|
if (!_diskProvider.FileExists(episodeFile.Path))
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("File {0} no longer exists on disk. removing from database.", episodeFile.Path);
|
2011-02-25 03:52:06 +00:00
|
|
|
|
_repository.Delete<EpisodeFile>(episodeFile.EpisodeFileId);
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
2010-10-21 01:49:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public virtual void Update(EpisodeFile episodeFile)
|
2011-02-18 06:49:23 +00:00
|
|
|
|
{
|
2011-05-18 05:32:23 +00:00
|
|
|
|
_repository.Update(episodeFile);
|
2011-02-18 06:49:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public virtual EpisodeFile GetEpisodeFile(int episodeFileId)
|
2011-02-18 06:49:23 +00:00
|
|
|
|
{
|
2011-05-18 05:32:23 +00:00
|
|
|
|
return _repository.Single<EpisodeFile>(episodeFileId);
|
2011-02-18 06:49:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public virtual List<EpisodeFile> GetEpisodeFiles()
|
2011-02-22 06:22:40 +00:00
|
|
|
|
{
|
2011-05-18 05:32:23 +00:00
|
|
|
|
return _repository.All<EpisodeFile>().ToList();
|
2011-02-22 06:22:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public virtual IEnumerable<EpisodeFile> GetSeasonFiles(int seasonId)
|
2011-02-22 06:22:40 +00:00
|
|
|
|
{
|
2011-05-18 05:32:23 +00:00
|
|
|
|
return _seasonProvider.GetSeason(seasonId).Episodes.Where(c => c.EpisodeFile != null).Select(c => c.EpisodeFile);
|
2011-02-22 06:22:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 05:32:23 +00:00
|
|
|
|
public virtual IEnumerable<EpisodeFile> GetSeriesFiles(int seriesId)
|
2011-02-24 00:40:11 +00:00
|
|
|
|
{
|
2011-05-18 05:32:23 +00:00
|
|
|
|
return _seriesProvider.GetSeries(seriesId).Episodes.Where(c => c.EpisodeFile != null).Select(c => c.EpisodeFile);
|
2011-02-24 00:40:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
private List<string> GetMediaFileList(string path)
|
|
|
|
|
{
|
2010-10-30 02:46:32 +00:00
|
|
|
|
Logger.Debug("Scanning '{0}' for episodes", path);
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-05-30 03:56:49 +00:00
|
|
|
|
var filesOnDisk = _diskProvider.GetFiles(path, "*.*", SearchOption.AllDirectories);
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-05-30 03:56:49 +00:00
|
|
|
|
var mediaFileList = filesOnDisk.Where(c => MediaExtentions.Contains(Path.GetExtension(c).ToLower())).ToList();
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-05-30 03:56:49 +00:00
|
|
|
|
Logger.Debug("{0} media files were found in {1}", mediaFileList.Count, path);
|
2010-10-24 07:46:58 +00:00
|
|
|
|
return mediaFileList;
|
|
|
|
|
}
|
2010-10-21 01:49:23 +00:00
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|