refactor: fix all architecture validator findings (202 → 0)

Eliminate all 103 errors and 96 warnings from the architecture validator:

Phase 1 - Validator rules & YAML:
- Add NAM-001/NAM-002 exceptions for module-scoped router/service files
- Fix API-004 to detect # public comments on decorator lines
- Add module-specific exception bases to EXC-004 valid_bases
- Exclude storefront files from AUTH-004 store context check
- Add SVC-006 exceptions for loyalty service atomic commits
- Fix _get_rule() to search naming_rules and auth_rules categories
- Use plain # CODE comments instead of # noqa: CODE for custom rules

Phase 2 - Billing module (5 route files):
- Move _resolve_store_to_merchant to subscription_service
- Move tier/feature queries to feature_service, admin_subscription_service
- Extract 22 inline Pydantic schemas to billing/schemas/billing.py
- Replace all HTTPException with domain exceptions

Phase 3 - Loyalty module (4 routes + points_service):
- Add 7 domain exceptions (Apple auth, enrollment, device registration)
- Add service methods to card_service, program_service, apple_wallet_service
- Move all db.query() from routes to service layer
- Fix SVC-001: replace HTTPException in points_service with domain exception

Phase 4 - Remaining modules:
- tenancy: move store stats queries to admin_service
- cms: move platform resolution to content_page_service, add NoPlatformSubscriptionException
- messaging: move user/customer lookups to messaging_service
- Add ConfigDict(from_attributes=True) to ContentPageResponse

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-13 18:49:24 +01:00
parent 9173448645
commit 7c43d6f4a2
48 changed files with 1613 additions and 1039 deletions

View File

@@ -239,6 +239,98 @@ class AppleWalletNotConfiguredException(LoyaltyException):
)
# =============================================================================
# Authentication Exceptions
# =============================================================================
class InvalidAppleAuthTokenException(LoyaltyException):
"""Raised when Apple Wallet auth token is invalid."""
def __init__(self):
super().__init__(
message="Invalid Apple Wallet authentication token",
error_code="INVALID_APPLE_AUTH_TOKEN",
)
self.status_code = 401
class ApplePassGenerationException(LoyaltyException):
"""Raised when Apple Wallet pass generation fails."""
def __init__(self, card_id: int):
super().__init__(
message="Failed to generate Apple Wallet pass",
error_code="APPLE_PASS_GENERATION_FAILED",
details={"card_id": card_id},
)
self.status_code = 500
class DeviceRegistrationException(LoyaltyException):
"""Raised when Apple Wallet device registration/unregistration fails."""
def __init__(self, device_id: str, operation: str = "register"):
super().__init__(
message=f"Failed to {operation} device",
error_code="DEVICE_REGISTRATION_FAILED",
details={"device_id": device_id, "operation": operation},
)
self.status_code = 500
# =============================================================================
# Enrollment Exceptions
# =============================================================================
class SelfEnrollmentDisabledException(LoyaltyException):
"""Raised when self-enrollment is not allowed."""
def __init__(self):
super().__init__(
message="Self-enrollment is not available",
error_code="SELF_ENROLLMENT_DISABLED",
)
self.status_code = 403
class CustomerNotFoundByEmailException(LoyaltyException):
"""Raised when customer is not found by email during enrollment."""
def __init__(self, email: str):
super().__init__(
message="Customer not found with provided email",
error_code="CUSTOMER_NOT_FOUND_BY_EMAIL",
details={"email": email},
)
class CustomerIdentifierRequiredException(LoyaltyException):
"""Raised when neither customer_id nor email is provided."""
def __init__(self):
super().__init__(
message="Either customer_id or email is required",
error_code="CUSTOMER_IDENTIFIER_REQUIRED",
)
# =============================================================================
# Order Exceptions
# =============================================================================
class OrderReferenceRequiredException(LoyaltyException):
"""Raised when order reference is required but not provided."""
def __init__(self):
super().__init__(
message="Order reference required",
error_code="ORDER_REFERENCE_REQUIRED",
)
# =============================================================================
# Validation Exceptions
# =============================================================================
@@ -283,6 +375,16 @@ __all__ = [
"WalletIntegrationException",
"GoogleWalletNotConfiguredException",
"AppleWalletNotConfiguredException",
# Authentication
"InvalidAppleAuthTokenException",
"ApplePassGenerationException",
"DeviceRegistrationException",
# Enrollment
"SelfEnrollmentDisabledException",
"CustomerNotFoundByEmailException",
"CustomerIdentifierRequiredException",
# Order
"OrderReferenceRequiredException",
# Validation
"LoyaltyValidationException",
]