2013-06-19 02:08:29 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
|
using NzbDrone.Core.Download;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
|
|
|
{
|
|
|
|
|
public class SeasonSearchService : IExecute<SeasonSearchCommand>
|
|
|
|
|
{
|
|
|
|
|
private readonly ISearchForNzb _nzbSearchService;
|
2013-06-19 05:44:50 +00:00
|
|
|
|
private readonly IDownloadApprovedReports _downloadApprovedReports;
|
2013-06-19 02:08:29 +00:00
|
|
|
|
|
2013-06-19 05:44:50 +00:00
|
|
|
|
public SeasonSearchService(ISearchForNzb nzbSearchService, IDownloadApprovedReports downloadApprovedReports)
|
2013-06-19 02:08:29 +00:00
|
|
|
|
{
|
|
|
|
|
_nzbSearchService = nzbSearchService;
|
2013-06-19 05:44:50 +00:00
|
|
|
|
_downloadApprovedReports = downloadApprovedReports;
|
2013-06-19 02:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Execute(SeasonSearchCommand message)
|
|
|
|
|
{
|
|
|
|
|
var decisions = _nzbSearchService.SeasonSearch(message.SeriesId, message.SeasonNumber);
|
2013-06-19 05:44:50 +00:00
|
|
|
|
_downloadApprovedReports.DownloadApproved(decisions);
|
2013-06-19 02:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|