2010-09-28 19:32:19 +00:00
|
|
|
|
using System;
|
2011-05-27 06:03:57 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-04-11 04:30:51 +00:00
|
|
|
|
using System.IO;
|
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-24 06:48:52 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-04-29 00:39:17 +00:00
|
|
|
|
using NzbDrone.Core.DataAugmentation.Scene;
|
2013-09-11 06:33:47 +00:00
|
|
|
|
using NzbDrone.Core.Messaging;
|
2013-04-11 04:30:51 +00:00
|
|
|
|
using NzbDrone.Core.Organizer;
|
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
|
|
|
|
|
{
|
2013-04-07 07:30:37 +00:00
|
|
|
|
Series GetSeries(int seriesId);
|
2013-04-22 03:18:08 +00:00
|
|
|
|
Series AddSeries(Series newSeries);
|
2013-03-02 18:25:39 +00:00
|
|
|
|
Series FindByTvdbId(int tvdbId);
|
2013-08-19 05:53:26 +00:00
|
|
|
|
Series FindByTvRageId(int tvRageId);
|
2013-04-15 01:41:39 +00:00
|
|
|
|
Series FindByTitle(string title);
|
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-04-12 00:36:47 +00:00
|
|
|
|
List<Series> GetAllSeries();
|
2013-04-22 03:18:08 +00:00
|
|
|
|
Series UpdateSeries(Series series);
|
2013-04-15 01:41:39 +00:00
|
|
|
|
bool SeriesPathExists(string folder);
|
2013-02-20 02:05:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-02 19:29:00 +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-04-24 01:56:00 +00:00
|
|
|
|
private readonly IMessageAggregator _messageAggregator;
|
2013-04-29 00:39:17 +00:00
|
|
|
|
private readonly ISceneMappingService _sceneMappingService;
|
2013-09-10 05:22:38 +00:00
|
|
|
|
private readonly IEpisodeService _episodeService;
|
2013-03-28 06:49:38 +00:00
|
|
|
|
private readonly Logger _logger;
|
2012-12-20 06:17:18 +00:00
|
|
|
|
|
2013-07-12 01:47:22 +00:00
|
|
|
|
public SeriesService(ISeriesRepository seriesRepository,
|
|
|
|
|
IConfigService configServiceService,
|
|
|
|
|
IMessageAggregator messageAggregator,
|
|
|
|
|
ISceneMappingService sceneMappingService,
|
2013-09-10 05:22:38 +00:00
|
|
|
|
IEpisodeService episodeService,
|
2013-07-12 01:47:22 +00:00
|
|
|
|
Logger logger)
|
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-04-24 01:56:00 +00:00
|
|
|
|
_messageAggregator = messageAggregator;
|
2013-04-29 00:39:17 +00:00
|
|
|
|
_sceneMappingService = sceneMappingService;
|
2013-09-10 05:22:38 +00:00
|
|
|
|
_episodeService = episodeService;
|
2013-03-28 06:49:38 +00:00
|
|
|
|
_logger = logger;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 07:30:37 +00:00
|
|
|
|
public Series GetSeries(int seriesId)
|
|
|
|
|
{
|
|
|
|
|
return _seriesRepository.Get(seriesId);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 03:18:08 +00:00
|
|
|
|
public Series AddSeries(Series newSeries)
|
2013-02-20 02:05:15 +00:00
|
|
|
|
{
|
2013-03-31 21:45:16 +00:00
|
|
|
|
Ensure.That(() => newSeries).IsNotNull();
|
2013-02-20 02:05:15 +00:00
|
|
|
|
|
2013-05-24 04:10:56 +00:00
|
|
|
|
if (String.IsNullOrWhiteSpace(newSeries.Path))
|
2013-05-23 05:37:46 +00:00
|
|
|
|
{
|
2013-05-24 04:10:56 +00:00
|
|
|
|
var folderName = FileNameBuilder.CleanFilename(newSeries.Title);
|
|
|
|
|
newSeries.Path = Path.Combine(newSeries.RootFolderPath, folderName);
|
2013-05-23 05:37:46 +00:00
|
|
|
|
}
|
2013-05-28 05:40:58 +00:00
|
|
|
|
|
2013-07-05 05:17:25 +00:00
|
|
|
|
_logger.Info("Adding Series {0} Path: [{1}]", newSeries, newSeries.Path);
|
2013-02-20 02:05:15 +00:00
|
|
|
|
|
2013-03-31 21:45:16 +00:00
|
|
|
|
newSeries.Monitored = true;
|
2013-06-08 19:14:52 +00:00
|
|
|
|
newSeries.CleanTitle = Parser.Parser.CleanSeriesTitle(newSeries.Title);
|
2013-05-20 22:45:16 +00:00
|
|
|
|
|
2013-03-31 21:45:16 +00:00
|
|
|
|
newSeries.SeasonFolder = _configService.UseSeasonFolder;
|
2011-02-25 07:20:24 +00:00
|
|
|
|
|
2013-03-31 21:45:16 +00:00
|
|
|
|
_seriesRepository.Insert(newSeries);
|
2013-04-27 02:03:34 +00:00
|
|
|
|
_messageAggregator.PublishEvent(new SeriesAddedEvent(newSeries));
|
2013-04-22 03:18:08 +00:00
|
|
|
|
|
|
|
|
|
return newSeries;
|
2011-02-18 02:50:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 18:25:39 +00:00
|
|
|
|
public Series FindByTvdbId(int tvdbId)
|
|
|
|
|
{
|
|
|
|
|
return _seriesRepository.FindByTvdbId(tvdbId);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-19 05:53:26 +00:00
|
|
|
|
public Series FindByTvRageId(int tvRageId)
|
|
|
|
|
{
|
|
|
|
|
return _seriesRepository.FindByTvRageId(tvRageId);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public Series FindByTitle(string title)
|
|
|
|
|
{
|
2013-04-29 00:39:17 +00:00
|
|
|
|
var tvdbId = _sceneMappingService.GetTvDbId(title);
|
|
|
|
|
|
|
|
|
|
if (tvdbId.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return FindByTvdbId(tvdbId.Value);
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-08 19:14:52 +00:00
|
|
|
|
return _seriesRepository.FindByTitle(Parser.Parser.CleanSeriesTitle(title));
|
2013-04-15 01:41:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
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-04-27 02:03:34 +00:00
|
|
|
|
_messageAggregator.PublishEvent(new SeriesDeletedEvent(series, deleteFiles));
|
2013-03-05 19:35:33 +00:00
|
|
|
|
}
|
2013-03-30 21:56:34 +00:00
|
|
|
|
|
2013-04-12 00:36:47 +00:00
|
|
|
|
public List<Series> GetAllSeries()
|
|
|
|
|
{
|
|
|
|
|
return _seriesRepository.All().ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 03:18:08 +00:00
|
|
|
|
public Series UpdateSeries(Series series)
|
2013-04-12 00:36:47 +00:00
|
|
|
|
{
|
2013-09-13 06:47:40 +00:00
|
|
|
|
var storedSeries = GetSeries(series.Id);
|
|
|
|
|
|
|
|
|
|
foreach (var season in series.Seasons)
|
|
|
|
|
{
|
|
|
|
|
var storedSeason = storedSeries.Seasons.SingleOrDefault(s => s.SeasonNumber == season.SeasonNumber);
|
|
|
|
|
|
|
|
|
|
if (storedSeason != null && season.Monitored != storedSeason.Monitored)
|
|
|
|
|
{
|
|
|
|
|
_episodeService.SetEpisodeMonitoredBySeason(series.Id, season.SeasonNumber, season.Monitored);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-22 03:18:08 +00:00
|
|
|
|
return _seriesRepository.Update(series);
|
2013-04-12 00:36:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public bool SeriesPathExists(string folder)
|
|
|
|
|
{
|
|
|
|
|
return _seriesRepository.SeriesPathExists(folder);
|
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
2013-03-01 07:03:41 +00:00
|
|
|
|
}
|