File size: 13,601 Bytes
674fb4e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | from fastapi import APIRouter, Depends, HTTPException, status, Request
from pydantic import BaseModel
from typing import List, Dict, Any, Optional
from celery.result import AsyncResult
from redis import Redis
from .auth import get_current_user, User
from ..config import settings
from ..core.neo4j_store import Neo4jStore
from ..workers.celery_worker import celery_app
router = APIRouter(prefix="/api/admin", tags=["Admin Dashboard"])
# ββ Shared graph store dependency βββββββββββββββββββββββββββββββββββββββββββββ
# Admin routes must NOT create a fresh Neo4j driver per request β that causes
# connection exhaustion and 50-200 ms of TCP handshake latency on every call.
# Instead we pull the shared store that was initialised in the startup event.
def get_graph_store(request: Request) -> Neo4jStore:
"""Return the app-level shared Neo4jStore (set during startup)."""
store: Optional[Neo4jStore] = getattr(request.app.state, "graph_store", None)
if store is None:
raise HTTPException(
status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
detail="Graph store not initialised yet.",
)
return store
# Re-use global objects by passing them explicitly if needed,
# for now we'll import and instantiate lightweight ones or use dependencies
def check_admin_scope(user: User = Depends(get_current_user)):
"""Dependency to check if user has admin scope"""
if "admin" not in user.scopes:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Admin access required - Not enough permissions"
)
return user
class SystemConfig(BaseModel):
llm_provider: str
embedding_provider: str
chunk_size: int
workers_online: int
class TaskDashboardResponse(BaseModel):
active_tasks: int
pending_tasks: List[Dict[str, Any]]
failed_tasks: List[Dict[str, Any]]
@router.get("/stats", summary="Get global admin statistics")
async def get_admin_stats(
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
"""Get system-wide stats like document counts, node sizes, LLM costs (mocked for now)"""
try:
# Get actual counts from Graph
nodes_q = "MATCH (n) RETURN count(n) as count"
nodes_res = await store.execute_query(nodes_q)
nodes_count = nodes_res[0]["count"] if nodes_res else 0
edges_q = "MATCH ()-[r]->() RETURN count(r) as count"
edges_res = await store.execute_query(edges_q)
edges_count = edges_res[0]["count"] if edges_res else 0
# LLM costs mock for MVP dashboard
estimated_cost_usd = 2.45
return {
"graph": {
"nodes": nodes_count,
"relationships": edges_count
},
"costs": {
"total_estimated_usd": estimated_cost_usd,
"tokens_processed": 145000
},
"system": {
"provider": settings.default_llm_provider,
"environment": settings.environment
}
}
except Exception as exc:
raise HTTPException(status_code=500, detail=str(exc))
@router.get("/tasks", summary="Get pending and active celery tasks")
async def get_tasks(admin_user: User = Depends(check_admin_scope)):
"""Fetch all tasks from workers (integration with Flower/Celery events)"""
# For a direct Celery API pull we use the celery inspector
i = celery_app.control.inspect()
active = i.active() or {}
reserved = i.reserved() or {}
active_list = []
for worker, tasks in active.items():
active_list.extend([{"worker": worker, "id": t["id"], "name": t["name"]} for t in tasks])
reserved_list = []
for worker, tasks in reserved.items():
reserved_list.extend([{"worker": worker, "id": t["id"], "name": t["name"]} for t in tasks])
return TaskDashboardResponse(
active_tasks=len(active_list),
pending_tasks=reserved_list,
failed_tasks=[] # Needs Redis result backend history query for real failures
)
@router.post("/config", summary="Update system LLM configuration live")
async def update_config(config: SystemConfig, admin_user: User = Depends(check_admin_scope)):
"""Dynamically update configurations - requires restart logic usually, but here we mock DB save"""
# In a full app, this would save to a Redis key or PG DB that the app reads from.
settings.default_llm_provider = config.llm_provider
return {"status": "success", "message": f"Updated config to use {config.llm_provider}"}
@router.get("/entities/review", summary="Get entities flagged for human review")
async def get_review_queue(
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
"""Fetch entities that resolved between 0.85-0.95 confidence"""
# Mocking finding entities with a specific flag
# You'd typically add a label :FlaggedForReview during ingestion
query = "MATCH (e:Entity) WHERE e.needs_review = true RETURN e.id as id, e.name as name LIMIT 50"
res = await store.execute_query(query)
return {"queue": res}
@router.post("/entities/merge", summary="Force merge two entities")
async def force_merge_entities(
source_id: str,
target_id: str,
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
"""Admin override to merge two nodes"""
try:
import json
import re
# 1. Fetch properties
props_q = "MATCH (e:Entity) WHERE e.id IN [$id1, $id2] RETURN e.id as id, e.properties as props"
props_res = await store.execute_query(props_q, {"id1": source_id, "id2": target_id})
props1, props2 = {}, {}
for r in props_res:
try:
p = json.loads(r["props"]) if isinstance(r["props"], str) else (r["props"] or {})
except Exception:
p = {}
if r["id"] == source_id:
props1 = p
else:
props2 = p
# Merge properties
merged_props = {**props2, **props1}
# Update source
upd_q = "MATCH (e1:Entity {id: $id1}) SET e1.properties = $props"
await store.execute_query(upd_q, {"id1": source_id, "props": json.dumps(merged_props)})
# 2. Re-wire relationships preserving types
rel_q = """
MATCH (e2:Entity {id: $id2})-[r]->(other) RETURN type(r) as t, properties(r) as p, id(other) as oid, 'out' as dir
UNION ALL
MATCH (other)-[r]->(e2:Entity {id: $id2}) RETURN type(r) as t, properties(r) as p, id(other) as oid, 'in' as dir
"""
rels = await store.execute_query(rel_q, {"id2": target_id})
for rel in rels:
t = rel["t"].upper().replace(" ", "_")
if not re.match(r'^[A-Z0-9_]+$', t):
t = "RELATED_TO"
if rel["dir"] == "out":
merge_q = f"MATCH (e1:Entity {{id: $id1}}), (other) WHERE id(other) = $oid MERGE (e1)-[r:`{t}`]->(other) SET r = $p"
else:
merge_q = f"MATCH (e1:Entity {{id: $id1}}), (other) WHERE id(other) = $oid MERGE (other)-[r:`{t}`]->(e1) SET r = $p"
await store.execute_query(merge_q, {"id1": source_id, "oid": rel["oid"], "p": rel["p"]})
# 3. Delete target
del_q = "MATCH (e2:Entity {id: $id2}) DETACH DELETE e2"
await store.execute_query(del_q, {"id2": target_id})
return {"status": "merged", "result": source_id}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
# --- NEW GRAPH CRUD ENDPOINTS ---
@router.get("/graph/nodes", summary="Search graph nodes for CRUD")
async def search_nodes(
query: str = "",
limit: int = 50,
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
if query:
cypher = """
MATCH (n)
WHERE any(prop in keys(n) WHERE toString(n[prop]) CONTAINS $query) OR head(labels(n)) CONTAINS $query
RETURN id(n) as id, labels(n) as labels, properties(n) as properties LIMIT $limit
"""
else:
cypher = "MATCH (n) RETURN id(n) as id, labels(n) as labels, properties(n) as properties LIMIT $limit"
res = await store.execute_query(cypher, {"query": query, "limit": limit})
return {"nodes": res}
@router.delete("/graph/nodes/{node_id}", summary="Delete a node and its edges")
async def delete_node(
node_id: int,
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
# SECURITY: only allow deletion of content nodes β never User/system/OntologyMeta nodes.
_DELETABLE_LABELS = {"Entity", "Chunk", "Document", "OntologyProposal", "Community"}
# First fetch the node labels
label_q = "MATCH (n) WHERE id(n) = $node_id RETURN labels(n) as labels"
label_res = await store.execute_query(label_q, {"node_id": node_id})
if not label_res:
raise HTTPException(status_code=404, detail=f"Node {node_id} not found.")
node_labels = set(label_res[0].get("labels", []))
if not node_labels.intersection(_DELETABLE_LABELS):
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail=f"Deletion of node with labels {node_labels} is not permitted.",
)
cypher = "MATCH (n) WHERE id(n) = $node_id DETACH DELETE n"
await store.execute_query(cypher, {"node_id": node_id})
return {"status": "success", "message": f"Node {node_id} deleted."}
# --- NEW DOCUMENT VAULT ENDPOINTS ---
@router.get("/documents", summary="List all ingested documents")
async def list_documents(
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
cypher = "MATCH (d:Document) RETURN d.id as id, d.filename as filename, d.status as status, d.uploaded_at as uploaded_at"
res = await store.execute_query(cypher)
return {"documents": res}
@router.delete("/documents/{doc_id}", summary="Delete document and cascade graph chunks")
async def delete_document(
doc_id: str,
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
# Cascade delete logic in Neo4j
cypher = """
MATCH (d:Document {id: $doc_id})
OPTIONAL MATCH (d)-[:CONTAINS]->(c:Chunk)
DETACH DELETE c, d
"""
await store.execute_query(cypher, {"doc_id": doc_id})
return {"status": "success", "message": f"Document {doc_id} and components deleted."}
# --- NEW ONTOLOGY GOVERNANCE ENDPOINTS ---
@router.get("/ontology/pending", summary="List pending ontology suggestions")
async def get_pending_ontology(
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
cypher = "MATCH (o:DriftReport) WHERE o.status = 'pending' RETURN o.id as id, o.new_entity_types as new_entity_types, o.new_relationship_types as new_relationship_types"
res = await store.execute_query(cypher)
return {"proposals": res}
@router.post("/ontology/approve/{prop_id}", summary="Approve ontology type")
async def approve_ontology(
prop_id: str,
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store)
):
from ..services.ontology_drift_detector import OntologyDriftDetector
from ..config import settings
detector = OntologyDriftDetector(
graph_store=store,
llm_provider=settings.default_llm_provider,
)
success = await detector.apply_drift_report(
report_id=prop_id,
approved_by=admin_user.username,
)
if not success:
raise HTTPException(status_code=404, detail="Drift report not found")
return {"status": "approved", "id": prop_id}
@router.post("/ontology/reject/{prop_id}", summary="Reject ontology type")
async def reject_ontology(
prop_id: str,
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store)
):
cypher = "MATCH (o:DriftReport {id: $prop_id}) SET o.status = 'rejected' RETURN o"
await store.execute_query(cypher, {"prop_id": prop_id})
return {"status": "rejected", "id": prop_id}
# --- NEW USER MANAGEMENT ENDPOINTS ---
@router.get("/users", summary="List all system users")
async def list_users(
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store),
):
cypher = "MATCH (u:User) RETURN u.username as username, u.scopes as scopes, u.disabled as disabled"
res = await store.execute_query(cypher)
# Return empty list if no users
if not res:
res = []
return {"users": res}
@router.put("/users/{username}/role", summary="Update user role/scopes")
async def update_user_role(
username: str,
payload: dict,
admin_user: User = Depends(check_admin_scope),
store: Neo4jStore = Depends(get_graph_store)
):
scopes = payload.get("scopes", [])
if username == admin_user.username and "admin" not in scopes:
raise HTTPException(status_code=400, detail="Cannot remove your own admin privileges.")
cypher = "MATCH (u:User {username: $username}) SET u.scopes = $scopes RETURN u"
await store.execute_query(cypher, {"username": username, "scopes": scopes})
return {"status": "success", "username": username, "new_scopes": scopes}
|