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-06-14 03:23:04 +02:00
|
|
|
|
using Ninject;
|
2011-04-21 01:29:12 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
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-06-14 03:23:04 +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-04-21 03:26:13 +02:00
|
|
|
|
protected override string[] Urls
|
2011-04-20 01:46:21 +02:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
2011-04-25 22:21:52 +02:00
|
|
|
|
"http://www.newzbin.com/browse/category/p/tv?feed=rss&hauth=1"
|
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-05-26 06:25:59 +02:00
|
|
|
|
protected override IList<string> GetSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
|
|
|
|
{
|
2011-06-03 03:15:19 +02:00
|
|
|
|
|
|
|
|
|
return new List<string> { String.Format(@"http://www.newzbin.com/search/query/?q={0}+{1}x{2:00}&fpn=p&searchaction=Go&category=8&feed=rss&hauth=1", GetQueryTitle(seriesTitle), seasonNumber, episodeNumber) };
|
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-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
|
|
|
|
}
|
|
|
|
|
}
|