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

51 lines
1.9 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2013-04-07 07:30:37 +00:00
using System.Text.RegularExpressions;
using NzbDrone.Common.EnsureThat;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Music;
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 SpecialCharacter = new Regex(@"[`'.]", RegexOptions.IgnoreCase | RegexOptions.Compiled);
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 virtual bool MonitoredEpisodesOnly { get; set; }
public virtual bool UserInvokedSearch { get; set; }
public virtual bool InteractiveSearch { get; set; }
2013-04-07 07:30:37 +00:00
public Artist Artist { get; set; }
public List<Album> Albums { get; set; }
public List<Track> Tracks { get; set; }
public string ArtistQuery => Artist.Name;
public string CleanArtistQuery => GetQueryTitle(ArtistQuery);
2013-04-07 07:30:37 +00:00
public static string GetQueryTitle(string title)
2013-04-07 07:30:37 +00:00
{
Ensure.That(title, () => title).IsNotNullOrWhiteSpace();
2020-02-09 19:15:43 +00:00
// Most VA albums are listed as VA, not Various Artists
if (title == "Various Artists")
{
title = "VA";
}
var cleanTitle = BeginningThe.Replace(title, string.Empty);
2013-04-07 07:30:37 +00:00
cleanTitle = cleanTitle.Replace(" & ", " ");
cleanTitle = SpecialCharacter.Replace(cleanTitle, "");
cleanTitle = NonWord.Replace(cleanTitle, "+");
2013-04-07 07:30:37 +00:00
// remove any repeating +s
2013-04-07 07:30:37 +00:00
cleanTitle = Regex.Replace(cleanTitle, @"\+{2,}", "+");
cleanTitle = cleanTitle.RemoveAccent();
cleanTitle = cleanTitle.Trim('+', ' ');
return cleanTitle.Length == 0 ? title : cleanTitle;
2013-04-07 07:30:37 +00:00
}
}
}