2013-04-07 10:30:37 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2013-09-22 08:20:26 +03:00
|
|
|
using NzbDrone.Core.ThingiProvider;
|
2013-04-07 10:30:37 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers.Wombles
|
|
|
|
{
|
2013-09-22 23:00:29 +03:00
|
|
|
public class Wombles : IndexerBase<NullConfig>
|
2013-04-07 10:30:37 +03:00
|
|
|
{
|
2013-09-22 23:00:29 +03:00
|
|
|
public override DownloadProtocol Protocol
|
2013-09-14 03:10:39 +03:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2013-09-22 23:00:29 +03:00
|
|
|
return DownloadProtocol.Usenet;
|
2013-09-14 03:10:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-08 20:53:26 +03:00
|
|
|
public override IParseFeed Parser
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return new WomblesParser();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-07 10:30:37 +03:00
|
|
|
public override IEnumerable<string> RecentFeed
|
|
|
|
{
|
2013-06-08 20:53:26 +03:00
|
|
|
get { yield return "http://nzb.isasecret.com/rss/?sec=TV&fr=false"; }
|
2013-04-07 10:30:37 +03:00
|
|
|
}
|
|
|
|
|
2013-08-06 10:38:16 +03:00
|
|
|
public override IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int episodeNumber)
|
2013-04-07 10:30:37 +03:00
|
|
|
{
|
|
|
|
return new List<string>();
|
|
|
|
}
|
|
|
|
|
2013-08-22 07:42:25 +03:00
|
|
|
public override IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int offset)
|
2013-04-07 10:30:37 +03:00
|
|
|
{
|
|
|
|
return new List<string>();
|
|
|
|
}
|
|
|
|
|
2013-08-06 10:38:16 +03:00
|
|
|
public override IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, int tvRageId, DateTime date)
|
2013-04-07 10:30:37 +03:00
|
|
|
{
|
|
|
|
return new List<string>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|