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

44 lines
1.3 KiB
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
using System;
using System.Collections.Generic;
2013-04-07 07:30:37 +00:00
using System.Text.RegularExpressions;
using NzbDrone.Common.EnsureThat;
using NzbDrone.Core.Tv;
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 NonWord = new Regex(@"[\W]", RegexOptions.IgnoreCase | RegexOptions.Compiled);
2013-04-07 07:30:37 +00:00
private static readonly Regex BeginningThe = new Regex(@"^the\s", RegexOptions.IgnoreCase | RegexOptions.Compiled);
public Series Series { get; set; }
2013-04-07 07:30:37 +00:00
public string SceneTitle { get; set; }
public List<Episode> Episodes { get; set; }
2013-04-07 07:30:37 +00:00
public string QueryTitle
{
get
{
return GetQueryTitle(SceneTitle);
}
}
public static string GetQueryTitle(string title)
2013-04-07 07:30:37 +00:00
{
2013-11-30 23:53:07 +00:00
Ensure.That(title,() => title).IsNotNullOrWhiteSpace();
2013-04-07 07:30:37 +00:00
var cleanTitle = BeginningThe.Replace(title, String.Empty);
cleanTitle = cleanTitle
.Replace("&", "and")
.Replace("`", "")
.Replace("'", "");
cleanTitle = NonWord.Replace(cleanTitle, "+");
2013-04-07 07:30:37 +00:00
//remove any repeating +s
cleanTitle = Regex.Replace(cleanTitle, @"\+{2,}", "+");
return cleanTitle.Trim('+', ' ');
}
}
}