2011-05-26 06:25:59 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-04-25 22:21:52 +02:00
|
|
|
|
using System.ServiceModel.Syndication;
|
2011-09-14 04:25:33 +02:00
|
|
|
|
using System.Text.RegularExpressions;
|
2011-06-14 03:23:04 +02:00
|
|
|
|
using Ninject;
|
2011-09-14 04:25:33 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-04-19 02:12:06 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Indexer
|
|
|
|
|
{
|
2011-05-20 06:21:18 +02:00
|
|
|
|
public class NzbsOrg : IndexerBase
|
2011-04-19 02:12:06 +02:00
|
|
|
|
{
|
2011-11-29 07:49:38 +01:00
|
|
|
|
[Inject]
|
2011-05-27 08:03:57 +02:00
|
|
|
|
public NzbsOrg(HttpProvider httpProvider, ConfigProvider configProvider)
|
|
|
|
|
: base(httpProvider, configProvider)
|
2011-04-19 02:12:06 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-21 03:26:13 +02:00
|
|
|
|
protected override string[] Urls
|
2011-04-19 02:12:06 +02:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
2011-11-29 07:49:38 +01:00
|
|
|
|
string.Format("http://nzbs.org/rss.php?type=1&i={0}&h={1}&num=50&dl=1",
|
|
|
|
|
_configProvider.NzbsOrgUId, _configProvider.NzbsOrgHash)
|
2011-04-19 02:12:06 +02:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-29 07:49:38 +01:00
|
|
|
|
protected override IList<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
2011-04-19 02:12:06 +02:00
|
|
|
|
{
|
2011-11-29 07:49:38 +01:00
|
|
|
|
var searchUrls = new List<String>();
|
|
|
|
|
|
|
|
|
|
foreach (var url in Urls)
|
|
|
|
|
{
|
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+s{2:00}e{3:00}", url, seriesTitle, seasonNumber, episodeNumber));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return searchUrls;
|
2011-04-19 02:12:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-29 07:49:38 +01:00
|
|
|
|
protected override IList<string> GetDailyEpisodeSearchUrls(string seriesTitle, DateTime date)
|
|
|
|
|
{
|
|
|
|
|
var searchUrls = new List<String>();
|
2011-05-01 10:04:44 +02:00
|
|
|
|
|
2011-11-29 07:49:38 +01:00
|
|
|
|
foreach (var url in Urls)
|
|
|
|
|
{
|
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+{2:yyyy.MM.dd}", url, seriesTitle, date));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return searchUrls;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IList<string> GetSeasonSearchUrls(string seriesTitle, int seasonNumber)
|
2011-04-19 02:12:06 +02:00
|
|
|
|
{
|
2011-11-29 07:49:38 +01:00
|
|
|
|
var searchUrls = new List<String>();
|
|
|
|
|
|
|
|
|
|
foreach (var url in Urls)
|
|
|
|
|
{
|
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+Season", url, seriesTitle));
|
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+S{2:00}", url, seriesTitle, seasonNumber));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return searchUrls;
|
2011-04-19 02:12:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-29 07:49:38 +01:00
|
|
|
|
protected override IList<string> GetPartialSeasonSearchUrls(string seriesTitle, int seasonNumber, int episodeWildcard)
|
2011-05-26 06:25:59 +02:00
|
|
|
|
{
|
|
|
|
|
var searchUrls = new List<String>();
|
|
|
|
|
|
|
|
|
|
foreach (var url in Urls)
|
|
|
|
|
{
|
2011-11-29 07:49:38 +01:00
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+S{2:00}E{3}",
|
|
|
|
|
url, seriesTitle, seasonNumber, episodeWildcard));
|
2011-05-26 06:25:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return searchUrls;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-29 07:49:38 +01:00
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Nzbs.org"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
|
|
|
|
{
|
|
|
|
|
return item.Id;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-14 04:25:33 +02:00
|
|
|
|
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
|
|
|
|
|
{
|
|
|
|
|
if (currentResult != null)
|
|
|
|
|
{
|
|
|
|
|
var sizeString = Regex.Match(item.Summary.Text, @">\d+\.\d{1,2} \w{2}</a>", RegexOptions.IgnoreCase).Value;
|
|
|
|
|
|
|
|
|
|
currentResult.Size = Parser.GetReportSize(sizeString);
|
|
|
|
|
}
|
|
|
|
|
return currentResult;
|
|
|
|
|
}
|
2011-05-27 08:03:57 +02:00
|
|
|
|
}
|
2011-04-19 02:12:06 +02:00
|
|
|
|
}
|