2013-03-03 23:26:41 +01:00
|
|
|
|
using System.Collections.Generic;
|
2012-02-21 04:25:19 +01:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2013-04-24 03:56:00 +02:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-03-03 23:26:41 +01:00
|
|
|
|
using NzbDrone.Core.Tv.Events;
|
2012-02-21 04:25:19 +01:00
|
|
|
|
|
2013-02-19 07:01:03 +01:00
|
|
|
|
namespace NzbDrone.Core.Tv
|
2012-02-21 04:25:19 +01:00
|
|
|
|
{
|
2013-02-20 03:05:15 +01:00
|
|
|
|
public interface ISeasonService
|
2012-02-21 04:25:19 +01:00
|
|
|
|
{
|
2013-02-20 03:05:15 +01:00
|
|
|
|
void SetIgnore(int seriesId, int seasonNumber, bool isIgnored);
|
2013-03-03 23:26:41 +01:00
|
|
|
|
List<Season> GetSeasonsBySeries(int seriesId);
|
2013-02-20 03:05:15 +01:00
|
|
|
|
}
|
2012-02-21 04:25:19 +01:00
|
|
|
|
|
2013-03-03 23:26:41 +01:00
|
|
|
|
public class SeasonService : ISeasonService,
|
|
|
|
|
IHandle<EpisodeInfoAddedEvent>,
|
2013-03-05 20:49:34 +01:00
|
|
|
|
IHandle<EpisodeInfoUpdatedEvent>,
|
|
|
|
|
IHandleAsync<SeriesDeletedEvent>
|
2013-02-20 03:05:15 +01:00
|
|
|
|
{
|
|
|
|
|
private readonly ISeasonRepository _seasonRepository;
|
|
|
|
|
private readonly Logger _logger;
|
2012-02-21 04:25:19 +01:00
|
|
|
|
|
2013-03-03 23:26:41 +01:00
|
|
|
|
public SeasonService(ISeasonRepository seasonRepository, Logger logger)
|
2012-02-21 04:25:19 +01:00
|
|
|
|
{
|
2013-02-20 03:05:15 +01:00
|
|
|
|
_seasonRepository = seasonRepository;
|
|
|
|
|
_logger = logger;
|
2012-02-21 04:25:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-02-20 03:05:15 +01:00
|
|
|
|
public void SetIgnore(int seriesId, int seasonNumber, bool isIgnored)
|
2012-02-21 04:25:19 +01:00
|
|
|
|
{
|
2013-02-20 03:05:15 +01:00
|
|
|
|
var season = _seasonRepository.Get(seriesId, seasonNumber);
|
2012-02-21 04:25:19 +01:00
|
|
|
|
|
2013-02-20 03:05:15 +01:00
|
|
|
|
_logger.Trace("Setting ignore flag on Series:{0} Season:{1} to {2}", seriesId, seasonNumber, isIgnored);
|
2012-02-28 06:50:56 +01:00
|
|
|
|
|
2013-02-20 03:05:15 +01:00
|
|
|
|
season.Ignored = isIgnored;
|
2013-03-03 23:26:41 +01:00
|
|
|
|
season.Episodes.ForEach(e => e.Ignored = isIgnored);
|
2012-02-28 06:50:56 +01:00
|
|
|
|
|
2013-02-20 03:05:15 +01:00
|
|
|
|
_seasonRepository.Update(season);
|
2012-02-21 04:25:19 +01:00
|
|
|
|
|
2013-02-20 03:05:15 +01:00
|
|
|
|
_logger.Info("Ignore flag for Series:{0} Season:{1} successfully set to {2}", seriesId, seasonNumber, isIgnored);
|
2012-02-21 04:25:19 +01:00
|
|
|
|
}
|
2013-03-03 23:26:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<Season> GetSeasonsBySeries(int seriesId)
|
|
|
|
|
{
|
|
|
|
|
return _seasonRepository.GetSeasonBySeries(seriesId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Handle(EpisodeInfoAddedEvent message)
|
|
|
|
|
{
|
|
|
|
|
EnsureSeasons(message.Episodes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Handle(EpisodeInfoUpdatedEvent message)
|
|
|
|
|
{
|
|
|
|
|
EnsureSeasons(message.Episodes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void EnsureSeasons(IEnumerable<Episode> episodes)
|
|
|
|
|
{
|
|
|
|
|
var seriesGroup = episodes.GroupBy(c => c.SeriesId);
|
|
|
|
|
|
|
|
|
|
foreach (var group in seriesGroup)
|
|
|
|
|
{
|
|
|
|
|
var seriesId = group.Key;
|
|
|
|
|
|
|
|
|
|
var existingSeasons = _seasonRepository.GetSeasonNumbers(seriesId);
|
|
|
|
|
var seasonNumbers = group.Select(c => c.SeasonNumber).Distinct();
|
|
|
|
|
var missingSeasons = seasonNumbers.Where(seasonNumber => !existingSeasons.Contains(seasonNumber));
|
|
|
|
|
|
|
|
|
|
var seasonToAdd = missingSeasons.Select(c => new Season()
|
|
|
|
|
{
|
|
|
|
|
SeriesId = seriesId,
|
|
|
|
|
SeasonNumber = c,
|
|
|
|
|
Ignored = false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
_seasonRepository.InsertMany(seasonToAdd.ToList());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 20:49:34 +01:00
|
|
|
|
public void HandleAsync(SeriesDeletedEvent message)
|
|
|
|
|
{
|
|
|
|
|
var seasons = GetSeasonsBySeries(message.Series.Id);
|
|
|
|
|
_seasonRepository.DeleteMany(seasons);
|
|
|
|
|
}
|
2013-02-20 03:05:15 +01:00
|
|
|
|
}
|
2012-02-21 07:50:38 +01:00
|
|
|
|
|
2012-02-28 06:50:56 +01:00
|
|
|
|
|
2012-02-21 04:25:19 +01:00
|
|
|
|
} |