mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 02:09:59 +00:00
removed nzbindex
This commit is contained in:
parent
525963f2a6
commit
2f4ccff0a2
4 changed files with 0 additions and 125 deletions
|
@ -7,7 +7,6 @@
|
||||||
using NzbDrone.Core.Indexers;
|
using NzbDrone.Core.Indexers;
|
||||||
using NzbDrone.Core.Indexers.Newznab;
|
using NzbDrone.Core.Indexers.Newznab;
|
||||||
using NzbDrone.Core.Indexers.NzbClub;
|
using NzbDrone.Core.Indexers.NzbClub;
|
||||||
using NzbDrone.Core.Indexers.NzbIndex;
|
|
||||||
using NzbDrone.Core.Indexers.NzbsRUs;
|
using NzbDrone.Core.Indexers.NzbsRUs;
|
||||||
using NzbDrone.Core.Indexers.Omgwtfnzbs;
|
using NzbDrone.Core.Indexers.Omgwtfnzbs;
|
||||||
using NzbDrone.Core.Indexers.Wombles;
|
using NzbDrone.Core.Indexers.Wombles;
|
||||||
|
@ -28,7 +27,6 @@ public void Setup()
|
||||||
_indexers.Add(new Newznab());
|
_indexers.Add(new Newznab());
|
||||||
_indexers.Add(new Nzbsrus());
|
_indexers.Add(new Nzbsrus());
|
||||||
_indexers.Add(new NzbClub());
|
_indexers.Add(new NzbClub());
|
||||||
_indexers.Add(new NzbIndex());
|
|
||||||
_indexers.Add(new Omgwtfnzbs());
|
_indexers.Add(new Omgwtfnzbs());
|
||||||
_indexers.Add(new Wombles());
|
_indexers.Add(new Wombles());
|
||||||
|
|
||||||
|
|
|
@ -1,77 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Indexers.NzbIndex
|
|
||||||
{
|
|
||||||
public class NzbIndex : IndexerBase
|
|
||||||
{
|
|
||||||
public override IEnumerable<string> RecentFeed
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return new[]
|
|
||||||
{
|
|
||||||
String.Format("http://www.nzbindex.nl/rss/alt.binaries.teevee/?sort=agedesc&minsize=100&complete=1&max=50&more=1&q=%23a.b.teevee"),
|
|
||||||
String.Format("http://www.nzbindex.nl/rss/alt.binaries.hdtv/?sort=agedesc&minsize=100&complete=1&max=50&more=1&q=")
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public override string Name
|
|
||||||
{
|
|
||||||
get { return "NzbIndex"; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public override IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
|
||||||
{
|
|
||||||
var searchUrls = new List<string>();
|
|
||||||
|
|
||||||
foreach (var url in RecentFeed)
|
|
||||||
{
|
|
||||||
searchUrls.Add(String.Format("{0}+{1}+s{2:00}e{3:00}", url, seriesTitle, seasonNumber, episodeNumber));
|
|
||||||
}
|
|
||||||
|
|
||||||
return searchUrls;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int seasonNumber)
|
|
||||||
{
|
|
||||||
var searchUrls = new List<string>();
|
|
||||||
|
|
||||||
foreach (var url in RecentFeed)
|
|
||||||
{
|
|
||||||
searchUrls.Add(String.Format("{0}+{1}+s{2:00}", url, seriesTitle, seasonNumber));
|
|
||||||
}
|
|
||||||
|
|
||||||
return searchUrls;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, DateTime date)
|
|
||||||
{
|
|
||||||
var searchUrls = new List<String>();
|
|
||||||
|
|
||||||
foreach (var url in RecentFeed)
|
|
||||||
{
|
|
||||||
searchUrls.Add(String.Format("{0}+{1}+{2:yyyy MM dd}", url, seriesTitle, date));
|
|
||||||
}
|
|
||||||
|
|
||||||
return searchUrls;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override IEnumerable<string> GetPartialSeasonSearchUrls(string seriesTitle, int seasonNumber, int episodeWildcard)
|
|
||||||
{
|
|
||||||
var searchUrls = new List<String>();
|
|
||||||
|
|
||||||
foreach (var url in RecentFeed)
|
|
||||||
{
|
|
||||||
searchUrls.Add(String.Format("{0}+{1}+S{2:00}E{3}", url, seriesTitle, seasonNumber, episodeWildcard));
|
|
||||||
}
|
|
||||||
|
|
||||||
return searchUrls;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,44 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.ServiceModel.Syndication;
|
|
||||||
using System.Text.RegularExpressions;
|
|
||||||
using NzbDrone.Core.Model;
|
|
||||||
using NzbDrone.Core.Parser;
|
|
||||||
using NzbDrone.Core.Parser.Model;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Indexers.NzbIndex
|
|
||||||
{
|
|
||||||
public class NzbIndexParser : BasicRssParser
|
|
||||||
{
|
|
||||||
|
|
||||||
protected override string GetNzbUrl(SyndicationItem item)
|
|
||||||
{
|
|
||||||
return item.Links[1].Uri.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override string GetNzbInfoUrl(SyndicationItem item)
|
|
||||||
{
|
|
||||||
return item.Links[0].Uri.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override ReportInfo PostProcessor(SyndicationItem item, ReportInfo currentResult)
|
|
||||||
{
|
|
||||||
if (currentResult != null)
|
|
||||||
{
|
|
||||||
var sizeString = Regex.Match(item.Summary.Text, @"<b>\d+\.\d{1,2}\s\w{2}</b><br\s/>", RegexOptions.IgnoreCase | RegexOptions.Compiled).Value;
|
|
||||||
currentResult.Size = GetReportSize(sizeString);
|
|
||||||
}
|
|
||||||
|
|
||||||
return currentResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override string GetTitle(SyndicationItem syndicationItem)
|
|
||||||
{
|
|
||||||
var title = ParseHeader(syndicationItem.Title.Text);
|
|
||||||
|
|
||||||
if (String.IsNullOrWhiteSpace(title))
|
|
||||||
return syndicationItem.Title.Text;
|
|
||||||
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -275,8 +275,6 @@
|
||||||
<Compile Include="Indexers\Newznab\NewznabParser.cs" />
|
<Compile Include="Indexers\Newznab\NewznabParser.cs" />
|
||||||
<Compile Include="Indexers\NzbClub\NzbClub.cs" />
|
<Compile Include="Indexers\NzbClub\NzbClub.cs" />
|
||||||
<Compile Include="Indexers\NzbClub\NzbClubParser.cs" />
|
<Compile Include="Indexers\NzbClub\NzbClubParser.cs" />
|
||||||
<Compile Include="Indexers\NzbIndex\NzbIndex.cs" />
|
|
||||||
<Compile Include="Indexers\NzbIndex\NzbIndexParser.cs" />
|
|
||||||
<Compile Include="Indexers\NzbsRUs\NzbsRUs.cs" />
|
<Compile Include="Indexers\NzbsRUs\NzbsRUs.cs" />
|
||||||
<Compile Include="Indexers\NzbsRUs\NzbsrusParser.cs" />
|
<Compile Include="Indexers\NzbsRUs\NzbsrusParser.cs" />
|
||||||
<Compile Include="Indexers\Nzbx\Nzbx.cs" />
|
<Compile Include="Indexers\Nzbx\Nzbx.cs" />
|
||||||
|
|
Loading…
Reference in a new issue