2013-02-24 20:18:48 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-02-23 22:29:22 +01:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2013-04-24 03:56:00 +02:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-05-11 00:33:04 +02:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-24 20:18:48 +01:00
|
|
|
|
using NzbDrone.Core.Download;
|
2013-06-09 08:20:38 +02:00
|
|
|
|
using NzbDrone.Core.MediaFiles.Events;
|
2013-02-23 22:29:22 +01:00
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.History
|
|
|
|
|
{
|
2013-02-24 20:18:48 +01:00
|
|
|
|
public interface IHistoryService
|
|
|
|
|
{
|
|
|
|
|
List<History> All();
|
|
|
|
|
void Purge();
|
|
|
|
|
void Trim();
|
2013-03-25 02:38:11 +01:00
|
|
|
|
QualityModel GetBestQualityInHistory(int episodeId);
|
2013-05-11 00:33:04 +02:00
|
|
|
|
PagingSpec<History> Paged(PagingSpec<History> pagingSpec);
|
2013-02-24 20:18:48 +01:00
|
|
|
|
}
|
2013-02-23 22:29:22 +01:00
|
|
|
|
|
2013-06-09 08:20:38 +02:00
|
|
|
|
public class HistoryService : IHistoryService, IHandle<EpisodeGrabbedEvent>, IHandle<EpisodeImportedEvent>
|
2013-02-23 22:29:22 +01:00
|
|
|
|
{
|
|
|
|
|
private readonly IHistoryRepository _historyRepository;
|
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
|
|
|
|
|
public HistoryService(IHistoryRepository historyRepository, Logger logger)
|
|
|
|
|
{
|
|
|
|
|
_historyRepository = historyRepository;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<History> All()
|
|
|
|
|
{
|
|
|
|
|
return _historyRepository.All().ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-11 00:33:04 +02:00
|
|
|
|
public PagingSpec<History> Paged(PagingSpec<History> pagingSpec)
|
|
|
|
|
{
|
2013-06-05 02:49:53 +02:00
|
|
|
|
return _historyRepository.GetPaged(pagingSpec);
|
2013-05-11 00:33:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-23 22:29:22 +01:00
|
|
|
|
public void Purge()
|
|
|
|
|
{
|
|
|
|
|
_historyRepository.Purge();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void Trim()
|
|
|
|
|
{
|
|
|
|
|
_historyRepository.Trim();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-25 02:38:11 +01:00
|
|
|
|
public virtual QualityModel GetBestQualityInHistory(int episodeId)
|
2013-02-23 22:29:22 +01:00
|
|
|
|
{
|
2013-05-14 17:27:33 +02:00
|
|
|
|
return _historyRepository.GetEpisodeHistory(episodeId).OrderByDescending(q => q).FirstOrDefault();
|
2013-02-23 22:29:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-24 20:18:48 +01:00
|
|
|
|
public void Handle(EpisodeGrabbedEvent message)
|
|
|
|
|
{
|
2013-04-15 03:41:39 +02:00
|
|
|
|
foreach (var episode in message.Episode.Episodes)
|
2013-02-24 20:18:48 +01:00
|
|
|
|
{
|
|
|
|
|
var history = new History
|
|
|
|
|
{
|
2013-06-11 03:55:05 +02:00
|
|
|
|
EventType = HistoryEventType.Grabbed,
|
2013-06-09 22:50:57 +02:00
|
|
|
|
Date = DateTime.UtcNow,
|
2013-04-28 21:46:13 +02:00
|
|
|
|
Quality = message.Episode.ParsedEpisodeInfo.Quality,
|
2013-06-09 08:20:38 +02:00
|
|
|
|
SourceTitle = message.Episode.Report.Title,
|
2013-05-14 07:47:53 +02:00
|
|
|
|
SeriesId = episode.SeriesId,
|
2013-03-25 02:38:11 +01:00
|
|
|
|
EpisodeId = episode.Id,
|
2013-02-24 20:18:48 +01:00
|
|
|
|
};
|
|
|
|
|
|
2013-06-09 08:20:38 +02:00
|
|
|
|
history.Data.Add("Indexer", message.Episode.Report.Indexer);
|
|
|
|
|
history.Data.Add("NzbInfoUrl", message.Episode.Report.NzbInfoUrl);
|
|
|
|
|
history.Data.Add("ReleaseGroup", message.Episode.Report.ReleaseGroup);
|
|
|
|
|
history.Data.Add("Age", message.Episode.Report.Age.ToString());
|
|
|
|
|
|
|
|
|
|
_historyRepository.Insert(history);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Handle(EpisodeImportedEvent message)
|
|
|
|
|
{
|
|
|
|
|
foreach (var episode in message.EpisodeFile.Episodes.Value)
|
|
|
|
|
{
|
|
|
|
|
var history = new History
|
|
|
|
|
{
|
2013-06-11 03:55:05 +02:00
|
|
|
|
EventType = HistoryEventType.DownloadFolderImported,
|
2013-06-09 22:50:57 +02:00
|
|
|
|
Date = DateTime.UtcNow,
|
2013-06-09 08:20:38 +02:00
|
|
|
|
Quality = message.EpisodeFile.Quality,
|
|
|
|
|
SourceTitle = message.EpisodeFile.Path,
|
|
|
|
|
SeriesId = message.EpisodeFile.SeriesId,
|
|
|
|
|
EpisodeId = episode.Id,
|
|
|
|
|
};
|
|
|
|
|
|
2013-02-24 20:18:48 +01:00
|
|
|
|
_historyRepository.Insert(history);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-23 22:29:22 +01:00
|
|
|
|
}
|
|
|
|
|
}
|