1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-31 03:11:07 +02:00
Sonarr/src/NzbDrone.Core/Indexers/Wombles/Wombles.cs

56 lines
1.7 KiB
C#
Raw Normal View History

2013-04-07 10:30:37 +03:00
using System;
using System.Collections.Generic;
using FluentValidation.Results;
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
{
public override DownloadProtocol Protocol { get { return DownloadProtocol.Usenet; } }
public override bool SupportsSearch { get { return false; } }
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
}
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>();
}
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>();
}
public override IEnumerable<string> GetDailyEpisodeSearchUrls(List<String> titles, int tvRageId, DateTime date)
2013-04-07 10:30:37 +03:00
{
return new List<string>();
}
public override IEnumerable<string> GetAnimeEpisodeSearchUrls(List<String> titles, int tvRageId, int absoluteEpisodeNumber)
{
return new string[0];
}
public override IEnumerable<string> GetSearchUrls(string query, int offset)
{
return new List<string>();
}
public override ValidationResult Test()
{
return new ValidationResult();
}
2013-04-07 10:30:37 +03:00
}
}