2010-09-28 21:32:19 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
using System.Linq;
|
2010-09-28 21:32:19 +02:00
|
|
|
|
using System.Text.RegularExpressions;
|
2011-04-05 04:59:33 +02:00
|
|
|
|
using Ninject;
|
2010-10-02 21:01:43 +02:00
|
|
|
|
using NLog;
|
2011-04-04 05:50:12 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2010-10-21 03:49:23 +02:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-01-29 07:10:22 +01:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
using TvdbLib.Data;
|
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
namespace NzbDrone.Core.Providers
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2011-04-09 01:55:23 +02:00
|
|
|
|
public class SeriesProvider
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2010-09-28 21:32:19 +02:00
|
|
|
|
//TODO: Remove parsing of rest of tv show info we just need the show name
|
2010-10-02 21:01:43 +02:00
|
|
|
|
|
2010-10-04 03:00:50 +02:00
|
|
|
|
//Trims all white spaces and separators from the end of the title.
|
2010-10-17 19:22:48 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
private readonly IConfigProvider _config;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
private readonly IRepository _sonioRepo;
|
2011-04-07 05:34:48 +02:00
|
|
|
|
private readonly TvDbProvider _tvDb;
|
2011-04-08 06:03:46 +02:00
|
|
|
|
private readonly QualityProvider _quality;
|
2010-10-05 08:21:18 +02:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
2011-04-01 08:36:34 +02:00
|
|
|
|
public SeriesProvider(IConfigProvider configProvider,
|
2011-04-08 06:03:46 +02:00
|
|
|
|
IRepository dataRepository, TvDbProvider tvDbProvider, QualityProvider quality)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2010-09-28 06:25:41 +02:00
|
|
|
|
_config = configProvider;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
_sonioRepo = dataRepository;
|
2010-09-28 06:25:41 +02:00
|
|
|
|
_tvDb = tvDbProvider;
|
2011-02-15 04:48:39 +01:00
|
|
|
|
_quality = quality;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-10 02:14:51 +02:00
|
|
|
|
public SeriesProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-09 01:55:23 +02:00
|
|
|
|
#region SeriesProvider Members
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual IQueryable<Series> GetAllSeries()
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
|
|
|
|
return _sonioRepo.All<Series>();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual Series GetSeries(int seriesId)
|
2010-09-24 09:14:42 +02:00
|
|
|
|
{
|
2010-10-05 08:21:18 +02:00
|
|
|
|
return _sonioRepo.Single<Series>(s => s.SeriesId == seriesId);
|
2010-09-24 09:14:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-02 21:01:43 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines if a series is being actively watched.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The TVDB ID of the series</param>
|
|
|
|
|
/// <returns>Whether or not the show is monitored</returns>
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual bool IsMonitored(long id)
|
2010-09-28 22:44:33 +02:00
|
|
|
|
{
|
2010-10-05 08:21:18 +02:00
|
|
|
|
return _sonioRepo.Exists<Series>(c => c.SeriesId == id && c.Monitored);
|
2010-09-28 22:44:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual bool QualityWanted(int seriesId, QualityTypes quality)
|
2011-01-29 07:10:22 +01:00
|
|
|
|
{
|
2011-02-15 04:48:39 +01:00
|
|
|
|
var series = _sonioRepo.Single<Series>(seriesId);
|
|
|
|
|
|
2011-04-05 07:30:13 +02:00
|
|
|
|
var profile = _quality.Find(series.QualityProfileId);
|
2011-02-15 04:48:39 +01:00
|
|
|
|
return profile.Allowed.Contains(quality);
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual TvdbSeries MapPathToSeries(string path)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2010-10-02 21:01:43 +02:00
|
|
|
|
var seriesPath = new DirectoryInfo(path);
|
2010-10-04 03:00:50 +02:00
|
|
|
|
var searchResults = _tvDb.GetSeries(seriesPath.Name);
|
2010-10-02 21:01:43 +02:00
|
|
|
|
|
2010-10-04 03:00:50 +02:00
|
|
|
|
if (searchResults == null)
|
|
|
|
|
return null;
|
2010-10-02 21:01:43 +02:00
|
|
|
|
|
2010-10-05 08:21:18 +02:00
|
|
|
|
return _tvDb.GetSeries(searchResults.Id, false);
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual Series UpdateSeriesInfo(int seriesId)
|
2011-03-10 08:49:59 +01:00
|
|
|
|
{
|
2011-04-01 08:36:34 +02:00
|
|
|
|
var tvDbSeries = _tvDb.GetSeries(seriesId, true);
|
|
|
|
|
var series = GetSeries(seriesId);
|
|
|
|
|
|
|
|
|
|
series.SeriesId = tvDbSeries.Id;
|
|
|
|
|
series.Title = tvDbSeries.SeriesName;
|
|
|
|
|
series.AirTimes = tvDbSeries.AirsTime;
|
|
|
|
|
series.AirsDayOfWeek = tvDbSeries.AirsDayOfWeek;
|
|
|
|
|
series.Overview = tvDbSeries.Overview;
|
|
|
|
|
series.Status = tvDbSeries.Status;
|
|
|
|
|
series.Language = tvDbSeries.Language != null ? tvDbSeries.Language.Abbriviation : string.Empty;
|
|
|
|
|
series.CleanTitle = Parser.NormalizeTitle(tvDbSeries.SeriesName);
|
|
|
|
|
series.LastInfoSync = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
UpdateSeries(series);
|
|
|
|
|
return series;
|
2011-03-10 08:49:59 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual void AddSeries(string path, int tvDbSeriesId, int qualityProfileId)
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2011-04-01 08:36:34 +02:00
|
|
|
|
Logger.Info("Adding Series [{0}] Path: [{1}]", tvDbSeriesId, path);
|
|
|
|
|
|
2010-09-28 05:04:39 +02:00
|
|
|
|
var repoSeries = new Series();
|
2011-04-01 08:36:34 +02:00
|
|
|
|
repoSeries.SeriesId = tvDbSeriesId;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
repoSeries.Path = path;
|
2011-02-15 04:48:39 +01:00
|
|
|
|
repoSeries.Monitored = true; //New shows should be monitored
|
2011-03-28 22:22:12 +02:00
|
|
|
|
repoSeries.QualityProfileId = qualityProfileId;
|
|
|
|
|
if (qualityProfileId == 0)
|
|
|
|
|
repoSeries.QualityProfileId = Convert.ToInt32(_config.GetValue("DefaultQualityProfile", "1", true));
|
2011-02-25 08:20:24 +01:00
|
|
|
|
|
2011-04-01 08:36:34 +02:00
|
|
|
|
repoSeries.SeasonFolder = _config.UseSeasonFolder;
|
2011-02-25 08:20:24 +01:00
|
|
|
|
|
2010-09-28 05:04:39 +02:00
|
|
|
|
_sonioRepo.Add(repoSeries);
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
2010-09-28 21:32:19 +02:00
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual Series FindSeries(string title)
|
2011-01-29 07:10:22 +01:00
|
|
|
|
{
|
2011-04-04 08:53:22 +02:00
|
|
|
|
return _sonioRepo.Single<Series>(s => s.CleanTitle == Parser.NormalizeTitle(title));
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual void UpdateSeries(Series series)
|
2011-02-18 03:50:40 +01:00
|
|
|
|
{
|
|
|
|
|
_sonioRepo.Update(series);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual void DeleteSeries(int seriesId)
|
2011-02-18 07:49:23 +01:00
|
|
|
|
{
|
2011-04-01 08:36:34 +02:00
|
|
|
|
Logger.Warn("Deleting Series [{0}]", seriesId);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var series = _sonioRepo.Single<Series>(seriesId);
|
|
|
|
|
|
|
|
|
|
//Delete Files, Episdes, Seasons then the Series
|
|
|
|
|
//Can't use providers because episode provider needs series provider - Cyclic Dependency Injection, this will work
|
|
|
|
|
|
|
|
|
|
Logger.Debug("Deleting EpisodeFiles from DB for Series: {0}", series.SeriesId);
|
|
|
|
|
_sonioRepo.DeleteMany(series.EpisodeFiles);
|
2011-02-18 07:49:23 +01:00
|
|
|
|
|
2011-04-01 08:36:34 +02:00
|
|
|
|
Logger.Debug("Deleting Episodes from DB for Series: {0}", series.SeriesId);
|
|
|
|
|
_sonioRepo.DeleteMany(series.Episodes);
|
2011-02-18 07:49:23 +01:00
|
|
|
|
|
2011-04-01 08:36:34 +02:00
|
|
|
|
Logger.Debug("Deleting Seasons from DB for Series: {0}", series.SeriesId);
|
|
|
|
|
_sonioRepo.DeleteMany(series.Seasons);
|
2011-02-18 07:49:23 +01:00
|
|
|
|
|
2011-04-01 08:36:34 +02:00
|
|
|
|
Logger.Debug("Deleting Series from DB {0}", series.Title);
|
|
|
|
|
_sonioRepo.Delete<Series>(seriesId);
|
2011-02-18 07:49:23 +01:00
|
|
|
|
|
2011-04-01 08:36:34 +02:00
|
|
|
|
Logger.Info("Successfully deleted Series [{0}]", seriesId);
|
2011-02-18 07:49:23 +01:00
|
|
|
|
|
2011-04-01 08:36:34 +02:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error("An error has occurred while deleting series.", e);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
2011-02-18 07:49:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-07 04:25:52 +02:00
|
|
|
|
public virtual bool SeriesPathExists(string cleanPath)
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
|
|
|
|
if (_sonioRepo.Exists<Series>(s => s.Path == cleanPath))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-02 21:01:43 +02:00
|
|
|
|
#endregion
|
|
|
|
|
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
}
|