2013-02-21 08:07:34 +01:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System;
|
2012-04-14 01:44:23 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ServiceModel.Syndication;
|
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2012-04-14 01:44:23 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
|
2013-02-23 05:37:23 +01:00
|
|
|
|
namespace NzbDrone.Core.Indexers
|
2012-04-14 01:44:23 +02:00
|
|
|
|
{
|
|
|
|
|
public class Wombles : IndexerBase
|
|
|
|
|
{
|
2013-02-24 07:48:52 +01:00
|
|
|
|
public Wombles(HttpProvider httpProvider, IConfigService configService) : base(httpProvider, configService)
|
2012-04-14 01:44:23 +02: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 10:12:47 +02:00
|
|
|
|
get { return "WomblesIndex"; }
|
2012-04-14 01:44:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
|
|
|
|
{
|
|
|
|
|
return item.Links[0].Uri.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-02 21:02:39 +02:00
|
|
|
|
protected override string NzbInfoUrl(SyndicationItem item)
|
|
|
|
|
{
|
2012-05-03 00:42:21 +02:00
|
|
|
|
return null;
|
2012-05-02 21:02:39 +02:00
|
|
|
|
}
|
2012-04-14 01:44:23 +02: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;
|
|
|
|
|
}
|
2012-04-15 00:33:58 +02:00
|
|
|
|
|
|
|
|
|
public override bool EnabledByDefault
|
|
|
|
|
{
|
|
|
|
|
get { return true; }
|
|
|
|
|
}
|
2012-04-14 01:44:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|