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