2013-02-24 22:18:48 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2013-02-24 00:29:22 +03:00
|
|
|
using System.Linq;
|
2013-10-06 21:06:39 +03:00
|
|
|
using System.Linq.Expressions;
|
2013-02-24 00:29:22 +03:00
|
|
|
using NLog;
|
2013-05-11 01:33:04 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-24 22:18:48 +03:00
|
|
|
using NzbDrone.Core.Download;
|
2013-06-09 09:20:38 +03:00
|
|
|
using NzbDrone.Core.MediaFiles.Events;
|
2013-09-14 09:36:07 +03:00
|
|
|
using NzbDrone.Core.Messaging.Events;
|
2013-02-24 00:29:22 +03:00
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.History
|
|
|
|
{
|
2013-02-24 22:18:48 +03:00
|
|
|
public interface IHistoryService
|
|
|
|
{
|
|
|
|
List<History> All();
|
|
|
|
void Purge();
|
|
|
|
void Trim();
|
2013-03-25 04:38:11 +03:00
|
|
|
QualityModel GetBestQualityInHistory(int episodeId);
|
2013-05-11 01:33:04 +03:00
|
|
|
PagingSpec<History> Paged(PagingSpec<History> pagingSpec);
|
2013-10-22 10:31:36 +03:00
|
|
|
List<History> BetweenDates(DateTime startDate, DateTime endDate, HistoryEventType eventType);
|
|
|
|
List<History> Failed();
|
2013-10-24 08:13:04 +03:00
|
|
|
List<History> Grabbed();
|
|
|
|
History MostRecentForEpisode(int episodeId);
|
2013-02-24 22:18:48 +03:00
|
|
|
}
|
2013-02-24 00:29:22 +03:00
|
|
|
|
2013-10-22 10:31:36 +03:00
|
|
|
public class HistoryService : IHistoryService, IHandle<EpisodeGrabbedEvent>, IHandle<EpisodeImportedEvent>, IHandle<DownloadFailedEvent>
|
2013-02-24 00:29:22 +03: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 01:33:04 +03:00
|
|
|
public PagingSpec<History> Paged(PagingSpec<History> pagingSpec)
|
|
|
|
{
|
2013-06-05 03:49:53 +03:00
|
|
|
return _historyRepository.GetPaged(pagingSpec);
|
2013-05-11 01:33:04 +03:00
|
|
|
}
|
|
|
|
|
2013-10-22 10:31:36 +03:00
|
|
|
public List<History> BetweenDates(DateTime startDate, DateTime endDate, HistoryEventType eventType)
|
|
|
|
{
|
|
|
|
return _historyRepository.BetweenDates(startDate, endDate, eventType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<History> Failed()
|
|
|
|
{
|
|
|
|
return _historyRepository.Failed();
|
|
|
|
}
|
|
|
|
|
2013-10-24 08:13:04 +03:00
|
|
|
public List<History> Grabbed()
|
|
|
|
{
|
|
|
|
return _historyRepository.Grabbed();
|
|
|
|
}
|
|
|
|
|
|
|
|
public History MostRecentForEpisode(int episodeId)
|
|
|
|
{
|
|
|
|
return _historyRepository.MostRecentForEpisode(episodeId);
|
|
|
|
}
|
|
|
|
|
2013-02-24 00:29:22 +03:00
|
|
|
public void Purge()
|
|
|
|
{
|
|
|
|
_historyRepository.Purge();
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual void Trim()
|
|
|
|
{
|
|
|
|
_historyRepository.Trim();
|
|
|
|
}
|
|
|
|
|
2013-10-22 10:31:36 +03:00
|
|
|
public QualityModel GetBestQualityInHistory(int episodeId)
|
2013-02-24 00:29:22 +03:00
|
|
|
{
|
2013-10-06 21:06:39 +03:00
|
|
|
return _historyRepository.GetBestQualityInHistory(episodeId).OrderByDescending(q => q).FirstOrDefault();
|
2013-02-24 00:29:22 +03:00
|
|
|
}
|
|
|
|
|
2013-02-24 22:18:48 +03:00
|
|
|
public void Handle(EpisodeGrabbedEvent message)
|
|
|
|
{
|
2013-04-15 04:41:39 +03:00
|
|
|
foreach (var episode in message.Episode.Episodes)
|
2013-02-24 22:18:48 +03:00
|
|
|
{
|
|
|
|
var history = new History
|
|
|
|
{
|
2013-08-30 09:38:55 +03:00
|
|
|
EventType = HistoryEventType.Grabbed,
|
2013-06-09 23:50:57 +03:00
|
|
|
Date = DateTime.UtcNow,
|
2013-04-28 22:46:13 +03:00
|
|
|
Quality = message.Episode.ParsedEpisodeInfo.Quality,
|
2013-09-14 02:17:58 +03:00
|
|
|
SourceTitle = message.Episode.Release.Title,
|
2013-05-14 08:47:53 +03:00
|
|
|
SeriesId = episode.SeriesId,
|
2013-03-25 04:38:11 +03:00
|
|
|
EpisodeId = episode.Id,
|
2013-02-24 22:18:48 +03:00
|
|
|
};
|
|
|
|
|
2013-09-14 02:17:58 +03:00
|
|
|
history.Data.Add("Indexer", message.Episode.Release.Indexer);
|
|
|
|
history.Data.Add("NzbInfoUrl", message.Episode.Release.InfoUrl);
|
|
|
|
history.Data.Add("ReleaseGroup", message.Episode.Release.ReleaseGroup);
|
|
|
|
history.Data.Add("Age", message.Episode.Release.Age.ToString());
|
2013-06-09 09:20:38 +03:00
|
|
|
|
2013-10-21 04:30:46 +03:00
|
|
|
if (!String.IsNullOrWhiteSpace(message.DownloadClientId))
|
|
|
|
{
|
|
|
|
history.Data.Add("DownloadClient", message.DownloadClient);
|
|
|
|
history.Data.Add("DownloadClientId", message.DownloadClientId);
|
|
|
|
}
|
|
|
|
|
2013-06-09 09:20:38 +03:00
|
|
|
_historyRepository.Insert(history);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Handle(EpisodeImportedEvent message)
|
|
|
|
{
|
2013-10-18 04:28:30 +03:00
|
|
|
foreach (var episode in message.EpisodeInfo.Episodes)
|
2013-06-09 09:20:38 +03:00
|
|
|
{
|
|
|
|
var history = new History
|
|
|
|
{
|
2013-06-11 04:55:05 +03:00
|
|
|
EventType = HistoryEventType.DownloadFolderImported,
|
2013-06-09 23:50:57 +03:00
|
|
|
Date = DateTime.UtcNow,
|
2013-10-18 04:28:30 +03:00
|
|
|
Quality = message.EpisodeInfo.Quality,
|
2013-08-30 09:38:55 +03:00
|
|
|
SourceTitle = message.ImportedEpisode.SceneName,
|
|
|
|
SeriesId = message.ImportedEpisode.SeriesId,
|
2013-08-26 08:31:58 +03:00
|
|
|
EpisodeId = episode.Id
|
2013-06-09 09:20:38 +03:00
|
|
|
};
|
|
|
|
|
2013-08-30 09:39:41 +03:00
|
|
|
//Won't have a value since we publish this event before saving to DB.
|
|
|
|
//history.Data.Add("FileId", message.ImportedEpisode.Id.ToString());
|
2013-10-18 04:28:30 +03:00
|
|
|
history.Data.Add("DroppedPath", message.EpisodeInfo.Path);
|
2013-08-30 09:38:55 +03:00
|
|
|
history.Data.Add("ImportedPath", message.ImportedEpisode.Path);
|
2013-08-26 08:31:58 +03:00
|
|
|
|
2013-02-24 22:18:48 +03:00
|
|
|
_historyRepository.Insert(history);
|
|
|
|
}
|
|
|
|
}
|
2013-10-22 10:31:36 +03:00
|
|
|
|
|
|
|
public void Handle(DownloadFailedEvent message)
|
|
|
|
{
|
2013-10-24 08:13:04 +03:00
|
|
|
foreach (var episodeId in message.EpisodeIds)
|
2013-10-22 10:31:36 +03:00
|
|
|
{
|
2013-10-24 08:13:04 +03:00
|
|
|
var history = new History
|
|
|
|
{
|
|
|
|
EventType = HistoryEventType.DownloadFailed,
|
|
|
|
Date = DateTime.UtcNow,
|
|
|
|
Quality = message.Quality,
|
|
|
|
SourceTitle = message.SourceTitle,
|
|
|
|
SeriesId = message.SeriesId,
|
|
|
|
EpisodeId = episodeId,
|
|
|
|
};
|
|
|
|
|
|
|
|
history.Data.Add("DownloadClient", message.DownloadClient);
|
|
|
|
history.Data.Add("DownloadClientId", message.DownloadClientId);
|
|
|
|
|
|
|
|
_historyRepository.Insert(history);
|
|
|
|
}
|
2013-10-22 10:31:36 +03:00
|
|
|
}
|
2013-02-24 00:29:22 +03:00
|
|
|
}
|
|
|
|
}
|