Radarr/NzbDrone.Core/IndexerSearch/Definitions/SearchCriteriaBase.cs

42 lines
1.3 KiB
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
using System;
using System.Text.RegularExpressions;
using NzbDrone.Common.EnsureThat;
2013-04-07 07:30:37 +00:00
namespace NzbDrone.Core.IndexerSearch.Definitions
{
public abstract class SearchCriteriaBase
2013-04-07 07:30:37 +00: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; }
2013-08-06 08:15:24 +00:00
public int SeriesTvRageId { get; set; }
2013-04-07 07:30:37 +00:00
public string SceneTitle { get; set; }
public string QueryTitle
{
get
{
return GetQueryTitle(SceneTitle);
}
}
private static string GetQueryTitle(string title)
{
Ensure.That(() => title).IsNotNullOrWhiteSpace();
2013-04-07 07:30:37 +00: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('+', ' ');
}
}
}