2011-11-28 22:49:38 -08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-04-25 13:21:52 -07:00
|
|
|
|
using System.ServiceModel.Syndication;
|
2011-09-13 19:25:33 -07:00
|
|
|
|
using System.Text.RegularExpressions;
|
2012-02-10 16:48:20 -08:00
|
|
|
|
using NzbDrone.Common;
|
2011-09-13 19:25:33 -07:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-04-18 23:33:09 -07:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Indexer
|
|
|
|
|
{
|
2011-05-19 21:21:18 -07:00
|
|
|
|
public class NzbsRUs : IndexerBase
|
2011-04-18 23:33:09 -07:00
|
|
|
|
{
|
2011-05-25 21:25:59 -07:00
|
|
|
|
public NzbsRUs(HttpProvider httpProvider, ConfigProvider configProvider) : base(httpProvider, configProvider)
|
2011-04-18 23:33:09 -07:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-20 18:26:13 -07:00
|
|
|
|
protected override string[] Urls
|
2011-04-18 23:33:09 -07:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
string.Format(
|
2012-12-02 19:31:47 -08:00
|
|
|
|
"https://www.nzbsrus.com/rssfeed.php?cat=91,75&i={0}&h={1}",
|
2011-04-18 23:33:09 -07:00
|
|
|
|
_configProvider.NzbsrusUId,
|
|
|
|
|
_configProvider.NzbsrusHash)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-05-25 21:25:59 -07:00
|
|
|
|
|
2012-01-31 17:37:36 -08:00
|
|
|
|
public override bool IsConfigured
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !string.IsNullOrWhiteSpace(_configProvider.NzbsrusUId) &&
|
|
|
|
|
!string.IsNullOrWhiteSpace(_configProvider.NzbsrusHash);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-18 23:33:09 -07:00
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "NzbsRUs"; }
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-25 21:25:59 -07:00
|
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
2011-04-18 23:33:09 -07:00
|
|
|
|
{
|
2011-04-27 08:09:38 -07:00
|
|
|
|
return item.Links[0].Uri.ToString();
|
2011-04-18 23:33:09 -07:00
|
|
|
|
}
|
2011-04-27 17:11:08 -07:00
|
|
|
|
|
2012-05-02 12:02:39 -07:00
|
|
|
|
protected override string NzbInfoUrl(SyndicationItem item)
|
|
|
|
|
{
|
|
|
|
|
return item.Links[0].Uri.ToString();
|
|
|
|
|
}
|
2011-11-28 22:49:38 -08: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-25 21:25:59 -07:00
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
2011-09-13 19:25:33 -07: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 13:18:00 -08:00
|
|
|
|
|
2011-09-13 19:25:33 -07:00
|
|
|
|
return currentResult;
|
|
|
|
|
}
|
2011-04-18 23:33:09 -07:00
|
|
|
|
}
|
|
|
|
|
}
|