mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public abstract class IndexerBase : IIndexer
|
|
{
|
|
public abstract string Name { get; }
|
|
|
|
public virtual bool EnableByDefault { get { return true; } }
|
|
|
|
public IndexerDefinition InstanceDefinition { get; set; }
|
|
|
|
public virtual IEnumerable<IndexerDefinition> DefaultDefinitions
|
|
{
|
|
get
|
|
{
|
|
yield return new IndexerDefinition
|
|
{
|
|
Name = Name,
|
|
Enable = EnableByDefault,
|
|
Implementation = GetType().Name,
|
|
Settings = String.Empty
|
|
};
|
|
}
|
|
}
|
|
|
|
public virtual IParseFeed Parser
|
|
{
|
|
get
|
|
{
|
|
return new BasicRssParser();
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|
|
} |