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.
52 lines
1.5 KiB
52 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public abstract class IndexerBase<TSettings> : IIndexer
|
|
{
|
|
public abstract string Name { get; }
|
|
|
|
public virtual IEnumerable<ProviderDefinition> DefaultDefinitions
|
|
{
|
|
get
|
|
{
|
|
yield return new IndexerDefinition
|
|
{
|
|
Name = Name,
|
|
Enable = false,
|
|
Implementation = GetType().Name,
|
|
Settings = NullSetting.Instance
|
|
};
|
|
}
|
|
}
|
|
|
|
public ProviderDefinition Definition { get; set; }
|
|
|
|
public abstract IndexerKind Kind { get; }
|
|
|
|
public virtual bool EnableByDefault { get { return true; } }
|
|
|
|
protected TSettings Settings
|
|
{
|
|
get
|
|
{
|
|
return (TSettings)Definition.Settings;
|
|
}
|
|
}
|
|
|
|
public virtual IParseFeed Parser { get; private set; }
|
|
|
|
public abstract IEnumerable<string> RecentFeed { get; }
|
|
public abstract IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int episodeNumber);
|
|
public abstract IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, int tvRageId, DateTime date);
|
|
public abstract IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int offset);
|
|
}
|
|
|
|
public enum IndexerKind
|
|
{
|
|
Usenet,
|
|
Torrent
|
|
}
|
|
} |