mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
9fba2458d8
* Remove TV search commands Remove TV search commands * Cleanup Newznab, Fix variable name in IntegrationTests
68 lines
2.1 KiB
C#
68 lines
2.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
|
|
namespace NzbDrone.Core.Indexers.Fanzub
|
|
{
|
|
public class FanzubRequestGenerator : IIndexerRequestGenerator
|
|
{
|
|
private static readonly Regex RemoveCharactersRegex = new Regex(@"[!?`]", RegexOptions.Compiled);
|
|
|
|
public FanzubSettings Settings { get; set; }
|
|
public int PageSize { get; set; }
|
|
|
|
public FanzubRequestGenerator()
|
|
{
|
|
PageSize = 100;
|
|
}
|
|
|
|
public virtual IndexerPageableRequestChain GetRecentRequests()
|
|
{
|
|
var pageableRequests = new IndexerPageableRequestChain();
|
|
|
|
pageableRequests.Add(GetPagedRequests(null));
|
|
|
|
return pageableRequests;
|
|
}
|
|
|
|
public virtual IndexerPageableRequestChain GetSearchRequests(AlbumSearchCriteria searchCriteria)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public virtual IndexerPageableRequestChain GetSearchRequests(ArtistSearchCriteria searchCriteria)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
private IEnumerable<IndexerRequest> GetPagedRequests(string query)
|
|
{
|
|
var url = new StringBuilder();
|
|
url.AppendFormat("{0}?cat=anime&max={1}", Settings.BaseUrl, PageSize);
|
|
|
|
if (query.IsNotNullOrWhiteSpace())
|
|
{
|
|
url.AppendFormat("&q={0}", query);
|
|
}
|
|
|
|
yield return new IndexerRequest(url.ToString(), HttpAccept.Rss);
|
|
}
|
|
|
|
private IEnumerable<string> GetTitleSearchStrings(string title, int absoluteEpisodeNumber)
|
|
{
|
|
var formats = new[] { "{0}%20{1:00}", "{0}%20-%20{1:00}" };
|
|
|
|
return formats.Select(s => "\"" + string.Format(s, CleanTitle(title), absoluteEpisodeNumber) + "\"");
|
|
}
|
|
|
|
private string CleanTitle(string title)
|
|
{
|
|
return RemoveCharactersRegex.Replace(title, "");
|
|
}
|
|
}
|
|
}
|