feat(admin): 增加玩家密码管理与角色边界
This commit is contained in:
@@ -7,8 +7,25 @@ use App\Models\AdminRole;
|
||||
final class AdminRoleApiPresenter
|
||||
{
|
||||
/** @return array<string, mixed> */
|
||||
public static function item(AdminRole $role): array
|
||||
public static function item(AdminRole $role, ?array $userCounts = null): array
|
||||
{
|
||||
if ($userCounts !== null) {
|
||||
$counts = $userCounts;
|
||||
} elseif (($role->scope_type ?? AdminRole::SCOPE_SYSTEM) === AdminRole::SCOPE_SYSTEM) {
|
||||
$counts = AdminRoleUserCounts::forRoleIds([$role->id])[(int) $role->id] ?? [
|
||||
'user_count' => 0,
|
||||
'platform_user_count' => 0,
|
||||
'agent_user_count' => 0,
|
||||
];
|
||||
} else {
|
||||
$assignedCount = $role->assignedUserCount();
|
||||
$counts = [
|
||||
'user_count' => $assignedCount,
|
||||
'platform_user_count' => 0,
|
||||
'agent_user_count' => $assignedCount,
|
||||
];
|
||||
}
|
||||
|
||||
return [
|
||||
'id' => (int) $role->id,
|
||||
'slug' => $role->slug,
|
||||
@@ -22,7 +39,9 @@ final class AdminRoleApiPresenter
|
||||
'delegated_from_role_id' => $role->delegated_from_role_id !== null ? (int) $role->delegated_from_role_id : null,
|
||||
'is_read_only_template' => $role->isReadOnlyTemplate(),
|
||||
'permission_slugs' => $role->legacyPermissionSlugs(),
|
||||
'user_count' => $role->assignedUserCount(),
|
||||
'user_count' => $counts['user_count'],
|
||||
'platform_user_count' => $counts['platform_user_count'],
|
||||
'agent_user_count' => $counts['agent_user_count'],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user