63 lines
1.7 KiB
C#
63 lines
1.7 KiB
C#
using Application.Common.Services.SecurityManager;
|
|
using FluentValidation;
|
|
using MediatR;
|
|
|
|
namespace Application.Features.SecurityManager.Commands;
|
|
|
|
|
|
public class UpdateUserResult
|
|
{
|
|
public UpdateUserResultDto? Data { get; set; }
|
|
}
|
|
|
|
public class UpdateUserRequest : IRequest<UpdateUserResult>
|
|
{
|
|
public string? UserId { get; init; }
|
|
public string? FirstName { get; init; }
|
|
public string? LastName { get; init; }
|
|
public bool? EmailConfirmed { get; init; }
|
|
public bool? IsBlocked { get; init; }
|
|
public bool? IsDeleted { get; init; }
|
|
public string? UpdatedById { get; init; }
|
|
}
|
|
|
|
public class UpdateUserValidator : AbstractValidator<UpdateUserRequest>
|
|
{
|
|
public UpdateUserValidator()
|
|
{
|
|
RuleFor(x => x.UserId).NotEmpty();
|
|
RuleFor(x => x.FirstName).NotEmpty();
|
|
RuleFor(x => x.LastName).NotEmpty();
|
|
}
|
|
}
|
|
|
|
public class UpdateUserHandler : IRequestHandler<UpdateUserRequest, UpdateUserResult>
|
|
{
|
|
private readonly ISecurityService _securityService;
|
|
|
|
public UpdateUserHandler(ISecurityService securityService)
|
|
{
|
|
_securityService = securityService;
|
|
}
|
|
|
|
public async Task<UpdateUserResult> Handle(UpdateUserRequest request, CancellationToken cancellationToken)
|
|
{
|
|
var result = await _securityService.UpdateUserAsync(
|
|
request.UserId ?? "",
|
|
request.FirstName ?? "",
|
|
request.LastName ?? "",
|
|
request.EmailConfirmed ?? true,
|
|
request.IsBlocked ?? false,
|
|
request.IsDeleted ?? false,
|
|
request.UpdatedById ?? "",
|
|
cancellationToken
|
|
);
|
|
|
|
return new UpdateUserResult
|
|
{
|
|
Data = result
|
|
};
|
|
}
|
|
}
|
|
|