2013-01-16 01:36:02 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-01-16 01:36:02 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
|
2013-02-19 02:19:38 +00:00
|
|
|
|
namespace NzbDrone.Core.DecisionEngine
|
2013-01-16 01:36:02 +00:00
|
|
|
|
{
|
|
|
|
|
public class LanguageSpecification
|
|
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
|
private readonly IConfigService _configService;
|
2013-01-16 01:36:02 +00:00
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-02-24 06:48:52 +00:00
|
|
|
|
public LanguageSpecification(IConfigService configService)
|
2013-01-16 01:36:02 +00:00
|
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
|
_configService = configService;
|
2013-01-16 01:36:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public LanguageSpecification()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Checking if report meets language requirements. {0}", subject.Language);
|
|
|
|
|
if (subject.Language != LanguageType.English)
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Report Language: {0} rejected because it is not english", subject.Language);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|