- 在多个控制器中引入 agent_node_id,以支持基于代理节点的权限和数据过滤。 - 更新 AdminRole 和 AdminUser 模型,新增角色范围和代理节点相关功能,提升角色管理的灵活性。 - 在请求验证中添加 agent_node_id 字段,确保 API 接口支持代理节点的相关操作。 - 优化 LotterySettings 服务,支持批量写入设置,提升配置管理的效率。 - 更新仪表板和报告服务,增强数据统计功能,确保管理员能够获取更全面的统计信息。
71 lines
2.4 KiB
PHP
71 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\V1\Admin\Agent;
|
|
|
|
use App\Lottery\ErrorCode;
|
|
use App\Models\AgentNode;
|
|
use App\Support\ApiMessage;
|
|
use App\Support\ApiResponse;
|
|
use App\Services\AuditLogger;
|
|
use Illuminate\Http\JsonResponse;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Services\Agent\AgentNodeService;
|
|
use App\Support\AdminAgentNodeAccess;
|
|
use App\Support\AdminAgentScope;
|
|
use App\Support\AgentNodePresenter;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
final class AgentNodeDestroyController extends Controller
|
|
{
|
|
public function __invoke(
|
|
\Illuminate\Http\Request $request,
|
|
AgentNode $agent_node,
|
|
AgentNodeService $service,
|
|
): JsonResponse {
|
|
$admin = $request->lotteryAdmin();
|
|
abort_if($admin === null, 401);
|
|
|
|
$denied = AdminAgentNodeAccess::denyUnlessNodeVisible($admin, $agent_node);
|
|
if ($denied !== null) {
|
|
return $denied;
|
|
}
|
|
|
|
if (! AdminAgentScope::nodeManageableBy($admin, $agent_node)) {
|
|
return AdminAgentNodeAccess::denyUnlessNodeVisible($admin, $agent_node)
|
|
?? AdminAgentNodeAccess::denyUnlessCanManageParent($admin, $agent_node);
|
|
}
|
|
|
|
if ($agent_node->isRoot()) {
|
|
return ApiMessage::errorResponse($request, 'admin.agent_root_delete_denied', ErrorCode::ValidationFailed->value, null, 422);
|
|
}
|
|
|
|
if ($agent_node->children()->exists()) {
|
|
return ApiMessage::errorResponse($request, 'admin.agent_node_has_children_cannot_delete', ErrorCode::ValidationFailed->value, null, 422);
|
|
}
|
|
|
|
if (DB::table('admin_user_agents')->where('agent_node_id', (int) $agent_node->id)->exists()) {
|
|
return ApiMessage::errorResponse($request, 'admin.agent_node_has_users_cannot_delete', ErrorCode::ValidationFailed->value, null, 422);
|
|
}
|
|
|
|
if (DB::table('admin_roles')->where('owner_agent_id', (int) $agent_node->id)->exists()) {
|
|
return ApiMessage::errorResponse($request, 'admin.agent_node_has_roles_cannot_delete', ErrorCode::ValidationFailed->value, null, 422);
|
|
}
|
|
|
|
$before = AgentNodePresenter::item($agent_node);
|
|
$service->destroy($agent_node);
|
|
|
|
AuditLogger::recordForAdmin(
|
|
$admin,
|
|
$request,
|
|
'system',
|
|
'agent_node.destroy',
|
|
'agent_node',
|
|
(string) $agent_node->id,
|
|
$before,
|
|
null,
|
|
);
|
|
|
|
return ApiResponse::success(null);
|
|
}
|
|
}
|