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.
65 lines
2.4 KiB
65 lines
2.4 KiB
// ==========================================================================
|
|
// GuardApp.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using Squidex.Domain.Apps.Core.Apps;
|
|
using Squidex.Domain.Apps.Entities.Apps.Commands;
|
|
using Squidex.Domain.Apps.Entities.Apps.Services;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Apps.Guards
|
|
{
|
|
public static class GuardApp
|
|
{
|
|
public static Task CanCreate(CreateApp command, IAppProvider appProvider)
|
|
{
|
|
Guard.NotNull(command, nameof(command));
|
|
|
|
return Validate.It(() => "Cannot create app.", async error =>
|
|
{
|
|
if (await appProvider.GetAppAsync(command.Name) != null)
|
|
{
|
|
error(new ValidationError($"An app with name '{command.Name}' already exists", nameof(command.Name)));
|
|
}
|
|
|
|
if (!command.Name.IsSlug())
|
|
{
|
|
error(new ValidationError("Name must be a valid slug.", nameof(command.Name)));
|
|
}
|
|
});
|
|
}
|
|
|
|
public static void CanChangePlan(ChangePlan command, AppPlan plan, IAppPlansProvider appPlans)
|
|
{
|
|
Guard.NotNull(command, nameof(command));
|
|
|
|
Validate.It(() => "Cannot change plan.", error =>
|
|
{
|
|
if (string.IsNullOrWhiteSpace(command.PlanId))
|
|
{
|
|
error(new ValidationError("PlanId is not defined.", nameof(command.PlanId)));
|
|
}
|
|
else if (appPlans.GetPlan(command.PlanId) == null)
|
|
{
|
|
error(new ValidationError("Plan id not available.", nameof(command.PlanId)));
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(command.PlanId) && plan != null && !plan.Owner.Equals(command.Actor))
|
|
{
|
|
error(new ValidationError("Plan can only be changed from current user."));
|
|
}
|
|
|
|
if (string.Equals(command.PlanId, plan?.PlanId, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
error(new ValidationError("App has already this plan."));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|