2011-11-29 06:49:38 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-04-25 20:21:52 +00:00
|
|
|
|
using System.ServiceModel.Syndication;
|
2011-09-14 02:25:33 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2012-02-11 00:48:20 +00:00
|
|
|
|
using NzbDrone.Common;
|
2011-09-14 02:25:33 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-04-19 06:33:09 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Indexer
|
|
|
|
|
{
|
2011-05-20 04:21:18 +00:00
|
|
|
|
public class NzbsRUs : IndexerBase
|
2011-04-19 06:33:09 +00:00
|
|
|
|
{
|
2011-05-26 04:25:59 +00:00
|
|
|
|
public NzbsRUs(HttpProvider httpProvider, ConfigProvider configProvider) : base(httpProvider, configProvider)
|
2011-04-19 06:33:09 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-21 01:26:13 +00:00
|
|
|
|
protected override string[] Urls
|
2011-04-19 06:33:09 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
string.Format(
|
2012-12-03 03:31:47 +00:00
|
|
|
|
"https://www.nzbsrus.com/rssfeed.php?cat=91,75&i={0}&h={1}",
|
2011-04-19 06:33:09 +00:00
|
|
|
|
_configProvider.NzbsrusUId,
|
|
|
|
|
_configProvider.NzbsrusHash)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-05-26 04:25:59 +00:00
|
|
|
|
|
2012-02-01 01:37:36 +00:00
|
|
|
|
public override bool IsConfigured
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !string.IsNullOrWhiteSpace(_configProvider.NzbsrusUId) &&
|
|
|
|
|
!string.IsNullOrWhiteSpace(_configProvider.NzbsrusHash);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-19 06:33:09 +00:00
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "NzbsRUs"; }
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-26 04:25:59 +00:00
|
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
2011-04-19 06:33:09 +00:00
|
|
|
|
{
|
2011-04-27 15:09:38 +00:00
|
|
|
|
return item.Links[0].Uri.ToString();
|
2011-04-19 06:33:09 +00:00
|
|
|
|
}
|
2011-04-28 00:11:08 +00:00
|
|
|
|
|
2012-05-02 19:02:39 +00:00
|
|
|
|
protected override string NzbInfoUrl(SyndicationItem item)
|
|
|
|
|
{
|
|
|
|
|
return item.Links[0].Uri.ToString();
|
|
|
|
|
}
|
2011-11-29 06:49:38 +00:00
|
|
|
|
|
|
|
|
|
protected override IList<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IList<string> GetSeasonSearchUrls(string seriesTitle, int seasonNumber)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IList<string> GetDailyEpisodeSearchUrls(string seriesTitle, DateTime date)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IList<string> GetPartialSeasonSearchUrls(string seriesTitle, int seasonNumber, int episodeWildcard)
|
2011-05-26 04:25:59 +00:00
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
2011-09-14 02:25:33 +00:00
|
|
|
|
|
|
|
|
|
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
|
|
|
|
|
{
|
|
|
|
|
if (currentResult != null)
|
|
|
|
|
{
|
|
|
|
|
var sizeString = Regex.Match(item.Summary.Text, @"\d+\.\d{1,2} \w{3}", RegexOptions.IgnoreCase).Value;
|
|
|
|
|
currentResult.Size = Parser.GetReportSize(sizeString);
|
|
|
|
|
}
|
2012-02-18 21:18:00 +00:00
|
|
|
|
|
2011-09-14 02:25:33 +00:00
|
|
|
|
return currentResult;
|
|
|
|
|
}
|
2011-04-19 06:33:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|