diff --git a/src/Sonarr.Api.V3/CustomFormats/CustomFormatController.cs b/src/Sonarr.Api.V3/CustomFormats/CustomFormatController.cs index 8f9c3af3f..0a5915452 100644 --- a/src/Sonarr.Api.V3/CustomFormats/CustomFormatController.cs +++ b/src/Sonarr.Api.V3/CustomFormats/CustomFormatController.cs @@ -1,9 +1,11 @@ using System.Collections.Generic; using System.Linq; using FluentValidation; +using FluentValidation.Results; using Microsoft.AspNetCore.Mvc; using NzbDrone.Common.Extensions; using NzbDrone.Core.CustomFormats; +using NzbDrone.Core.Validation; using Sonarr.Http; using Sonarr.Http.REST; using Sonarr.Http.REST.Attributes; @@ -50,6 +52,9 @@ namespace Sonarr.Api.V3.CustomFormats public ActionResult Create(CustomFormatResource customFormatResource) { var model = customFormatResource.ToModel(_specifications); + + Validate(model); + return Created(_formatService.Insert(model).Id); } @@ -58,6 +63,9 @@ namespace Sonarr.Api.V3.CustomFormats public ActionResult Update(CustomFormatResource resource) { var model = resource.ToModel(_specifications); + + Validate(model); + _formatService.Update(model); return Accepted(model.Id); @@ -91,6 +99,24 @@ namespace Sonarr.Api.V3.CustomFormats return schema; } + private void Validate(CustomFormat definition) + { + foreach (var validationResult in definition.Specifications.Select(spec => spec.Validate())) + { + VerifyValidationResult(validationResult); + } + } + + private void VerifyValidationResult(ValidationResult validationResult) + { + var result = new NzbDroneValidationResult(validationResult.Errors); + + if (!result.IsValid) + { + throw new ValidationException(result.Errors); + } + } + private IEnumerable GetPresets() { yield return new ReleaseTitleSpecification