feat(fc2c-i): showcase random-sample service and endpoint

This commit is contained in:
2026-05-15 15:49:25 -04:00
parent a638c469e0
commit a74b313596
5 changed files with 145 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
"""Random-sample query for the showcase.
Uses the tsm_system_rows TABLESAMPLE method (migration 0004) instead of
ORDER BY random(): sampling cost scales with the sample size, not the table,
so it stays fast as the collection grows. SYSTEM_ROWS(n) returns up to n
rows; an empty table yields none.
"""
from sqlalchemy import select, text
from sqlalchemy.ext.asyncio import AsyncSession
from ..models import ImageRecord
from .gallery_service import thumbnail_url
class ShowcaseService:
def __init__(self, session: AsyncSession):
self.session = session
async def random_sample(self, limit: int = 60) -> list[dict]:
if limit < 1 or limit > 200:
raise ValueError("limit must be between 1 and 200")
stmt = select(ImageRecord).from_statement(
text(
"SELECT * FROM image_record "
"TABLESAMPLE SYSTEM_ROWS(:n)"
).bindparams(n=limit)
)
rows = (await self.session.execute(stmt)).scalars().all()
return [
{
"id": r.id,
"sha256": r.sha256,
"mime": r.mime,
"width": r.width,
"height": r.height,
"thumbnail_url": thumbnail_url(r.sha256, r.mime),
}
for r in rows
]