Sonarr/NzbDrone.Core/Providers/SeriesProvider.cs

181 lines
6.6 KiB
C#
Raw Normal View History

using System;
2011-05-27 06:03:57 +00:00
using System.Collections.Generic;
using System.IO;
2010-09-23 03:19:47 +00:00
using System.Linq;
using System.Text.RegularExpressions;
using Ninject;
2010-10-02 19:01:43 +00:00
using NLog;
using NzbDrone.Core.Helpers;
2011-04-04 03:50:12 +00:00
using NzbDrone.Core.Providers.Core;
using NzbDrone.Core.Repository;
using NzbDrone.Core.Repository.Quality;
2010-09-23 03:19:47 +00:00
using SubSonic.Repository;
using TvdbLib.Data;
namespace NzbDrone.Core.Providers
2010-09-23 03:19:47 +00:00
{
2011-04-08 23:55:23 +00:00
public class SeriesProvider
2010-09-23 03:19:47 +00:00
{
2011-04-10 02:44:01 +00:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly IRepository _repository;
private readonly ConfigProvider _configProvider;
private readonly TvDbProvider _tvDbProvider;
2010-09-23 03:19:47 +00:00
[Inject]
public SeriesProvider(ConfigProvider configProviderProvider, IRepository repository, TvDbProvider tvDbProviderProvider)
2010-09-23 03:19:47 +00:00
{
_configProvider = configProviderProvider;
_repository = repository;
_tvDbProvider = tvDbProviderProvider;
2010-09-23 03:19:47 +00:00
}
public SeriesProvider()
{
}
2011-05-27 06:03:57 +00:00
public virtual IList<Series> GetAllSeries()
2010-09-23 03:19:47 +00:00
{
2011-05-27 06:03:57 +00:00
return _repository.All<Series>().ToList();
2010-09-23 03:19:47 +00:00
}
2011-04-07 02:25:52 +00:00
public virtual Series GetSeries(int seriesId)
2010-09-24 07:14:42 +00:00
{
return _repository.Single<Series>(seriesId);
2010-09-24 07:14:42 +00:00
}
2010-10-02 19:01:43 +00:00
/// <summary>
2011-04-10 02:44:01 +00:00
/// Determines if a series is being actively watched.
2010-10-02 19:01:43 +00:00
/// </summary>
2011-04-10 02:44:01 +00:00
/// <param name = "id">The TVDB ID of the series</param>
2010-10-02 19:01:43 +00:00
/// <returns>Whether or not the show is monitored</returns>
2011-04-07 02:25:52 +00:00
public virtual bool IsMonitored(long id)
{
return _repository.Exists<Series>(c => c.SeriesId == id && c.Monitored);
}
2011-04-07 02:25:52 +00:00
public virtual TvdbSeries MapPathToSeries(string path)
2010-09-23 03:19:47 +00:00
{
2010-10-02 19:01:43 +00:00
var seriesPath = new DirectoryInfo(path);
var searchResults = _tvDbProvider.GetSeries(seriesPath.Name);
2010-10-02 19:01:43 +00:00
if (searchResults == null)
return null;
2010-10-02 19:01:43 +00:00
return _tvDbProvider.GetSeries(searchResults.Id, false);
2010-09-23 03:19:47 +00:00
}
2011-04-07 02:25:52 +00:00
public virtual Series UpdateSeriesInfo(int seriesId)
{
var tvDbSeries = _tvDbProvider.GetSeries(seriesId, true);
var series = GetSeries(seriesId);
series.SeriesId = tvDbSeries.Id;
series.Title = tvDbSeries.SeriesName;
series.AirTimes = CleanAirsTime(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-04-07 02:25:52 +00:00
public virtual void AddSeries(string path, int tvDbSeriesId, int qualityProfileId)
2010-09-23 03:19:47 +00:00
{
Logger.Info("Adding Series [{0}] Path: [{1}]", tvDbSeriesId, path);
var repoSeries = new Series();
repoSeries.SeriesId = tvDbSeriesId;
repoSeries.Path = path;
repoSeries.Monitored = true; //New shows should be monitored
repoSeries.QualityProfileId = qualityProfileId;
if (qualityProfileId == 0)
repoSeries.QualityProfileId = Convert.ToInt32(_configProvider.GetValue("DefaultQualityProfile", "1", true));
repoSeries.SeasonFolder = _configProvider.UseSeasonFolder;
_repository.Add(repoSeries);
2010-09-23 03:19:47 +00:00
}
2011-04-07 02:25:52 +00:00
public virtual Series FindSeries(string title)
{
2011-04-22 19:16:52 +00:00
var normalizeTitle = Parser.NormalizeTitle(title);
var seriesId = SceneNameHelper.GetIdByName(normalizeTitle);
2011-06-03 01:24:15 +00:00
if (seriesId != null)
{
return GetSeries(seriesId.Value);
}
return _repository.Single<Series>(s => s.CleanTitle == normalizeTitle);
}
2011-04-07 02:25:52 +00:00
public virtual void UpdateSeries(Series series)
{
_repository.Update(series);
}
2011-04-07 02:25:52 +00:00
public virtual void DeleteSeries(int seriesId)
{
Logger.Warn("Deleting Series [{0}]", seriesId);
var series = _repository.Single<Series>(seriesId);
//Delete Files, Episodes, Seasons then the Series
//Can't use providers because episode provider needs series provider - Cyclic Dependency Injection, this will work
//Delete History Items for any episodes that belong to this series
Logger.Debug("Deleting History Items from DB for Series: {0}", series.SeriesId);
var episodes = series.Episodes.Select(e => e.EpisodeId).ToList();
episodes.ForEach(e => _repository.DeleteMany<History>(h => h.EpisodeId == e));
//Delete all episode files from the DB for episodes in this series
Logger.Debug("Deleting EpisodeFiles from DB for Series: {0}", series.SeriesId);
_repository.DeleteMany(series.EpisodeFiles);
//Delete all episodes for this series from the DB
Logger.Debug("Deleting Episodes from DB for Series: {0}", series.SeriesId);
_repository.DeleteMany(series.Episodes);
//Delete the Series
Logger.Debug("Deleting Series from DB {0}", series.Title);
_repository.Delete<Series>(seriesId);
Logger.Info("Successfully deleted Series [{0}]", seriesId);
}
2011-04-07 02:25:52 +00:00
public virtual bool SeriesPathExists(string cleanPath)
{
if (_repository.Exists<Series>(s => s.Path == cleanPath))
return true;
return false;
}
/// <summary>
/// Cleans up the AirsTime Component from TheTVDB since it can be garbage that comes in.
/// </summary>
/// <param name = "input">The TVDB AirsTime</param>
/// <returns>String that contains the AirTimes</returns>
private string CleanAirsTime(string inputTime)
{
Regex timeRegex = new Regex(@"^(?<time>\d+:?\d*)\W*(?<meridiem>am|pm)?", RegexOptions.IgnoreCase | RegexOptions.Compiled);
var match = timeRegex.Match(inputTime);
var time = match.Groups["time"].Value;
var meridiem = match.Groups["meridiem"].Value;
//Lets assume that a string that doesn't contain a Merideim is aired at night... So we'll add it
if (String.IsNullOrEmpty(meridiem))
meridiem = "PM";
if (String.IsNullOrEmpty(time))
return String.Empty;
2011-04-27 16:47:53 +00:00
var dateTime = DateTime.Parse(time + " " + meridiem.ToUpper());
return dateTime.ToString("hh:mm tt");
}
2010-09-23 03:19:47 +00:00
}
}