2011-05-26 06:25:59 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-04-25 22:21:52 +02:00
|
|
|
|
using System.Net;
|
|
|
|
|
using System.ServiceModel.Syndication;
|
2011-07-10 21:52:29 +02:00
|
|
|
|
using System.Text.RegularExpressions;
|
2011-06-14 03:23:04 +02:00
|
|
|
|
using Ninject;
|
2011-04-21 01:29:12 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
using NzbDrone.Core.Model.Search;
|
2011-04-20 01:46:21 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Indexer
|
|
|
|
|
{
|
2011-05-20 06:21:18 +02:00
|
|
|
|
public class Newzbin : IndexerBase
|
2011-04-20 01:46:21 +02:00
|
|
|
|
{
|
2011-07-02 20:41:23 +02:00
|
|
|
|
[Inject]
|
2011-06-03 03:15:19 +02:00
|
|
|
|
public Newzbin(HttpProvider httpProvider, ConfigProvider configProvider)
|
|
|
|
|
: base(httpProvider, configProvider)
|
2011-04-20 01:46:21 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-02 20:41:23 +02:00
|
|
|
|
private const string UrlParams = "feed=rss&hauth=1&ps_rb_language=4096";
|
|
|
|
|
|
2011-04-21 03:26:13 +02:00
|
|
|
|
protected override string[] Urls
|
2011-04-20 01:46:21 +02:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
2011-07-02 20:41:23 +02:00
|
|
|
|
"http://www.newzbin.com/browse/category/p/tv?" + UrlParams
|
2011-04-20 01:46:21 +02:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-26 06:25:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-04-25 22:21:52 +02:00
|
|
|
|
protected override NetworkCredential Credentials
|
|
|
|
|
{
|
|
|
|
|
get { return new NetworkCredential(_configProvider.NewzbinUsername, _configProvider.NewzbinPassword); }
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-28 07:45:36 +02:00
|
|
|
|
protected override IList<string> GetSearchUrls(SearchModel searchModel)
|
2011-05-26 06:25:59 +02:00
|
|
|
|
{
|
2011-08-28 07:45:36 +02:00
|
|
|
|
if (searchModel.SearchType == SearchType.EpisodeSearch)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>
|
|
|
|
|
{
|
|
|
|
|
String.Format(
|
|
|
|
|
@"http://www.newzbin.com/search/query/?q={0}+{1}x{2:00}&fpn=p&searchaction=Go&category=8&{3}",
|
|
|
|
|
searchModel.SeriesTitle, searchModel.SeasonNumber,
|
|
|
|
|
searchModel.EpisodeNumber, UrlParams)
|
|
|
|
|
};
|
|
|
|
|
}
|
2011-06-03 03:15:19 +02:00
|
|
|
|
|
2011-09-01 08:58:54 +02:00
|
|
|
|
if (searchModel.SearchType == SearchType.SeasonSearch)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>
|
2011-08-28 07:45:36 +02:00
|
|
|
|
{
|
|
|
|
|
String.Format(
|
|
|
|
|
@"http://www.newzbin.com/search/query/?q={0}+Season+{1}&fpn=p&searchaction=Go&category=8&{2}",
|
|
|
|
|
searchModel.SeriesTitle, searchModel.SeasonNumber, UrlParams)
|
|
|
|
|
};
|
2011-09-01 08:58:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (searchModel.SearchType == SearchType.PartialSeasonSearch)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>
|
|
|
|
|
{
|
|
|
|
|
String.Format(
|
|
|
|
|
@"http://www.newzbin.com/search/query/?q={0}+{1}x{2}&fpn=p&searchaction=Go&category=8&{3}",
|
|
|
|
|
searchModel.SeriesTitle, searchModel.SeasonNumber, searchModel.EpisodePrefix, UrlParams)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new List<string>();
|
2011-05-26 06:25:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-20 01:46:21 +02:00
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Newzbin"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
|
|
|
|
{
|
2011-05-23 08:48:52 +02:00
|
|
|
|
return item.Id + "nzb";
|
2011-04-20 01:46:21 +02:00
|
|
|
|
}
|
2011-04-21 01:29:12 +02:00
|
|
|
|
|
|
|
|
|
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
|
|
|
|
|
{
|
2011-05-23 08:48:52 +02:00
|
|
|
|
if (currentResult != null)
|
|
|
|
|
{
|
|
|
|
|
var quality = Parser.ParseQuality(item.Summary.Text);
|
2011-04-21 01:29:12 +02:00
|
|
|
|
|
2011-06-03 03:15:19 +02:00
|
|
|
|
currentResult.Quality = quality;
|
2011-07-10 21:52:29 +02:00
|
|
|
|
|
|
|
|
|
var languageString = Regex.Match(item.Summary.Text, @"Language - \w*", RegexOptions.IgnoreCase).Value;
|
|
|
|
|
|
|
|
|
|
currentResult.Language = Parser.ParseLanguage(languageString);
|
2011-09-14 04:25:33 +02:00
|
|
|
|
|
|
|
|
|
var sizeString = Regex.Match(item.Summary.Text, @"\(Size: \d*\,?\d+\.\d{1,2}\w{2}\)", RegexOptions.IgnoreCase).Value;
|
|
|
|
|
|
|
|
|
|
currentResult.Size = Parser.GetReportSize(sizeString);
|
2011-05-23 08:48:52 +02:00
|
|
|
|
}
|
2011-04-21 01:29:12 +02:00
|
|
|
|
return currentResult;
|
|
|
|
|
}
|
2011-04-28 02:11:08 +02:00
|
|
|
|
|
2011-04-20 01:46:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|