2013-03-07 02:51:47 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2013-04-15 03:41:39 +02:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
2013-03-07 02:51:47 +01:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.DecisionEngine
|
|
|
|
{
|
|
|
|
public class DownloadDecision
|
|
|
|
{
|
2013-04-28 21:46:13 +02:00
|
|
|
public RemoteEpisode RemoteEpisode { get; private set; }
|
2013-03-07 02:51:47 +01:00
|
|
|
public IEnumerable<string> Rejections { get; private set; }
|
2013-04-07 09:30:37 +02:00
|
|
|
|
2013-03-07 02:51:47 +01:00
|
|
|
public bool Approved
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return !Rejections.Any();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
public DownloadDecision(RemoteEpisode episode, params string[] rejections)
|
2013-03-07 02:51:47 +01:00
|
|
|
{
|
2013-04-28 21:46:13 +02:00
|
|
|
RemoteEpisode = episode;
|
2013-03-07 02:51:47 +01:00
|
|
|
Rejections = rejections.ToList();
|
|
|
|
}
|
2013-08-22 06:42:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
if (Approved)
|
|
|
|
{
|
|
|
|
return "[OK] " + RemoteEpisode;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "[Rejected " + Rejections.Count() + "]" + RemoteEpisode;
|
|
|
|
}
|
2013-03-07 02:51:47 +01:00
|
|
|
}
|
|
|
|
}
|