Radarr/NzbDrone.Core/Indexers/Wombles.cs

87 lines
2.2 KiB
C#
Raw Normal View History

2013-02-21 07:07:34 +00:00
using System.Linq;
using System;
2012-04-13 23:44:23 +00:00
using System.Collections.Generic;
using System.ServiceModel.Syndication;
using NzbDrone.Common;
2013-02-24 06:48:52 +00:00
using NzbDrone.Core.Configuration;
2012-04-13 23:44:23 +00:00
using NzbDrone.Core.Model;
using NzbDrone.Core.Providers.Core;
2013-02-23 04:37:23 +00:00
namespace NzbDrone.Core.Indexers
2012-04-13 23:44:23 +00:00
{
public class Wombles : IndexerBase
{
2013-02-24 06:48:52 +00:00
public Wombles(HttpProvider httpProvider, IConfigService configService) : base(httpProvider, configService)
2012-04-13 23:44:23 +00:00
{
}
protected override string[] Urls
{
get
{
return new[]
{
string.Format("http://nzb.isasecret.com/rss")
};
}
}
public override bool IsConfigured
{
get
{
return true;
}
}
public override string Name
{
2012-04-14 08:12:47 +00:00
get { return "WomblesIndex"; }
2012-04-13 23:44:23 +00:00
}
protected override string NzbDownloadUrl(SyndicationItem item)
{
return item.Links[0].Uri.ToString();
}
2012-05-02 19:02:39 +00:00
protected override string NzbInfoUrl(SyndicationItem item)
{
return null;
2012-05-02 19:02:39 +00:00
}
2012-04-13 23:44:23 +00:00
protected override IList<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
{
return new List<string>();
}
protected override IList<string> GetSeasonSearchUrls(string seriesTitle, int seasonNumber)
{
return new List<string>();
}
protected override IList<string> GetDailyEpisodeSearchUrls(string seriesTitle, DateTime date)
{
return new List<string>();
}
protected override IList<string> GetPartialSeasonSearchUrls(string seriesTitle, int seasonNumber, int episodeWildcard)
{
return new List<string>();
}
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
{
if (currentResult != null)
{
currentResult.Size = 0;
}
return currentResult;
}
public override bool EnabledByDefault
{
get { return true; }
}
2012-04-13 23:44:23 +00:00
}
}