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
|
|
|
{
|
2014-04-19 18:09:22 +03:00
|
|
|
public override DownloadProtocol Protocol { get { return DownloadProtocol.Usenet; } }
|
|
|
|
public override bool SupportsSearching { get { return false; } }
|
2014-01-14 06:47:45 +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
|
|
|
|
{
|
2014-01-16 20:36:21 +03:00
|
|
|
get { yield return "http://newshost.co.za/rss/?sec=TV&fr=false"; }
|
2013-04-07 10:30:37 +03:00
|
|
|
}
|
|
|
|
|
2014-05-19 22:14:41 +03:00
|
|
|
public override IEnumerable<string> GetEpisodeSearchUrls(List<String> titles, int tvRageId, int seasonNumber, int episodeNumber)
|
2013-04-07 10:30:37 +03:00
|
|
|
{
|
|
|
|
return new List<string>();
|
|
|
|
}
|
|
|
|
|
2014-05-19 22:14:41 +03:00
|
|
|
public override IEnumerable<string> GetSeasonSearchUrls(List<String> titles, int tvRageId, int seasonNumber, int offset)
|
2013-04-07 10:30:37 +03:00
|
|
|
{
|
|
|
|
return new List<string>();
|
|
|
|
}
|
|
|
|
|
2014-05-19 22:14:41 +03:00
|
|
|
public override IEnumerable<string> GetDailyEpisodeSearchUrls(List<String> titles, int tvRageId, DateTime date)
|
2013-04-07 10:30:37 +03:00
|
|
|
{
|
|
|
|
return new List<string>();
|
|
|
|
}
|
2014-01-07 11:21:05 +03:00
|
|
|
|
2014-05-19 22:14:41 +03:00
|
|
|
public override IEnumerable<string> GetAnimeEpisodeSearchUrls(List<String> titles, int tvRageId, int absoluteEpisodeNumber)
|
2014-04-22 01:50:43 +03:00
|
|
|
{
|
2014-05-19 22:14:41 +03:00
|
|
|
return new string[0];
|
2014-04-22 01:50:43 +03:00
|
|
|
}
|
|
|
|
|
2014-01-07 11:21:05 +03:00
|
|
|
public override IEnumerable<string> GetSearchUrls(string query, int offset)
|
|
|
|
{
|
|
|
|
return new List<string>();
|
|
|
|
}
|
2013-04-07 10:30:37 +03:00
|
|
|
}
|
|
|
|
}
|