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.
30 lines
846 B
30 lines
846 B
using System;
|
|
using NzbDrone.Common.Eventing;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public abstract class IndexerWithSetting<TSetting> :
|
|
Indexer,
|
|
IHandle<IndexerSettingUpdatedEvent> where TSetting : IIndexerSetting, new()
|
|
{
|
|
protected IndexerWithSetting(IProviderIndexerSetting settingProvider)
|
|
{
|
|
Settings = settingProvider.Get<TSetting>(this);
|
|
}
|
|
|
|
public override bool IsConfigured
|
|
{
|
|
get { return Settings.IsValid; }
|
|
}
|
|
|
|
protected TSetting Settings { get; private set; }
|
|
|
|
public void Handle(IndexerSettingUpdatedEvent message)
|
|
{
|
|
if (message.IndexerName.Equals(Name, StringComparison.InvariantCultureIgnoreCase))
|
|
{
|
|
Settings = (TSetting)message.IndexerSetting;
|
|
}
|
|
}
|
|
}
|
|
} |