You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Parser
|
|
|
|
|
{
|
|
|
|
|
public static class SceneChecker
|
|
|
|
|
{
|
|
|
|
|
//This method should prefer false negatives over false positives.
|
|
|
|
|
//It's better not to use a title that might be scene than to use one that isn't scene
|
|
|
|
|
public static bool IsSceneTitle(string title)
|
|
|
|
|
{
|
|
|
|
|
if (!title.Contains(".")) return false;
|
|
|
|
|
if (title.Contains(" ")) return false;
|
|
|
|
|
|
|
|
|
|
var parsedTitle = Parser.ParseTitle(title);
|
|
|
|
|
|
|
|
|
|
if (parsedTitle == null ||
|
|
|
|
|
parsedTitle.ReleaseGroup == null ||
|
|
|
|
|
parsedTitle.Quality.Quality == Qualities.Quality.Unknown ||
|
|
|
|
|
String.IsNullOrWhiteSpace(parsedTitle.SeriesTitle))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|