All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 3m0s
Replace every direct cross-app services.* call with HTTP-based communication: call_action() for writes, fetch_data() for reads. Each app now registers only its own domain service. Infrastructure: - shared/infrastructure/actions.py — POST client for /internal/actions/ - shared/infrastructure/data_client.py — GET client for /internal/data/ - shared/contracts/dtos.py — dto_to_dict/dto_from_dict serialization Action endpoints (writes): - events: 8 handlers (ticket adjust, claim/confirm, toggle, adopt) - market: 2 handlers (create/soft-delete marketplace) - cart: 1 handler (adopt cart for user) Data endpoints (reads): - blog: 4 (post-by-slug/id, posts-by-ids, search-posts) - events: 10 (pending entries/tickets, entries/tickets for page/order, entry-ids, associated-entries, calendars, visible-entries-for-period) - market: 1 (marketplaces-for-container) - cart: 1 (cart-summary) Service registration cleanup: - blog→blog+federation, events→calendar+federation, market→market+federation, cart→cart only, federation→federation only, account→nothing - Stubs reduced to minimal StubFederationService Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
"""No-op stub services.
|
|
|
|
Cross-app calls now go over HTTP via call_action() / fetch_data().
|
|
Stubs are no longer needed for the 4 main domains (blog, calendar,
|
|
market, cart). Only StubFederationService remains as a safety net
|
|
for apps that conditionally load AP infrastructure.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
|
|
class StubFederationService:
|
|
"""No-op federation stub for apps that don't load AP."""
|
|
|
|
async def get_actor_by_username(self, session, username):
|
|
return None
|
|
|
|
async def get_actor_by_user_id(self, session, user_id):
|
|
return None
|
|
|
|
async def publish_activity(self, session, *, actor_user_id, activity_type,
|
|
object_type, object_data, source_type=None,
|
|
source_id=None):
|
|
return None
|
|
|
|
async def get_activity_for_source(self, session, source_type, source_id):
|
|
return None
|
|
|
|
async def count_activities_for_source(self, session, source_type, source_id, *, activity_type):
|
|
return 0
|
|
|
|
async def get_stats(self, session):
|
|
return {"actors": 0, "activities": 0, "followers": 0}
|