2013-04-07 09:30:37 +02:00
|
|
|
using System;
|
|
|
|
using System.Text.RegularExpressions;
|
2013-06-07 02:17:57 +02:00
|
|
|
using NzbDrone.Common.EnsureThat;
|
2013-04-07 09:30:37 +02:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.IndexerSearch.Definitions
|
|
|
|
{
|
2013-06-06 16:42:23 +02:00
|
|
|
public abstract class SearchCriteriaBase
|
2013-04-07 09:30:37 +02:00
|
|
|
{
|
|
|
|
private static readonly Regex NoneWord = new Regex(@"[\W]", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
private static readonly Regex BeginningThe = new Regex(@"^the\s", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
|
|
|
public int SeriesId { get; set; }
|
|
|
|
public string SceneTitle { get; set; }
|
|
|
|
|
|
|
|
public string QueryTitle
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return GetQueryTitle(SceneTitle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static string GetQueryTitle(string title)
|
|
|
|
{
|
2013-06-07 02:17:57 +02:00
|
|
|
Ensure.That(() => title).IsNotNullOrWhiteSpace();
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
var cleanTitle = BeginningThe.Replace(title, String.Empty);
|
|
|
|
|
|
|
|
cleanTitle = cleanTitle
|
|
|
|
.Replace("&", "and")
|
|
|
|
.Replace("`", "")
|
|
|
|
.Replace("'", "");
|
|
|
|
|
|
|
|
cleanTitle = NoneWord.Replace(cleanTitle, "+");
|
|
|
|
|
|
|
|
//remove any repeating +s
|
|
|
|
cleanTitle = Regex.Replace(cleanTitle, @"\+{2,}", "+");
|
|
|
|
return cleanTitle.Trim('+', ' ');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|