2011-05-25 21:25:59 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2011-04-25 13:21:52 -07:00
|
|
|
using System.Net;
|
|
|
|
using System.ServiceModel.Syndication;
|
2011-04-20 16:29:12 -07:00
|
|
|
using NzbDrone.Core.Model;
|
2011-04-19 16:46:21 -07:00
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-04-28 23:06:13 -07:00
|
|
|
using NzbDrone.Core.Providers.ExternalNotification;
|
2011-04-19 16:46:21 -07:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Indexer
|
|
|
|
{
|
2011-05-19 21:21:18 -07:00
|
|
|
public class Newzbin : IndexerBase
|
2011-04-19 16:46:21 -07:00
|
|
|
{
|
2011-06-02 18:15:19 -07:00
|
|
|
public Newzbin(HttpProvider httpProvider, ConfigProvider configProvider)
|
|
|
|
: base(httpProvider, configProvider)
|
2011-04-19 16:46:21 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-04-20 18:26:13 -07:00
|
|
|
protected override string[] Urls
|
2011-04-19 16:46:21 -07:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return new[]
|
|
|
|
{
|
2011-04-25 13:21:52 -07:00
|
|
|
"http://www.newzbin.com/browse/category/p/tv?feed=rss&hauth=1"
|
2011-04-19 16:46:21 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-25 21:25:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-04-25 13:21:52 -07:00
|
|
|
protected override NetworkCredential Credentials
|
|
|
|
{
|
|
|
|
get { return new NetworkCredential(_configProvider.NewzbinUsername, _configProvider.NewzbinPassword); }
|
|
|
|
}
|
|
|
|
|
2011-05-25 21:25:59 -07:00
|
|
|
protected override IList<string> GetSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
|
|
|
{
|
2011-06-02 18:15:19 -07: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-25 21:25:59 -07:00
|
|
|
}
|
|
|
|
|
2011-04-19 16:46:21 -07:00
|
|
|
public override string Name
|
|
|
|
{
|
|
|
|
get { return "Newzbin"; }
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
|
|
|
{
|
2011-05-22 23:48:52 -07:00
|
|
|
return item.Id + "nzb";
|
2011-04-19 16:46:21 -07:00
|
|
|
}
|
2011-04-20 16:29:12 -07:00
|
|
|
|
|
|
|
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
|
|
|
|
{
|
2011-05-22 23:48:52 -07:00
|
|
|
if (currentResult != null)
|
|
|
|
{
|
|
|
|
var quality = Parser.ParseQuality(item.Summary.Text);
|
2011-04-20 16:29:12 -07:00
|
|
|
|
2011-06-02 18:15:19 -07:00
|
|
|
currentResult.Quality = quality;
|
2011-05-22 23:48:52 -07:00
|
|
|
}
|
2011-04-20 16:29:12 -07:00
|
|
|
return currentResult;
|
|
|
|
}
|
2011-04-27 17:11:08 -07:00
|
|
|
|
2011-04-19 16:46:21 -07:00
|
|
|
}
|
|
|
|
}
|