All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 50s
Replace direct Calendar, MarketPlace, and Post model queries with typed service calls (services.blog, services.calendar, services.market, services.cart). Blog registers all 4 services via domain_services_fn with has() guards for composable deployment. Key changes: - app.py: use domain_services_fn instead of inline service registration - admin routes: MarketPlace queries → services.market.marketplaces_for_container() - entry_associations: CalendarEntryPost → services.calendar.entry_ids_for_content() - markets service: Post query → services.blog.get_post_by_id/slug() - posts_data, post routes: use calendar/market/cart services - menu_items: glue imports → shared imports Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
991 B
Python
26 lines
991 B
Python
"""Blog (coop) app service registration."""
|
|
from __future__ import annotations
|
|
|
|
|
|
def register_domain_services() -> None:
|
|
"""Register services for the blog (coop) app.
|
|
|
|
Blog owns: Post, Tag, Author, PostAuthor, PostTag, PostLike.
|
|
Standard deployment registers all 4 services as real DB impls
|
|
(shared DB). For composable deployments, swap non-owned services
|
|
with stubs from shared.services.stubs.
|
|
"""
|
|
from shared.services.registry import services
|
|
from shared.services.blog_impl import SqlBlogService
|
|
from shared.services.calendar_impl import SqlCalendarService
|
|
from shared.services.market_impl import SqlMarketService
|
|
from shared.services.cart_impl import SqlCartService
|
|
|
|
services.blog = SqlBlogService()
|
|
if not services.has("calendar"):
|
|
services.calendar = SqlCalendarService()
|
|
if not services.has("market"):
|
|
services.market = SqlMarketService()
|
|
if not services.has("cart"):
|
|
services.cart = SqlCartService()
|