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;
|
2011-06-14 01:23:04 +00:00
|
|
|
|
using Ninject;
|
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-06-14 01:23:04 +00:00
|
|
|
|
[Inject]
|
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(
|
|
|
|
|
"http://www.nzbsrus.com/rssfeed.php?cat=91,75&i={0}&h={1}",
|
|
|
|
|
_configProvider.NzbsrusUId,
|
|
|
|
|
_configProvider.NzbsrusHash)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-05-26 04:25:59 +00:00
|
|
|
|
|
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
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
return currentResult;
|
|
|
|
|
}
|
2011-04-19 06:33:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|