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.
142 lines
5.3 KiB
142 lines
5.3 KiB
// ==========================================================================
|
|
// AppCommandHandler.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System.Threading.Tasks;
|
|
using Squidex.Infrastructure;
|
|
using Squidex.Infrastructure.CQRS.Commands;
|
|
using Squidex.Infrastructure.Dispatching;
|
|
using Squidex.Infrastructure.Tasks;
|
|
using Squidex.Read.Apps.Repositories;
|
|
using Squidex.Read.Apps.Services;
|
|
using Squidex.Read.Users.Repositories;
|
|
using Squidex.Write.Apps.Commands;
|
|
|
|
// ReSharper disable InvertIf
|
|
|
|
namespace Squidex.Write.Apps
|
|
{
|
|
public class AppCommandHandler : ICommandHandler
|
|
{
|
|
private readonly IAggregateHandler handler;
|
|
private readonly IAppRepository appRepository;
|
|
private readonly IAppLimitsProvider appLimitsProvider;
|
|
private readonly IUserRepository userRepository;
|
|
private readonly ClientKeyGenerator keyGenerator;
|
|
|
|
public AppCommandHandler(
|
|
IAggregateHandler handler,
|
|
IAppRepository appRepository,
|
|
IAppLimitsProvider appLimitsProvider,
|
|
IUserRepository userRepository,
|
|
ClientKeyGenerator keyGenerator)
|
|
{
|
|
Guard.NotNull(handler, nameof(handler));
|
|
Guard.NotNull(keyGenerator, nameof(keyGenerator));
|
|
Guard.NotNull(appRepository, nameof(appRepository));
|
|
Guard.NotNull(userRepository, nameof(userRepository));
|
|
Guard.NotNull(appLimitsProvider, nameof(appLimitsProvider));
|
|
|
|
this.handler = handler;
|
|
this.keyGenerator = keyGenerator;
|
|
this.userRepository = userRepository;
|
|
this.appRepository = appRepository;
|
|
this.appLimitsProvider = appLimitsProvider;
|
|
}
|
|
|
|
protected async Task On(CreateApp command, CommandContext context)
|
|
{
|
|
if (await appRepository.FindAppAsync(command.Name) != null)
|
|
{
|
|
var error =
|
|
new ValidationError($"An app with name '{command.Name}' already exists",
|
|
nameof(CreateApp.Name));
|
|
|
|
throw new ValidationException("Cannot create a new app", error);
|
|
}
|
|
|
|
await handler.CreateAsync<AppDomainObject>(context, a =>
|
|
{
|
|
a.Create(command);
|
|
|
|
context.Succeed(EntityCreatedResult.Create(a.Id, a.Version));
|
|
});
|
|
}
|
|
|
|
protected async Task On(AssignContributor command, CommandContext context)
|
|
{
|
|
if (await userRepository.FindUserByIdAsync(command.ContributorId) == null)
|
|
{
|
|
var error =
|
|
new ValidationError("Cannot find contributor the contributor",
|
|
nameof(AssignContributor.ContributorId));
|
|
|
|
throw new ValidationException("Cannot assign contributor to app", error);
|
|
}
|
|
|
|
await handler.UpdateAsync<AppDomainObject>(context, a =>
|
|
{
|
|
var oldContributors = a.ContributorCount;
|
|
var maxContributors = appLimitsProvider.GetPlan(a.PlanId).MaxContributors;
|
|
|
|
a.AssignContributor(command);
|
|
|
|
if (a.ContributorCount > oldContributors && a.ContributorCount > maxContributors)
|
|
{
|
|
var error = new ValidationError("You have reached your max number of contributors");
|
|
|
|
throw new ValidationException("Cannot assign contributor to app", error);
|
|
}
|
|
});
|
|
}
|
|
|
|
protected Task On(AttachClient command, CommandContext context)
|
|
{
|
|
return handler.UpdateAsync<AppDomainObject>(context, a =>
|
|
{
|
|
a.AttachClient(command, keyGenerator.GenerateKey());
|
|
|
|
context.Succeed(EntityCreatedResult.Create(a.Clients[command.Id], a.Version));
|
|
});
|
|
}
|
|
|
|
protected Task On(RemoveContributor command, CommandContext context)
|
|
{
|
|
return handler.UpdateAsync<AppDomainObject>(context, a => a.RemoveContributor(command));
|
|
}
|
|
|
|
protected Task On(RenameClient command, CommandContext context)
|
|
{
|
|
return handler.UpdateAsync<AppDomainObject>(context, a => a.RenameClient(command));
|
|
}
|
|
|
|
protected Task On(RevokeClient command, CommandContext context)
|
|
{
|
|
return handler.UpdateAsync<AppDomainObject>(context, a => a.RevokeClient(command));
|
|
}
|
|
|
|
protected Task On(AddLanguage command, CommandContext context)
|
|
{
|
|
return handler.UpdateAsync<AppDomainObject>(context, a => a.AddLanguage(command));
|
|
}
|
|
|
|
protected Task On(RemoveLanguage command, CommandContext context)
|
|
{
|
|
return handler.UpdateAsync<AppDomainObject>(context, a => a.RemoveLanguage(command));
|
|
}
|
|
|
|
protected Task On(UpdateLanguage command, CommandContext context)
|
|
{
|
|
return handler.UpdateAsync<AppDomainObject>(context, a => a.UpdateLanguage(command));
|
|
}
|
|
|
|
public Task<bool> HandleAsync(CommandContext context)
|
|
{
|
|
return context.IsHandled ? TaskHelper.False : this.DispatchActionAsync(context.Command, context);
|
|
}
|
|
}
|
|
}
|
|
|