|
|
|
using NzbDrone.Core.Indexers;
|
|
|
|
|
|
|
|
namespace Radarr.Api.V3.Indexers
|
|
|
|
{
|
|
|
|
public class IndexerResource : ProviderResource<IndexerResource>
|
|
|
|
{
|
|
|
|
public bool EnableRss { get; set; }
|
|
|
|
public bool EnableAutomaticSearch { get; set; }
|
|
|
|
public bool EnableInteractiveSearch { get; set; }
|
|
|
|
public bool SupportsRss { get; set; }
|
|
|
|
public bool SupportsSearch { get; set; }
|
|
|
|
public DownloadProtocol Protocol { get; set; }
|
|
|
|
public int Priority { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class IndexerResourceMapper : ProviderResourceMapper<IndexerResource, IndexerDefinition>
|
|
|
|
{
|
|
|
|
public override IndexerResource ToResource(IndexerDefinition definition)
|
|
|
|
{
|
|
|
|
if (definition == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
var resource = base.ToResource(definition);
|
|
|
|
|
|
|
|
resource.EnableRss = definition.EnableRss;
|
|
|
|
resource.EnableAutomaticSearch = definition.EnableAutomaticSearch;
|
|
|
|
resource.EnableInteractiveSearch = definition.EnableInteractiveSearch;
|
|
|
|
resource.SupportsRss = definition.SupportsRss;
|
|
|
|
resource.SupportsSearch = definition.SupportsSearch;
|
|
|
|
resource.Protocol = definition.Protocol;
|
|
|
|
resource.Priority = definition.Priority;
|
|
|
|
|
|
|
|
return resource;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IndexerDefinition ToModel(IndexerResource resource)
|
|
|
|
{
|
|
|
|
if (resource == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
var definition = base.ToModel(resource);
|
|
|
|
|
|
|
|
definition.EnableRss = resource.EnableRss;
|
|
|
|
definition.EnableAutomaticSearch = resource.EnableAutomaticSearch;
|
|
|
|
definition.EnableInteractiveSearch = resource.EnableInteractiveSearch;
|
|
|
|
definition.Priority = resource.Priority;
|
|
|
|
|
|
|
|
return definition;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|