using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using NLog; using NzbDrone.Common.Extensions; using NzbDrone.Common.Instrumentation.Extensions; using NzbDrone.Core.DecisionEngine; using NzbDrone.Core.Indexers; using NzbDrone.Core.IndexerSearch.Definitions; using NzbDrone.Core.Movies; using NzbDrone.Core.Movies.Translations; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Profiles.Qualities; namespace NzbDrone.Core.IndexerSearch { public interface ISearchForReleases { Task> MovieSearch(int movieId, bool userInvokedSearch, bool interactiveSearch); Task> MovieSearch(Movie movie, bool userInvokedSearch, bool interactiveSearch); } public class ReleaseSearchService : ISearchForReleases { private readonly IIndexerFactory _indexerFactory; private readonly IMakeDownloadDecision _makeDownloadDecision; private readonly IMovieService _movieService; private readonly IMovieTranslationService _movieTranslationService; private readonly IQualityProfileService _qualityProfileService; private readonly Logger _logger; public ReleaseSearchService(IIndexerFactory indexerFactory, IMakeDownloadDecision makeDownloadDecision, IMovieService movieService, IMovieTranslationService movieTranslationService, IQualityProfileService qualityProfileService, Logger logger) { _indexerFactory = indexerFactory; _makeDownloadDecision = makeDownloadDecision; _movieService = movieService; _movieTranslationService = movieTranslationService; _qualityProfileService = qualityProfileService; _logger = logger; } public async Task> MovieSearch(int movieId, bool userInvokedSearch, bool interactiveSearch) { var movie = _movieService.GetMovie(movieId); movie.MovieMetadata.Value.Translations = _movieTranslationService.GetAllTranslationsForMovieMetadata(movie.MovieMetadataId); return await MovieSearch(movie, userInvokedSearch, interactiveSearch); } public async Task> MovieSearch(Movie movie, bool userInvokedSearch, bool interactiveSearch) { var downloadDecisions = new List(); var searchSpec = Get(movie, userInvokedSearch, interactiveSearch); var decisions = await Dispatch(indexer => indexer.Fetch(searchSpec), searchSpec); downloadDecisions.AddRange(decisions); return DeDupeDecisions(downloadDecisions); } private TSpec Get(Movie movie, bool userInvokedSearch, bool interactiveSearch) where TSpec : SearchCriteriaBase, new() { var spec = new TSpec { Movie = movie, UserInvokedSearch = userInvokedSearch, InteractiveSearch = interactiveSearch }; var wantedLanguages = _qualityProfileService.GetAcceptableLanguages(movie.QualityProfileId); var translations = _movieTranslationService.GetAllTranslationsForMovieMetadata(movie.MovieMetadataId); var queryTranslations = new List { movie.MovieMetadata.Value.Title, movie.MovieMetadata.Value.OriginalTitle }; // Add Translation of wanted languages to search query foreach (var translation in translations.Where(a => wantedLanguages.Contains(a.Language))) { queryTranslations.Add(translation.Title); } spec.SceneTitles = queryTranslations.Distinct().Where(t => t.IsNotNullOrWhiteSpace()).ToList(); return spec; } private async Task> Dispatch(Func>> searchAction, SearchCriteriaBase criteriaBase) { var indexers = criteriaBase.InteractiveSearch ? _indexerFactory.InteractiveSearchEnabled() : _indexerFactory.AutomaticSearchEnabled(); // Filter indexers to untagged indexers and indexers with intersecting tags indexers = indexers.Where(i => i.Definition.Tags.Empty() || i.Definition.Tags.Intersect(criteriaBase.Movie.Tags).Any()).ToList(); _logger.ProgressInfo("Searching indexers for {0}. {1} active indexers", criteriaBase, indexers.Count); var tasks = indexers.Select(indexer => DispatchIndexer(searchAction, indexer, criteriaBase)); var batch = await Task.WhenAll(tasks); var reports = batch.SelectMany(x => x).ToList(); _logger.ProgressDebug("Total of {0} reports were found for {1} from {2} indexers", reports.Count, criteriaBase, indexers.Count); // Update the last search time for movie if at least 1 indexer was searched. if (indexers.Any()) { var lastSearchTime = DateTime.UtcNow; _logger.Debug("Setting last search time to: {0}", lastSearchTime); criteriaBase.Movie.LastSearchTime = lastSearchTime; _movieService.UpdateLastSearchTime(criteriaBase.Movie); } return _makeDownloadDecision.GetSearchDecision(reports, criteriaBase).ToList(); } private async Task> DispatchIndexer(Func>> searchAction, IIndexer indexer, SearchCriteriaBase criteriaBase) { try { return await searchAction(indexer); } catch (Exception ex) { _logger.Error(ex, "Error while searching for {0}", criteriaBase); } return Array.Empty(); } private List DeDupeDecisions(List decisions) { // De-dupe reports by guid so duplicate results aren't returned. Pick the one with the least rejections and higher indexer priority. return decisions.GroupBy(d => d.RemoteMovie.Release.Guid) .Select(d => d.OrderBy(v => v.Rejections.Count()).ThenBy(v => v.RemoteMovie?.Release?.IndexerPriority ?? IndexerDefinition.DefaultPriority).First()) .ToList(); } } }