1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 16:02:29 +01:00
Sonarr/NzbDrone.Core/DecisionEngine/LanguageSpecification.cs

37 lines
1011 B
C#
Raw Normal View History

using System.Linq;
using NLog;
2013-02-24 07:48:52 +01:00
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Model;
using NzbDrone.Core.Providers.Core;
2013-02-19 03:19:38 +01:00
namespace NzbDrone.Core.DecisionEngine
{
public class LanguageSpecification
{
2013-02-24 07:48:52 +01:00
private readonly IConfigService _configService;
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
2013-02-24 07:48:52 +01:00
public LanguageSpecification(IConfigService configService)
{
2013-02-24 07:48:52 +01:00
_configService = configService;
}
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;
}
}
}