2011-05-26 04:25:59 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-04-25 20:21:52 +00:00
|
|
|
|
using System.Net;
|
|
|
|
|
using System.ServiceModel.Syndication;
|
2011-07-10 19:52:29 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2011-06-14 01:23:04 +00:00
|
|
|
|
using Ninject;
|
2012-02-11 00:48:20 +00:00
|
|
|
|
using NzbDrone.Common;
|
2011-04-20 23:29:12 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-04-19 23:46:21 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2012-02-29 16:32:58 +00:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-04-19 23:46:21 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Indexer
|
|
|
|
|
{
|
2011-05-20 04:21:18 +00:00
|
|
|
|
public class Newzbin : IndexerBase
|
2011-04-19 23:46:21 +00:00
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
|
|
|
|
private const string ROOT_DOMAIN = "https://www.newzbin2.es";
|
|
|
|
|
|
2011-07-02 18:41:23 +00:00
|
|
|
|
[Inject]
|
2011-06-03 01:15:19 +00:00
|
|
|
|
public Newzbin(HttpProvider httpProvider, ConfigProvider configProvider)
|
|
|
|
|
: base(httpProvider, configProvider)
|
2011-04-19 23:46:21 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-29 20:16:41 +00:00
|
|
|
|
private const string URL_PARAMS = "feed=rss&hauth=1&ps_rb_language=4096&ps_rb_video_format=3082257";
|
2011-07-02 18:41:23 +00:00
|
|
|
|
|
2011-04-21 01:26:13 +00:00
|
|
|
|
protected override string[] Urls
|
2011-04-19 23:46:21 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
ROOT_DOMAIN + "/browse/category/p/tv?" + URL_PARAMS
|
2011-04-19 23:46:21 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-01 01:37:36 +00:00
|
|
|
|
public override bool IsConfigured
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !string.IsNullOrWhiteSpace(_configProvider.NewzbinUsername) &&
|
|
|
|
|
!string.IsNullOrWhiteSpace(_configProvider.NewzbinPassword);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-05-26 04:25:59 +00:00
|
|
|
|
|
|
|
|
|
|
2011-04-25 20:21:52 +00:00
|
|
|
|
protected override NetworkCredential Credentials
|
|
|
|
|
{
|
|
|
|
|
get { return new NetworkCredential(_configProvider.NewzbinUsername, _configProvider.NewzbinPassword); }
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-29 06:49:38 +00:00
|
|
|
|
protected override IList<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
2011-05-26 04:25:59 +00:00
|
|
|
|
{
|
2011-11-29 06:49:38 +00:00
|
|
|
|
return new List<string>
|
2011-08-28 05:45:36 +00:00
|
|
|
|
{
|
|
|
|
|
String.Format(
|
2012-02-07 05:08:07 +00:00
|
|
|
|
ROOT_DOMAIN + @"/search/query/?q={0}+{1}x{2:00}&fpn=p&searchaction=Go&category=8&{3}",
|
2011-11-29 06:49:38 +00:00
|
|
|
|
seriesTitle, seasonNumber,episodeNumber, URL_PARAMS)
|
2011-08-28 05:45:36 +00:00
|
|
|
|
};
|
2011-11-29 06:49:38 +00:00
|
|
|
|
}
|
2011-06-03 01:15:19 +00:00
|
|
|
|
|
2011-11-29 06:49:38 +00:00
|
|
|
|
protected override IList<string> GetSeasonSearchUrls(string seriesTitle, int seasonNumber)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>
|
2011-08-28 05:45:36 +00:00
|
|
|
|
{
|
|
|
|
|
String.Format(
|
2012-02-07 05:08:07 +00:00
|
|
|
|
ROOT_DOMAIN + @"/search/query/?q={0}+Season+{1}&fpn=p&searchaction=Go&category=8&{2}",
|
2011-11-29 06:49:38 +00:00
|
|
|
|
seriesTitle, seasonNumber, URL_PARAMS)
|
2011-08-28 05:45:36 +00:00
|
|
|
|
};
|
2011-11-29 06:49:38 +00:00
|
|
|
|
}
|
2011-09-01 06:58:54 +00:00
|
|
|
|
|
2011-11-29 06:49:38 +00:00
|
|
|
|
protected override IList<string> GetDailyEpisodeSearchUrls(string seriesTitle, DateTime date)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>
|
2011-09-01 06:58:54 +00:00
|
|
|
|
{
|
|
|
|
|
String.Format(
|
2012-02-07 05:08:07 +00:00
|
|
|
|
ROOT_DOMAIN + @"/search/query/?q={0}+{1:yyyy-MM-dd}&fpn=p&searchaction=Go&category=8&{2}",
|
2011-11-29 06:49:38 +00:00
|
|
|
|
seriesTitle, date, URL_PARAMS)
|
2011-09-01 06:58:54 +00:00
|
|
|
|
};
|
2011-11-29 06:49:38 +00:00
|
|
|
|
}
|
2011-09-01 06:58:54 +00:00
|
|
|
|
|
2011-11-29 06:49:38 +00:00
|
|
|
|
protected override IList<string> GetPartialSeasonSearchUrls(string seriesTitle, int seasonNumber, int episodeWildcard)
|
|
|
|
|
{
|
|
|
|
|
return new List<string>
|
2011-11-28 20:05:28 +00:00
|
|
|
|
{
|
|
|
|
|
String.Format(
|
2012-02-07 05:08:07 +00:00
|
|
|
|
ROOT_DOMAIN + @"/search/query/?q={0}+{1}x{2}&fpn=p&searchaction=Go&category=8&{3}",
|
2011-11-29 06:49:38 +00:00
|
|
|
|
seriesTitle, seasonNumber, episodeWildcard, URL_PARAMS)
|
2011-11-28 20:05:28 +00:00
|
|
|
|
};
|
2011-05-26 04:25:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-29 06:49:38 +00:00
|
|
|
|
|
2011-04-19 23:46:21 +00:00
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Newzbin"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
|
|
|
|
{
|
2011-05-23 06:48:52 +00:00
|
|
|
|
return item.Id + "nzb";
|
2011-04-19 23:46:21 +00:00
|
|
|
|
}
|
2011-04-20 23:29:12 +00:00
|
|
|
|
|
2012-05-02 19:02:39 +00:00
|
|
|
|
protected override string NzbInfoUrl(SyndicationItem item)
|
|
|
|
|
{
|
|
|
|
|
return item.Links[0].Uri.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-20 23:29:12 +00:00
|
|
|
|
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
|
|
|
|
|
{
|
2011-05-23 06:48:52 +00:00
|
|
|
|
if (currentResult != null)
|
|
|
|
|
{
|
|
|
|
|
var quality = Parser.ParseQuality(item.Summary.Text);
|
2011-06-03 01:15:19 +00:00
|
|
|
|
currentResult.Quality = quality;
|
2011-07-10 19:52:29 +00:00
|
|
|
|
|
|
|
|
|
var languageString = Regex.Match(item.Summary.Text, @"Language - \w*", RegexOptions.IgnoreCase).Value;
|
|
|
|
|
currentResult.Language = Parser.ParseLanguage(languageString);
|
2011-09-14 02:25:33 +00: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 06:48:52 +00:00
|
|
|
|
}
|
2012-02-18 21:18:00 +00:00
|
|
|
|
|
2011-04-20 23:29:12 +00:00
|
|
|
|
return currentResult;
|
|
|
|
|
}
|
2011-04-28 00:11:08 +00:00
|
|
|
|
|
2011-04-19 23:46:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|