Replace hardcoded homepage featured route groups with a fully managed dynamic system: - add database models RouteSection and RouteSectionProduct for storing route groups and their associated products - create Alembic migration 0004_route_sections for the new tables - extend SiteConfigPatchIn schema with subtitle and productIds fields - refactor shared site_config utility to load dynamic route sections instead of fixed groups - implement admin CRUD API with validation for duplicate/conflicting product associations - update public and admin API documentation to reflect the new system - add default route section seed data and comprehensive test coverage
41 lines
2.2 KiB
Python
41 lines
2.2 KiB
Python
from sqlalchemy import select
|
|
from sqlalchemy.orm import Session, selectinload
|
|
from ..models import Campaign, CtaBanner, Destination, HeroSlide, MapImage, ThemeCard
|
|
from ..route_sections import route_section_dict, route_section_query
|
|
from ..serializers import destination_dict, model_dict
|
|
|
|
|
|
def site_config(db: Session, active_only: bool, include_public_extras: bool = True) -> dict:
|
|
hero_stmt = select(HeroSlide).order_by(HeroSlide.sortOrder.asc())
|
|
destination_stmt = select(Destination).options(selectinload(Destination.aliases)).order_by(Destination.sortOrder.asc())
|
|
map_stmt = select(MapImage).order_by(MapImage.createdAt.asc())
|
|
theme_stmt = select(ThemeCard).order_by(ThemeCard.sortOrder.asc())
|
|
cta_stmt = select(CtaBanner).order_by(CtaBanner.sortOrder.asc())
|
|
if active_only:
|
|
hero_stmt = hero_stmt.where(HeroSlide.isActive.is_(True))
|
|
destination_stmt = destination_stmt.where(Destination.isActive.is_(True))
|
|
map_stmt = map_stmt.where(MapImage.isActive.is_(True))
|
|
theme_stmt = theme_stmt.where(ThemeCard.isActive.is_(True))
|
|
cta_stmt = cta_stmt.where(CtaBanner.isActive.is_(True))
|
|
|
|
hero_slides = db.scalars(hero_stmt).all()
|
|
destinations = db.scalars(destination_stmt).all()
|
|
map_images = db.scalars(map_stmt).all()
|
|
themes = db.scalars(theme_stmt).all()
|
|
cta_banners = db.scalars(cta_stmt).all()
|
|
result = {
|
|
"heroSlides": [model_dict(item) for item in hero_slides],
|
|
"destinations": [destination_dict(item) for item in destinations],
|
|
"map": [model_dict(item) for item in map_images],
|
|
"themes": [model_dict(item) for item in themes],
|
|
"ctaBanners": [model_dict(item) for item in cta_banners],
|
|
}
|
|
if include_public_extras:
|
|
campaigns = db.scalars(select(Campaign).where(Campaign.status == "published").order_by(Campaign.updatedAt.desc())).all()
|
|
route_sections = db.scalars(route_section_query()).all()
|
|
if active_only:
|
|
route_sections = [section for section in route_sections if section.isActive]
|
|
result["campaigns"] = [model_dict(item) for item in campaigns]
|
|
result["routeSections"] = [route_section_dict(item, public=True) for item in route_sections]
|
|
return result
|