mirror of https://github.com/Squidex/squidex.git
12 changed files with 66 additions and 28 deletions
@ -0,0 +1,37 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using System.Collections.Generic; |
|||
using Microsoft.AspNetCore.Mvc.Filters; |
|||
using Squidex.Infrastructure; |
|||
|
|||
namespace Squidex.Pipeline |
|||
{ |
|||
public sealed class ApiModelValidationAttribute : ActionFilterAttribute |
|||
{ |
|||
public override void OnActionExecuting(ActionExecutingContext context) |
|||
{ |
|||
if (!context.ModelState.IsValid) |
|||
{ |
|||
var errors = new List<ValidationError>(); |
|||
|
|||
foreach (var m in context.ModelState) |
|||
{ |
|||
foreach (var e in m.Value.Errors) |
|||
{ |
|||
if (!string.IsNullOrWhiteSpace(e.ErrorMessage)) |
|||
{ |
|||
errors.Add(new ValidationError(e.ErrorMessage, m.Key)); |
|||
} |
|||
} |
|||
} |
|||
|
|||
throw new ValidationException("The model is not valid.", errors); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue