mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-27 12:30:13 +03:00
perf: batch RBAC permission checking for GET /projects
Replace per-project check_user_has_privilege calls with a single batch method that performs 3 fixed DB queries regardless of project count. Reduces GET /projects response time for 10000 projects from ~12s to ~290ms (40x improvement).
This commit is contained in:
parent
0022d1ad62
commit
2efcc619b1
@ -76,7 +76,6 @@ def dep_project(project_id: UUID) -> Project:
|
||||
async def get_projects(
|
||||
current_user: schemas.User = Depends(get_current_active_user),
|
||||
rbac_repo: RbacRepository = Depends(get_repository(RbacRepository)),
|
||||
pools_repo: ResourcePoolsRepository = Depends(get_repository(ResourcePoolsRepository))
|
||||
) -> List[schemas.Project]:
|
||||
"""
|
||||
Return all projects.
|
||||
@ -92,31 +91,26 @@ async def get_projects(
|
||||
# super admin sees all projects
|
||||
return [p.asdict() for p in controller.projects.values()]
|
||||
|
||||
# Step 1: ACE check - basic access permission
|
||||
# Get projects user has ACE for (basic access control)
|
||||
ace_projects = []
|
||||
for project in controller.projects.values():
|
||||
project_path = f"/projects/{project.id}"
|
||||
if await rbac_repo.check_user_has_privilege(current_user.user_id, project_path, "Project.Audit"):
|
||||
ace_projects.append(project)
|
||||
# Batch ACE + resource pool check (3 DB queries regardless of project count)
|
||||
all_project_ids = list(controller.projects.keys())
|
||||
direct_ace_ids, pool_accessible_ids = await rbac_repo.get_accessible_project_ids(
|
||||
current_user.user_id, "Project.Audit", all_project_ids
|
||||
)
|
||||
|
||||
# Step 2: Filter ace_projects by created_by - user's own projects
|
||||
# Project sharing is only available through resource pools
|
||||
user_projects = [p.asdict() for p in ace_projects if p.created_by == current_user.username]
|
||||
for project in user_projects:
|
||||
if project['project_id'] not in seen_project_ids:
|
||||
projects.append(project)
|
||||
seen_project_ids.add(project['project_id'])
|
||||
# Step 2: Filter direct ACE projects by created_by
|
||||
# Direct project sharing is only available through resource pools
|
||||
for p in controller.projects.values():
|
||||
if p.id in direct_ace_ids and p.created_by == current_user.username:
|
||||
if p.id not in seen_project_ids:
|
||||
projects.append(p.asdict())
|
||||
seen_project_ids.add(p.id)
|
||||
|
||||
# Step 3: Resource pool projects
|
||||
# Projects shared through resource pools
|
||||
user_pool_resources = await rbac_repo.get_user_pool_resources(current_user.user_id, "Project.Audit")
|
||||
project_ids_in_pools = [str(r.resource_id) for r in user_pool_resources if r.resource_type == "project"]
|
||||
pool_projects = [p.asdict() for p in controller.projects.values() if p.id in project_ids_in_pools]
|
||||
for project in pool_projects:
|
||||
if project['project_id'] not in seen_project_ids:
|
||||
projects.append(project)
|
||||
seen_project_ids.add(project['project_id'])
|
||||
# Step 3: Resource pool projects (no created_by filter)
|
||||
for p in controller.projects.values():
|
||||
if p.id in pool_accessible_ids:
|
||||
if p.id not in seen_project_ids:
|
||||
projects.append(p.asdict())
|
||||
seen_project_ids.add(p.id)
|
||||
|
||||
return projects
|
||||
|
||||
|
||||
@ -404,6 +404,83 @@ class RbacRepository(BaseRepository):
|
||||
pool_resources.extend(await self._get_resources_in_pools(group_aces))
|
||||
return list(set(pool_resources))
|
||||
|
||||
async def get_accessible_project_ids(
|
||||
self,
|
||||
user_id: UUID,
|
||||
privilege_name: str,
|
||||
all_project_ids: List[str]
|
||||
):
|
||||
"""
|
||||
Batch check which projects a user can access via direct ACE or resource pools.
|
||||
Performs 3 fixed DB queries regardless of project count.
|
||||
|
||||
Returns:
|
||||
(direct_ace_ids, pool_accessible_ids) where:
|
||||
- direct_ace_ids: projects the user has a direct ACE on (needs created_by filter)
|
||||
- pool_accessible_ids: projects in resource pools the user can access (no created_by filter)
|
||||
"""
|
||||
|
||||
user_aces = await self._get_user_aces(user_id, privilege_name)
|
||||
group_aces = await self._get_group_aces(user_id, privilege_name)
|
||||
|
||||
# Single query for all resources and their pool memberships
|
||||
query = select(models.Resource).options(selectinload(models.Resource.resource_pools))
|
||||
result = await self._db_session.execute(query)
|
||||
all_resources = result.scalars().all()
|
||||
|
||||
# Precompute pool_id -> set of project_ids
|
||||
pool_to_projects = {}
|
||||
for r in all_resources:
|
||||
if r.resource_type == "project":
|
||||
for pool in r.resource_pools:
|
||||
pool_to_projects.setdefault(str(pool.resource_pool_id), set()).add(str(r.resource_id))
|
||||
|
||||
# --- User ACE: direct path check ---
|
||||
direct_ace_ids = set()
|
||||
user_denied = set()
|
||||
|
||||
for pid in all_project_ids:
|
||||
path = f"/projects/{pid}"
|
||||
try:
|
||||
if self._check_path_with_aces(path, user_aces):
|
||||
direct_ace_ids.add(pid)
|
||||
except PermissionError:
|
||||
user_denied.add(pid)
|
||||
|
||||
# --- User ACE: pool check ---
|
||||
user_pool_ids = {ace_path.split("/")[2] for ace_path, _, ace_allowed, _ in user_aces
|
||||
if ace_path.startswith("/pools/") and ace_allowed}
|
||||
|
||||
pool_accessible_ids = set()
|
||||
for pool_id, project_ids in pool_to_projects.items():
|
||||
if pool_id in user_pool_ids:
|
||||
for pid in project_ids:
|
||||
if pid not in user_denied:
|
||||
pool_accessible_ids.add(pid)
|
||||
|
||||
# --- Group ACE: direct path check (skip already accessible or denied) ---
|
||||
for pid in all_project_ids:
|
||||
if pid in direct_ace_ids or pid in user_denied:
|
||||
continue
|
||||
path = f"/projects/{pid}"
|
||||
try:
|
||||
if self._check_path_with_aces(path, group_aces):
|
||||
direct_ace_ids.add(pid)
|
||||
except PermissionError:
|
||||
pass
|
||||
|
||||
# --- Group ACE: pool check ---
|
||||
group_pool_ids = {ace_path.split("/")[2] for ace_path, _, ace_allowed, _ in group_aces
|
||||
if ace_path.startswith("/pools/") and ace_allowed}
|
||||
|
||||
for pool_id, project_ids in pool_to_projects.items():
|
||||
if pool_id in group_pool_ids:
|
||||
for pid in project_ids:
|
||||
if pid not in user_denied and pid not in pool_accessible_ids:
|
||||
pool_accessible_ids.add(pid)
|
||||
|
||||
return direct_ace_ids, pool_accessible_ids
|
||||
|
||||
async def check_user_has_privilege(self, user_id: UUID, path: str, privilege_name: str) -> bool:
|
||||
"""
|
||||
Resource paths form a file system like tree and privileges can be inherited by paths down that tree
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user