Lidarr/src/NzbDrone.Core/Tv/EpisodeCutoffService.cs

49 lines
1.6 KiB
C#
Raw Normal View History

2014-02-23 03:19:05 +00:00
using System.Collections.Generic;
using System.Linq;
using NLog;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Profiles;
2014-02-23 03:19:05 +00:00
using NzbDrone.Core.Qualities;
namespace NzbDrone.Core.Tv
{
public interface IEpisodeCutoffService
{
PagingSpec<Episode> EpisodesWhereCutoffUnmet(PagingSpec<Episode> pagingSpec);
}
public class EpisodeCutoffService : IEpisodeCutoffService
{
private readonly IEpisodeRepository _episodeRepository;
private readonly IProfileService _profileService;
2014-02-23 03:19:05 +00:00
private readonly Logger _logger;
public EpisodeCutoffService(IEpisodeRepository episodeRepository, IProfileService profileService, Logger logger)
2014-02-23 03:19:05 +00:00
{
_episodeRepository = episodeRepository;
_profileService = profileService;
2014-02-23 03:19:05 +00:00
_logger = logger;
}
public PagingSpec<Episode> EpisodesWhereCutoffUnmet(PagingSpec<Episode> pagingSpec)
{
var qualitiesBelowCutoff = new List<QualitiesBelowCutoff>();
var profiles = _profileService.All();
2014-02-23 03:19:05 +00:00
//Get all items less than the cutoff
foreach (var profile in profiles)
2014-02-23 03:19:05 +00:00
{
var cutoffIndex = profile.Items.FindIndex(v => v.Quality == profile.Cutoff);
var belowCutoff = profile.Items.Take(cutoffIndex).ToList();
2014-02-23 03:19:05 +00:00
if (belowCutoff.Any())
{
qualitiesBelowCutoff.Add(new QualitiesBelowCutoff(profile.Id, belowCutoff.Select(i => i.Quality.Id)));
2014-02-23 03:19:05 +00:00
}
}
return _episodeRepository.EpisodesWhereCutoffUnmet(pagingSpec, qualitiesBelowCutoff, false);
}
}
}