2010-09-28 19:32:19 +00:00
|
|
|
|
using System;
|
2011-05-27 06:03:57 +00:00
|
|
|
|
using System.Collections.Generic;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using System.Linq;
|
2010-10-02 19:01:43 +00:00
|
|
|
|
using NLog;
|
2013-02-20 02:05:15 +00:00
|
|
|
|
using NzbDrone.Common.EnsureThat;
|
2013-02-23 20:34:51 +00:00
|
|
|
|
using NzbDrone.Common.Eventing;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-02-24 19:57:33 +00:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-03-04 05:53:02 +00:00
|
|
|
|
using NzbDrone.Core.MetadataSource;
|
2012-01-24 06:29:32 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2013-03-01 04:59:06 +00:00
|
|
|
|
using NzbDrone.Core.Qualities;
|
2013-03-02 18:25:39 +00:00
|
|
|
|
using NzbDrone.Core.ReferenceData;
|
2013-02-23 20:34:51 +00:00
|
|
|
|
using NzbDrone.Core.Tv.Events;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2013-02-19 06:01:03 +00:00
|
|
|
|
namespace NzbDrone.Core.Tv
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-02-20 02:05:15 +00:00
|
|
|
|
public interface ISeriesService
|
|
|
|
|
{
|
|
|
|
|
bool IsMonitored(int id);
|
|
|
|
|
Series UpdateSeriesInfo(int seriesId);
|
|
|
|
|
Series FindSeries(string title);
|
|
|
|
|
void AddSeries(string title, string path, int tvDbSeriesId, int qualityProfileId, DateTime? airedAfter);
|
|
|
|
|
void UpdateFromSeriesEditor(IList<Series> editedSeries);
|
2013-03-02 18:25:39 +00:00
|
|
|
|
Series FindByTvdbId(int tvdbId);
|
2013-03-04 05:53:02 +00:00
|
|
|
|
void SetSeriesType(int seriesId, SeriesTypes seriesTypes);
|
2013-03-05 19:49:34 +00:00
|
|
|
|
void DeleteSeries(int seriesId, bool deleteFiles);
|
2013-02-20 02:05:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class SeriesService : ISeriesService
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-02-19 06:56:02 +00:00
|
|
|
|
private readonly ISeriesRepository _seriesRepository;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
private readonly IConfigService _configService;
|
2013-03-04 05:53:02 +00:00
|
|
|
|
private readonly TvDbProxy _tvDbProxy;
|
2012-12-19 16:41:51 +00:00
|
|
|
|
private readonly TvRageMappingProvider _tvRageMappingProvider;
|
2013-02-23 20:34:51 +00:00
|
|
|
|
private readonly IEventAggregator _eventAggregator;
|
2013-03-01 04:59:06 +00:00
|
|
|
|
private readonly IQualityProfileService _qualityProfileService;
|
2012-12-20 06:17:18 +00:00
|
|
|
|
|
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-03-02 18:25:39 +00:00
|
|
|
|
private readonly SceneMappingService _sceneNameMappingService;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2013-02-24 20:24:31 +00:00
|
|
|
|
public SeriesService(ISeriesRepository seriesRepository, IConfigService configServiceService,
|
2013-03-04 05:53:02 +00:00
|
|
|
|
TvDbProxy tvDbProxyProxy, SceneMappingService sceneNameMappingService,
|
2013-03-01 04:59:06 +00:00
|
|
|
|
TvRageMappingProvider tvRageMappingProvider, IEventAggregator eventAggregator, IQualityProfileService qualityProfileService)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-02-19 06:56:02 +00:00
|
|
|
|
_seriesRepository = seriesRepository;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
_configService = configServiceService;
|
2013-03-04 05:53:02 +00:00
|
|
|
|
_tvDbProxy = tvDbProxyProxy;
|
2013-03-02 18:25:39 +00:00
|
|
|
|
_sceneNameMappingService = sceneNameMappingService;
|
2012-12-19 16:41:51 +00:00
|
|
|
|
_tvRageMappingProvider = tvRageMappingProvider;
|
2013-02-23 20:34:51 +00:00
|
|
|
|
_eventAggregator = eventAggregator;
|
2013-03-01 04:59:06 +00:00
|
|
|
|
_qualityProfileService = qualityProfileService;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-10 00:14:51 +00:00
|
|
|
|
|
2013-02-19 06:56:02 +00:00
|
|
|
|
public bool IsMonitored(int id)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-02-19 06:56:02 +00:00
|
|
|
|
return _seriesRepository.Get(id).Monitored;
|
2010-09-28 20:44:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 02:05:15 +00:00
|
|
|
|
|
|
|
|
|
public Series UpdateSeriesInfo(int seriesId)
|
2011-03-10 07:49:59 +00:00
|
|
|
|
{
|
2013-02-19 06:56:02 +00:00
|
|
|
|
var series = _seriesRepository.Get(seriesId);
|
2013-03-04 05:53:02 +00:00
|
|
|
|
var tvDbSeries = _tvDbProxy.GetSeries(series.TvDbId);
|
2013-02-24 19:57:33 +00:00
|
|
|
|
|
2013-03-02 19:32:55 +00:00
|
|
|
|
series.Title = tvDbSeries.Title;
|
|
|
|
|
series.AirTime = tvDbSeries.AirTime;
|
2011-04-01 06:36:34 +00:00
|
|
|
|
series.Overview = tvDbSeries.Overview;
|
|
|
|
|
series.Status = tvDbSeries.Status;
|
2013-03-02 19:32:55 +00:00
|
|
|
|
series.Language = tvDbSeries.Language;
|
|
|
|
|
series.CleanTitle = tvDbSeries.CleanTitle;
|
2011-04-01 06:36:34 +00:00
|
|
|
|
series.LastInfoSync = DateTime.Now;
|
2013-03-02 19:32:55 +00:00
|
|
|
|
series.Runtime = tvDbSeries.Runtime;
|
2013-03-04 05:53:02 +00:00
|
|
|
|
series.Covers = tvDbSeries.Covers;
|
2012-02-29 07:20:40 +00:00
|
|
|
|
series.Network = tvDbSeries.Network;
|
2013-03-02 19:32:55 +00:00
|
|
|
|
series.FirstAired = tvDbSeries.FirstAired;
|
2012-12-27 00:16:15 +00:00
|
|
|
|
|
2012-12-20 06:17:18 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2013-02-19 06:56:02 +00:00
|
|
|
|
if (series.TvRageId == 0)
|
2012-12-20 06:17:18 +00:00
|
|
|
|
series = _tvRageMappingProvider.FindMatchingTvRageSeries(series);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-19 06:56:02 +00:00
|
|
|
|
catch (Exception ex)
|
2012-12-20 06:17:18 +00:00
|
|
|
|
{
|
|
|
|
|
logger.ErrorException("Error getting TvRage information for series: " + series.Title, ex);
|
|
|
|
|
}
|
2012-12-19 16:41:51 +00:00
|
|
|
|
|
2013-02-19 06:56:02 +00:00
|
|
|
|
_seriesRepository.Update(series);
|
2012-07-12 18:30:43 +00:00
|
|
|
|
|
2013-03-04 05:53:02 +00:00
|
|
|
|
_eventAggregator.Publish(new SeriesUpdatedEvent(series));
|
|
|
|
|
|
2011-04-01 06:36:34 +00:00
|
|
|
|
return series;
|
2011-03-10 07:49:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 02:05:15 +00:00
|
|
|
|
public Series FindSeries(string title)
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-02-20 02:05:15 +00:00
|
|
|
|
var normalizeTitle = Parser.NormalizeTitle(title);
|
2011-04-01 06:36:34 +00:00
|
|
|
|
|
2013-03-02 18:25:39 +00:00
|
|
|
|
var mapping = _sceneNameMappingService.GetTvDbId(normalizeTitle);
|
2013-02-20 02:05:15 +00:00
|
|
|
|
if (mapping.HasValue)
|
2012-01-13 22:16:14 +00:00
|
|
|
|
{
|
2013-02-20 02:05:15 +00:00
|
|
|
|
var sceneSeries = _seriesRepository.Get(mapping.Value);
|
|
|
|
|
return sceneSeries;
|
2012-01-13 22:16:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 02:05:15 +00:00
|
|
|
|
return _seriesRepository.GetByTitle(normalizeTitle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void AddSeries(string title, string path, int tvDbSeriesId, int qualityProfileId, DateTime? airedAfter)
|
|
|
|
|
{
|
|
|
|
|
logger.Info("Adding Series [{0}] Path: [{1}]", tvDbSeriesId, path);
|
|
|
|
|
|
|
|
|
|
Ensure.That(() => tvDbSeriesId).IsGreaterThan(0);
|
2013-03-01 04:59:06 +00:00
|
|
|
|
Ensure.That(() => title).IsNotNullOrWhiteSpace();
|
2013-02-20 02:05:15 +00:00
|
|
|
|
Ensure.That(() => path).IsNotNullOrWhiteSpace();
|
|
|
|
|
|
2010-09-28 03:04:39 +00:00
|
|
|
|
var repoSeries = new Series();
|
2013-02-24 19:57:33 +00:00
|
|
|
|
repoSeries.TvDbId = tvDbSeriesId;
|
2010-09-28 03:04:39 +00:00
|
|
|
|
repoSeries.Path = path;
|
2013-02-20 02:05:15 +00:00
|
|
|
|
repoSeries.Monitored = true;
|
2011-03-28 20:22:12 +00:00
|
|
|
|
repoSeries.QualityProfileId = qualityProfileId;
|
2012-02-29 08:25:41 +00:00
|
|
|
|
repoSeries.Title = title;
|
2011-03-28 20:22:12 +00:00
|
|
|
|
if (qualityProfileId == 0)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
repoSeries.QualityProfileId = _configService.DefaultQualityProfile;
|
2011-02-25 07:20:24 +00:00
|
|
|
|
|
2013-03-01 04:59:06 +00:00
|
|
|
|
repoSeries.QualityProfile = _qualityProfileService.Get(repoSeries.QualityProfileId);
|
2013-02-24 06:48:52 +00:00
|
|
|
|
repoSeries.SeasonFolder = _configService.UseSeasonFolder;
|
2012-01-26 01:02:21 +00:00
|
|
|
|
repoSeries.BacklogSetting = BacklogSettingType.Inherit;
|
2011-02-25 07:20:24 +00:00
|
|
|
|
|
2012-09-19 06:06:09 +00:00
|
|
|
|
if (airedAfter.HasValue)
|
2012-09-20 15:37:40 +00:00
|
|
|
|
repoSeries.CustomStartDate = airedAfter;
|
2012-09-19 06:06:09 +00:00
|
|
|
|
|
2013-02-19 06:56:02 +00:00
|
|
|
|
_seriesRepository.Insert(repoSeries);
|
2013-02-23 20:34:51 +00:00
|
|
|
|
|
|
|
|
|
_eventAggregator.Publish(new SeriesAddedEvent(repoSeries));
|
2011-02-18 02:50:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 02:05:15 +00:00
|
|
|
|
public void UpdateFromSeriesEditor(IList<Series> editedSeries)
|
2012-01-20 07:50:45 +00:00
|
|
|
|
{
|
2013-02-19 06:56:02 +00:00
|
|
|
|
var allSeries = _seriesRepository.All();
|
2012-01-20 07:50:45 +00:00
|
|
|
|
|
2013-02-19 06:56:02 +00:00
|
|
|
|
foreach (var series in allSeries)
|
2012-01-20 07:50:45 +00:00
|
|
|
|
{
|
|
|
|
|
//Only update parameters that can be changed in MassEdit
|
2013-02-26 03:58:57 +00:00
|
|
|
|
var edited = editedSeries.Single(s => ((ModelBase)s).Id == series.Id);
|
2012-01-20 07:50:45 +00:00
|
|
|
|
series.QualityProfileId = edited.QualityProfileId;
|
|
|
|
|
series.Monitored = edited.Monitored;
|
|
|
|
|
series.SeasonFolder = edited.SeasonFolder;
|
2012-01-26 01:02:21 +00:00
|
|
|
|
series.BacklogSetting = edited.BacklogSetting;
|
2012-01-20 07:50:45 +00:00
|
|
|
|
series.Path = edited.Path;
|
2012-09-20 15:37:40 +00:00
|
|
|
|
series.CustomStartDate = edited.CustomStartDate;
|
2013-02-19 06:56:02 +00:00
|
|
|
|
|
|
|
|
|
_seriesRepository.Update(series);
|
2012-01-20 07:50:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 18:25:39 +00:00
|
|
|
|
public Series FindByTvdbId(int tvdbId)
|
|
|
|
|
{
|
|
|
|
|
return _seriesRepository.FindByTvdbId(tvdbId);
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-04 05:53:02 +00:00
|
|
|
|
public void SetSeriesType(int seriesId, SeriesTypes seriesTypes)
|
2013-03-02 18:25:39 +00:00
|
|
|
|
{
|
2013-03-04 05:53:02 +00:00
|
|
|
|
_seriesRepository.SetSeriesType(seriesId, seriesTypes);
|
2013-03-02 18:25:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 19:49:34 +00:00
|
|
|
|
public void DeleteSeries(int seriesId, bool deleteFiles)
|
2013-03-05 19:35:33 +00:00
|
|
|
|
{
|
|
|
|
|
var series = _seriesRepository.Get(seriesId);
|
|
|
|
|
_seriesRepository.Delete(seriesId);
|
2013-03-05 19:49:34 +00:00
|
|
|
|
_eventAggregator.Publish(new SeriesDeletedEvent(series, deleteFiles));
|
2013-03-05 19:35:33 +00:00
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
2013-03-01 07:03:41 +00:00
|
|
|
|
}
|