Radarr/src/Radarr.Api.V3/ProviderControllerBase.cs

290 lines
11 KiB
C#
Raw Normal View History

2018-11-23 07:03:32 +00:00
using System.Collections.Generic;
using System.Linq;
using FluentValidation;
using FluentValidation.Results;
2021-10-21 20:04:19 +00:00
using Microsoft.AspNetCore.Mvc;
2018-11-23 07:03:32 +00:00
using NzbDrone.Common.Serializer;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Validation;
2021-10-21 20:04:19 +00:00
using Radarr.Http.REST;
using Radarr.Http.REST.Attributes;
2018-11-23 07:03:32 +00:00
namespace Radarr.Api.V3
2018-11-23 07:03:32 +00:00
{
public abstract class ProviderControllerBase<TProviderResource, TBulkProviderResource, TProvider, TProviderDefinition> : RestController<TProviderResource>
2018-11-23 07:03:32 +00:00
where TProviderDefinition : ProviderDefinition, new()
where TProvider : IProvider
2021-02-04 21:14:52 +00:00
where TProviderResource : ProviderResource<TProviderResource>, new()
where TBulkProviderResource : ProviderBulkResource<TBulkProviderResource>, new()
2018-11-23 07:03:32 +00:00
{
private readonly IProviderFactory<TProvider, TProviderDefinition> _providerFactory;
private readonly ProviderResourceMapper<TProviderResource, TProviderDefinition> _resourceMapper;
private readonly ProviderBulkResourceMapper<TBulkProviderResource, TProviderDefinition> _bulkResourceMapper;
2018-11-23 07:03:32 +00:00
protected ProviderControllerBase(IProviderFactory<TProvider,
TProviderDefinition> providerFactory,
string resource,
ProviderResourceMapper<TProviderResource, TProviderDefinition> resourceMapper,
ProviderBulkResourceMapper<TBulkProviderResource, TProviderDefinition> bulkResourceMapper)
2018-11-23 07:03:32 +00:00
{
_providerFactory = providerFactory;
_resourceMapper = resourceMapper;
_bulkResourceMapper = bulkResourceMapper;
2018-11-23 07:03:32 +00:00
SharedValidator.RuleFor(c => c.Name).NotEmpty();
2019-12-22 22:08:53 +00:00
SharedValidator.RuleFor(c => c.Name).Must((v, c) => !_providerFactory.All().Any(p => p.Name == c && p.Id != v.Id)).WithMessage("Should be unique");
2018-11-23 07:03:32 +00:00
SharedValidator.RuleFor(c => c.Implementation).NotEmpty();
SharedValidator.RuleFor(c => c.ConfigContract).NotEmpty();
PostValidator.RuleFor(c => c.Fields).NotNull();
}
protected override TProviderResource GetResourceById(int id)
2018-11-23 07:03:32 +00:00
{
var definition = _providerFactory.Get(id);
_providerFactory.SetProviderCharacteristics(definition);
return _resourceMapper.ToResource(definition);
}
2021-10-21 20:04:19 +00:00
[HttpGet]
[Produces("application/json")]
2021-10-21 20:04:19 +00:00
public List<TProviderResource> GetAll()
2018-11-23 07:03:32 +00:00
{
var providerDefinitions = _providerFactory.All();
2018-11-23 07:03:32 +00:00
var result = new List<TProviderResource>(providerDefinitions.Count);
2018-11-23 07:03:32 +00:00
foreach (var definition in providerDefinitions.OrderBy(p => p.ImplementationName))
2018-11-23 07:03:32 +00:00
{
_providerFactory.SetProviderCharacteristics(definition);
result.Add(_resourceMapper.ToResource(definition));
}
return result.OrderBy(p => p.Name).ToList();
}
2021-10-21 20:04:19 +00:00
[RestPostById]
[Consumes("application/json")]
[Produces("application/json")]
public ActionResult<TProviderResource> CreateProvider([FromBody] TProviderResource providerResource, [FromQuery] bool forceSave = false)
2018-11-23 07:03:32 +00:00
{
var providerDefinition = GetDefinition(providerResource, null, true, !forceSave, false);
2018-11-23 07:03:32 +00:00
if (providerDefinition.Enable)
{
Test(providerDefinition, !forceSave);
2018-11-23 07:03:32 +00:00
}
providerDefinition = _providerFactory.Create(providerDefinition);
2021-10-21 20:04:19 +00:00
return Created(providerDefinition.Id);
2018-11-23 07:03:32 +00:00
}
2021-10-21 20:04:19 +00:00
[RestPutById]
[Consumes("application/json")]
[Produces("application/json")]
public ActionResult<TProviderResource> UpdateProvider([FromBody] TProviderResource providerResource, [FromQuery] bool forceSave = false)
2018-11-23 07:03:32 +00:00
{
var existingDefinition = _providerFactory.Find(providerResource.Id);
var providerDefinition = GetDefinition(providerResource, existingDefinition, true, !forceSave, false);
2018-11-23 07:03:32 +00:00
// Comparing via JSON string to eliminate the need for every provider implementation to implement equality checks.
// Compare settings separately because they are not serialized with the definition.
var hasDefinitionChanged = STJson.ToJson(existingDefinition) != STJson.ToJson(providerDefinition) ||
STJson.ToJson(existingDefinition.Settings) != STJson.ToJson(providerDefinition.Settings);
// Only test existing definitions if it is enabled and forceSave isn't set and the definition has changed.
if (providerDefinition.Enable && !forceSave && hasDefinitionChanged)
2018-11-23 07:03:32 +00:00
{
Test(providerDefinition, true);
2018-11-23 07:03:32 +00:00
}
if (hasDefinitionChanged)
{
_providerFactory.Update(providerDefinition);
}
2021-10-21 20:04:19 +00:00
return Accepted(providerResource.Id);
2018-11-23 07:03:32 +00:00
}
[HttpPut("bulk")]
[Consumes("application/json")]
[Produces("application/json")]
public virtual ActionResult<TProviderResource> UpdateProvider([FromBody] TBulkProviderResource providerResource)
{
if (!providerResource.Ids.Any())
{
throw new BadRequestException("ids must be provided");
}
var definitionsToUpdate = _providerFactory.Get(providerResource.Ids).ToList();
foreach (var definition in definitionsToUpdate)
{
_providerFactory.SetProviderCharacteristics(definition);
if (providerResource.Tags != null)
{
var newTags = providerResource.Tags;
var applyTags = providerResource.ApplyTags;
switch (applyTags)
{
case ApplyTags.Add:
newTags.ForEach(t => definition.Tags.Add(t));
break;
case ApplyTags.Remove:
newTags.ForEach(t => definition.Tags.Remove(t));
break;
case ApplyTags.Replace:
definition.Tags = new HashSet<int>(newTags);
break;
}
}
}
_bulkResourceMapper.UpdateModel(providerResource, definitionsToUpdate);
return Accepted(_providerFactory.Update(definitionsToUpdate).Select(x => _resourceMapper.ToResource(x)));
}
private TProviderDefinition GetDefinition(TProviderResource providerResource, TProviderDefinition existingDefinition, bool validate, bool includeWarnings, bool forceValidate)
2018-11-23 07:03:32 +00:00
{
var definition = _resourceMapper.ToModel(providerResource, existingDefinition);
2018-11-23 07:03:32 +00:00
if (validate && (definition.Enable || forceValidate))
2018-11-23 07:03:32 +00:00
{
Validate(definition, includeWarnings);
}
return definition;
}
2021-10-21 20:04:19 +00:00
[RestDeleteById]
public object DeleteProvider(int id)
2018-11-23 07:03:32 +00:00
{
_providerFactory.Delete(id);
return new { };
2018-11-23 07:03:32 +00:00
}
[HttpDelete("bulk")]
[Consumes("application/json")]
public virtual object DeleteProviders([FromBody] TBulkProviderResource resource)
{
_providerFactory.Delete(resource.Ids);
return new { };
}
2021-10-21 20:04:19 +00:00
[HttpGet("schema")]
[Produces("application/json")]
2021-10-21 20:04:19 +00:00
public List<TProviderResource> GetTemplates()
2018-11-23 07:03:32 +00:00
{
var defaultDefinitions = _providerFactory.GetDefaultDefinitions().OrderBy(p => p.ImplementationName).ToList();
var result = new List<TProviderResource>(defaultDefinitions.Count);
2018-11-23 07:03:32 +00:00
foreach (var providerDefinition in defaultDefinitions)
{
var providerResource = _resourceMapper.ToResource(providerDefinition);
var presetDefinitions = _providerFactory.GetPresetDefinitions(providerDefinition);
2021-02-04 21:14:52 +00:00
providerResource.Presets = presetDefinitions
.Select(v => _resourceMapper.ToResource(v))
.ToList();
2018-11-23 07:03:32 +00:00
result.Add(providerResource);
}
2019-08-28 21:43:55 +00:00
return result;
2018-11-23 07:03:32 +00:00
}
2021-10-21 20:04:19 +00:00
[SkipValidation(true, false)]
[HttpPost("test")]
[Consumes("application/json")]
public object Test([FromBody] TProviderResource providerResource, [FromQuery] bool forceTest = false)
2018-11-23 07:03:32 +00:00
{
var existingDefinition = providerResource.Id > 0 ? _providerFactory.Find(providerResource.Id) : null;
var providerDefinition = GetDefinition(providerResource, existingDefinition, true, !forceTest, true);
2018-11-23 07:03:32 +00:00
Test(providerDefinition, true);
return "{}";
}
2021-10-21 20:04:19 +00:00
[HttpPost("testall")]
[Produces("application/json")]
2021-10-21 20:04:19 +00:00
public IActionResult TestAll()
2018-11-23 07:03:32 +00:00
{
var providerDefinitions = _providerFactory.All()
.Where(c => c.Settings.Validate().IsValid && c.Enable)
.ToList();
var result = new List<ProviderTestAllResult>();
foreach (var definition in providerDefinitions)
{
var validationFailures = new List<ValidationFailure>();
validationFailures.AddRange(definition.Settings.Validate().Errors);
validationFailures.AddRange(_providerFactory.Test(definition).Errors);
2018-11-23 07:03:32 +00:00
result.Add(new ProviderTestAllResult
2019-12-22 22:08:53 +00:00
{
Id = definition.Id,
ValidationFailures = validationFailures
2019-12-22 22:08:53 +00:00
});
2018-11-23 07:03:32 +00:00
}
2021-10-21 20:04:19 +00:00
return result.Any(c => !c.IsValid) ? BadRequest(result) : Ok(result);
2018-11-23 07:03:32 +00:00
}
2021-10-21 20:04:19 +00:00
[SkipValidation]
[HttpPost("action/{name}")]
[Consumes("application/json")]
[Produces("application/json")]
2024-04-28 22:19:25 +00:00
public IActionResult RequestAction([FromRoute] string name, [FromBody] TProviderResource providerResource)
2018-11-23 07:03:32 +00:00
{
var existingDefinition = providerResource.Id > 0 ? _providerFactory.Find(providerResource.Id) : null;
var providerDefinition = GetDefinition(providerResource, existingDefinition, false, false, false);
2021-10-21 20:04:19 +00:00
var query = Request.Query.ToDictionary(x => x.Key, x => x.Value.ToString());
2018-11-23 07:03:32 +00:00
2021-10-21 20:04:19 +00:00
var data = _providerFactory.RequestAction(providerDefinition, name, query);
2018-11-23 07:03:32 +00:00
2021-10-21 20:04:19 +00:00
return Content(data.ToJson(), "application/json");
2018-11-23 07:03:32 +00:00
}
private void Validate(TProviderDefinition definition, bool includeWarnings)
2018-11-23 07:03:32 +00:00
{
var validationResult = definition.Settings.Validate();
VerifyValidationResult(validationResult, includeWarnings);
}
protected virtual void Test(TProviderDefinition definition, bool includeWarnings)
{
var validationResult = _providerFactory.Test(definition);
VerifyValidationResult(validationResult, includeWarnings);
}
protected void VerifyValidationResult(ValidationResult validationResult, bool includeWarnings)
{
var result = validationResult as NzbDroneValidationResult ?? new NzbDroneValidationResult(validationResult.Errors);
2018-11-23 07:03:32 +00:00
if (includeWarnings && (!result.IsValid || result.HasWarnings))
{
throw new ValidationException(result.Failures);
}
if (!result.IsValid)
{
throw new ValidationException(result.Errors);
}
}
}
}