126 lines
4.9 KiB
C#
126 lines
4.9 KiB
C#
using MediatR;
|
|
using System.Text.Json;
|
|
using TakeoutSaaS.Application.Identity.Abstractions;
|
|
using TakeoutSaaS.Application.Identity.Commands;
|
|
using TakeoutSaaS.Domain.Identity.Enums;
|
|
using TakeoutSaaS.Domain.Identity.Repositories;
|
|
using TakeoutSaaS.Domain.Tenants.Entities;
|
|
using TakeoutSaaS.Domain.Tenants.Repositories;
|
|
using TakeoutSaaS.Shared.Abstractions.Constants;
|
|
using TakeoutSaaS.Shared.Abstractions.Exceptions;
|
|
using TakeoutSaaS.Shared.Abstractions.Security;
|
|
using TakeoutSaaS.Shared.Abstractions.Tenancy;
|
|
|
|
namespace TakeoutSaaS.Application.Identity.Handlers;
|
|
|
|
/// <summary>
|
|
/// 删除用户处理器。
|
|
/// </summary>
|
|
public sealed class DeleteIdentityUserCommandHandler(
|
|
IIdentityUserRepository identityUserRepository,
|
|
IUserRoleRepository userRoleRepository,
|
|
IRoleRepository roleRepository,
|
|
ITenantProvider tenantProvider,
|
|
ICurrentUserAccessor currentUserAccessor,
|
|
IAdminAuthService adminAuthService,
|
|
IOperationLogRepository operationLogRepository)
|
|
: IRequestHandler<DeleteIdentityUserCommand, bool>
|
|
{
|
|
/// <inheritdoc />
|
|
public async Task<bool> Handle(DeleteIdentityUserCommand request, CancellationToken cancellationToken)
|
|
{
|
|
// 1. 获取操作者档案并判断权限
|
|
var currentTenantId = tenantProvider.GetCurrentTenantId();
|
|
var operatorProfile = await adminAuthService.GetProfileAsync(currentUserAccessor.UserId, cancellationToken);
|
|
var isSuperAdmin = IdentityUserAccess.IsSuperAdmin(operatorProfile);
|
|
|
|
// 2. (空行后) 校验跨租户访问权限
|
|
if (!isSuperAdmin && request.TenantId.HasValue && request.TenantId.Value != currentTenantId)
|
|
{
|
|
throw new BusinessException(ErrorCodes.Forbidden, "禁止跨租户删除用户");
|
|
}
|
|
|
|
// 3. (空行后) 查询用户实体
|
|
var user = isSuperAdmin
|
|
? await identityUserRepository.GetForUpdateIgnoringTenantAsync(request.UserId, cancellationToken)
|
|
: await identityUserRepository.GetForUpdateAsync(request.UserId, cancellationToken);
|
|
if (user == null)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!isSuperAdmin && user.TenantId != currentTenantId)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// 4. (空行后) 校验租户管理员保留规则
|
|
if (user.Status == IdentityUserStatus.Active)
|
|
{
|
|
await EnsureNotLastActiveTenantAdminAsync(user.TenantId, user.Id, isSuperAdmin, cancellationToken);
|
|
}
|
|
|
|
// 5. (空行后) 软删除用户
|
|
await identityUserRepository.RemoveAsync(user, cancellationToken);
|
|
await identityUserRepository.SaveChangesAsync(cancellationToken);
|
|
|
|
// 6. (空行后) 写入操作日志
|
|
var operatorName = string.IsNullOrWhiteSpace(operatorProfile.DisplayName)
|
|
? operatorProfile.Account
|
|
: operatorProfile.DisplayName;
|
|
if (string.IsNullOrWhiteSpace(operatorName))
|
|
{
|
|
operatorName = $"user:{currentUserAccessor.UserId}";
|
|
}
|
|
|
|
var log = new OperationLog
|
|
{
|
|
OperationType = "identity-user:delete",
|
|
TargetType = "identity_user",
|
|
TargetIds = JsonSerializer.Serialize(new[] { user.Id }),
|
|
OperatorId = currentUserAccessor.UserId.ToString(),
|
|
OperatorName = operatorName,
|
|
Parameters = JsonSerializer.Serialize(new { userId = user.Id, tenantId = user.TenantId }),
|
|
Result = JsonSerializer.Serialize(new { userId = user.Id }),
|
|
Success = true
|
|
};
|
|
await operationLogRepository.AddAsync(log, cancellationToken);
|
|
await operationLogRepository.SaveChangesAsync(cancellationToken);
|
|
|
|
return true;
|
|
}
|
|
|
|
private async Task EnsureNotLastActiveTenantAdminAsync(long tenantId, long userId, bool ignoreTenantFilter, CancellationToken cancellationToken)
|
|
{
|
|
// 1. 获取租户管理员角色
|
|
var tenantAdminRole = await roleRepository.FindByCodeAsync("tenant-admin", tenantId, cancellationToken);
|
|
if (tenantAdminRole == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// 2. (空行后) 判断用户是否为租户管理员
|
|
var relations = await userRoleRepository.GetByUserIdAsync(tenantId, userId, cancellationToken);
|
|
if (!relations.Any(x => x.RoleId == tenantAdminRole.Id))
|
|
{
|
|
return;
|
|
}
|
|
|
|
// 3. (空行后) 统计活跃管理员数量
|
|
var filter = new IdentityUserSearchFilter
|
|
{
|
|
TenantId = tenantId,
|
|
RoleId = tenantAdminRole.Id,
|
|
Status = IdentityUserStatus.Active,
|
|
IncludeDeleted = false,
|
|
Page = 1,
|
|
PageSize = 1
|
|
};
|
|
var result = await identityUserRepository.SearchPagedAsync(filter, ignoreTenantFilter, cancellationToken);
|
|
if (result.Total <= 1)
|
|
{
|
|
throw new BusinessException(ErrorCodes.Conflict, "至少保留一个管理员");
|
|
}
|
|
}
|
|
}
|