You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.8 KiB
65 lines
1.8 KiB
12 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace NzbDrone.Core.Indexers.FileSharingTalk
|
||
|
{
|
||
|
public class FileSharingTalk : BaseIndexer
|
||
|
{
|
||
|
private readonly FileSharingTalkSetting _settings;
|
||
|
|
||
|
public FileSharingTalk(IProviderIndexerSetting settingProvider)
|
||
|
{
|
||
|
_settings = settingProvider.Get<FileSharingTalkSetting>(this);
|
||
|
}
|
||
|
|
||
|
public override IEnumerable<string> RecentFeed
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
yield return
|
||
|
string.Format(
|
||
|
"http://filesharingtalk.com/ng_rss.php?uid={0}&ps={1}&category=tv&subcategory=x264sd,x264720,xvid,webdl720,x2641080",
|
||
|
_settings.Uid, _settings.Secret);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
public override IParseFeed Parser
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return new FileSharingTalkParser();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override IIndexerSetting Settings
|
||
|
{
|
||
|
get { return _settings; }
|
||
|
}
|
||
|
|
||
|
public override string Name
|
||
|
{
|
||
|
get { return "FileSharingTalk"; }
|
||
|
}
|
||
|
|
||
|
public override IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
||
|
{
|
||
|
return new List<string>();
|
||
|
}
|
||
|
|
||
|
public override IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, DateTime date)
|
||
|
{
|
||
|
return new List<string>();
|
||
|
}
|
||
|
|
||
|
public override IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int seasonNumber)
|
||
|
{
|
||
|
return new List<string>();
|
||
|
}
|
||
|
|
||
|
public override IEnumerable<string> GetPartialSeasonSearchUrls(string seriesTitle, int seasonNumber, int episodeWildcard)
|
||
|
{
|
||
|
return new List<string>();
|
||
|
}
|
||
|
}
|
||
|
}
|