'not_found']); return; } $userAccountService = app(UserAccountService::class); $userAvatarService = app(UserAvatarService::class); $user = $userAccountService->findByUuid($uuid); $userId = (int) ($user['id'] ?? 0); $authorizationService = app(\MintyPHP\Service\Access\AuthorizationService::class); $decision = $authorizationService->authorize(UserAuthorizationPolicy::ABILITY_API_USERS_SHOW_GET, [ 'actor_user_id' => ApiAuth::userId(), 'target_user_id' => $userId, 'scoped_tenant_id' => ApiAuth::scopedTenantId(), ]); if (!$decision->isAllowed()) { $status = $decision->status() ?: 403; http_response_code($status); header('Content-Type: application/json'); echo json_encode(['error' => $decision->error() ?: 'forbidden']); return; } if (!$user) { http_response_code(404); header('Content-Type: application/json'); echo json_encode(['error' => 'not_found']); return; } $size = $request->hasQuery('size') ? $request->queryInt('size') : null; $path = $userAvatarService->findAvatarPath($uuid, $size); if (!$path || !is_file($path)) { http_response_code(404); header('Content-Type: application/json'); echo json_encode(['error' => 'not_found']); return; } $mime = $userAvatarService->detectMime($path); header('Content-Type: ' . $mime); header('X-Content-Type-Options: nosniff'); header('Content-Security-Policy: sandbox'); header('Cache-Control: private, max-age=300'); header('Content-Length: ' . filesize($path)); readfile($path);