56f7f2351f
- Add UserProfile model (app/models.py) with per-user settings: display_name, daily_upload_limit, notes, is_blocked - Add Alembic migration 013_add_user_profiles for the new table - Add REST API at /api/admin/users/ with list, get, upsert (PUT), delete endpoints (admin-only) - Add HTML template admin_users.html with Alpine.js: filterable user list, paginated table, edit/create modal, delete confirmation modal - Add view handler at /admin/users (admin-only redirect guard) - Register routers in app/api/__init__.py and app/views/__init__.py - Add 'Users' link to admin nav dropdown in base.html (desktop + mobile) - Add 27 tests covering auth, list, get, upsert, delete, and model constraints - Register UserProfile in conftest.py model imports - Document new endpoints in docs/API.md Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
260 lines
8.8 KiB
Python
260 lines
8.8 KiB
Python
"""API endpoints for admin user management.
|
|
|
|
Provides CRUD operations for user profiles and aggregate statistics so that
|
|
administrators can inspect, configure, and manage users in multi-user mode.
|
|
"""
|
|
|
|
import logging
|
|
from typing import Annotated, Any
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException, Query, Request, status
|
|
from pydantic import BaseModel, Field
|
|
from sqlalchemy import func
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.database import get_db
|
|
from app.models import FileRecord, UserProfile
|
|
|
|
logger = logging.getLogger(__name__)
|
|
router = APIRouter(prefix="/admin/users", tags=["admin-users"])
|
|
|
|
DbSession = Annotated[Session, Depends(get_db)]
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Auth helper
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _require_admin(request: Request) -> dict:
|
|
"""Ensure the caller is an admin. Raises 403 otherwise."""
|
|
user = request.session.get("user")
|
|
if not user or not user.get("is_admin"):
|
|
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="Admin access required")
|
|
return user
|
|
|
|
|
|
AdminUser = Annotated[dict, Depends(_require_admin)]
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Pydantic schemas
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class UserProfileUpsert(BaseModel):
|
|
"""Body for creating or updating a user profile."""
|
|
|
|
display_name: str | None = Field(default=None, max_length=255, description="Human-readable display name")
|
|
daily_upload_limit: int | None = Field(
|
|
default=None, ge=0, description="Per-user daily upload cap; null = use global default"
|
|
)
|
|
notes: str | None = Field(default=None, max_length=4096, description="Admin notes about this user")
|
|
is_blocked: bool = Field(default=False, description="Block this user from uploading")
|
|
|
|
|
|
class UserProfileResponse(BaseModel):
|
|
"""Response schema for a user profile record."""
|
|
|
|
id: int
|
|
user_id: str
|
|
display_name: str | None
|
|
daily_upload_limit: int | None
|
|
notes: str | None
|
|
is_blocked: bool
|
|
created_at: str | None
|
|
updated_at: str | None
|
|
|
|
model_config = {"from_attributes": True}
|
|
|
|
|
|
class UserSummary(BaseModel):
|
|
"""Per-user summary combining profile data with document statistics."""
|
|
|
|
user_id: str
|
|
display_name: str | None
|
|
daily_upload_limit: int | None
|
|
notes: str | None
|
|
is_blocked: bool
|
|
profile_id: int | None
|
|
document_count: int
|
|
last_upload: str | None
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Helpers
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _get_or_none(db: Session, user_id: str) -> UserProfile | None:
|
|
"""Return the UserProfile row for *user_id*, or None if it doesn't exist."""
|
|
return db.query(UserProfile).filter(UserProfile.user_id == user_id).first()
|
|
|
|
|
|
def _profile_to_dict(profile: UserProfile) -> dict[str, Any]:
|
|
return {
|
|
"id": profile.id,
|
|
"user_id": profile.user_id,
|
|
"display_name": profile.display_name,
|
|
"daily_upload_limit": profile.daily_upload_limit,
|
|
"notes": profile.notes,
|
|
"is_blocked": profile.is_blocked,
|
|
"created_at": profile.created_at.isoformat() if profile.created_at else None,
|
|
"updated_at": profile.updated_at.isoformat() if profile.updated_at else None,
|
|
}
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Endpoints
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@router.get("/", summary="List all known users with statistics")
|
|
def list_users(
|
|
db: DbSession,
|
|
_admin: AdminUser,
|
|
q: str = Query("", description="Filter by user_id substring (case-insensitive)"),
|
|
page: int = Query(1, ge=1, description="Page number"),
|
|
per_page: int = Query(25, ge=1, le=100, description="Items per page"),
|
|
) -> dict[str, Any]:
|
|
"""Return every distinct user_id that has at least one document or an explicit profile,
|
|
enriched with aggregate document statistics and the admin-managed profile.
|
|
|
|
Supports substring filtering (``q``) and pagination.
|
|
"""
|
|
# 1. Collect every distinct owner_id from documents
|
|
doc_stats_query = (
|
|
db.query(
|
|
FileRecord.owner_id.label("user_id"),
|
|
func.count(FileRecord.id).label("doc_count"),
|
|
func.max(FileRecord.created_at).label("last_upload"),
|
|
)
|
|
.filter(FileRecord.owner_id.isnot(None))
|
|
.group_by(FileRecord.owner_id)
|
|
)
|
|
|
|
# 2. Collect all user_ids that have explicit profiles (may not have docs yet)
|
|
profile_query = db.query(UserProfile)
|
|
|
|
# Build a unified set of user_ids
|
|
doc_rows = {row.user_id: row for row in doc_stats_query.all()}
|
|
profile_rows = {p.user_id: p for p in profile_query.all()}
|
|
|
|
all_user_ids = set(doc_rows.keys()) | set(profile_rows.keys())
|
|
|
|
# Apply optional substring filter
|
|
if q.strip():
|
|
q_lower = q.strip().lower()
|
|
all_user_ids = {uid for uid in all_user_ids if q_lower in uid.lower()}
|
|
|
|
# Sort and paginate
|
|
sorted_ids = sorted(all_user_ids)
|
|
total = len(sorted_ids)
|
|
start = (page - 1) * per_page
|
|
page_ids = sorted_ids[start : start + per_page]
|
|
|
|
users: list[dict[str, Any]] = []
|
|
for uid in page_ids:
|
|
doc_row = doc_rows.get(uid)
|
|
profile = profile_rows.get(uid)
|
|
users.append(
|
|
{
|
|
"user_id": uid,
|
|
"display_name": profile.display_name if profile else None,
|
|
"daily_upload_limit": profile.daily_upload_limit if profile else None,
|
|
"notes": profile.notes if profile else None,
|
|
"is_blocked": profile.is_blocked if profile else False,
|
|
"profile_id": profile.id if profile else None,
|
|
"document_count": doc_row.doc_count if doc_row else 0,
|
|
"last_upload": doc_row.last_upload.isoformat() if (doc_row and doc_row.last_upload) else None,
|
|
}
|
|
)
|
|
|
|
return {
|
|
"users": users,
|
|
"total": total,
|
|
"page": page,
|
|
"per_page": per_page,
|
|
"pages": max(1, (total + per_page - 1) // per_page),
|
|
}
|
|
|
|
|
|
@router.get("/{user_id:path}", summary="Get details for a single user")
|
|
def get_user(user_id: str, db: DbSession, _admin: AdminUser) -> dict[str, Any]:
|
|
"""Return profile and document statistics for a specific user."""
|
|
doc_count = db.query(func.count(FileRecord.id)).filter(FileRecord.owner_id == user_id).scalar() or 0
|
|
last_row = (
|
|
db.query(FileRecord.created_at)
|
|
.filter(FileRecord.owner_id == user_id)
|
|
.order_by(FileRecord.created_at.desc())
|
|
.first()
|
|
)
|
|
last_upload = last_row[0].isoformat() if last_row and last_row[0] else None
|
|
|
|
profile = _get_or_none(db, user_id)
|
|
|
|
return {
|
|
"user_id": user_id,
|
|
"display_name": profile.display_name if profile else None,
|
|
"daily_upload_limit": profile.daily_upload_limit if profile else None,
|
|
"notes": profile.notes if profile else None,
|
|
"is_blocked": profile.is_blocked if profile else False,
|
|
"profile_id": profile.id if profile else None,
|
|
"document_count": doc_count,
|
|
"last_upload": last_upload,
|
|
"profile": _profile_to_dict(profile) if profile else None,
|
|
}
|
|
|
|
|
|
@router.put("/{user_id:path}", summary="Create or update a user profile")
|
|
def upsert_user_profile(
|
|
user_id: str,
|
|
body: UserProfileUpsert,
|
|
db: DbSession,
|
|
_admin: AdminUser,
|
|
) -> dict[str, Any]:
|
|
"""Create a new profile or update an existing one for *user_id*.
|
|
|
|
Returns the persisted profile.
|
|
"""
|
|
profile = _get_or_none(db, user_id)
|
|
if profile is None:
|
|
profile = UserProfile(user_id=user_id)
|
|
db.add(profile)
|
|
|
|
profile.display_name = body.display_name
|
|
profile.daily_upload_limit = body.daily_upload_limit
|
|
profile.notes = body.notes
|
|
profile.is_blocked = body.is_blocked
|
|
|
|
try:
|
|
db.commit()
|
|
db.refresh(profile)
|
|
except Exception:
|
|
db.rollback()
|
|
raise
|
|
|
|
logger.info("Admin upserted profile for user %s", user_id)
|
|
return _profile_to_dict(profile)
|
|
|
|
|
|
@router.delete("/{user_id:path}", status_code=status.HTTP_204_NO_CONTENT, summary="Delete a user profile")
|
|
def delete_user_profile(user_id: str, db: DbSession, _admin: AdminUser) -> None:
|
|
"""Delete the admin-managed profile for *user_id*.
|
|
|
|
Documents owned by this user are **not** removed; only the profile record
|
|
is deleted. To reassign or purge documents use the files API.
|
|
"""
|
|
profile = _get_or_none(db, user_id)
|
|
if not profile:
|
|
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="User profile not found")
|
|
|
|
try:
|
|
db.delete(profile)
|
|
db.commit()
|
|
except Exception:
|
|
db.rollback()
|
|
raise
|
|
|
|
logger.info("Admin deleted profile for user %s", user_id)
|