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.
101 lines
3.7 KiB
101 lines
3.7 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
using System;
|
|
using System.Linq;
|
|
using Squidex.Domain.Apps.Core.Apps;
|
|
using Squidex.Domain.Apps.Entities.Apps.Commands;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Apps.Guards
|
|
{
|
|
public static class GuardAppPatterns
|
|
{
|
|
public static void CanAdd(AppPatterns patterns, AddPattern command)
|
|
{
|
|
Guard.NotNull(command, nameof(command));
|
|
|
|
Validate.It(() => "Cannot add pattern.", e =>
|
|
{
|
|
if (command.PatternId == Guid.Empty)
|
|
{
|
|
e("Id is required.", nameof(command.PatternId));
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(command.Name))
|
|
{
|
|
e("Name is required.", nameof(command.Name));
|
|
}
|
|
|
|
if (patterns.Values.Any(x => x.Name.Equals(command.Name, StringComparison.OrdinalIgnoreCase)))
|
|
{
|
|
e("A pattern with the same name already exists.");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(command.Pattern))
|
|
{
|
|
e("Pattern is required.", nameof(command.Pattern));
|
|
}
|
|
else if (!command.Pattern.IsValidRegex())
|
|
{
|
|
e("Pattern is not a valid regular expression.", nameof(command.Pattern));
|
|
}
|
|
|
|
if (patterns.Values.Any(x => x.Pattern == command.Pattern))
|
|
{
|
|
e("This pattern already exists but with another name.");
|
|
}
|
|
});
|
|
}
|
|
|
|
public static void CanDelete(AppPatterns patterns, DeletePattern command)
|
|
{
|
|
Guard.NotNull(command, nameof(command));
|
|
|
|
if (!patterns.ContainsKey(command.PatternId))
|
|
{
|
|
throw new DomainObjectNotFoundException(command.PatternId.ToString(), typeof(AppPattern));
|
|
}
|
|
}
|
|
|
|
public static void CanUpdate(AppPatterns patterns, UpdatePattern command)
|
|
{
|
|
Guard.NotNull(command, nameof(command));
|
|
|
|
if (!patterns.ContainsKey(command.PatternId))
|
|
{
|
|
throw new DomainObjectNotFoundException(command.PatternId.ToString(), typeof(AppPattern));
|
|
}
|
|
|
|
Validate.It(() => "Cannot update pattern.", e =>
|
|
{
|
|
if (string.IsNullOrWhiteSpace(command.Name))
|
|
{
|
|
e("Name is required.", nameof(command.Name));
|
|
}
|
|
|
|
if (patterns.Any(x => x.Key != command.PatternId && x.Value.Name.Equals(command.Name, StringComparison.OrdinalIgnoreCase)))
|
|
{
|
|
e("A pattern with the same name already exists.");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(command.Pattern))
|
|
{
|
|
e("Pattern is required.", nameof(command.Pattern));
|
|
}
|
|
else if (!command.Pattern.IsValidRegex())
|
|
{
|
|
e("Pattern is not a valid regular expression.", nameof(command.Pattern));
|
|
}
|
|
|
|
if (patterns.Any(x => x.Key != command.PatternId && x.Value.Pattern == command.Pattern))
|
|
{
|
|
e("This pattern already exists but with another name.");
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|