mirror of https://github.com/Squidex/squidex.git
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.
41 lines
1.3 KiB
41 lines
1.3 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Squidex.Infrastructure
|
|
{
|
|
public static class Validate
|
|
{
|
|
public static void It(Func<string> message, Action<Action<ValidationError>> action, IReadOnlyDictionary<string, string> messages = null)
|
|
{
|
|
var errors = new List<ValidationError>();
|
|
|
|
action(errors.Add);
|
|
|
|
if (errors.Any())
|
|
{
|
|
throw new ValidationException(message(), errors);
|
|
}
|
|
}
|
|
|
|
public static async Task It(Func<string> message, Func<Action<ValidationError>, Task> action, IReadOnlyDictionary<string, string> messages = null)
|
|
{
|
|
var errors = new List<ValidationError>();
|
|
|
|
await action(errors.Add);
|
|
|
|
if (errors.Any())
|
|
{
|
|
throw new ValidationException(message(), errors);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|